/* 企业介绍 */
.page-ban{
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.page-ban img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-font{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    left: 0;
    /*top: 50%;*/
	top:350px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%); 
    -ms-transform: translateY(-50%); 
    -o-transform: translateY(-50%); 
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
}

.page-font h2{
    font-size: 40px;
    color: #fff;
    padding-bottom: 20px;
    position: relative;
}

.page-font h2::before{
    display: block;
    content: '';
    width: 58px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -29px;
}

.page-font span{
    display: inline-block;
    color: #fff;
    font-size: 25px;
    margin: 20px 0 0 0;
    text-transform: uppercase;
}

.page-sub-box{
    width: 100%;
    height: 90px;
    border-bottom: solid #eee 1px;
    line-height: 90px;
    background: #fff;
}

.page-sub{
    width: 90%;
    max-width: 1500px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    /* flex-direction: row-reverse; */
}

.page-sub-lft{
    flex: auto;
    font-size: 14px;
    color: #222;
    position: relative;
    box-sizing: border-box;
    padding-left: 36px;
}

.page-sub-lft img{
    /*margin-right: 10px;*/
    position: absolute; 
    left: 0;
    margin-top: -17px;
    top: 50% !important; 
    -webkit-transform: translateY(-0%) !important; 
    -moz-transform: translateY(-0%) !important; 
    -ms-transform: translateY(-0%) !important; 
    -o-transform: translateY(-0%) !important; 
    transform: translateY(-0%) !important;
}

.page-sub-lft span{
    font-family: '宋体';
    color: #999;
    padding: 0 8px;
    display: inline-block;
}

.page-sub-lft em{
    font-style: normal;
    color: #1467b3;
}

.page-sub-rht{
    flex: auto;
    text-align: right;
}

.page-sub-rht a{
    padding-left: 2vw;
    font-size: 16px;
    color: #666;
	cursor: pointer;
}

.page-sub-rht a::before{
    content: '|';
    padding-right: 2vw;
}

.page-sub-rht a:first-child::before{
    display: none;
}

.page-sub-rht a:hover::before{
    color: #666;
}

.page-sub-rht .sub-nav{
    color: #1467b3;
}

.page-sub-rht .sub-nav::before{
    color: #666;
}

.about-box{
    width: 90%;
    height: auto;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 0;
    position: relative;
}

.about-en-tit{
    width: 100%;
    height: auto;
    font-size: 35px;
    color: #ccc;
    line-height: 40px;
}

.about-ch-tit{
    width: 100%;
    font-size: 29px;
    color: #222;
    font-weight: bold;
    padding: 30px 0;
    position: relative;
}
.about-ch-tit .slogan{
	font-size: 16px;
	color: rgb(102, 102, 102);
	font-weight: normal;
}

.about-txt{
    width: 100%;
    height: auto;
    /* overflow: hidden; */
    display: flex;
}

.about-txt .about-lft{
    flex: auto;
    font-size: 14px;
    color: #666;
    line-height: 30px;
	padding-right: 60px;
}

.about-txt .about-rht{
    flex: auto;
}

.about-txt .about-rht video{
    width: 860px;
    height: 486px;
    transform: translateY(-100px);
}

.about-lft-tit{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    font-size: 27px;
    color: #1467b3;
    padding-top: 10px;
}

/* 品质政策 */
.policy-box{
    width: 100%;
    height: 1000px;
    background: url(../images/policybg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

.policy-en-tit{
    width: 100%;
    height: auto;
    font-size: 35px;
    color: #ccc;
    text-align: center;
    text-transform: uppercase;
    padding-top: 80px;
    line-height: 60px;
    position: relative;
}

.policy-ch-tit{
    width: 100%;
    height: auto;
    font-size: 30px;
    color: #222;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    padding-bottom: 70px;
}

.policy-cent{
    width: 90%;
    height: 600px;
    max-width: 1500px;
    margin: 0 auto;
}

.policy-cent dl{
    display: block;
    width: 100%;
    height: 300px;
    position: relative;
    background: #fff;
}

.policy-cent dl:nth-child(2n-1) dt{
    float: left;
}

.policy-cent dl:nth-child(2n-1) dd{
    left: auto;
    right: 0;
    top: 0;
}

.policy-cent dl dt{
    display: block;
    width: 50%;
    height: 300px;
    float: right;
    overflow: hidden;
}

.policy-cent dl dt img{
    width: 750px;
    height: 300px;
    object-fit: cover;
    transition: all .3s ease;
}

.policy-cent dl dt:hover img{
    transform: scale(1.15);
    transition: all .3s ease;
}

.policy-cent dl dd{
    display: block;
    width: 50%;
    height: 300px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-dl{
    box-sizing: border-box;
    padding-left: 100px;
    position: relative; 
    top: 50%; 
    -webkit-transform: translateY(-50%); 
    -moz-transform: translateY(-50%); 
    -ms-transform: translateY(-50%); 
    -o-transform: translateY(-50%); 
    transform: translateY(-50%);
}

.policy-dl h2{
    font-size: 32px;
    font-weight: bold;
    color: #1467b3;
    line-height: 50px;
}

.policy-dl span{
    display: block;
    font-size: 19px;
    color: #222;
    line-height: 25px;
    margin-top: 25px;
}

/* 发展历程 */
.develop-box{
    width: 100%;
    height: 850px;
    background: url(../images/developbg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

.develop-box::before{
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.4);
    position: absolute;
    left: 0;
    top: 360px;
}

.develop-box .policy-en-tit{
    color: rgba(255,255,255,.4);
}

.develop-box .policy-ch-tit{
    color: #fff;
}

.develop-cent{
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    height: 510px;
}

.develop-cent .swiper-container,.swiper-wrapper{
    width: 100%;
    height: 100%;
}

.develop-cent .swiper-slide{
    width: 100%;
    height: 100%;
    position: relative;
}

.develop-time{
    width: 100%;
    height: 140px;
    line-height: 140px;
    text-align: center;
    font-size: 160px;
    font-weight: bold;
    color: #fff;
}

.develop-time span{
    display: inline-block;
    height: 110px;
    overflow: hidden;
    vertical-align: top;
    color: rgba(255,255,255,0.5);
}

.develop-list{
    width: 90%;
    height: 280px;
    margin-top: 60px;
    box-sizing: border-box;
    padding-left: 35vw;
    overflow-y: auto;
}

.develop-list ul li{
    font-size: 16px;
    color: #fff;
    padding: 5px 0;
}

.develop-list ul li span{
    padding: 0 10px;
}

.develop-list::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.5vw;
    background-color: #fff;
}

.develop-list::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #1467b3;
}

.develop-list::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #fff;
}

.develop-next{
    width: 55px;
    height: 55px;
    background:url(../images/rhticonh.png) no-repeat center center #fff;
    border-radius: 50%;
    position: absolute;
    right: 30px;
    top: 86px;
    z-index: 9;
    cursor: pointer;
    text-align: center;
}

.develop-next:hover{
    background: url(../images/rhticon.png) no-repeat center center #1467b3;
}

.develop-next em{
    display: block;
    transform: translateY(-40px);
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.develop-cent .swiper-slide:first-child .develop-prev{
    display: none;
}

.develop-cent .swiper-slide:last-child .develop-next{
    display: none;
}

.develop-prev{
    width: 55px;
    height: 55px;
    background:url(../images/lfticonh.png) no-repeat center center #fff;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 86px;
    z-index: 9;
    cursor: pointer;
    text-align: center;
}

.develop-prev:hover{
    background: url(../images/lfticon.png) no-repeat center center #1467b3;
}

.develop-prev em{
    display: block;
    transform: translateY(-40px);
    font-size: 24px;
    color: #fff;
    text-align: center;
}

/* 荣誉资质 */
.honer-box{
    width: 90%;
    height: auto;
    max-width: 1500px;
    overflow:hidden;
    margin: 0 auto;
    padding-bottom: 90px;
    position: relative;
}

.honer-cent{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.honer-cent dl{
    display: block;
    width: 30%;
    height: 350px;
    border:solid 1px #eee;
    margin: 1%;
    cursor: pointer;
    transition: all .4s ease;
}

.honer-cent dl:hover{
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    transition: all .4s ease;
}

.honer-cent dl dt{
    width: 100%;
    box-sizing: border-box;
    height: 280px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.honer-cent dl dt img{
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.honer-cent dl dd{
    padding-top: 20px;
    font-size: 16px;
    color: #222;
}

.paging-box{
    width: 100%;
    height: 40px;
    margin-top: 40px;
    text-align: center;
}

.paging-box li{
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    border:solid 1px #ddd;
    font-family: '宋体';
    margin:0 5px;
}

.paging-box a{
     display: inline-block;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     line-height: 38px;
     text-align: center;
     font-family: '宋体'
 }

.paging-box a:hover,.paging-box li.active{
    background: #1467b3;
    border-color: #1467b3;
    color: #fff !important;
}

.paging-box .paging-cur{
    background: #1467b3;
    border-color: #1467b3;
    color: #fff !important;
}
.paging-box li.disabled{
    background: #f1f1f1;
}
/* 合作伙伴 */
.partner-box{
    width: 100%;
    height: 850px;
    background: #f8f8f8;
    position: relative;
}

.partner-cent{
    width: 90%;
    height: 480px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.partner-cent .swiper-pagination{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
}

.partner-cent .swiper-pagination span{
    margin: 0 5px;
}

.partner-cent .swiper-container {
    width: 100%;
    height: 440px;
    margin-left: auto;
    margin-right: auto;
}

.partner-cent .swiper-slide {
    /* border-radius: 50%; */
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    height: calc((100%) / 2);

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}

.partner-cent .swiper-slide a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
}

.partner-cent .swiper-slide img{
    max-width: 90%;
    /* width: 100%; */
    max-height: 90%;
    object-fit: contain;
    transition: all .3s ease;
}

.partner-cent .swiper-slide:hover img{
    transform: scale(1.05);
    transition: all .3s ease;
}

.swiper-pagination-bullet-active{
    background: #1467b3 !important;
}

/* 企业文化 */
.culture-box{
    width: 90%;
    height: auto;
    overflow: hidden;
    padding-bottom: 80px;
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
}

.culture-list{
    width: 100%;
    height: auto;
    overflow: hidden;
    min-height: 455px;
}

.culture-list dl{
    width: 50%;
    height: auto;
    min-height: 455px;
    float: left;
    box-sizing: border-box;
    padding:110px 50px 0 50px;
}

.culture-list dl dt{
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
}

.culture-list dl dd{
    text-align: center;
    padding-top: 22px;
}

.culture-list dl dd h2{
    font-size: 29px;
    font-weight: bold;
    color: #222;
    padding-bottom: 20px;
}

.culture-list dl dd span{
    font-size: 17px;
}

.culture-dl1{
    background: url(../images/culturebg1.jpg);
    background-size: cover;
}

.culture-dl2{
    background: url(../images/culturebg2.jpg);
    background-size: cover;
}

.culture-dl2 dd h2{
    color: #fff !important;
}

.culture-dl2 dd span{
    color: #fff;
}

.culture-cent{
    width: 100%;
    height: 500px;
    display: flex;
}

.cluture-logo{
    flex: 1;
    height: 500px;
    overflow: hidden;
    position: relative;
    background: #1467b3;
}

.cluture-logo img{
    width: 590px;
    height: 500px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -295px;
}

.clurure-text{
    flex: 1;
    height: 500px;
    background: url(../images/culturebg3.jpg);
    background-size: cover;
}

.clurure-text dl{
    height: auto;
    min-height: 455px;
    float: left;
    box-sizing: border-box;
    padding:110px 50px 0 50px;
    width: 100%;
}

.clurure-text dl dt{
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
}

.clurure-text dl dd{
    text-align: center;
    padding-top: 22px;
}

.clurure-text dl dd h2{
    font-size: 29px;
    font-weight: bold;
    color: #222;
    padding-bottom: 20px;
}

.clurure-text dl dd span{
    font-size: 17px;
}


.clurure-cent{
	width: 90%;
	height: 240px;
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
}

.clurure-cent .swiper-pagination{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}

.clurure-cent .swiper-pagination span{
	margin: 0 5px;
}

.clurure-cent .swiper-container {
	width: 100%;
	height: 440px;
	margin-left: auto;
	margin-right: auto;
}

.clurure-cent .swiper-slide {
	/* border-radius: 50%; */
	text-align: center;
	font-size: 18px;
	/* background: #fff; */
	height: calc((100%) / 2);

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
}

.clurure-cent .swiper-slide a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: #f8f8f8;
	overflow: hidden;
}

.clurure-cent .swiper-slide span{
	max-width: 90%;
	/* width: 100%; */
	max-height: 90%;
	object-fit: contain;
	transition: all .3s ease;
	font-size: 26px;
	font-weight: bold;
}

.clurure-cent .swiper-slide:hover a{
	background-color: rgb(20, 103, 179) !important;
}

.clurure-cent .swiper-slide:hover span{
	transform: scale(1.05);
	transition: all .3s ease;
	color: #fff;
}


/* 产品中心 */
.product-box{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.product-list{
    width: 90%;
    margin: 0 auto;
    max-width: 1500px;
    height: 550px;
}

.product-list:nth-child(2n) .product-lft{
    float: right;
}

.product-list:nth-child(2n) .product-rht::after{
    left: auto;
    right: 100%;
}

.product-list:nth-child(2n) .product-rht::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 0;
    border-top: 20px solid transparent;
    border-right: 20px solid #fff;
    border-bottom: 20px solid transparent;
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    margin-top: -30px;
}


.product-lft{
    width: 50%;
    height: 550px;
    float: left;
    overflow:hidden;
    position: relative;
}

.product-lft .dw-prev{
    right: 3% !important;
    transform: scale(0.75);
}

.product-lft .dw-next{
    left: 3% !important;
    transform: scale(0.75);
}

.product-lft img{
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.product-lft .swiper{
    height: 100%;
    width: 100%;
}

.product-lft .swiper .swiper-slide{
    display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
}

.product-rht{
    width: 50%;
    height: 550px;
    background: #f8f8f8;
    float: left;
    position: relative;
}

.product-list .product-rht .rht-txt-box{
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 100px;
    position: relative; 
    top: 50%; 
    -webkit-transform: translateY(-50%); 
    -moz-transform: translateY(-50%); 
    -ms-transform: translateY(-50%); 
    -o-transform: translateY(-50%); 
    transform: translateY(-50%);
}

.rht-txt-box h2{
    font-size: 35px;
    font-weight: bold;
    color: #222;
    padding-bottom: 30px;
}

.product-rht-txt{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 14px;
    line-height: 30px;
    color: #666;
}

.product-rht::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 20px solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -30px;
}

.product-rht::after{
    width: 100%;
    height: 550px;
    display: block;
    content: '';
    background: #f8f8f8;
    position: absolute;
    left: 100%;
    top: 0;
}

.product-list:nth-child(2n) .product-rht .rht-txt-box{
    padding: 0 100px 0 0 !important;
}

/* 技术服务 */
.support-box{
    width: 100%;
    height: auto;
    padding: 30px 0 150px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.support-cent{
    width: 90%;
    height: auto;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
}

.invest-sub-tit{
    width: 100%;
    /*height: 50px;*/
	line-height: 70px;
    text-align: center;
    margin-bottom: 60px;
}

.invest-sub-tit .sub-tit{
    display: inline-block;
    padding:0 60px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border:solid 1px #1467b3;
    margin: 15px 15px;
    border-radius: 25px;
    font-size: 17px;
    color: #1467b3;
    text-transform: uppercase;
	float: left;
}

.invest-sub-tit .sub-tit:hover{
    background: #1467b3;
    border-color: #1467b3;
    color: #fff !important;
}

.invest-sub-tit .sub-cur{
    background: #1467b3;
    border-color: #1467b3;
    color: #fff !important;
}


.support-tzk{
    width: 100%;
    display: flex;
    height: auto;
    min-height: 500px;
    background: url(../images/tzkbg.jpg);
    background-size: cover;
}

.tzk-rht{
    width: 460px;
    height: 500px;
    margin-right: 60px;
}

.tzk-rht img{
    width: 460px;
    height: 500px;
    object-fit: contain;
}

.tzk-lft{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 80px 150px 80px 80px;
}

.tzk-lft h2{
    width: 100%;
    height: auto;
    padding-bottom: 60px;
    font-size: 32px;
    font-weight: bold;
    color: #222;
    position: relative;
    padding-top: 20px;
}

.tzk-lft h2::after{
    display: block;
    content: '';
    width: 56px;
    height: 4px;
    background: #1467b3;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.tzk-txt{
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 30px;
    color: #222;
}

.support3-box{
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding:40px 40px 80px 40px;
    background: #fff;
	margin-top: 170px;
}

.support3-tit{
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: solid #e5e5e5 1px;
    display: flex;
}

.support3-tit-lft{
    flex: auto;
    font-size: 22px;
    color: #222;
    text-transform: uppercase;
}

.support3-tit-lft::after{
    display: inline-block;
    content: '';
    width: 22px;
    height: 6px;
    background: #1467b3;
    margin-left: 10px;
    vertical-align: center;
    transform: translateY(-3px);
}

.support3-tit-rht{
    flex: auto;
    text-align: right;
}

.support3-tit-rht a{
    padding-left: 20px;
    color: #666;
}

.support3-tit-rht a:first-child::before{
    display: none;
}

.support3-tit-rht a::before{
    content: '|';
    padding-right: 20px;
    color: #999;
}

.support3-tit-rht .cur{
    color: #1467b3;
}

.support3-txt{
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
}
.support3-txt img{max-width:100%;}
.support3-txt table{
    width: 100%;
    border-top: solid 1px #eee;
    border-right: solid 1px #eee;
}

.support3-txt table tr td{
    text-align: left;
    padding: 25px 0;
    border-left: solid 1px #eee;
    border-bottom: solid 1px #eee;
    text-indent: 3em;
}

.support3-txt table tr th{
    border-left: solid 1px #eee;
    border-bottom: solid 1px #eee;
    width: 300px;
}

.support3-txt table tr th{
    box-sizing: border-box;
    text-align: center;
    text-indent: 0;
    background: #eff3f6;
    color: #1467b3;
    font-weight: normal;
}

.support2-tit{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 25px;
    font-weight: bold;
    color: #222;
    padding-bottom: 26px;
    position: relative;
    text-align: center;
}

.support2-tit::before{
    content: '';
    display: block;
    width: 40px;
    background: #222;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}

.support2-txt{
    width: 90%;
    height: auto;
    padding: 30px 5%;
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 35px;
}

.support2-box{
    width: 100%;
    height: 465px;
    position: relative;
}

.support2-box .swiper-container {
    width: 80%;
    margin: 0 auto;
    height: 100%;
}

.support2-box .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
}

.support2-img{
    width: 100%;
    height: 385px;
    box-sizing: border-box;
    border:solid 1px #eee;
}

.support2-img img{
    width: 100%;
    height: 385px;
    object-fit: contain;
}

.support2-swp-tit{
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #eef4fa;
    font-size: 19px;
    color: #222;
    text-align: center;
}

.product-next{
    width: 48px;
    height: 48px;
    border:solid #999 1px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 0;
    margin-top: -24px;
    border-radius: 50%;
    background: url(../images/lfticonh.png) no-repeat center center #fff;
}

.product-next:hover{
    background: url(../images/lfticon.png) no-repeat center center #1467b3;
    border-color: #1467b3;
}

.product-prev{
    width: 48px;
    height: 48px;
    border:solid #999 1px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 9;
    right: 0;
    margin-top: -24px;
    border-radius: 50%;
    background: url(../images/rhticonh.png) no-repeat center center #fff;
}

.product-prev:hover{
    background: url(../images/rhticon.png) no-repeat center center #1467b3;
    border-color: #1467b3;
}

.support1-txt{
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.support1-lft{
    flex: auto;
    border-right: solid 1px #eee;
    padding: 140px 30px 30px 30px;
    max-width: 400px;
    box-sizing: border-box;
}

.support1-lft-tit{
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    position: relative;
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.support1-lft-tit::before{
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #222;
    position: absolute;
    bottom: 15px;
    left: 0;
}

.support1-lft-txt{
    width: 100%;
    height: auto;
    padding: 50px 0;
    font-size: 14px;
    color: #666;
    line-height: 29px;
}

.support1-lft a{
    display: block;
    width: 156px;
    height: 52px;
    border-radius: 26px;
    border: solid 1px #eee;
    transition: all .4s ease;
}

.support1-lft a .lx-img1{
    display: block;
}

.support1-lft a .lx-img2{
    display: none;
}

.support1-lft a:hover .lx-img2{
    display: block;
}

.support1-lft a:hover .lx-img1{
    display: none;
}

.support1-rht{
    flex: auto;
    padding: 35px;
}

.support1-rht-tit{
    width: 100%;
    height: 70px;
    line-height: 70px;
    color: 22px;
    font-size: 22px;
    text-indent: 2em;
}

.support1-list-box{
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    overflow: hidden;
}

.support1-list{
    float: left;
    width: 33.33%;
    box-sizing: border-box;
    padding: 50px 30px;
    cursor: pointer;
    border-right: solid 1px #eee;
}

.support1-list:hover .support1-list-tit{
    color: #1467b3;
}

.support1-list:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    border-color: #fff;
}

.support1-list-tit{
    width: 100%;
    height:auto;
    padding-bottom: 20px;
    font-size: 17px;
    color: #000;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    *white-space:nowrap;
}

.support1-list-txt{
    width: 100%;
    height: 75px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.support1-list-img{
    max-width: 100%;
    height: 170px;
    margin-top: 36px;
    overflow: hidden;

}

.support1-list-img img{
    width: 100%;
    height: 170px;
    object-fit: cover;
    display:block;
    margin:0 auto;
}

.fuwu{
    display: none;
}

.support4-box{
    width: 100%;
    height: auto;
    padding-bottom: 100px;
}

.support4-list-box{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.support4-list{
    width: 30.33%;
    height: 250px;
    background: #fff;
    position: relative;
    margin: 1%;
    cursor: pointer;
}

.support4-list h2{
    box-sizing: border-box;
    padding: 40px 0 0 60px;
    font-size: 25px;
    color: #000;
    transition: all .4s ease;
}

.support4-list span{
    display: block;
    padding: 20px 25px 0 60px;
    color: #999;
}

.support4-list em{
    font-style: normal;
    font-size: 60px;
    line-height: 60px;
    position: absolute;
    bottom: 0;
    left: 60px;
    color: #eee;
    transition: all .4s ease;
}

.support4-list:hover{
    background: url(../images/s4bg.jpg) no-repeat right bottom #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

.support4-list:hover em{
    color: #1467b3;
    transition: all .4s ease;
}

.support4-list:hover h2{
    font-weight: bold;
    transition: all .4s ease;
}

.ts-s4{
    background: url(../images/tsbg.jpg);
    background-size: cover;
}

.ts-s4:hover{
    background: url(../images/tsbg.jpg);
}

.ts-s4 h2{
    color: #fff;
}

.ts-s4 a{
    display: block;
    width: 147px;
    height: 48px;
    border-radius: 24px;
    line-height: 48px;
    text-align: center;
    font-size: 19px;
    color: #1467b3;
    background: #fff;
    margin-left: 60px;
    margin-top: 30px;
}

.support5-box{
    width: 100%;
    height: auto;
    background: #fff;
}

.support5-tit{
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    font-weight: bold;
    color: #222;
    font-size: 35px;
}

.support5-txt{
    font-size: 14px;
    line-height: 30px;
}

.support5-list{
    width: 100%;
    height: auto;
    padding-top: 40px;
}

.support5-list dl{
    /* display: flex; */
    margin-bottom: 15px;
    min-height: 110px;
    box-sizing: border-box;
    padding-left: 130px;
    position: relative;
}

.support5-list dl dt{
    /* flex: auto; */
    width: 110px;
    height: 110px;
    position: absolute;
    left: 0;
    top: 0;
    background: none;
}

.support5-list dl dt::before{
    position: absolute;
    left: 5px;
    top: 5px;
    width: 97px;
    height: 97px;
    border:dashed 1px #1467b3;
    content: '';
    border-radius: 50%;
    display: block;
    animation: rotate 16s linear infinite;
    -webkit-animation: rotate 16s linear infinite;
    background: #f8f8f8;
    box-shadow: 10px 10px 20px rgba(20,103,179,.1);
}

.support5-list dl dt img{
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    position: relative; 
    top: 50%; 
    -webkit-transform: translateY(-50%); 
    -moz-transform: translateY(-50%); 
    -ms-transform: translateY(-50%); 
    -o-transform: translateY(-50%); 
    transform: translateY(-50%);
}

.support5-list dl dd{
    /* flex: auto; */
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
}

.support5-list dl dd h2{
    color: #1467b3;
    font-size: 22px;
    padding-top: 25px;
}

.support5-list dl dd span{
    color: #666;
}

.ic-cent{
    width: 90%;
    height: 740px;
    margin: 0 auto;
    max-width: 1500px;
    box-sizing: border-box;
    padding-top: 90px;
    padding-right: 1100px;
    position: relative;
}

.ic-cent-dl{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 120px;
}

.ic-cent-dl dl{
    display: block;
    width: 50%;
    height: auto;
    float: left;
    overflow: hidden;
    border-left: solid 3px #1467b3;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.ic-cent-dl dl dt{
    font-size: 15px;
    color: #999;
    box-sizing: border-box;
    padding-left: 15px;
}

.ic-cent-dl dl dd{
    font-size: 19px;
    color: #000;
    box-sizing: border-box;
    padding-left: 15px;
}

.support5-box .ic-cent-rht{
    width: 1100px;
    height: 540px;
    position: absolute;
    right: 0;
    top: 120px;
}

.ic-cent-rht .ic-cent-rht-bg{
    width: 1100px;
    height: 540px;
    float: right;
}

.sh{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 230px;
    top: 180px;
    cursor: pointer;
}

.sh:hover .sh-box{
    display: block;
}

.sh-box{
    width: 260px;
    height: 200px;
    background: url(../images/conbg.png) no-repeat center center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -130px;
    display: none;
}

.sh-box-img{
    width: 174px;
    height: 102px;
    overflow: hidden;
    margin-top: 6px;
    margin-left: 42px;
}

.sh-box-img img{
    width: 174px;
    height: 102px;
    object-fit: cover;
}

.sh-box-tit{
    width: 120px;
    height: 57px;
    line-height: 57px;
    font-size: 20px;
    font-weight: bold;
    color: #1467b3;
    padding-left: 105px;
}

.cd{
    position: absolute;
    right: 275px;
    top: 178px;
    cursor: pointer;
}

.xa{
    position: absolute;
    right: 281px;
    top: 218px;
    cursor: pointer;
}

.gd{
    position: absolute;
    right: 235px;
    top: 238px;
    cursor: pointer;
}

.tw{
    position: absolute;
    right: 175px;
    top: 238px;
    cursor: pointer;
}

/* 应用领域 */
.field-text{
    width: 90%;
    margin: 0 auto 50px auto;
    max-width: 1500px;
    height: auto;
    text-align: center;
    font-size: 17px;
    color: #666;
    overflow: hidden;
}

.field-info{
    width: 90%;
    height: auto;
    margin: 0 auto;
    max-width: 1500px;
    overflow: hidden;
    padding-top: 50px;
    display: flex;
    text-align: center;
}

.field-info dl{
    width: 14%;
}

.field-info dl dt{
    width: 90px;
    height: 90px;
    background: #1467b3;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.field-info dl dt::before{
    position: absolute;
    left: -10px;
    top: -10px;
    width: 108px;
    height: 108px;
    border:dashed 1px #1467b3;
    content: '';
    border-radius: 50%;
    display: block;
    animation: rotate 16s linear infinite;
    -webkit-animation: rotate 16s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(360deg)
	}
}

.field-info dl dt img{
    max-width: 100%;
    position: relative; 
    top: 50%; 
    -webkit-transform: translateY(-50%); 
    -moz-transform: translateY(-50%); 
    -ms-transform: translateY(-50%); 
    -o-transform: translateY(-50%); 
    transform: translateY(-50%);
}

.field-info dl dd{
    padding-top: 25px;
}

.field-box{
    height: 800px !important;
}

/* 新闻中心 */
.news-center{
    width: 90%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1500px;
    padding-bottom: 0;
}

.news-list-box{
	width: 100%;
	height: auto;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.news-list.vital-small a,.news-list.vital-big a{
	display: block;
	padding-right: 30px;
	padding-bottom: 40px;
}

.news-list{
    width: 25%;
}

.news-list:hover .news-list-img img{
    transition: all .4s ease;
    transform: scale(1.04);
}

.news-list-img{
	position: relative;
	width: 100%;
}

.news-list-img::before {
	content: "";
	display: block;
	padding-top: 75%; /* 高度为宽度的四分之三 */
}

.news-list-img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* 图像填充容器 */
    transition: all .4s ease;
}

.news-list-tim{
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    color: #666;
}

.news-list-tit{
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 19px;
    color: #222;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    *white-space: nowrap;
}

.news-list-txt{
    width: 100%;
    height: 50px;
    line-height: 25px;
    font-size: 14px;
    color: #999;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 10px;
}

.news-list:hover .news-list-tit{
    font-weight: bold;
    color: #1467b3;
}

.news-list-btn{
    width: 40px;
    height: 40px;
    background:url(../images/rhticonh.png) no-repeat center center #fff;
    border-radius: 50%;
    border:solid 1px #ccc;
    margin-top: 15px;
}

.news-list:hover .news-list-btn{
    background: url(../images/rhticon.png) no-repeat center center #1467b3;
    border-color: #1467b3;
}

.news-box{
    width: 100%;
    height: auto;
    background: #f8f8f8;
    padding:0 0 80px 0;
    overflow: hidden;
}

.news-list-vital .vital-big{
	width: 50%;
}

.news-list-vital .vital-big-right{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}

.news-list-vital .vital-big .news-list-img{
	/*height: 27.99vw;
	width: 37.32vw;*/
}

.news-list-vital .vital-big .news-list-txt{
	font-size:16px;
	height: 80px;
	line-height: 40px;
}

.news-list-vital .vital-small{
	width: 50%;
}
.news-list-vital .vital-small .news-list-txt{
	width: 100%;
	height: 25px;
	line-height: 25px;
	font-size: 14px;
	color: #999;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-top: 10px;
}

.invest-cent{
    width: 90%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1500px;
}

@media only screen and (min-width:1300px){
    .news-data-lft{
        overflow: hidden;
        width: 66%;
        height: auto;
        float: left;
        background: #fff;
        box-sizing: border-box;
        padding: 30px 70px;
    }
    .news-data-rht{
        width: 32%;
        height: auto;
        float: right;
        overflow: hidden;
    }

	.product-data-rht{
		overflow: hidden;
		width: 78%;
		height: auto;
		float: right;
		background: #fff;
		box-sizing: border-box;
		margin-top: 30px;
	}
	.product-data-lft{
		width: 20%;
		height: auto;
		float: left;
		overflow: hidden;
		margin-top: 30px;
	}

	.product-left-box{
		margin-bottom: 40px;
	}
}

@media only screen and (max-width:1299px){
    .news-data-lft{
        overflow: hidden;
        width: 100%;
        height: auto;
        background: #fff;
        box-sizing: border-box;
        padding: 30px 70px;
    }
    .news-data-rht{
        display: none;
    }

	.product-data-rht{
		overflow: hidden;
		width: 100%;
		height: auto;
		background: #fff;
		box-sizing: border-box;
	}
	.product-data-lft{
		display: none;
	}
}

.news-data-title{
    width: 100%;
    height: auto;
    font-size: 1.4vw;
    font-weight: bold;
    color: #000;
    line-height: 35px;
    margin-bottom: 20px;
    overflow: hidden;
}

.news-data-times{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 15px;
    color: #000;
    margin-bottom: 30px;
}

.news-data-texts{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 50px 0;
    border-top:solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    font-size: 14px;
    line-height: 27px;
}

.news-data-texts img{
    max-width: 100%;
}

.news-data-infos{
    display: flex;
    height: 60px;
    line-height: 60px;
    width: 100%;
	border-bottom: solid 1px #ddd;
}

.infos-lb{
    flex: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.infos-lb img{
    display: block;
    margin: 0 auto;
}

.infos-btn{
    flex: auto;
}

.hot-box{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #fff;
    padding: 0 25px;
    box-sizing: border-box;
}

.hot-list{
    width: 100%;
    height: auto;
    padding: 20px 0;
    overflow: hidden;
    border-top: solid 1px #ddd;
}

.hot-list:first-child{
    border-top: none;
}

.hot-list .host-list-img{
	width: 52%;
	display: inline-block;
	float: left;
}

.hot-list .host-list-img img{
	width: 120px;
	height: 90px;
	border: 1px solid #fff;
}

.hot-list .hot-title-box{
	width: 48%;
	display: inline-block;
}
.hot-list .hot-title-box .hot-list-tit{
	font-size: 14px;
	line-height: 20px;
	color: #666!important;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.hot-list .hot-title-box .hot-list-tim{
	height: 30px;
}


.hot-list-tit{
    width: 100%;
    height: auto;
    font-size: 16px;
    overflow: hidden;
    color: #000;
    line-height: 30px;
}

.hot-list-tim{
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.hot-list-tim span{
    float: right;
}

.hot-list:hover .hot-list-tit{
    color: #1467b3;
}

.hot-list:hover .hot-list-tim span{
    color: #1467b3;
}

.hot-title{
    background: #fff;
    padding: 35px 35px 10px 45px;
    font-size: 22px;
    color: #1467b3;
    position: relative;
}

.hot-title::before{
    width: 6px;
    height: 26px;
    background: #1467b3;
    position: absolute;
    left: 25px;
    top: 50%;
    content: '';
    display: block;
}

.hot-list.see-more{
	text-align: center;
}

.news-data-rht-img{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.news-data-rht-img img{
    width: 100%;
    margin-bottom: 40px;
}

/* 联系方式 */
.contact-box{
    width: 90%;
    margin: 0 auto;
    height: 550px;
    overflow: hidden;
    max-width: 1500px;
    box-sizing: border-box;
    padding-left: 460px;
    position: relative;
}

.contact-lft{
    width: 460px;
    height: 550px;
    background: url(../images/conbg.jpg);
    background-size: cover;
    box-sizing: border-box;
    padding:90px 60px 0 60px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-lft h2{
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 25px;
}

.contact-lft ul li{
    padding: 10px 0;
    color: #fff;
}

.contact-rht{
    width: 100%;
    height: 550px;
}

.con-box{
    padding-top: 0 !important;
}

.join-box{
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    /* display: flex; */
}

.join-box .join-list{
    width: 30.33%;
    height: 490px;
    margin: 0 1%;
    position: relative;
    cursor: pointer;
    float: left;
}

.join-list img{
    width: 90%;
    max-width: 384px;
    height: 249px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: block;
}

.join-list h2{
    font-size: 22px;
    font-weight: bold;
    color: #222;
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 20px;
}

.join-list span{
    text-align: center;
    font-size: 72px;
    color: #ccc;
    display: block;
    position: relative;
    z-index: 2;
}

.join-list::before{
    display: block;
    content: '';
    width: 100%;
    height: 400px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.join-box .join-list:hover::before{
    border-bottom: solid 9px #1467b3;
}

.post-box{
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
}

.post-box .layui-collapse,.layui-colla-item{
    border:none;
}

.post-box .layui-colla-title{
    background: none;
    height: 100px;
    line-height: 100px;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 80px;
}

.post-box .layui-collapse{
    border-top: solid 1px #eee;
    border-bottom: solid 1px #eee;
}

.post-box .layui-colla-icon{
    display: none;
}

.post-box .layui-colla-content{
    position: relative;
}

.post-box .layui-colla-title .post-icon{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 25px;
    background: url(../images/joinicon1.png);
}

.post-box .layui-colla-content .post-icon{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: -76px;
    background: url(../images/joinicon2.png);
    cursor: pointer;
}

.post-box .layui-colla-title .post-tit{
    display: block;
    width: 60%;
    height: 100px;
    box-sizing: border-box;
    padding-left: 70px;
    position: relative;
    float: left;
    font-size: 25px;
    color: #222;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    *white-space: nowrap;
    overflow: hidden;
}

.post-box .layui-colla-title .post-tit::before{
    content: '';
    display: block;
    width: 45px;
    height: 4px;
    background: #1467b3;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.post-tim{
    width: 20%;
    height: 100px;
    float: left;
    font-size: 19px;
    box-sizing: border-box;
    padding-left: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    *white-space: nowrap;
    overflow: hidden;
    background: url(../images/timbg.png) no-repeat left center;
}

.post-add{
    width: 20%;
    height: 100px;
    float: left;
    font-size: 19px;
    box-sizing: border-box;
    padding-left: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    *white-space: nowrap;
    overflow: hidden;
    background: url(../images/addbg.png) no-repeat left center;
}

.post-box .layui-colla-content {
    background: #fff;
    box-sizing: border-box;
    padding: 60px;
}

.post-sm-tit{
    width: 100%;
    padding-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

.post-sm-txt{
    line-height: 30px;
    padding-bottom: 30px;
}

.post-sm-mail{
    font-size: 18px;
}

.post-sm-mail a{
    color: #1467b3;
}

.a-dw{
    position: absolute;
    top: -90px;
}

.contact-a{
    color:#222;
    font-weight:bold;
    height:100px;
    line-height:100px;
    font-size: 25px;
    display: inline-block;
}

/** 留言star **/
.message-ask-box {
	width: 90%;
	height: auto;
	max-width: 1500px;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 1.05rem;
	margin-bottom: 100px;
}
.message-ask-box .medium-box-container{
	background-color: #f4f4f4;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 40px;

}
.message-ask-box .desc {
	font-size: 14px;
	color: #666;
	line-height: 64px;
}
.message-ask-box .form-box {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: .4rem;
}
.message-ask-box .form-box .group {
	position: relative;
	flex: 0 0 30%;
	margin-bottom: 27px;
	/* input placeholder  */
}

.message-ask-box .form-box .group .label{
	position: relative;
	float: left;
	display: block;
	padding: 9px 15px;
	width: 80px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}
.message-ask-box .form-box .group span {
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 15px;
	z-index: 10;
	font-size: 26px;
	color: #e86e18;
}
.message-ask-box .form-box .group .txt {
	width: 95%;
	height: 60px;
	line-height: 60px;
	font-size: 14px;
	color: #999;
	border: 1px solid #ccc;
	padding-left: 28px;
}
.message-ask-box .form-box .group ::-webkit-input-placeholder {
	/* WebKit browsers */
	font-size: 14px;
	color: #999;
}
.message-ask-box .form-box .group :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	font-size: 14px;
	color: #999;
}
.message-ask-box .form-box .group ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	font-size: 14px;
	color: #999;
}
.message-ask-box .form-box .group :-ms-input-placeholder {
	/* Internet Explorer 10+ */
	font-size: 14px;
	color: #999;
}
.message-ask-box .form-box .group.max {
	flex: 0 0 100%;
}
.message-ask-box .form-box textarea {
	width: 96%;
	font-size: 14px;
	color: #999;
	height: 237px;
	resize: none;
	padding: 26px 28px;
	border: 1px solid #ccc;
}

.group-btn{
	margin: 0 auto;
}
.submit-btn {
	font-weight: 700;
	display: block;
	color: #fff;
	font-size: 16px;
	width: 16rem;
	height: 3.6rem;
	line-height: 3.6rem;
	background: #ed6d00;
	text-align: center;
	border: none;
	border-radius: 3rem;

	-webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
	-moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
	box-shadow: 2px 3px 5px rgba(0,0,0,.2);
}
.submit-btn:hover{
	-webkit-box-shadow:none;
	-moz-box-shadow: none;
	box-shadow: none;

	transition: opacity 1s;
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	-ms-transition: opacity 1s;
	color: #fff !important;
}

.submit-btn:hover i {
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
}
.submit-btn i {
	display: inline-block;
	width: 15px;
	height: 10px;
	margin-left: 12px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.message-ask-box #check_code{
	width: 30%;
}

.message-ask-box #check_code_img{
	height: 30px;
	line-height: 60px;
}
/** 留言end **/

/****************goods relative *******************************************************/

.product-intro{display: flex;padding-bottom: 30px;}
.product-pic-slide{width: 50%;}
.product-desc-info{width: 50%;}
.product-desc-info .product-title{
	padding: 30px 0;
}
.product-desc-info .btn-apply{
	padding: 50px 20px 50px 0;
}

/*col-sub*/
.slide{position:relative; margin:38px auto 0 0; width:500px; overflow:hidden; border: 1px solid #eee;}
.slide .big{ position:relative; overflow:hidden; left:0;top:0;}
/*.slide .big-box{display:grid; border: 1px solid #eee;z-index:1001;}*/
.slide a{position:absolute; top:220px; opacity:0;z-index:1000;}
.slide .big li{float:left; width:500px; }
.slide .big  li img{width:500px;height:500px;display:block;}
.slide .prev{left:-10px;}
.slide .next{right:-10px;}
.slide .small{ margin-top:5px; width:100%; position:relative;}
.slide .small li{ float:left;margin-right:5px; width:100px; background:#000;}
.slide .small li:last-child{ margin-right:0;}
.slide .small li img{width:100%;display:block; opacity:0.5;}


/*联系方式页*/
.contact-info{display: flex; margin-bottom: 100px}
.contact-info .qr-info {width: 50%}
.contact-info .address-info {width: 50%	}
.contact-info .address-info .item{
	padding: 20px 0;
	width: 100%;
	font-size: 24px;
	line-height: 1;
	border-bottom: 1px solid #dddddd;
	color: 000;
}
.contact-info .address-info .item.item-end{border-bottom: 0}
.contact-info .item .f_tit{display: flex;height: 40px;line-height: 40px;font-size: 18px;color: #00ceb7;font-weight: 500}
.contact-info .item .f_tit .f_icon{width: 40px;color: #00ceb7;font-weight: 500}
.contact-info .item .f_tit .f_icon i{font-size: 30px;height: 40px;}
.contact-info .item .tel{color:#000;text-indent:0;line-height:normal;}
.contact-info .item .tel p{color:#000;padding: 0.8em 0 0.1em}
.contact-info .item .tel span{color:#000;font-size:14px;line-height:30px;}


.Maintit{ width: 100%; text-align: center; height: auto; margin-bottom: 10px;}
.Maintit h3{ font-size: 32px; line-height: 69px;}
.Maintit h4{ width: 40px; height: 3px; background: #1967cc;margin: 0 auto;}
.abinfo{ width: 1280px; padding: 30px 0; overflow: hidden; line-height: 26px;}
.abinfo img{ max-width: 100%; height: auto;}

.swiperPic-m{display: none;}

.support1-list-box-about .if-cent{height: 40px;}
.support1-list-box-about .news-list-box{border: 1px solid #eee;padding: 10px;margin-top:0}
.support1-list-box-about .news-list-box .news-list a{text-align: center;padding: 25px;}
.support1-list-box-about .news-list-box .news-list .news-list-img::before{padding-top: 100%}