@import url(animate.css);
@import url(../layui/css/layui.css);
@font-face {
    font-family: 'Poppins_SemiBold';
    src: url('../fonts/Poppins_SemiBold.eot');
    src: url('../fonts/Poppins_SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins_SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins_SemiBold.woff') format('woff'),
    url('../fonts/Poppins_SemiBold.ttf') format('truetype'),
    url('../fonts/OPoppins_SemiBold.svg#Poppins_SemiBold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff'),
    url('../fonts/Poppins-Regular.ttf') format('truetype'),
    url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*animation*/
@keyframes fadeInUps {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(0, 50px, 0);

        transform: translate3d(0, 50px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInLefts {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(50px, 0px, 0);

        transform: translate3d(50px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInRights {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(-150px, 0px, 0);

        transform: translate3d(-150px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
.fadeInUp{

    animation-name: fadeInUps;

    animation-delay: .1s;

}
.fadeInLeft{

    animation-name: fadeInLefts;

    animation-delay: .1s;

}
.fadeInRight{

    animation-name: fadeInRights;

    animation-delay: .1s;

}


*{
    padding:0px;
    margin:0px;
    box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari */
}
html{
    background: #fff;
}
body{
    color: #000;
    font-size:18px;
    overflow-x:hidden;
    /*font-family: 微軟正黑體,PingFangSC-Regular,"Microsoft YaHei",Helvetica,Arial,sans-serif;*/
    font-family: PingFangSC-Regular,"Microsoft YaHei",Helvetica,Arial,sans-serif;
    font-smoothing: antialiased;
    padding: 0;

}
input,textarea{
    font-family: PingFangSC-Regular,"Microsoft YaHei",Helvetica,Arial,sans-serif;
}
img{
    border:none;
}
.auto{
    max-width: 100%;
    height: auto;
    display: block;
}
a{
    color:#000;
    text-decoration:none;
}
a:hover{
    color:#029734;
    text-decoration:none;
}
ul{
    list-style:none;
}
.clear{
    width:100%;
    clear:both;
}
.yuanjiao5{
	-moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
}
.yuanjiao10{
	-moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;            /* W3C syntax */
}
.yuanjiao15{
	-moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
}
.yuanjiao25{
	-moz-border-radius: 25px;      /* Gecko browsers */
    -webkit-border-radius: 25px;   /* Webkit browsers */
    border-radius:25px;            /* W3C syntax */
}
.yuanjiao45{
	-moz-border-radius: 45px;      /* Gecko browsers */
    -webkit-border-radius: 45px;   /* Webkit browsers */
    border-radius:45px;            /* W3C syntax */
}
.yuanjiao{
	-moz-border-radius: 100%;      /* Gecko browsers */
    -webkit-border-radius: 100%;   /* Webkit browsers */
    border-radius:100%;            /* W3C syntax */
}
.mt30{
    margin-top: 30px;
}
.mt50{
    margin-top: 50px;
}
.mt70{
    margin-top: 70px;
}
.pages{
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

.pagination{
    font-family: 'Allerta Stencil', sans-serif;
    display: inline-flex;
    position: relative;
}
.pagination li{
    border: none!important;
    padding-bottom: 0!important;
    padding-top: 0!important;
}
.pagination li a,
.pagination li span{
    color: #fff;
    background: transparent;
    font-size: 21px;
    line-height: 35px;
    height: 38px;
    width: 38px;
    padding: 0;
    margin: 0 8px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease 0s;
    display: inline-block;
    *display: inline;
    *zoom:1;
}
.pagination li.active a,
.pagination li a:hover,
.pagination li.active a:hover,
.pagination li.active span,
.pagination li span:hover,
.pagination li.active span:hover{
    color: #fff;
    background-color: transparent;
}
.pagination li a:before,
.pagination li a:after,
.pagination li span:before,
.pagination li span:after{
    content:'';
    background: linear-gradient(225deg,#029734,#000);
    height: 100%;
    width: 100%;
    border: 3px solid #fff;
    box-shadow: 0 0 3px #666;
    border-radius: 50%;
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.pagination li.disabled span:before,
.pagination li.disabled span:after{
    background: #ddd;
}
.pagination li a:hover:before,
.pagination li.active a:before,
.pagination li span:hover:before,
.pagination li.active span:before{
    border-radius: 50% 0 50% 50%;
}
.pagination li a:after,
.pagination li span:after{
    background: #fff;
    height: 5px;
    width: 5px;
    border: none;
    box-shadow: 0 0 0 transparent;
    opacity: 0;
    transform: translateX(-50%) translateY(0) rotate(0);
    top: auto;
    bottom: 0;
}
.pagination li a:hover:after,
.pagination li.active a:after,
.pagination li span:hover:after,
.pagination li.active span:after{
    opacity: 1;
    bottom: 85%;
}
.pagination li:first-child a:before,
.pagination li:first-child span:before{
    transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.pagination li:first-child a:hover:before,
.pagination li:first-child span:hover:before{ border-radius: 50% 0 50% 50%; }
.pagination li:first-child a:after,
.pagination li:first-child span:after{
    transform: translateX(0) translateY(-50%);
    top: 50%;
    bottom:auto;
    left: auto;
    right: 0;
    }
.pagination li:first-child a:hover:after,
.pagination li:first-child span:hover:after{ right: 80%; }
.pagination li:last-child a:before,
.pagination li:last-child span:before{
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.pagination li:last-child a:hover:before,
.pagination li:last-child span:hover:before{ border-radius: 50% 0 50% 50%; }
.pagination li:last-child a:after,
.pagination li:last-child span:after{
    transform: translateX(0) translateY(-50%);
    bottom:auto;
    top: 50%;
    left: 0;
}
.pagination li:last-child a:hover:after,
.pagination li:last-child span:hover:after{ left: 80%; }

.zone{
    width: 100%;
    clear:both;
	min-width:1600px;
}
.main{
    width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.top_zone{
    background: #029734;
}
.top_zone .main{
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
}
.top_zone .top_left{
    display: flex;
    align-items: center;
}
.top_zone .top_left .item{
    display: flex;
    align-items: center;
    margin-left: 45px;
    font-size: 16px;
    color: #fff;
}
.top_zone .top_left .item .iconfont{
    width: 36px;
    height: 36px;
    background-color: #fff;
    overflow: hidden;
    line-height: 36px;
    text-align: center;
    margin-right: 13px;
    font-size: 20px;
    color: #029734;
}
.top_zone .top_left .item:first-child{
    margin-left: 0px;
}
.top_right{
    display: flex;
    align-items: center;
}
.top_zone .top_links{
    display: flex;
    align-items: center;
}
.top_zone .top_links .item{
    display: flex;
    align-items: center;
    margin-right: 40px;
}
.top_zone .top_links .item a{
    color: #fff;
    font-size: 16px;
}
.top_zone .top_links .item .iconfont{
    margin-right: 5px;
    font-size: 18px;
}
.top_zone .top_language{
    height: 40px;
    margin-left: 15px;
    position: relative;
}
.top_zone .top_language a{
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #029734;
    line-height: 40px;
    border: 1px solid #fff;
    transition: 0.6s;
}
.top_zone .top_language a.en{
    width: 100%;
    position: absolute;
    left:0;
    top:100%;
    z-index: 10;
    background-color: #029734;
    text-align: center;
    color: #fff;
    justify-content: center;
    display: none;
    border: 1px solid #029734;
}
.top_zone .top_language a.en:hover{
    background-color: #fff;
    color: #029734;
}
.top_zone .top_language:hover a.en{
    display: block;
}
.top_zone .top_language a.cn{
    background-color: #fff;
}
.top_zone .top_language .icon-yuyan{
    margin-right: 10px;
}
.top_zone .top_language .icon-shixiangxiajiantou-{
    margin-left: 10px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img{
    max-height: 80px;
    width: auto;
}
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.nav{
    display: flex;
    align-items: center;
}
.nav .nLi{
    position:relative; 
    z-index: 999;
}
.nav .nLi h3 a{ 
    display:block; 
    padding:0 35px; 
    font-size:20px;
    font-weight:normal;
    height: 105px;
    line-height: 105px;
}
.nav .sub{ 
    display:none; 
    white-space: nowrap; 
	left:50%;
    transform: translateX(-50%); 
	top:100%;  
	position:absolute; 
	background: #f0f0f0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 999;
    min-width: 100%;
    box-shadow: 2px 2px 10px #ddd inset;
}
.nav .sub li{
    zoom:1; 
}
.nav .sub a{ 
    display:block; 
    padding:0 10px; 
    line-height: 45px;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    transition: 0.6s;
    text-align: center;
}
.nav .sub li:last-child a{
    border-bottom: none;
}
.nav .sub a:hover{ 
    background:#029734; 
    color:#fff;  
}
.nav .on h3 a{ 
    color:#029734;   
}
.search{
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
    background: rgba(244, 244, 244, 1);
    border: 1px solid rgba(2, 151, 52, 0.05);
    transition: 0.6s;
    width: 305px;
}
.search.active{
    border-color: #029734;
    background-color: #ffffcc;
}
.search .stext{
    flex-grow: 1;
    height: 40px;
    line-height: 40px;
    padding-right: 15px;
    background: none;
    border: none;
    outline: none;
}

.search .sbtn{
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
}
.search .sbtn .iconfont{
    font-size: 20px;
    color: #029734;
}

.common-title{
    text-align: center;
}
.common-title .en-title{
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    text-transform: uppercase;
}
.common-title .cn-title{
    font-weight: normal;
    font-size: 48px;
    margin-top: 10px;
    display: block;
}
.common-title .intro{
    display: block;
    margin-top: 15px;
    font-size: 18px;
    color: #333;
}
.core-list{
    margin-top: 65px;
    display: flex;
    justify-content: center;
}
.core-list .item{
    width: 270px;
    padding-top: 35px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(235, 235, 235, 1);
    transition: 0.6s;
    margin-left: 8px;
    margin-right: 8px;
}
.core-list .item .icon{
    width: 60px;
    height: 60px;
    background: rgba(34, 48, 67, 0.08);
    border: 1px solid rgba(44, 62, 86, 1);
    transition: 0.6s;
    position: relative;
}
.core-list .item .icon img{
    width: 30px;
    height: 30px;
    position: absolute;
    left:50%;
    margin-left: -15px;
    top:50%;
    margin-top: -15px;
}
.core-list .item .icon .icon-color{
    display: none;
}
.core-list .item h3{
    font-size: 24px;
    font-weight: normal;
    margin-top: 30px;
}
.core-list .item .intro{
    display: block;
    margin-top: 20px;
    color: #666;
    font-size: 16px;
}
.core-list .item:hover{
    border-color: #029734;
}
.core-list .item:hover .icon{
    background: rgba(2, 151, 52, 0.1);
    border: 1px solid rgba(2, 151, 52, 1);
}
.core-list .item:hover .icon-grey{
    display: none;
}
.core-list .item:hover .icon-color{
    display: block;
}
.core-list .item:hover h3{
    color: #029734;
}
.core-txt{
    margin-top: 45px;
    text-align: center;
    font-size: 14px;
    color: rgba(44, 62, 86, 1);
}
.zone1{
    background: url(../images/zone1.jpg) center center no-repeat;
}
.zone1 .main{
    height: 315px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zone1-left{
    max-width: 600px;
    color: #fff;
}
.zone1-left .title{
    font-size: 32px;
}
.zone1-left .txt{
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.7;
}
.zone1-right dl{
    display: flex;
    align-items: center;
}
.zone1-right dl dt .iconfont{
    width: 57px;
    height: 57px;
    display: block;
    background-color: #029734;
    line-height: 57px;
    text-align: center;
    font-size: 30px;
    color: #fff;
}
.zone1-right dl dd{
    margin-left: 15px;
    color: #fff;
}
.zone1-right dl dd .title{
    font-size: 20px;
}
.zone1-right dl dd .number{
    font-size: 50px;
    font-family: 'Poppins_SemiBold';
}
.zone1-right .custom-btn{
    width: 260px;
    height: 60px;
    transition: 0.6s;
    margin-top: 40px;
    background-color: #029734;
    display: block;
    position:relative;
    overflow: hidden;
}
.zone1-right .custom-btn .inner{
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    left:0;
    top:0;
    z-index: 2;
    color: #fff;
}
.zone1-right .custom-btn .iconfont{
    margin-left: 20px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #fff;
    color:#029734 ;
    font-size: 14px;
}
.zone1-right .custom-btn:after{
    content: "";
    position:absolute;
    left:0;
    top:0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: all .3s;
    z-index: 1;
}
.zone1-right .custom-btn:hover .inner{
    color: #029734;
}
.zone1-right .custom-btn:hover .inner .iconfont{
    background-color: #029734;
    color: #fff;
}
.zone1-right .custom-btn:hover:after{
    width: 100%;
}
/* 首页产品 */
.slideBox1{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}
.slideBox1 .hd{
    width: 335px;
    flex-shrink: 0;
    margin-right: 35px;
}
.slideBox1 .hd .title{
    height: 175px;
    background:url(../images/slidebox1-title.png) center center no-repeat #029734;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.slideBox1 .hd .title .cn-title{
    font-size: 40px;
    
}
.slideBox1 .hd .title .en-title{
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.5;
}
.slideBox1 .hd ul{
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(153, 153, 153, 0.5);
    padding-left: 15px;
    padding-right: 15px;
    border-top: none;
    overflow: hidden;
    min-height: 880px;
    margin-top: -10px;
    padding-top: 10px;
}
.slideBox1 .hd ul li{
    margin-top: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: 0.6s;
}
.slideBox1 .hd ul li:first-child{
    margin-top: 30px;
}
.slideBox1 .hd ul li a{
    height: 60px;
    display: block;
    text-align: center;
    line-height: 60px;
    transition: 0.6s;
    font-size: 20px;
}
.slideBox1 .hd ul li:hover{
    background-color: #029734;
}
.slideBox1 .hd ul li:hover a{
    color: #fff;
}
.slideBox1 .bd{
    flex-grow: 1;
}
.slideBox1 .bd ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.slideBox1 .bd ul li{
    text-align: center;
}
.slideBox1 .bd ul li .pic{
    border: 1px solid rgba(235, 235, 235, 1);
    overflow: hidden;
    display: block;
}
.slideBox1 .bd ul li .pic img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
}
.slideBox1 .bd ul li:hover .pic{
    border-color: #029734;
}
.slideBox1 .bd ul li:hover .pic img{
    transform: scale(1.1);
}
.slideBox1 .bd ul li h3{
    font-weight: normal;
    font-size: 18px;
    margin-top: 25px;
}
.hezuo-zone{
    position: relative;
    padding-top: 70px;
}
.hezuo-zone::before{
    content: "";
    width: 100%;
    height: 300px;
    position: absolute;
    left:0;
    top:0;
    background-color: #fcfcfc;
    z-index: 0;
}
.slideBox2{
    margin-top: 60px;
    position: relative;
    padding-bottom: 65px;
}
.slideBox2 .bd{

}
.slideBox2 .bd ul{
    width: 100%;
    height: 740px;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: #fff;
}
.slideBox2 .bd ul:after{
    content: "";
    width: 100%;
    height: 446px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(34, 48, 67, 0) 0%, rgba(34, 48, 67, 1) 100%);
    position:absolute;
    left:0;
    bottom:65px;
    z-index: 1;
}
.slideBox2 .bd ul .box{
    width: 1240px;
    position: relative;
    z-index: 10;
    margin: 0px auto 125px auto;
}
.slideBox2 .bd ul .title{
    font-size: 32px;
}
.slideBox2 .bd ul .txt{
    font-size: 20px;
    line-height: 2;
    margin-top: 20px;
}
.slideBox2 .hd{
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    z-index: 10;
    left:50%;
    transform: translateX(-50%);
    bottom:0;
}
.slideBox2 .hd ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slideBox2 .hd ul li{
    width: 440px;
    height: 130px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 25px  rgba(0, 33, 91, 0.1);
    transition: 0.6s;
    position: relative;
    overflow: hidden;
}
.slideBox2 .hd ul li dl{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 10;
}
.slideBox2 .hd ul li dl dt{
    width: 70px;
    height: 70px;
    background: rgba(44, 62, 86, 1);
    text-align: center;
    flex-shrink: 0;
    margin-right: 20px;
    line-height: 70px;
    font-size: 40px;
    color: #fff;
    transition: 0.6s;
}
.slideBox2 .hd ul li dl dd{
    display: flex;
    flex-direction: column;
}
.slideBox2 .hd ul li dl dd .title{
    font-weight: normal;
    font-size: 22px;
    transition: 0.6s;
}
.slideBox2 .hd ul li dl dd .txt{
    color: #333;
    margin-top: 15px;
    transition: 0.6s;
    font-size: 17px;
}
.slideBox2 .hd ul li::after{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    transition: 0.6s;
    opacity: 0;
    background-color: #029734;
}
.slideBox2 .hd ul li:hover:after,
.slideBox2 .hd ul li.on:after{
    width: 100%;
    opacity: 1;
}
.slideBox2 .hd ul li:hover dl dd .title,
.slideBox2 .hd ul li:hover dl dd .txt,
.slideBox2 .hd ul li.on dl dd .title,
.slideBox2 .hd ul li.on dl dd .txt{
    color: #fff;
}
.slideBox2 .hd ul li:hover dl dt,
.slideBox2 .hd ul li.on dl dt{
    background-color: #fff;
    color: #029734;
}
.yingyong{
    margin-top: 90px;
    padding-bottom: 150px;
    width: 100%;
    max-width: 1920px;
    min-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.yingyong .swiper-slide .inner{
    overflow: hidden;
    -moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;            /* W3C syntax */
    text-align: center;
    position: relative;
}
.yingyong .swiper-slide{
    transition: 0.6s;
    transform: translateY(150px);
    width:20%;
}
.yingyong .swiper-slide .inner a{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left:0;
    top:0;
    z-index: 99;
}
.yingyong .swiper-slide .inner img{
    margin: 0 -100%; 
    transition: 0.6s;
    transform: scale(1.05);
    -moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;            /* W3C syntax */
}
.yingyong .swiper-slide-prev .inner img{
    transform: scale(1)!important;
}
.yingyong .swiper-slide .inner .zhezhao{
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.6s;
    z-index: 1;
}
.yingyong .swiper-slide .inner h4{
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    position:absolute;
    z-index: 2;
    right:30px;
    bottom:30px;
}
.yingyong .swiper-slide-prev{
      width:40%;
      transform: translateY(0);
      padding-left: 30px;
      padding-right: 30px;
}
.yingyong .swiper-slide-prev .zhezhao{
    display: none!important;
}
.yingyong .swiper-slide-prev h4{
    font-size: 36px!important;
    color: #000!important;
    position: static!important;
    margin-top: 45px!important;
    text-align: left;
}
.yingyong-prev,
.yingyong-next{
    width: 126px;
    height: 96px;
    position: absolute;
    z-index: 100;
    cursor: pointer;
    outline: none;
    
}
.yingyong-prev{
    top:565px;
    left:47.5%;
    background: url(../images/arr-left.png) center center no-repeat;
}
.yingyong-next{
    top:535px;
    left:52%;
    background: url(../images/arr-right.png) center center no-repeat;
    z-index: 101;
}

.about-zone{
    margin-top: 120px;
    background: url(../images/about-zone.jpg) top center no-repeat;
    padding: 80px 0 55px 0;
}
.about-box{
    padding: 85px 0 95px 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.about-left{
    flex-grow: 1;
    padding-right: 140px;
}
.about-left .title{
    font-size: 30px;
}
.about-left .txt{
    margin-top: 30px;
    line-height: 2;
    color: #333;
}
.about-right{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.about-pic{
    max-width: 100%;
    display: block;
    float:right;
}
.about-list{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.about-list .item{
    width: 370px;
    padding: 45px 35px 65px 35px;
    background-color: #fff;
    overflow: hidden;
    transition: 0.6s;
    margin-top: -55px;
    box-shadow: 0px 0px 10px  rgba(22, 22, 22, 0.1);
}
.about-list .item .shang{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-list .item .icon{
    width: 60px;
    height: 60px;
    position: relative;
}
.about-list .item .icon-white{
    display: none;
}
.about-list .item .number{
    font-size: 102px;
    color: rgba(2, 151, 52, 1);
    font-family: 'Poppins-Regular';
    opacity: 0.04;
}
.about-list .item .line{
    width: 88.59px;
    height: 1.03px;
    opacity: 1;
    border-radius: 10px;
    background: #000;
    margin-top: 44px;
}
.about-list .item .title{
    font-size: 22px;
    margin-top: 45px;
}
.about-list .item .txt{
    line-height: 2;
    color: #444;
    font-size: 15px;
    margin-top: 25px;
}
.about-list .item:hover{
    background-color: #029734;
    transform: translateY(-25px);
    box-shadow: 0px 0px 10px  rgba(2, 151, 52, 1);
}
.about-list .item:hover .number{
    color: #fff;
}
.about-list .item:hover .icon-black{
    display: none;
}
.about-list .item:hover .icon-white{
    display: block;
}
.about-list .item:hover .line{
    background: #fff;
}
.about-list .item:hover .title,
.about-list .item:hover .txt{
    color: #fff;
}

.yingxiao-box{
    position: relative;
    height: 572px;
    margin-top: 85px;
}
.yingxiao-pic{
    position: absolute;
    right:0;
    top:0;
    z-index: -1;
}
.yingxiao-list .item{
    width: 237px;
    height: 204px;
    background: rgba(245, 247, 250, 1);
    float: left;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.yingxiao-list .item .number{
    font-size: 48px;
    font-family: 'Poppins_SemiBold';
    margin-top: 10px;
}
.yingxiao-list .item .txt{
    font-size: 16px;
    color: #666;
}
.yingxiao-list .item:first-child{
    margin-bottom: 30px;
    margin-top: 145px;
}
.yingxiao-list .item:last-child{
    margin-left: 15px;
}
.news-zone{
    background-color: #f4f4f4;
    margin-top: 135px;
    padding: 85px 0 85px 0;
}
.news-list{
    margin-top: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-list .item{
    background-color: #fff;
    -moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
    transition: 0.6s;
}
.news-list .item a{
    display: flex;
}
.news-list .item a h3{
    font-weight: normal;
    font-size: 24px;
    display: block;
}
.news-list .item a .brief{
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
.news-list .item a .detail{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #029734;
}
.news-list .item a .detail .iconfont{
    margin-left: 15px;
}
.news-list .item .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
    -moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
}
.news-list .item:hover{
    box-shadow: 0px 0px 10px #ddd;
}
.news-list .item:hover .pic img{
    transform: scale(1.1);
}
.news-list .item:first-child,
.news-list .item:last-child{
    width: 1038px;
}
.news-list .item:first-child a,
.news-list .item:last-child a{
    padding:30px 40px;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
.news-list .item:first-child .info,
.news-list .item:last-child .info{
    width: 460px;
}
.news-list .item:first-child .pic,
.news-list .item:last-child .pic{
    width: 460px;
    height: 280px;
    -moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
    overflow: hidden;
}
.news-list .item:first-child h3,
.news-list .item:last-child h3{
    line-height: 1.7;
}
.news-list .item:first-child .brief,
.news-list .item:last-child .brief{
    margin-top: 25px;
    margin-bottom: 30px;
    line-height: 2;
    display: -webkit-box; /* 必须设置为弹性盒模型 */
    -webkit-box-orient: vertical; /* 垂直排列子元素 */
    -webkit-line-clamp: 3; /* 限制显示的最大行数 */
    overflow: hidden; /* 隐藏超出部分 */
}


.news-list .item:nth-child(2),
.news-list .item:nth-child(3){
    width: 536px;
}


.news-list .item:nth-child(2) a,
.news-list .item:nth-child(3) a{
    padding: 30px 35px;
    flex-direction: column;
}
.news-list .item:nth-child(2) .brief,
.news-list .item:nth-child(3) .brief{
    display: none;
}
.news-list .item:nth-child(2) h3,
.news-list .item:nth-child(3) h3{
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-list .item:nth-child(2) .pic,
.news-list .item:nth-child(3) .pic{
    width: 463px;
    height: 146px;
    -moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
    overflow: hidden;
}
.news-list .item:nth-child(3),
.news-list .item:nth-child(4){
    margin-top: 30px;
}

.liucheng-list{
    margin-top: 70px;
    display: flex;
    position:relative;
    justify-content: space-between;
}
.liucheng-list:after{
    content: "";
    width: 100%;
    height: 1px;
    border-top: 1px dashed #029734;
    position: absolute;
    left:0;
    top:108px;
}
.liucheng-list .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position:relative;
}
.liucheng-list .item:after{
    content: "";
    width: 7px;
    height: 7px;
    background-color: #029734;
    -moz-border-radius: 100%;      /* Gecko browsers */
    -webkit-border-radius: 100%;   /* Webkit browsers */
    border-radius:100%;            /* W3C syntax */
    position: absolute;
    left:50%;
    margin-left: -3.5px;
    top:105px;
    z-index: 10;
}
.liucheng-list h4{
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 18px;
    margin-top: 40px;
}
.contact-zone{
    margin-top: 95px;
    background: url(../images/contact-zone.jpg) center center no-repeat;
    background-size: cover;
    padding: 75px 0 75px 0;
}
.contact-zone .main{
    width: 1400px;
    display: flex;
    justify-content: space-between;
}
.contact-left{
    width: 550px;
}
.contact-right{
    width: 745px;
    background: rgba(2, 151, 52, 0.4);
    overflow: hidden;
    padding: 40px 55px;
}
.contact-left .title{
    color: #fff;
    font-size: 36px;
    margin-top: 70px;
}
.contact-left .txt{
    margin-top: 15px;
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
}
.contact-left .item{
    display: flex;
    align-items: center;
    margin-top: 35px;
}
.contact-left .item dt{
    width: 52px;
    height: 52px;
    background-color: #fff;
    line-height: 52px;
    text-align: center;
    flex-shrink: 0;
    
}
.contact-left .item dt .iconfont{
    font-size: 26px;
    color: #029734;
}
.contact-left .item dt .icon-dianhua2{
    font-size: 30px;
}
.contact-left .item dd{
    flex-grow: 1;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
}
.contact-left .item dd .shang{
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}
.contact-left .item dd .xia,
.contact-left .item dd .xia a{
    font-size: 26px;
    color: #029734;
}
.contact-left .zixun-btn{
    margin-top: 85px;
    width: 250px;
    height: 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-left .zixun-btn a{
    width: 100%;
    height: 100%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left:0;
    top:0;
    z-index: 10;
    text-align: center;
    font-size: 20px;
}
.contact-left .zixun-btn a .iconfont{
    font-size: 30px;
    margin-right: 10px;
    color: #029734;
}
.contact-left .zixun-btn:after{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    z-index: 1;
    transition: 0.6s;
    background-color: #029734;
}
.contact-left .zixun-btn:hover:after{
    width: 100%;
}
.contact-left .zixun-btn:hover a,
.contact-left .zixun-btn:hover a .iconfont{
    color: #fff;
}
.contact-right .title{
    font-size: 36px;
    color: #fff;
}
.contact-right .txt{
    margin-top: 5px;
    font-size: 18px;
    color: rgba(153, 153, 153, 1);
}
.feedback{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
.feedback .item{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.feedback .item-half{
    width: 300px;
}
.feedback .item-full{
    width: 100%;
}
.feedback .item label{
    font-size: 14px;
    color: rgba(244, 244, 244, 1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.feedback .item label em{
    color: #ff0000;
}
.feedback .itext{
    width: 100%;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 55px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    outline: none;
    border: none;
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    font-size: 14px;
}

.feedback .icontent{
    width: 100%;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 35px;
    padding: 10px;
    color: #fff;
    outline: none;
    border: none;
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    font-size: 15px;
}
.feedback .ibtn{
    width: 200px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 48px;
    text-align: center;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transition: 0.6s;
}
.feedback .ibtn:hover{
    background-color: #fff;
    color: #029734;
}
.footer-zone,
.footer-zone a,
.copy-zone,
.copy-zone a{
    color: #fff;
    transition: 0.6s;
}
.footer-zone{
    background: rgba(9, 9, 9, 1);
    padding-top: 70px;
    padding-bottom: 70px;
}
.footer{
    display: flex;
    justify-content: space-between;
}
.footer .footer-left{
    width: 365px;
}
.footer .footer-nav{
    display: flex;
    justify-content: space-between;
    width: 1010px;
}
.footer .footer-contact{
    margin-top: 25px;
}
.footer .footer-contact .item{
    display: flex;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.8;
    align-items: center;
}
.footer .footer-contact .item img{
    margin-right: 20px;
}
.footer .footer-contact .item:last-child{
    align-items: flex-start;
}
.footer .footer-contact .item:last-child img{
    margin-top: 5px;
}
.footer .footer-follow{
    margin-top: 35px;
}
.footer .footer-follow .title{
    font-size: 16px;
    margin-bottom: 15px;
}
.footer .footer-follow a{
    width: 38px;
    height: 38px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: left;
    margin-right: 25px;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.6s;
    text-align: center;
    line-height: 38px;
}
.footer .footer-follow a:hover{
    background-color: #029734;
}
.footer .footer-follow a img{
    display: block;
    margin: auto;
}
.footer .footer-nav dl{
    display: flex;
    flex-direction: column;
}
.footer .footer-nav dl dt a{
    font-size: 22px;
}
.footer .footer-nav dl .line{
    width: 29px;
    height: 2px;
    opacity: 1;
    background: rgba(2, 151, 52, 1);
    display: block;
    margin-top: 20px;
}
.footer .footer-nav dl dd{
    margin-top: 25px;
}
.copy-zone{
    background-color: #029734;
    padding-top: 15px;
    padding-bottom: 15px;
}
.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.footer .footer-nav a:hover{
    color: #029734;
}
.page-banner-zone{
    height: 560px;
    background-position: center center;
    background-repeat: no-repeat;
}
.zlm-zone{
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}
.zlm{
    display: flex;
    justify-content: center;
    align-items: center;
}
.zlm li{
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 50px;
    min-width: 150px;
    background-color: #fff;
}
.zlm li a{
    display: block;
    width: 100%;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    transition: 0.6s;
    text-align: center;
    position: absolute;
    left:0;
    top:0;
    z-index: 10;
}
.zlm li:after{
    content: "";
    width: 0;
    height: 100%;
    background-color: #029734;
    transition: 0.6s;
    z-index: 1;
    position: absolute;
    left:0;
    top:0;
    display: block;
}
.zlm li:hover,
.zlm li.on{
    border-color: #029734;
}
.zlm li:hover:after,
.zlm li.on:after{
    width: 100%;
}
.zlm li:hover a,
.zlm li.on a{
    color: #fff;
}
.page-about-box{
    position:relative;
    margin-top: 50px;
}
.page-about-box .page-about-pic{
    width: 1000px;
    overflow: hidden;
}
.page-about-box .page-about-pic img{
    float:right;
    margin-right: -200px;
}
.page-about-txt{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 800px;
    background: #fff;
    padding: 40px 50px;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    z-index: 10;
}
.page-about-txt .title{
    font-size: 32px;
    font-weight: bold;
    padding-left: 30px;
    border-left: 2px solid #029734;
}
.page-about-txt .txt{
    line-height: 2;
    margin-top: 30px;
    color: #333;
}
.licheng-zone{
    background-color: #f4f4f4;
    padding-top: 70px;
    padding-bottom: 70px;
}
.lichengSwiper{
    margin-top: 50px;
    position: relative;
    padding-bottom: 30px;
}
.lichengSwiper:after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position:absolute;
    left:0;
    bottom:15px;
}
.lichengSwiper .swiper-slide{
    text-align: center;
    overflow: visible;
}
.lichengSwiper .swiper-slide .number{
    font-size: 50px;
    display: block;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    color: #666666;
    font-family: 'Poppins_SemiBold';
}
.lichengSwiper .swiper-slide .circle{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ddd;
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -9px;
    z-index:10;
}
.lichengSwiper .swiper-slide-thumb-active .number{
    color: #029734;
}
.lichengSwiper .swiper-slide-thumb-active .circle{
    background-color: #029734;
}
.lichengSwiper2{
    margin-top: 50px;
    
}
.lichengSwiper2 .swiper-slide{
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    align-items: center;
}
.lichengSwiper2 .swiper-slide .pic{
    width: 500px;
    flex-shrink: 0;
    overflow: hidden;
    -moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
}
.lichengSwiper2 .swiper-slide .pic img{
    transition: 0.6s;
    max-width: 100%;
    height: auto;
    display: block;
}
.lichengSwiper2 .swiper-slide:hover img{
    transform: scale(1.1);
}
.lichengSwiper2 .swiper-slide .info{
    flex-grow: 1;
    padding-left: 30px;
}
.lichengSwiper2 .swiper-slide .info .title{
    font-size: 30px;
}
.lichengSwiper2 .swiper-slide .info .txt{
    color: #333;
    margin-top: 30px;
    line-height: 2;
}

.team_list{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.team_list .item{
    width:32%;
}
.team_list .item .touxiang{
    position: relative;
    z-index: 1;

}
.team_list .item .touxiang img{
    width:150px;
    border: 5px solid #ddd!important;
    display:block;
    margin-left: auto;
    margin-right: auto;  
    box-shadow: 0px 0px 5px 5px #eee;
}
.team_list .item .info_box{
    background: #fff;
    box-shadow: 0px 0px 5px 5px #eee;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    margin-top: -75px;
}
.team_list .item .info_box .ewm{
    width:150px;
    flex-shrink: 0;
}
.team_list .item .info_box .ewm img{
    max-width: 100%;
    height: auto;
    display: block;
}
.team_list .item .info_box .info{
    flex-grow: 1;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.team_list .item .info_box .info h3{
    font-size: 18px;
    margin-bottom: 10px;
}
.team_list .item .info_box .info .txt{
    line-height: 40px;
    color: #666;
}
.zizhi-zone{
    background-color: #f4f4f4;
    padding-top: 70px;
    padding-bottom: 70px;
}
.zizhi-swiper{
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 15px;
}
.zizhi-swiper .swiper-slide {
    transition: 300ms;
    transform: scale(0.8);
}
.zizhi-swiper .swiper-slide-active,.swiper-slide-duplicate-active{
    transform: scale(1);
}
.zizhi-swiper .swiper-slide img{
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0px 0px 10px #aaa;
}
.page-main{
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.page-left{
    width: 335px;
    flex-shrink: 0;
    margin-right: 35px;
}
.page-left .title{
    height: 175px;
    background:url(../images/slidebox1-title.png) center center no-repeat #029734;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.page-left .title .cn-title{
    font-size: 40px;
    
}
.page-left .title .en-title{
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.5;
}
.page-left ul{
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(153, 153, 153, 0.5);
    padding-left: 15px;
    padding-right: 15px;
    border-top: none;
    overflow: hidden;
    margin-top: -10px;
    padding-top: 10px;
    padding-bottom: 30px;
}
.page-left ul li{
    margin-top: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: 0.6s;
}
.page-left li:first-child{
    margin-top: 30px;
}
.page-left li a{
    height: 60px;
    display: block;
    text-align: center;
    line-height: 60px;
    transition: 0.6s;
    font-size: 20px;
}
.page-left li:hover,
.page-left li.on{
    background-color: #029734;
}
.page-left li:hover a,
.page-left li.on a{
    color: #fff;
}
.page-right{
    flex-grow: 1;
}
.product-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.product-list .item{
    text-align: center;
}
.product-list .item .pic{
    border: 1px solid rgba(235, 235, 235, 1);
    overflow: hidden;
    display: block;
}
.product-list .item .pic img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
}
.product-list .item:hover .pic{
    border-color: #029734;
}
.product-list .item:hover .pic img{
    transform: scale(1.1);
}
.product-list .item h3{
    font-weight: normal;
    font-size: 18px;
    margin-top: 25px;
}
.product-detail{
    display: flex;
    justify-content: space-between;
}
.pro_left{
    width: 601px;
    flex: 1;
    margin-right: 40px;
}
.pro_right{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pro_right h2{
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 24px;
}
.pro_right .pro_info{
    line-height: 1.7;
    margin-top: 20px;
    color: #333;
}
.product-btns{
    margin-top: auto;
    display: flex;
    align-items: center;
}
.product-btns a{
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    color: #fff;
    transition: 0.6s;
    font-size: 18px;
    border: 2px solid transparent;
}
.product-btns a:first-child{
    margin-right: 20px;
    background-color: #029734;
}
.product-btns a .iconfont{
    margin-right: 10px;
    font-size: 20px;
}
.product-btns a:last-child{
    background-color: #555;
}
.product-btns a:first-child .iconfont{
    font-size: 24px;
}
.product-btns a:hover{
    background-color: #fff;
    color: #029734;
    border-color: #029734;
}
.product-detail-title{
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
}
.product-detail-title h4{
    padding-left: 20px;
    padding-right: 20px;
    background-color: #029734;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.page-right .content{
    font-size: 16px;
    line-height: 2;
}
.content img{
    max-width: 100%;
    height: auto;
}

.quote-form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
.quote-form .item{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.quote-form .item-half{
    width: 48%;
}
.quote-form .item-full{
    width: 100%;
}
.quote-form .item label{
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.quote-form .item label em{
    color: #ff0000;
}
.quote-form .itext{
    width: 100%;
    height: 55px;
    background: none;
    line-height: 55px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    border: 1px solid #eee;
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    font-size: 16px;
}

.quote-form .icontent{
    width: 100%;
    height: 130px;
    background: none;
    line-height: 35px;
    padding: 10px;
    outline: none;
    border: 1px solid #eee;
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    font-size: 15px;
}
.quote-form .ibtn{
    width: 200px;
    height: 45px;
    background: none;
    line-height: 45px;
    text-align: center;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transition: 0.6s;
    color: #029734;
    border:2px solid #029734;
}
.quote-form .ibtn:hover{
    background-color: #029734;
    color: #fff;
    border-color: #029734;
}

.xgcp{
    overflow: hidden;
    width: 1230px;
    position: relative;
    margin-top: 30px;
    
}
.xgcp .swiper-slide{
    text-align: center;
}
.xgcp .swiper-slide .pic{
    border: 1px solid rgba(235, 235, 235, 1);
    overflow: hidden;
    display: block;
}
.xgcp .swiper-slide .pic img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
}
.xgcp .swiper-slide:hover .pic{
    border-color: #029734;
}
.xgcp .swiper-slide:hover .pic img{
    transform: scale(1.1);
}
.xgcp .swiper-slide h3{
    font-weight: normal;
    font-size: 18px;
    margin-top: 25px;
}
.xgcp .swiper-pagination{
    margin-top: 30px;
    position: static;
}
.swiper-pagination-bullet-active{
    background-color: #029734;
}


.page-news-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.page-news-list .item{
    background-color: #f9f9f9;
    transition: 0.7s;
    overflow: hidden;
}
.page-news-list .item .pic{
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: block;
}
.page-news-list .item .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.page-news-list .item:hover .pic img{
    transform: scale(1.1);
}
.page-news-list .info{
    padding: 30px 25px 30px 25px;
    transition: 0.6s;
}
.page-news-list .item h3{
    font-weight: normal;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制显示3行 */
    overflow: hidden;
}

.page-news-list .item .brief{
    font-size: 16px;
    margin-top: 10px;
    color: #666;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 限制显示3行 */
    overflow: hidden;
}
.page-news-list .item:hover{
    transform: translateY(-10px);
    box-shadow: 0px 0px 15px #bbb;
    background-color: #029734;
}
.page-news-list .item:hover h3,
.page-news-list .item:hover .brief{
    color: #fff;
}


.article-title{
    display: block;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
}
.article-info{
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article-info .item{
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}
.article-info .item .iconfont{
    margin-right: 10px;
}
.article-info .item .iconchakan1{
    font-size: 22px;
}
.article-content{
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 2.5;
}
.shangxiapian{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}
.shangxiapian li a{
    display: flex;
    align-items: center;
    color: #666;
}
.shangxiapian li a:hover{
    color: #029734;
}
.shangxiapian li .iconfont{
    font-size: 22px;
}
.shangxiapian li .icon-jiantou-zuo{
    margin-right: 15px;
}
.shangxiapian li .icon-jiantou-you{
    margin-left: 15px;
}

.page-faq-list .item{
    margin-bottom: 10px;
    border: 1px solid #ebebeb;
    border-bottom:none;
}
.page-faq-list .item .title{
    background: #f8f8f8;
    border-bottom: 1px solid #ebebeb;
    line-height: 1.5;
    font-weight: 500;
    font-size: 18px;
    color: #363f4d;
    padding: 15px 30px 15px 25px;
    cursor: pointer;
    cursor: hand;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-faq-list .item .title .iconfont{
    font-size: 22px;
    transition:0.7s;
}
.page-faq-list .item .content{
    padding: 20px 25px;
    overflow: hidden;
    font-size: 16px;
    color: #666;
    line-height: 2;
    display: none;
    border-bottom: 1px solid #ebebeb;
}
.page-faq-list .item.active .title .iconfont{
    transform: rotate(180deg);
}
.page-search-list .item{
    margin-bottom: 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #ebebeb;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
}
.page-search-list a{
    padding: 15px 30px 15px 25px;
    display: block;
}