/* 内页公共样式 */
* {
    padding: 0;
    margin: 0;
    border: 0;
}

:root {
    --cydl-container-wid: 1600px;
}

html,
body {
    font-family: "微软雅黑";
    position: relative;
    width: 100%;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

i,
em {
    font-style: normal;
}

ul,
ol {
    list-style: none;
}

img {
    border: none;
    display: block;
}

a {
    text-decoration: none;
    color: #2c2c2c;
}

.container {
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    padding: 0 164px;
}

.pages {
    text-align: center;
}

.pages ul {
    display: flex;
    justify-content: right;
}

.pages ul li {
    padding: 0 4px;
}

.pages ul li:last-child {
    padding: 0 0 0 6px;
}

.pages ul li:first-child {
    padding: 0 6px 0 0;
}

.pages ul li a,
.pages ul li span {
    padding: 5px 8px;
    display: block;
    width: 32px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 14px;
    color: #333333;
    background-color: transparent;
    border: 1px solid rgba(175, 175, 175, .5);
    border-radius: 3px;
}

.pages ul li.active a,
.pages ul li.active span,
.pages ul li:hover a {
    background: #2e3676;
    color: #fff;
    border: 1px solid #2e3676;
}

.header {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: 15px 0;
    box-sizing: border-box;
}

.header .container {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    overflow: visible;
}

.header .container .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .container .logo a {
    display: flex;
    align-items: center;
}

.header .container .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .container .logo img:first-child {
    margin-right: 24px;
    width: 50px;
    height: 50px;
}

.header .container .logo img:last-child {
    margin-top: 20px;
    width: 128px;
    height: 19px;
}

.header .container .navBar .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .container .navBar .nav_icon {
    display: none;
}

.header .container .navBar .nav_icon img {
    width: 100%;
}

.header .container .navBar .nav ul {
    display: flex;
    margin-top: 22px;
}

.header .container .navBar .nav ul li {
    margin: 0px 30px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .container .navBar .nav ul li::after {
    content: "";
    display: block;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -18px;
    width: 0;
    height: 2px;
    background-color: #7a614c;
}

.header .container .navBar .nav ul li:hover::after,
.header .container .navBar .nav ul li.active::after {
    width: 100%;
    transition: all 0.3s ease;
}

.header .container .navBar .nav ul li a {
    white-space: nowrap;
    color: #333333;
    font-size: 16px;
    display: block;
}

.header .container .right {
    display: flex;
    align-items: center;
    /*margin-bottom: 20px;*/
}

.header .container .right .search {
    margin-right: 15px;
}
.header .container .right .search img{
    cursor: pointer;
}
.header .container .right .search form {
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    position: relative;
    bottom: -1px;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.header .container .right .search form>button {
    position: absolute;
    outline: none;
    border: none;
    box-sizing: border-box;
    color: transparent;
    background: transparent;
    width: auto;
    height: auto;
    /* right: 0; */
    transform: translateX(0);
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.header .container .right .search form>input {
    width: 0;
    background: none;
    border-bottom: 1px solid #333;
    outline: none;
    color: #333;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
}

.header .container .right .lang {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .container .right .lang::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: #333333;
    display: block;
}

.header .container .right .lang ul {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #333333;
    margin-left: 15px;
}

.header .container .right .lang ul li a {
    font-size: 14px;
    color: rgba(51, 51, 51, .5);
    line-height: 1.2em;
    height: 15px;
    display: block;
}

.header .container .right .lang ul li:hover a,
.header .container .right .lang ul li.active a {
    color: rgba(51, 51, 51);
}

.page_head {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .05) !important;
}

.page_head .container {
    height: 80px;
}

/* 底部 */
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.foot .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7a614c;
    width: 60.2%;
    height: 80px;
}

.foot .left .text {
    display: flex;
    align-items: flex-end;
    padding-left: 164px;
    box-sizing: border-box;
}

.foot .left .text i {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-right: 32px;
}

.foot .left .text p {
    font-size: 14px;
    color: #fff;
}

.foot .left .link ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 6px;
    box-sizing: border-box;
}

.foot .left .link ul li {
    margin: 0 14px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot .left .link ul li .code {
    position: absolute;
    display: none;
    top: -118px;
}

.foot .left .link ul li:hover .code {
    display: flex;
    background: url(../images/code_bg.png) no-repeat center;
    background-size: cover;
    width: 99px;
    height: 108px;
    padding: 4px 4px 14px 4px;
    box-sizing: border-box;
}

.foot .left .link ul li .code .img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.foot .right {
    height: 80px;
    width: calc(100% - 60.2%);
    background-color: #fff;
    display: flex;
    align-items: center;
}
.foot .right p{
    margin: 0 164px 0 auto;
}
.foot .right p span {
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
}


/*搜索结果页面*/
.searchlist{
    margin: 100px 0;
}
.searchlist .main{
    padding: 40px 0;
}
.searchlist .main .list ul{
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.searchlist .main .list ul li{
    padding: 0 15px;
    width: 33.333%;
    height: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.searchlist .main .list ul li a{
    display: block;
}
.searchlist .main .list ul li a .pic{
    overflow: hidden;
    width: 100%;
    height: 400px;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #757575
}
.searchlist .main .list ul li a .pic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.searchlist .main .list ul li a:hover .pic img{
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.searchlist .main .list ul li p{
    color: #333;
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
    box-sizing: border-box;
}

    .proShow{
        display:none;
        position: fixed;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,.5);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right:0;
        bottom: 0;
        margin: auto;
        box-sizing:border-box;
    }
    .proShow .box{
        width: 40%;
        margin: 0 auto;
    }
    .proShow .box .clean{
        margin-bottom: 10px;
        width: fit-content;
        cursor: pointer;
    }
    .proShow .box .content{
        background-color: #fff;
        padding: 30px 20px 50px;
        box-sizing: border-box;
    }
    .proShow .box .content .images{
        padding: 30px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .proShow .box .content .images img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
     .proShow .box .content .text{
         font-size: 20px;
         text-align: center;
     }

@media screen and (max-width:1440px) {
    .container{
        padding: 0 120px;
    }
    
    .foot .left .text i{
        margin-right: 0;
        display: inline-block;
    }
    .foot .left .text{
        padding-left: 120px;
        display: block;
    }
    .foot .right p{
        margin: 0 120px 0 auto;
    }
    .foot .right p span{
        display: block;
    }
    
    .proShow .box{
        width: 50%;
    }
}

@media screen and (max-width:1300px) {
}


@media screen and (max-width:1200px) {
    .header .container .navBar .nav ul li{
        margin: 0 10px;
    }
}


@media screen and (max-width:992px) {
}


@media screen and (max-width:750px) {
    .header {
        width: 100%;
        height: 1rem;
        background-color: #fff;
    }

    .header .container {
        height: 100%;
        position: static;
        align-items: center;
    }

    .header .container .left {
        width: 0.3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .container .left .search img.sea_icon {
        width: 0.3rem;
    }
    .header .container .left .search img.close{
        width: 0.27rem;
    }

    .container {
        width: 84.4%;
        padding: 0;
    }
    .header .container .navBar{
        width: 0.34rem;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header .container .navBar .nav {
        transform: translate(0);
    }

    .header .container .navBar .nav_icon {
        display: block;
    }

    .header .container .navBar .nav_icon img.close {
        display: none;
        width: 0.27rem;
    }

    .header .container .logo img:first-child,
    .header .container .logo img:last-child {
        margin: 0;
    }

    .header .container .logo {
        width: 0.58rem;
        height: 0.58rem;
        position: relative;
        z-index: 10000;
    }

    .header .navBar .nav_icon img.menu {
        width: 0.34rem;
    }
    .header .container .navBar .nav_icon img{
        position: relative;
        z-index: 10000;
    }
    .header .left .searchShow,
    .header .container .navBar .nav {
        width: 100%;
        height: 100vh;
        background-color: rgb(122, 97, 76);
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        box-sizing: border-box;
    }
    .header .container .left .search img{
        position: relative;
        z-index: 10000;
    }
    .header .container .left .search img.close{
        display: none;
    }

    .header .left .searchShow {
        width: 100%;
        height: 100%;
    }

    .header .left .searchShow .con form {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #fff;
        width: 4.54rem;
        margin: 1.4rem auto 0;
        padding-bottom: 0.15rem;
        box-sizing: border-box;
    }

    .header .left .searchShow .con form .sea {
        width: 0.3rem;
    }

    .header .left .searchShow .con form input {
        background-color: transparent;
        outline: none;
        border: none;
        padding: 0 0.2rem;
        box-sizing: border-box;
        color: #fff;
        font-size: 0.24rem;
        text-align: center;
        width: calc(100% - 0.3rem);
    }

    .header .left .searchShow .con form input::-webkit-input-placeholder {
        color: rgba(255,255,255,.5);
    }

    .header .left .searchShow .con form input::-moz-placeholder {
        color: rgba(255,255,255,.5);
    }

    .header .left .searchShow .con form input:-moz-placeholder {
        color: rgba(255,255,255,.5);
    }

    .header .left .searchShow .con form input::-ms-input-placeholder {
        color: rgba(255,255,255,.5);
    }

    .header .left .searchShow .con form input:-ms-input-placeholder {
        color: rgba(255,255,255,.5);
    }
    .header .container .navBar .navShow .menuBox ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
    .header .container .navBar .nav .navShow{
        margin: 1.75rem auto 0;
    }
    .header .container .navBar .nav .navShow .lang ul{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header .container .navBar .nav .navShow .lang ul span{
        width: 1px;
        height: 0.26rem;
        background-color: #fff;
        display: block;
        margin: 0 0.45rem;
        font-size: 0;
    }
    .header .container .navBar .nav ul li::after{
        display: none;
    }
    .header .container .navBar .nav ul li{
        margin: 0;
        width: 0.9rem;
        justify-content: right;
    }
    .header .container .navBar .nav .lang ul li a{
        color: rgba(255,254,254,.5);
        font-size: 0.26rem;
    }
    .header .container .navBar .nav .lang ul li.active a{
        color: #fffefe;
    }
    .header .container .navBar .nav .menuBox{
        padding-top: 0.96rem;
        box-sizing: border-box;
    }
    .header .container .navBar .nav .menuBox ul li{
        margin-bottom: 0.6rem;
        width: fit-content;
    }
    .header .container .navBar .nav .menuBox ul li:hover,
    .header .container .navBar .nav .menuBox ul li.active{
        border-bottom: 1px solid #fff;
        box-sizing: border-box;
    }
    .header .container .navBar .nav .menuBox ul li a{
        font-size: 0.3rem;
        color: #fff;
    }

    .foot {
        display: block;
    }

    .foot .left {
        width: 100%;
        height: 1.2rem;
    }

    .foot .right {
        width: 100%;
        height: 1.2rem;
    }

    .foot .right p {
        width: 84.4%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .foot .right p span {
        display: inline;
        font-size: 0.2rem;
    }

    .foot .left .text i {
        font-size: 0.22rem;
        display: block;
    }

    .foot .left .text p {
        font-size: 0.2rem;
        display: block;
    }

    .foot .left .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        overflow: visible;
    }

    .foot .left .text {
        padding: 0;
    }

    .foot .left .link ul {
        padding-right: 0;
        justify-content: right;
        align-items: flex-end;
    }

    .foot .left .link ul li {
        margin: 0 0 0 0.6rem;
        width: 100%;
    }

    .foot .left .link ul li:nth-child(1) .icon {
        width: 0.42rem;
    }

    .foot .left .link ul li:nth-child(2) .icon {
        width: 0.36rem;
    }

    .foot .left .link ul li:nth-child(3) .icon {
        width: 0.47rem;
    }

    .foot .left .link ul li .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .foot .left .link ul li .code {
        top: -1.9rem;
    }

    .foot .left .link ul li:hover .code {
        width: 1.5rem;
        height: 1.7rem;
    }
}

@media screen and (max-width:500px) {
}
