@font-face {
    font-family: f1;
    src: url("font/PingFang\ Regular_0.ttf")
}
html {
    font-size: 100%;
    width: 100%;
    outline: none;
    min-height: 100%;
    position: relative;
}

body {
    background: #fff;
    font-family: "Pingfang SC";
    font-size: 14px;
    font-weight: 400;
    color: #373737;
    text-align: left;
    margin: auto;
    width: 100%;
    min-width: 1300px;
    outline: none; 
}

body,
div,
p,
input,
a,
span,
img,
ul,
li,
textarea,
select,
button {
    outline: none;
}

a,
a:hover {
    color: #373737;
    text-decoration: none;
}

html {
    font-size: 100%;
    width: 100%;
    outline: none;
}

body,
div,
p,
span,
ul,
li,
a,
input,
textarea {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

img {
    border: none;
}

p {
    margin: 0;
}

.boxShadow {
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
}


/* gShow */

.gShow {
    opacity: 0;
}

@keyframes mymove {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes mymove
/* Safari and Chrome */

{
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fontFadeIn {
    animation: 3s ease 0s 1 normal none running fontMove;
    -webkit-animation: 3s ease 0s 1 normal none running fontMove;
}

@keyframes fontMove {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fontMove
/* Safari and Chrome */

{
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/* scaleImg */

.scaleImg {
    overflow: hidden;
    display: block;
}

.scaleImg img {
    transition-duration: .6s;
    -webkit-transition-duration:.6s; 
    display: block;
}

.scaleImg:hover img {
    transform: scale(1.1);
    /* filter: grayscale(0); */
}


/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    animation: 10s infinite alternate bannerMove;
    -webkit-animation: 10s infinite alternate bannerMove;
    display: block;
    width: 100%;
}

@keyframes bannerMove {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes bannerMove
/*Safari and Chrome*/

{
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.1, 1.1);
    }
}


/* content */

.content {
    width: 1064px;
    margin: 0 auto;
}
.content_comm{
    margin: 50px auto;
}
section{
    margin-top: 140px;
}
section.home{
    margin-top: 0;
}
/* header */
header{
    height: 140px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding-top: 12px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: .5s;
    -webkit-transition: .5s;
}
header .logo{
    display: block;
    width: 200px;
    margin: 0 auto 10px auto;
}
header .logo img{
    display: block;
    width: 100%;
}
header .nav{
    display: inline-block;
}
header .nav>li{
    float: left;
    line-height: 50px;
    height: 50px;
    margin-right: 40px;
    font-size: 16px;
}
header .nav>li>a{
    color: #444444;
}
header .nav>li:last-child{
    margin-left: 40px;
    margin-right: 0;
    position: relative;
}
li:last-child::before{
    content: "";
    position: absolute;
    left: -39px;
    height: 14px;
    width: 1px;
    background-color: #666666;
    top: 50%;
    margin-top: -7px;
}
header .search{
    position: relative;
    overflow: hidden;
    margin-top: 12px;
}
header .search .icon{
    display: block;
    cursor: pointer;
    margin-top:3.5px;
}
header .search input{
    border: 0;
    border-bottom: 1px solid #666666;
    background-color: transparent;
    height: 26px;
    width: 0px;
    padding: 0;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
header .search button{
    border: 0;
    background-color: transparent;
    height: 26px;
    cursor: pointer;
    position: absolute;
    padding: 0;
    text-align: center;
    top: 0;
    left: 110px;
    color: #666666;
    transition: all 0s ease-out 0s;
    -webkit-transition: all 0s ease-out 0s;
    opacity: 0;
}
header .search.active input{
    width: 140px;
    margin-right: 7px;
    opacity: 1;
}
header .search.active button{
    opacity: 1;
    transition: all .2s ease-out .5s;
    -webkit-transition: all .2s ease-out .5s;
}
header.h{
    background-color: transparent;
    box-shadow: none;
}
header.bg{
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/* home */
.home_1 .swiper-slide img{
    width: 100%;
    display: block;
}
.home_1 .swiper-pagination{
    bottom: 40px;
}
.home_1 .swiper-pagination-bullet{
    background-color: #fff;
    opacity: 1;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_1 .swiper-pagination-bullet::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    top: -2px;
    left: -2px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_1 .swiper-pagination-bullet-active{
    background-color: transparent;
}
.home_1 .swiper-pagination-bullet-active::before{
    border-color: #fff;
}
.home_1 .swiper-button-btn{
    margin-top: 0;
    width: 42px;
    height: 42px;
    background-size: 42px 42px;
    top: auto;
    bottom: 80px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_1 .swiper-button-prev{
    background-image: url(../images/icon_02.png);
    left: 50%;
    margin-left: 500px;
}
.home_1 .swiper-button-next{
    background-image: url(../images/icon_03.png);
    left: 50%;
    margin-left: 558px;
}
.home_1 .swiper-button-prev:hover{
    background-image: url(../images/icon_02_1.png);
}
.home_1 .swiper-button-next:hover{
    background-image: url(../images/icon_03_1.png);
}
.home_2{
    position: relative;
    padding: 50px 0 60px 0;
    background-color: #F8F8F8;
}
.home_2::before{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    background-color: #fff;
    height: 430px;
    z-index: -1;
}
.home .title{
    text-align: center;
}
.home .title .tit{
    width: 236px;
    height: 43px;
    line-height: 43px;
    color: #000000;
    font-size: 36px;
    background: url(../images/icon_07.png) no-repeat center;
    margin: 0 auto 12px auto;
}
.home_2 .title{
    margin-bottom: 40px;
}
.home_21{
    padding-bottom: 60px;
} 
.home_21 .swiper-slide{
    transform: scale(.8);
    -webkit-transform: scale(.8);
    transform-origin:bottom;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .swiper-slide img{
    width: 100%;
    display: block;
    border-radius: 10px;
}
.home_21 .swiper-slide .info{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 0 60px 30px 60px;
    text-align: center;
}
.home_21 .swiper-slide .info .tit{
    font-size: 24px;
    color: #FEE69A;
    margin-bottom: 12px;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.home_21 .swiper-slide .info .txt{
    font-size: 18px;
    line-height: 20px;
    color: #fff;
}
.home_21 .swiper-slide-active{
    transform: none;
    -webkit-transform: none;
}
.home_21 .swiper-button-btn{
    margin-top: 0;
    width: 12px;
    height: 22px;
    background-size: 12px 22px;
    top: auto;
    bottom: 0;
    z-index: 99;
}
.home_21 .swiper-button-prev{
    background-image: url(../images/icon_04.png);
    left: 50%;
    margin-left: -100px;
}
.home_21 .swiper-button-next{
    background-image: url(../images/icon_05.png);
    right: 50%;
    margin-right: -100px;
}
.home_21 .swiper-pagination{
    line-height: 12px;
    bottom: 5px;
}
.home_21 .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 50%;
    opacity: 1;
    position: relative;
}
.home_21 .swiper-pagination-bullet::before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #9A9A9A;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -3px;
}
.home_21 .swiper-pagination-bullet-active{
    border-color: #9A9A9A;
}
.home_21 .swiper-pagination-bullet-active::before{
    background-color: transparent;
}
.home_3{
    position: relative;
    height: 300px;
    background-size: 1920px auto;
    background-image: url(../images/img_02.jpg);
    padding-top: 90px;
    text-align: center;
}
.home_3 .txt{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 40px;
    color: #fff;
}
.home_3 a{
    display: block;
    width: 140px;
    height: 42px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    margin: 0 auto;
    line-height: 40px;
    color: #fff;
}
.home_4{
    padding: 60px 0;
    background-color: #F8F8F8;
}
.home_4 .item{
    width: 50%;
    height: 400px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.home_4 .item>p{
    width: 420px;
    text-align: center;
}
.home_4 .item .titEn{
    font-family: -webkit-pictograph;
    color: #1B1B1B;
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 16px;
    font-weight: bold;
}
.home_4 .item .tit{
    font-size: 36px;
    line-height: 36px;
    color: #1B1B1B;
    margin-bottom: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.home_4 .item a{
    width: 140px;
    height: 42px;
    border: 1px solid #C2C2C2;
    border-radius: 4px;   
    line-height: 40px;
    text-align: center;
    display: block;
    margin: 0 auto;
}
.home_4 .item a>img{
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}
.home_5{
    position: relative;
    height: 573px;
    background:url(../images/img_07.jpg) center no-repeat;
    background-size: 1920px 573px;
    padding-top: 60px;
}
.home_51{
    width: 580px;
    padding: 50px 40px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 2px;
    line-height:24px;
}
.home_51 .title{
    margin-bottom: 30px;
}
.home_51 .title .tit{
    margin-left: 0;
}
.home_51 .title .txt{
    color: #76D0D8;
    font-size: 24px;
    line-height: 24px;
    text-align: left;
}
.home_51 .text p{
    line-height: 24px;
    margin-bottom: 30px;
}
.home_51 .btn{
    width: 140px;
    height: 42px;
    margin-top: 28px;
    background: #1B1B1B;
    border: 1px solid #C2C2C2;
    border-radius: 4px;
    text-align: center;
    line-height: 42px;
    display: block;
    color: #fff;
}
.home_6{
    background-color: #FFF4E3;
    padding: 54px 0 60px 0;
}
.home_6 .title{
    margin-bottom: 30px;
}
.home_61{
    position: relative;
}
.home_61 .swiper-container{
    position: initial;
}
.home_61 .swiper-slide{
    background-color: #fff;
    padding: 10px;
    padding-bottom: 30px;
}
.home_61 .swiper-slide .mImg{
    position: relative;
    overflow: hidden;
}
.home_61 .swiper-slide .mImg img{
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}
.home_61 .swiper-slide .mImg a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 24px;
    color: #fff;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
}
.home_61 .swiper-slide .info .tit{
    font-size: 18px;
    line-height: 26px;
    height: 52px;
    color: #000000;
    margin:30px 0 20px 0;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.home_61 .swiper-slide .info .txt{
    font-size: 14px;
    line-height: 24px;
    height: 72px;
    color: #999999;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.home_61 .swiper-button-btn{
    background-size: 12px 22px;
    width: 12px;
    height: 22px;
    margin-top: -11px;
}
.home_61 .swiper-button-prev{
    background-image: url(../images/icon_04.png);
    left: -60px;
}
.home_61 .swiper-button-next{
    background-image: url(../images/icon_05.png);
    right: -60px;
}
/* footer */
footer .top{
    height: 290px;
    background: url(../images/img_06.jpg) no-repeat center;
    background-size: 1920px auto;
    position: relative;
}
footer .top form{
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    padding-top: 90px;
}
footer .top form .tit{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
}
footer .top form .fra{
    width: 380px;
    height: 54px;
    border-radius: 27px;
    border: 1px solid #333333;
    margin: 0 auto;
    padding-right: 68px;
    position: relative;
    background-color:#fff;
}
footer .top form .fra input{
    width: 100%;
    height: 52px;
    background-color: transparent;
    border: 0;
    padding: 0 15px;
}
footer .top form .fra button{
    position: absolute;
    top: 0;
    width: 68px;
    bottom: 0;
    border-radius: 0 27px 27px 0;
    right: -1px;
    border: 0;
    background-color: #333333;
    cursor: pointer;
}
footer .top form .fra button img{
    vertical-align: middle;
}
footer .link{
    text-align: center;
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #EEEEEE;
}
footer .link>div{
    display: inline-block;
}
footer .link a{
    float: left;
    position: relative;
    padding: 0 20px;
}
footer .link a::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 2px;
    border-radius: 50%;
    top: 29px;
    right: -1px;
    background-color: #333333;
}
footer .link a:last-child::before{
    display: none;
}
footer .bottom{
    color: #666666;
    line-height: 14px;
    padding: 24px 0;
    text-align: center;
}
footer .bottom .statement{
    display: inline-block;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #BBBBBB;
}
footer .bottom p:first-child{
    margin-bottom: 15px;
}
/* about */
.about>.content{
    padding: 60px 0;
}
.about .title{
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}
.about_1 .title{
    margin-bottom: 30px;
}
.about_1 .txt{
    text-indent: 28px;
    line-height: 36px;
    font-size: 16px;
}
.about_1 .item{
    text-align: center;
    width: 20%;
    padding: 0 7px;
    margin-top: 20px;
}
.about_1 .item .icon{
    width: 118px;
    height: 118px;
    border: 1px solid #999999;
    border-radius: 50%;
    margin: 0 auto;
    line-height: 116px;
    margin-bottom: 15px;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_1 .item .icon img{
    vertical-align: middle;
    filter: grayscale(1);
    transition: .5s;
    -webkit-transition: .5s;
}
.about_1 .item p{
    font-size: 16px;
    line-height: 16px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_1 .item:hover .icon{
    border-color: #54BDC6;
}
.about_1 .item:hover .icon img{
    filter: grayscale(0);
}
.about_1 .item:hover p{
    color: #54BDC6;
}
.about_2{
    margin-top: 50px;
}
.about_2 .title{
    margin-bottom: 30px;
}
.about_21{
    padding-bottom: 42px;
}
.about_21 .swiper-slide>div{
    border: 1px solid #e4e4e4;
}
.about_21 .swiper-slide>div img{
    display: block;
    width: 100%;
    height: 310px;
    object-fit: contain;
}
.about_21 .swiper-pagination{
    line-height: 12px;
    bottom: 0;
}
.about_21 .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #999999;
}
.about_21 .swiper-pagination-bullet-active{
    background-color: #54BDC6;
}
.about_3{
    margin-top: 50px;
}
.about_3 .title{
    position: relative;
    display: inline-block;
}
.about_3 .title::before{
    content: "";
    position: absolute;
    width: 46px;
    height: 1px;
    background-color: #999999;
    top: 50%;
    margin-top: -.5px;
    left: calc(100% + 15px);
}
.about_3 .swiper-container{
    margin-top: -30px;
}
.about_3 .swiper-slide>div{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.about_31{
    width: 525px;
    border: 1px solid #D4D4D4;
    padding: 40px 34px;
}
.about_31 .tit{
    font-size: 20px;
    color: #54BDC6;
    line-height: 20px;
    margin-bottom: 30px;
}
.about_31 .txt{
    line-height: 26px;
    color: #666666;
}
.about_32{
    width: 410px;
    position: relative;
}
.about_32 .bg{
    width: 100%;
    display: block;
}
.about_32 .icon{
    position: absolute;
    top: 38px;
    right: 378px;
    width: 191px;
}
.about_3 .swiper-pagination{
	padding-left:120px;
}
.about_3 .swiper-pagination-bullet{
    height: auto;
    width: auto;
    opacity: 1;
    background-color: transparent;
}
.about_3 .swiper-pagination-bullet span:first-child{
    color: #828282;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 28px;
    display: block;
    opacity: 0;
}
.about_3 .swiper-pagination-bullet span:last-child{
    display: block;
    width: 4px;
    height: 6px;
    background: #828282;
    position: relative;
    margin: 0 auto;
}
.about_3 .swiper-pagination-bullet span:last-child::before{
    width: 4px;
    height: 19px;
    background: #54BDC6;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    opacity: 0;
}
.about_3 .swiper-pagination-bullet-active span:first-child{
    opacity: 1;
}
.about_3 .swiper-pagination-bullet-active span:last-child::before{
    opacity: 1;
}
.about_4{
    margin-top: 50px;
}
.about_4 .title{
    margin-bottom: 20px;
}
.about_41{
    padding-bottom: 32px;
}
.about_41 .swiper-slide img{
    width: 100%;
    height: 196px;
    display: block;
    object-fit: contain;
}
.about_41 .swiper-pagination{
    bottom: 0;
    line-height: 12px;
}
.about_41 .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #9A9A9A;
}
.about_41 .swiper-pagination-bullet-active{
    background-color: #54BEC6;
}
.about_5{
    margin-top: 30px;
}
.about_5 .title{
    margin-bottom: 16px;
}
.about_5 .item{
    width: 254px;
    margin-right: 16px;
    border: 1px solid #DEDEDE;
    height: 160px;
    padding: 26px 34px 0 26px;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_5 .item:nth-of-type(4n){
    margin-right: 0;
}
.about_5 .item .times{
    font-size: 36px;
    color: #76D0D8;
    line-height: 36px;
    margin-bottom: 30px;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_5 .item .txt{
    color: #666666;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_5 .item:hover{
    border-color: #76D0D8;
    background-color: #76D0D8;
}
.about_5 .item:hover .times,
.about_5 .item:hover .txt{
    color: #fff;
}
/* bannerHd */
.bannerHd{
    position: relative;
}
.bannerHd>img{
    display: block;
    width: 100%;
}
.bannerHd::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(242, 228, 227, .2);
}
.bannerHd .info{
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 50%;
    margin-top: -34px;
    z-index: 9;
}
.bannerHd .info p:first-child{
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
  letter-spacing:6px;
}
.bannerHd .info p:last-child{
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
}
/* brand */
.brand{
    padding-bottom: 60px;
}
.brand .bannerHd::before{
    background-color: rgba(0, 48, 87, .6);
}
.brand .bannerHd .info{
    color: #fff;
}
.brand_1{
    margin:50px 0 40px 0;
}
.brand_11{
    position: relative;
    width: 148px;
    margin-right: 188px;
}
.brand_11 .bg{
    width: 100%;
    display: block;
}
.brand_11 .icon{
    position: absolute;
    left: 38px;
    top: 84px;
    width: 227px;
    height: 227px;
}
.brand_12{
    width: 337px;
    height: 455px;
}
.brand_13{
    position: relative;
    width: 264px;
    margin-top: 36px;
}
.brand_13 .bg{
    width: 100%;
    display: block;
}
.brand_13 .icon{
    position: absolute;
    left: -62px;
    top: 35px;
    width: 247px;
    height: 152px;
    z-index: -1;
}
.brand_2{
    text-indent: 28px;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 20px;
}
.brand_3{
    position: relative;
    margin-bottom: 30px;
}
.brand_3 .bg{
    width: 100%;
    display: block;
}
.brand_3 .info{
    position: absolute;
    text-align: center;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -49px;
}
.brand_3 .info p{
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 26px;
}
.brand_3 .info a{
    width: 140px;
    height: 42px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    display: block;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin: 0 auto;
}
.brand .about_5 .title{
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}
/* contact */
.contact .bannerHd::before{
    background-color: rgba(0, 0, 0, .2);
}
.contact .bannerHd .info{
    color: #fff;
}
.contact>.content{
    padding: 60px 0 80px 0;
}
.contact_1{
    border: 1px solid rgba(225, 225, 225, 1);
    padding: 40px 31px;
}
.contact_11{
    width: 380px;
    height: 250px;
}
.contact_12{
    width: 580px;
    padding-top: 15px;
}
.contact_12 .tit{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
}
.contact_12 .info,
.contact_12 .qrCode{
    width: 280px;
}
.contact_12 .rows{
    position: relative;
    padding-left: 42px;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 10px;
}
.contact_12 .rows .icon{
    position: absolute;
    left: 0;
    top: 6px;
    width: 35px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-image: url(../images/icon_21.png);
}
.contact_12 .rows .icon img{
    vertical-align: middle;
}
.contact_12 .rows .txt{
    color: #9A9A9A;
}
.contact_12 .qrCode .code{
    margin-left: 18px;
}
.contact_12 .qrCode p{
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 15px;
}
.contact_12 .qrCode div img{
    width: 120px;
    height: 120px;
    border-radius: 4px;
}
.contact_2{
    border: 1px solid #E1E0E0;
    padding: 50px 31px 26px 31px;
    margin-top: 55px;
    position: relative;
}
.contact_2 .title{
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    padding: 0 12px;
    left: 20px;
    top: -10px;
    background-color: #fff;
}
.contact_2 .fra{
    width: 300px;
    margin-right: 50px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(102, 102, 102, .12);
    padding-left: 86px;
}
.contact_2 .fra label{
    font-size: 16px;
    color: #666666;
    position: absolute;
    left: 0;
    top: 0;
}
.contact_2 .fra label span{
    color: #FF0000;
}
.contact_2 .fra:nth-of-type(3n){
    margin-right: 0;
}
.contact_2 .fra input{
    width: 100%;
    border: 0;
    font-size: 16px;
    font-family: f1;
    height: 22px;
    padding: 0;
}
.contact_2 .fra.txt{
    width: 100%;
    margin-top: 30px;
    margin-right: 0;
    padding-bottom: 0;
}
.contact_2 .fra textarea{
    width: 100%;
    border: 0;
    font-size: 16px;
    font-family: f1;
    display: block;
}
.contact_2 button{
    width: 150px;
    height: 42px;
    background: #1C1C1C;
    border: 0;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    margin-top: 24px;
    cursor: pointer;
}
/* news */
.news .content{
    width: 1200px;
}
.news_1{
    height: 560px;
    background: url(../images/img_30.jpg) no-repeat center;
    background-size: 1920px auto;
    padding: 50px 0;
}
.news_11{
    width: 340px;
    height: 460px;
    background-color: #FFF4E3;
    margin-left: 208px;
    position: relative;
}
.news_11 a{
    position: absolute;
    left: -208px;
    top: 60px;
    width: 480px;
}
.news_11 a img{
    width: 100%;
    display: block;
    height: 300px;
}
.news_12{
    width: 480px;
    margin: 50px 0 0 50px;
}
.news_12 .tit{
    font-size: 24px;
    color: #000000;
    line-height: 36px;
    margin-bottom: 60px;
    position: relative;
    display: block;
}
.news_12 .tit::before{
    content: "";
    position: absolute;
    bottom: -20px;
    width: 86px;
    height: 2px;
    background: #C68E30;
    left: -66px;
}
.news_12 .txt{
    line-height: 30px;
    color: #666666;
    font-size: 16px;
    margin-bottom: 50px;
}
.news_12 .times{
    font-size: 36px;
    line-height: 36px;
    color: #C58E30;
}
.news_2{
    padding: 20px 0;
}
.news_2 .rows{
    padding: 30px 0;
    border-bottom: 1px solid #EEEEEE;
    display: block;
}
.news_2 .rows .mImg{
    width: 290px;
    height: 181px;
    object-fit: contain;
}
.news_2 .rows .info{
    width: 710px;
    padding-left: 50px;
    padding-top: 24px;
    position: relative;
}
.news_2 .rows .info::before{
    content: "";
    position: absolute;
    width: 86px;
    height: 2px;
    background-color: #C68E30;
    left: -25px;
    top: 64px;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.news_2 .rows .info .tit{
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin-bottom: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    transition: .5s;
    -webkit-transition: .5s;
    position: relative;
}
.news_2 .rows .info .txt{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666666;
    line-height: 30px;
}
.news_2 .rows .times{
    padding-top: 8px;
    padding-left: 22px;
    border-left: 1px solid #DCDCDC;
    margin-top: 30px;
}
.news_2 .rows .times .d{
    font-size: 30px;
    color: #9A9A9A;
    line-height: 30px;
    margin-bottom: 34px;
}
.news_2 .rows .times .btn{
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    transition: .5s;
    -webkit-transition: .5s;
}
.news_2 .rows .times .btn img{
    vertical-align: middle;
}
.news_2 .rows .times .btn img:last-child{
    display: none;
}
.news_2 .rows:hover .info .tit{
    color: #C58E30;
}
.news_2 .rows:hover .info::before{
    opacity: 1;
}
.news_2 .rows:hover .times .btn{
    background-color: #C68E30;
}
.news_2 .rows:hover .times .btn img:first-child{
    display: none;
}
.news_2 .rows:hover .times .btn img:last-child{
    display: inline-block;
}
.news{
    padding-bottom: 40px;
}
.pages{
    text-align: center;
}
.pages>div{
    display: inline-block;
}
.pages a{
    float: left;
    line-height: 38px;
    height: 40px;
    border: 1px solid #DCDCDC;
    border-right: 0;
    padding: 0 15px;
    transition: .5s;
    -webkit-transition: .5s;
}
.pages a:last-child{
    border-right: 1px solid #DCDCDC;
}
.pages a.on,
.pages a:hover{
    background-color: #343434;
    color: #fff;
}
/* newsDetail */
.newsDetail{
    padding: 70px 0 30px 0;
}
.newsDetail .content{
    width: 1200px;
}
.newsDetail_1{
    width: 900px;
}
.newsDetail_11 .crumbs,
.newsDetail_11 .crumbs a{
    line-height: 14px;
    color: #9A9A9A;
    margin-bottom: 26px;
}
.newsDetail_11 .tit{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}
.newsDetail_11 .des{
    line-height: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #CCCCCC;
    color: #9A9A9A;
}
.newsDetail_11 .des span{
    float: left;
    margin-right: 40px;
}
.newsDetail_11 .txt{
    font-size: 16px;
    line-height: 36px;
    padding-top: 20px;
    text-indent: 28px;
}
.newsDetail_11 .txt img{
    display: block;
    margin: 10px auto;
    width: auto;
    max-width: 100%;
}
.nPages{
    line-height: 54px;
    height: 56px;
    border: 1px solid #CCCCCC;
    border-width: 1px 0 1px 0;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.nPages a{
    font-size: 16px;
}
.nPages a img{
    vertical-align: middle;
    filter: grayscale(1);
    margin: 0 5px;
}
.nPages a:hover:first-child,
.nPages a:hover:last-child{
    color: #C58E30;
}
.nPages a:hover:first-child img,
.nPages a:hover:last-child img{
    filter: grayscale(0);
}
.newsDetail_12{
    margin-top: 30px;
}
.newsDetail_12 .tit{
    font-size: 24px;
    color: #C58E30;
    line-height: 24px;
    border-left: 3px solid #C68E30;
    padding-left: 10px;
    margin-bottom: 20px;
}
.newsDetail_12 .swiper{
    position: relative;
    padding: 0 76px;
}
.newsDetail_12 .swiper-container{
    position: initial;
    text-align: center;
}
.newsDetail_12 .swiper-slide img{
    width: 100%;
    height: 244px;
    object-fit: contain;
}
.newsDetail_12 .swiper-slide .name{
    font-size: 20px;
    line-height: 20px;
    margin: 10px 0 7px 0;
}
.newsDetail_12 .swiper-slide .txt{
    color: #9A9A9A;
    line-height: 16px;
}
.newsDetail_12 .swiper-button-btn{
    width: 68px;
    height: 100%;
    background-color: #F9F9F9;
    background-size: 10px 20px;
    top: 0;
    margin-top: 0;
}
.newsDetail_12 .swiper-button-prev{
    left: 0;
    background-image: url(../images/icon_04.png);
}
.newsDetail_12 .swiper-button-next{
    right: 0;
    background-image: url(../images/icon_05.png);
}
.newsDetail_2{
    width: 208px;
}
.newsDetail_2 .tit{
    font-size: 24px;
    color: #C58E30;
    border-left: 3px solid #C68E30;
    padding-left: 10px;
    line-height: 24px;
    margin-bottom: 18px;
}
.newsDetail_2 .list a{
    display: block;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 12px;
}
.newsDetail_2 .list a img{
    display: block;
    width: 100%;
}
.newsDetail_2 .list a p{
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    padding: 12px 0;
}
.product .bannerHd{
    height: 300px;
}
.product .bannerHd>img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.product .content{
    width: 1200px;
    padding: 90px 0 50px 0;
}
.product .nav{
    position: absolute;
    width: 276px;
    height: 350px;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    top: 0;
    left: 50%;
    margin-left: -600px;
    padding: 0 18px;
    z-index: 9;
}
.product .nav .tit{
    font-size: 20px;
    color: #666666;
    line-height: 68px;
    text-align: center;
}
.product .nav a{
    display: block;
    padding: 22px 0;
    border-top: 1px solid #E7E7E7;
    position: relative;
    padding-left: 64px;
}
.product .nav a .icon{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 89px;
}
.product .nav a .icon img{
    width: auto;
    vertical-align: middle;
}
.product .nav a .name{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
.product .nav a .txt{
    line-height: 14px;
    color: #78D0D8;
}
.product .item{
    width: 284px;
    margin-right: 21px;
    margin-bottom: 40px;
}
.product .item:nth-of-type(4n){
    margin-right: 0;
}
.product .item .mImg{
    position: relative;
    overflow: hidden;
}
.product .item .mImg img{
    width: 100%;
    height: 284px;
    display: block;
    object-fit: cover;
}
.product .item .mImg .z{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: .5s;
}
.product .item .mImg .z a{
    width: 150px;
    height: 42px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    transition: .5s;
}
.product .item .mImg .z a:hover{
    border-color: #1C1C1C;
    background-color: #1C1C1C;
}
.product .item .info{
    background-color: #F8F8F8;
    text-align: center;
    padding: 24px 40px;
}
.product .item .info p:first-child{
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product .item .info p:last-child{
    color: #666666;
    line-height: 16px;
}
.product .item:hover .mImg .z{
    transform: none;
}
.productDetail .content{
    padding-top: 100px;
    width: 1064px;
}
.productDetail_11{
    width: 484px;
}
.productDetail_11 .swiper2{
    width: 84px;
    height: 366px;
}
.productDetail_11 .swiper1 {
    width: 366px;
    border: 1px solid #F0F0F0;
    margin-left: 34px;
}
.productDetail_11 .swiper2 .swiper-slide {
    border: 1px solid #F0F0F0;
}
.productDetail_11 .swiper2 .swiper-slide img{
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
}
.productDetail_11 .swiper2 .swiper-slide-thumb-active {
    border-color: #76D0D8;
}
.productDetail_11 .swiper1 .swiper-slide img{
    width: 100%;
    /*height: 364px;*/
    object-fit: cover;
    display: block;
}
.productDetail_12{
    width: 532px;
}
.productDetail_12 .tit{
    font-size: 24px;
    line-height: 24px;
    color: #000000;
    font-weight: bold;
}
.productDetail_12 .titEn{
    color: #666666;
    line-height: 14px;
    margin-top: 12px;
    margin-bottom: 30px;
}
.productDetail_12 .rows{
    padding: 16px 0;
    border-top: 1px solid #EBEBEB;
    position: relative;
    padding-left: 96px;
    line-height: 30px;
    font-size: 16px;
    min-height:63px;
}
.productDetail_12 .rows>span{
    position: absolute;
    left: 0;
    top: 16px;
    color: #9A9A9A;
}
.productDetail_2{
    margin-top: 70px;
}
.productDetail_21{
    width: 200px;
}
.productDetail_21 .hd{
    width: 200px;
    height: 54px;
    background: #1C1C1C;
    line-height: 54px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}
.productDetail_21 .list{
    background-color: #F6F6F6;
    padding: 20px;
}
.productDetail_21 .list a{
    display: block;
    margin-bottom: 12px;
}
.productDetail_21 .list a:last-child{
    margin-bottom: 0;
}
.productDetail_21 .list a img{
    width: 100%;
}
.productDetail_21 .list a p{
    font-size: 16px;
    line-height: 16px;
    margin-top: 7px;
}
.productDetail_22{
    width: 800px;
}
.productDetail_22 .hd{
    line-height: 53px;
    border-bottom: 1px solid #343434;
    font-size: 20px;
    margin-bottom: 30px;
}
.productDetail_22 .txt{
    line-height: 30px;
    font-size: 16px;
}
.productDetail_22 .txt img{max-width: 100%;width:100%;}
.build{
    padding: 110px 0;
    text-align: center;
}
.build .bg{
    width: auto;
}




.pages a.page-num-current{
    background-color: #343434;
    color: #fff;
}

/* 畅销 */
.txt1{
    font-size: 24px;
    color: #FEE69A;
    margin-bottom: 12px;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}


.txt2{
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}

.txt2 a.img1{
    width: 100%;
    height: 284px;
    display: block;
    object-fit: cover;
}
