:root,:host{
	--font-family: 'aphtr', "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei";
	--font-family1: 'aphtm'; 
	--font-family2: 'ysbth'; 
}

@font-face{
	font-family: 'aphtr';
	src : url(../fonts/Alibaba-PuHuiTi-Regular.ttf);
}
@font-face{
	font-family: 'aphtm';
	src : url(../fonts/Alibaba-PuHuiTi-Medium.ttf);
}
@font-face{
	font-family: 'ysbth';
	src : url(../fonts/YouSheBiaoTiHei-2.ttf);
}
*{
	box-sizing: border-box;
	outline: none;
}
html{
	overflow-x: hidden;
}
html,body{
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	transition: all 0.5s;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	line-height: 1.4em;
}
p{
	margin: 0;
	padding: 0;
}
ul,li{
	margin: 0;
	padding: 0;
	list-style: none;
}
img{
	max-width: 100%;
	vertical-align: middle;
}
a{
	text-decoration: none;
	color: #767676;
}
input{
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
}
button{
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
}
.line_1{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.line_2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.line_3{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.line_4{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.line_6{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.wrap{
	overflow: hidden;
}
.container{
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
}
.content{
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	/*height: 100%;*/
	box-sizing: border-box;
}
/*header*/
header{
	/*position: absolute;*/
	/*position: fixed;*/
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	background-color: rgba(255,255,255,.89);
}
.header{
	height: 90px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.nav-content{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
}
.nav>ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.nav>ul>li{
	position: relative;
}
.nav>ul>li>a{
	display: block;
	padding: 0 30px;
	line-height: 90px;
	font-size: 18px;
	color: #333333;
	font-weight: 600;
}
.nav>ul>li.cur>a{
	color: #005aff;
}
.nav>ul>li>ul{
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	background-color: rgba(255,255,255,.89);
	display: none;
}
.nav>ul>li.active>ul{
	display: block;
}
.nav>ul>li>ul>li>a{
	display: block;
	text-align: center;
	font-size: 18px;
	color: #333333;
	line-height: 50px;
}
.search-content{
	height: 100%;
	padding-left: 30px;
	position: relative;
}
.search-content a.search-link{
	line-height: 90px;
	display: block;
}
.search-form{
	position: absolute;
	right: 0;
	top: 100%;
	height: 50px;
	width: 250px;
	background-color: rgba(255,255,255,.89);
	z-index: 9;
	display: none;
}
.search-form form{
	display: flex;
	display: -webkit-flex;
	height: 100%;
}
.search-form form input[type=text]{
	width: calc(100% - 50px);
	height: 100%;
	padding-left: 15px;
	color: #333333;
	font-size: 16px;
}
.search-form form input[type=submit]{
	width: 50px;
	height: 100%;
	background-image: url(../images/search.png);
	background-repeat: no-repeat;
	background-position: center;
	/*background-size: cover;*/
}
.ph-menu{
	display: none;
}
/*header*/

/*banner*/
.ph-img{
	display: none;
}
/*banner*/

/*index-title*/
.index-title{
	padding-bottom: 30px;
}
.index-title h2{
	font-family: var(--font-family1);
	font-size: 34px;
	color: #3c3a3a;
	font-weight: 400;
}
.index-title p{
	font-size: 25px;
	color: #c0c0c0;
	position: relative;
	padding-bottom: 8px;
}
.index-title p:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 62px;
	height: 3px;
	background-color: #005aff;
}
/*index-title*/

/*index-about*/
.index-about{
	padding-top: 5%; 
	background-color: #f9f9f9;
	padding-bottom: 2.2%;
}
.index-about .container{
	margin: 0 0 0 auto;
}
.index-about-content{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.index-about-content .left{
	width: 50%;
	padding-left: 2.5%;
	padding-right: 2.5%;
}
.index-about-content .left .text{
	font-size: 23px;
	color: #3c3a3a;
	line-height: 1.8;
}
.index-about-content .left .text p{
	text-indent: 2em;
}
.index-about-content .left .more{
	margin-top: 6%;
}
.index-about-content .left .more a{
	display: block;
	width: 150px;
	height: 50px;
	font-size: 18px;
	color: #797979;
	text-align: center;
	line-height: 48px;
	border: 1px solid #797979;
	border-radius: 25px;
}
.index-about-content .right{
	width: 50%;
}
/*index-about*/
/*index-pro*/
.index-pro{
	padding-top: 5%;
	padding-bottom: 5%;
}
.index-pro .index-title-content{
	background-image: url(../images/index_03.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	padding-left: 5%;
	padding-bottom: 3%;
}
.index-text{
	/*width: 60%;*/
}
.index-text p{
	font-size: 23px;
	line-height: 1.8;
	color: #3c3a3a;
}
.index-pro-list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.index-pro-item{
	width: 14.11%;
	height: 100%;
	position: relative;
	transition: all 0.7s;
	height: 889px;
}
.index-pro-item:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, #5b94ff, #89b3ff);
	z-index: 8;
}
.index-pro-item:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: url(../images/index_04.png) no-repeat;
	background-size: 98%;
	background-position: center bottom;
	opacity: 0.41;
}
.index-pro-item.active{
	width: 43.56%;
}
.index-pro-item.active:before,.index-pro-item.active:after{
	display: none;
}
.index-pro-img{
	height: 100%;
}
.index-pro-img img{
	height: 100%;
	object-fit: cover;
}
.index-pro-info{
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	padding: 75px 25px;
	width: 100%;
	height: 100%;
	transition: all 0.7s;
}
.index-pro-item.active .index-pro-info{
	padding: 75px 60px; 
}
.index-pro-info .num{
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 85px;
}
.index-pro-info .img{
	margin-bottom: 85px;
}
.index-pro-info .img .imgw{
	display: block;
}
.index-pro-info .img .imgb{
	display: none;
}
.index-pro-item.active .index-pro-info .img .imgw{
	display: none;
}
.index-pro-item.active .index-pro-info .img .imgb{
	display: block;
}
.index-pro-info .title{
	font-size: 30px;
	font-family: var(--font-family1);
	color: #ffffff;
	margin-bottom: 85px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.index-pro-info .info{
	text-transform: uppercase;
	font-size: 22px;
	color: rgba(255,255,255,.75);
	margin-bottom: 85px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.index-pro-info .link{
	width: 50px;
	height: 34px;
	text-align: center;
	line-height: 32px;
	border: 1px solid #ffffff;
	border-radius: 14px;
}
.index-pro-item.active .index-pro-info .link{
	border: 1px solid rgba(46,120,255,.8);
	background-color: rgba(46,120,255,.8);
}
.index-pro-info .more{
	display: none;
	position: absolute;
	bottom: 50px;
	right: 60px;
	font-size: 20px;
	color: #ffffff;
}
.index-pro-info .more i{
	margin-left: 20px;
}
.index-pro-item.active .index-pro-info .more{
	display: block;
}
.ph-show{
	display: none;
}
/*index-pro*/


/*index-cases*/
.index-cases{
	padding: 5% 0;
	background-color: #f9f9f9;
	background-image: url(../images/index_07.png);
	background-position: right top;
	background-repeat: no-repeat;
}
.index-cases .index-title-content{
	padding-left: 5%;
}
.index-cases-container{
	margin-top: 2%;
}
.index-cases-nav ul {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.index-cases-nav ul li{
	margin: 0 25px;
}
.index-cases-nav ul li a{
	display: block;
	padding: 6px 32px;
	border-radius: 20px;
	font-size: 23px;
	color: #333333;
	font-weight: 600;
}
.index-cases-nav ul li.cur a{
	background-color: #005aff;
	color: #ffffff;
}
.index-cases-swiper{
	position: relative;
	text-align: center;
}
.index-cases-list{
	width: 100%;
	margin: 5% auto 0;
	max-width: 1920px;
}
.index-cases-list .swiper-slide{
	max-width: 1100px;
	margin: 0 auto;
}
.index-cases-img{
	overflow: hidden;
	border-radius: 35px;
}
.index-cases-img img{
	/*max-width: 1100px;*/
	overflow: hidden;
	transition: all 0.5s;
}
.index-cases-title{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 2%;
	padding: 0 1%;
	display: none;
}
.index-cases-title p,.index-cases-title span{
	font-size: 23px;
	color: #333333;
}
.index-cases-list .swiper-slide-active .index-cases-title{
	display: flex;
	display: -webkit-flex;
}
.index-cases-list .swiper-button-prev,.index-cases-list .swiper-button-next{
	width: 39px;
	height: 69px;
	background-size: 39px 69px;
	margin-top: -31px;
	top: 50%;
	transform: translateY(-50%);
}
.index-cases-list .swiper-button-prev{
	background-image: url(../images/index_prev.png);
	left: 3%;
}
.index-cases-list .swiper-button-next{
	background-image: url(../images/index_next.png);
	right: 3%;
}

/*index-cases*/

/*index-news*/
.index-news{
	margin-top: 5%;
	padding-top: 5%;
	padding-bottom: 8%;
}
.index-news .container{
	margin: 0 0 0 auto;
	padding-left: 2.5%;
}
.index-news-swiper{
	position: relative;
}
.pcindex-news-swiper{
	margin-top: 3%;
}
.pcindex-news-swiper .swiper-slide{
	max-width: 437px;
}
.index-news-item .date{
	font-size: 47px;
	color: #8a8a8a;
	font-family: var(--font-family1);
	font-weight: 600; 
	margin-bottom: 25px;
}
.index-news-item .title{
	font-size: 34px;
	color: #3c3a3a;
	font-family: var(--font-family1);
	line-height: 1.3em;
	height: 88px;
	font-weight: 600; 
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}
.index-news-item .info{
	font-size: 18px;
	color: #3c3a3a;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.4em;
	height: 50px;
	margin-bottom: 25px;
}
.index-news-item .img{
	overflow: hidden;
	margin-bottom: 25px;
}
.index-news-item .img img{
	transition: all 0.5s;
}
.index-news-item .more{
	font-size: 18px;
	color: #333333;
}
.index-news-more{
	margin-top: 6%;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	padding-right: 9%;
}
.index-news-more a.link{
	display: block;
	width: 166px;
	height: 46px;
	text-align: center;
	line-height: 44px;
	border: 1px solid #7a7a7a;
	border-radius: 23px;
	color: #7a7a7a;
	font-size: 16px;
}
.index-news-button{
	margin-left: 70px;
	height: 46px;
	position: relative;
	width: 122px;
}
.index-news-button .swiper-button-prev,
.index-news-button .swiper-button-next{
	width: 46px;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #7a7a7a;
	background-size: 13px 23px;
	margin-top: 0;
	top: auto;
}
.index-news-button .swiper-button-prev{
	left: 0;
	background-image: url(../images/index_prev_gray.png);
}
.index-news-button .swiper-button-next{
	right: 0;
	background-image: url(../images/index_next_gray.png);
}
/*index-news*/

/*footer*/
footer{
	background-image: url(../images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #f4f4f4;
	padding-top: 4%;
}
footer .container{
	max-width: 1600px;
}
.footer-content{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.footer-item .title a{
	font-size: 24px;
	color: #2c3441;
	font-weight: 600;
	line-height: 1.4em;
}
.footer-item:last-child{
	margin-left: 5%;
}
.footer-nav{
	margin-top: 15px;
}
.footer-nav ul li a{
	line-height: 2;
	font-size: 18px;
	color: #7c7c7c;
}
.footer-code{
	margin-top: 30px;
}
.footer-code-box{
	display: flex;
	display: -webkit-flex;
}
.footer-code-img:last-child{
	margin-left: 35px;
}
.footer-code-img p{
	margin-top: 15px;
	text-align: center;
	font-size: 18px;
	color: #3c3a3a;
}
.copyright{
	margin-top: 8%;
	text-align: center;
	background-color: #dfdfdf;
	padding: 12px 0 10px;
	font-size: 14px;
	color: #707070;
}
.copyright p ,.copyright a{
	font-size: 14px;
	color: #707070;
	line-height: 2;
}
/*footer*/


/*about*/
.about-banner{
	position: relative;
}
.about-banner .img{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}
.about-banner .img:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.56);
	z-index: 8;
}
.about-banner .img img{
    height: 100%;
    width: auto;
    text-align: center;
}
.about-content{
    position: relative;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	/*align-items: center;*/
}
.about-content .content{
	/*height: auto;*/
	margin-bottom: 2%;
}
.about-title{
	padding-bottom: 2%;
	border-bottom: 1px solid #686868;
}
.about-title h2{
	font-family: var(--font-family1);
	font-size: 55px;
	color: #ffffff;
}
.about-title p {
    text-align: center;
    font-size: 22px;
    line-height: 2;
    color: #ffffff;
}
.about-text{
	/*margin-top: -3.8%;*/
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 4%;
}
.about-text .left{
	width: 40%;
}
.about-text .right{
	width: 45%;
}
.about-text .text p{
	font-size: 22px;
	color: #ffffff;
	line-height: 2;
	/*text-indent: 2em;*/
}
.about-text .more{
	margin-top: 8%;
}
.about-text .more a{
	display: block;
	width: 180px;
	border: 1px solid #ffffff;
	color: #ffffff;
	text-align: center;
	line-height: 52px;
	border-radius: 27px;
	font-size: 20px;
}

/*about*/
/*culture*/
.culture{
	position: relative;
	z-index: 9;
	margin-top: -10%;
}
.culture-container{
	/*max-width: 1640px;*/
	height: 800px;
	margin: 0 auto;
	background: #005aff;
}
.culture-content{
	height: 100%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.culture-content .left{
	height: 100%;
	background-image: url(../images/culture_01.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 58.54%;
	padding-left: 9.76%;
	padding-top: 5%;
	background-color: #005aff;
}
.culture-content .left .title h2{
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
	padding-bottom: 2%;
	border-bottom: 1px solid #ffffff;
}
.culture-box{
	position: relative;
	height: 100%;
}
.culture-content .left .culture-box{
	padding-top: 25%;
}
.culture-content .left .button{
	margin-top: 10%;
	position: relative;
	width: 143px;;
	height: 58px;
}
.culture-content .left .button .swiper-button-prev,
.culture-content .left .button .swiper-button-next{
	width: 58px;
	height: 100%;
	background-size: 12px 23px;
	background-color: #ffffff;
	border-radius: 50%;
	margin-top: 0;
	top: auto;
}
.culture-content .left .button .swiper-button-prev{
	left: 0;
}
.culture-content .left .button .swiper-button-next{
	right: 0;
}
.culture-content .left .button .swiper-button-next.swiper-button-disabled, 
.culture-content .left .button .swiper-button-prev.swiper-button-disabled{
	opacity: 0.8;
}

.culture-box .text h3{
	font-size: 34px;
	font-family: var(--font-family1);
	color: #ffffff; 
	margin-bottom: 4%;
}
.culture-box .text p{
	color: #ffffff;
	font-size: 30px;
	line-height: 2;
}

.culture-content .right{
	width: 41.46%;
	background-color: #ffffff;
}
.culture-content .right .img{
	overflow: hidden;
}
.culture-content .right .img img{
	width: 100%;
	object-fit: cover;
	height: 800px;
}
/*culture*/

/*quality*/
.quality{
	position: relative;
}
.quality-bg img{
	object-fit: cover;
}
.quality-container{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.quality-container .content{
	/*display: flex;*/
	/*display: -webkit-flex;*/
	/*flex-wrap: wrap;*/
	/*align-items: center;*/
	/*justify-content: center;*/
	position: relative;
	height: 100%;
    width: 100%;
}
.quality-container .list{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
}
.quality-container .list .item{
	text-align: center;
	margin-bottom: 2%;
}
.quality-container .list .item:last-child{
	margin-bottom: 0;
}
.quality-container .list .item h3{
	color: #ffffff;
	font-size: 22px;
	margin-bottom: 1%;
	font-weight: 400;
}
.quality-container .list .item p{
	font-size: 35px;
	font-family: var(--font-family1);
	color: #ffffff;
	/*font-weight: 600;*/
}

/*quality*/
/*develop*/

.develop{
	position: relative;
}
.develop-bg img{
	object-fit: cover;
}
.develop-container{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 6.4% 0 0;
}
.develop .index-title h2{
	color: #ffffff;
}
.develop .index-title p{
	text-transform: uppercase;
	color: #ffffff;
}
.develop-box{
	position: relative;
}
.develop-container .container{
	margin: 0 0 0 auto;
	padding-left: 2.7%;
}
.develop-box .gallery-thumbs:after{
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	height: 1px;
	width: 100%;
	background-color: #ffffff;
}
.develop-box .gallery-thumbs .swiper-wrapper{
	padding: 10px 0;
}
.develop-box .gallery-thumbs .swiper-slide .year{
	padding-top: 16px;
	text-align: center;
	position: relative;
	font-size: 20px;
	color: #ffffff;
}
.develop-box .gallery-thumbs .swiper-slide .year:before{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -8px;
	width: 12px;
	height: 12px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 2px solid #ffffff;
}
.develop-box .gallery-thumbs .swiper-slide-thumb-active .year:before{
	border: 2px solid #005aff;
}
.develop-box .gallery-top {
	margin-top: 5%;
}
.develop-box .gallery-top .swiper-slide{
	max-width: 458px;
}
.develop-box .gallery-top .swiper-slide .img{
	/*text-align: center;*/
	/*padding: 0 15%;*/
	padding-left: 15%;
}
.develop-box .gallery-top .swiper-slide .img img{
	border: 2px solid #005aff;
}
.develop-box .gallery-top .swiper-slide .date{
	font-size: 66px;
	color: #ffffff;
	font-family: var(--font-family1);
	font-weight: 600;
	margin-top: -10%;
	margin-bottom: 2%;
}
.develop-box .gallery-top .swiper-slide:nth-child(3n){
	padding-top: 0;
}
.develop-box .gallery-top .swiper-slide:nth-child(3n+1){
	padding-top: 4%;
}
.develop-box .gallery-top .swiper-slide:nth-child(3n+2){
	padding-top: 8%;
}
.develop-box .gallery-top .swiper-slide .info{
	padding: 0 15%;
	color: #ffffff;
	font-size: 20px;
}
.develop-button{
	position: relative;
	width: 150px;
	height: 58px;
	margin: 7% 0 0 auto;
}
.develop-button .swiper-button-prev,
.develop-button .swiper-button-next{
	width: 58px;
	height: 100%;
	background-size: 12px 22px;
	background-color: #b1b1b1;
	border-radius: 50%;
	margin-top: 0;
	top: auto;
}
.develop-button .swiper-button-prev{
	left: 0;
	background-image: url(../images/index_prev.png);
}
.develop-button .swiper-button-next{
	right: 0;
	background-image: url(../images/index_next.png);
}
/*develop*/

/*honor*/
.honor{
	padding-top: 6%;
	padding-bottom: 5%;
}
.honor .index-title p{
	text-transform: uppercase;
}

/*.honor-container .container{*/
/*	margin: 0 0 0 auto;*/
/*	padding-left: 2.7%;*/
/*}*/
.honor-content{
	margin-top: 5%;
	position: relative;
}
.honor-box .swiper-slide{
	max-width: 420px;
}
.honor-box .swiper-slide .img{
    border: 1px solid #666;
}
.honor-button{
	position: relative;
	width: 150px;
	height: 58px;
	margin: 4% 0 0 auto;
}
.honor-button .swiper-button-prev,
.honor-button .swiper-button-next{
	width: 58px;
	height: 100%;
	background-size: 12px 22px;
	background-color: #b1b1b1;
	border-radius: 50%;
	margin-top: 0;
	top: auto;
}
.honor-button .swiper-button-prev{
	left: 0;
	background-image: url(../images/index_prev.png);
}
.honor-button .swiper-button-next{
	right: 0;
	background-image: url(../images/index_next.png);
}
/*honor*/
.nyBan-img{
	position: relative;
}
.nyBan-img:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 8;
	background-color: rgba(0,0,0,.5);
}
.nyBan-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.nyBan-text .content{
	height: auto;
	padding: 0 15%;
}
.nyBan-text .content h2{
	text-align: center;
	font-size: 55px;
	font-family: var(--font-family1);
	color: #ffffff;
	margin-bottom: 5%;
}
.nyBan-text .content p{
	text-align: center;
	font-size: 22px;
	line-height: 2;
	color: #ffffff;
}
/*product*/
.product-search-box{
	background-image: url(../images/pro_search_bg.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	padding-top: 8%;
	padding-bottom: 8%;
	width: 52%;
	margin: 0 auto;
}
.product-search-title{
	text-align: center;
	font-size: 40px;
	color: #333333;
}
.product-search-form{
	margin-top: 6%;
	width: 100%;
	height: 58px;
	border: 2px solid #333333;
	position: relative;
}
.product-search-form form{
	height: 100%;
	width: 100%;
}
.product-search-form input {
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 20px;
	color: #767676;
}
.product-search-form button{
	position: absolute;
	right: 0;
	width: 58px;
	height: 100%;
	top: 0;
	cursor: pointer;
	z-index: 9;
}
.product-list{
	background-image: url(../images/pro_list_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 5%;
	padding-bottom: 8%;
}
.product-list-box .list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 30px;
}
.product-list-box .list .item{
	position: relative;
	margin-bottom: 2%;
	width: 49%;
}
.product-list-box .list .item .img{
	position: relative;
	overflow: hidden;
}
.product-list-box .list .item .img img{
	transition: all 0.5s;
	width: 100%;
}
.product-list-box .list .item .img::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	transition: all 0.5s;
}
.product-list-box .list .item .title{
	position: absolute;
	left: 8%;
	bottom: 10%;
	padding-bottom: 15px;
}
.product-list-box .list .item .title:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 2px;
	background-color: #005aff;
}
.product-list-box .list .item .title p{
	font-size: 22px;
	color: #ffffff;
	font-family: var(--font-family1);
	font-weight: 600;
}
.supp{
	position: relative;
}
.supp-container{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.supp-container .content{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
}
.supp-info{
	width: 36%;
}
.supp-info .title{
	font-size: 40px;
	color: #ffffff;
	margin-bottom: 4%;
}
.supp-info .text{
	font-size: 18px;
	color: #ffffff;
	line-height: 2.3;
}
.supp-info .more{
	margin-top: 9%;
}
.supp-info .more a{
	display: block;
	width: 150px;
	text-align: center;
	line-height: 42px;
	border: 1px solid #ffffff;
	color: #ffffff;
	font-size: 18px;
	border-radius: 21px;
}

/*product*/

/*prodetail*/
.prodetail{
	padding-top: 0.5%;
}
.prodetail-dao p{
	color: #bfbfbf;
	font-size: 18px;
	line-height: 2;
}
.prodetail-dao p span{
	color: #bfbfbf;
	font-size: 18px;
	padding: 0 20px;
}
.prodetail-dao p a{
	color: #333333;
	font-size: 18px;
}

.prodetail-box{
	margin-top: 5%;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.prodetail-box .left{
	width: 55%;
}
.prodetail-box .info .title h1{
	font-size: 40px;
	color: #333333;
	position: relative;
	padding-bottom: 1%;
}
.prodetail-box .info .title h1:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background-color: #0040b4;
}
.prodetail-box .info .info-list{
	margin-top: 3%;
}
.prodetail-box .info .info-item{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	margin-bottom: 2%;
}
.prodetail-box .info .info-item .info-tit{
	width: 110px;
	font-size: 20px;
	color: #333333;
	line-height: 1.7;
}
.prodetail-box .info .info-item .info-txt{
	width: calc(100% - 110px);
	font-size: 20px;
	color: #616161;
	line-height: 1.7;
}
.prodetail-box .info .info-item .info-txt p{
	font-size: 20px;
	color: #616161;
}
.prodetail-box .right{
	width: 30.5%;
}
.prodetail-det{
	margin-top: 9%;
	background-color: #f6f6f6;
	padding-bottom: 3%;
}
.prodetail-det-nav{
	background-color: #ffffff;
	border-bottom: 1px solid #787878;
}
.prodetail-det-nav ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.prodetail-det-nav ul li{
	margin-right: 11%;
}
.prodetail-det-nav ul li:last-child{
	margin-right: 0;
}
.prodetail-det-nav ul li a{
	display: block;
	padding: 18px 36px;
	font-size: 20px;
	color: #333333;
	border-bottom: 2px solid transparent;
}
.prodetail-det-nav ul li.cur a{
	border-bottom: 2px solid #0040b4;
	color: #0040b4;
}
.prodetail-det-box{
	margin-top: 4%;
}
.prodetail-det-text{
	font-size: 20px;
	color: #333333;
	line-height: 2;
}
.prodetail-det-text p{
	font-size: 20px;
	color: #333333;
}
.features-content{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.features-content .left{
	width: 50%;
	padding-left: 8%;
	padding-right: 8%;
	background-color: #0040b4;
	background-image: url(../images/proshow_04.png);
	background-repeat: no-repeat;
	background-position: bottom;
}
.features-content .right{
	width: 50%;
}
.features-box{
	position: relative;
}
.features-box .gallery-thumbs .text h3{
	font-size: 34px;
	color: #ffffff;
	font-family: var(--font-family1);
	margin-bottom: 10%;
}
.features-box .gallery-thumbs .text p{
	font-size: 20px;
	color: #ffffff;
	line-height: 1.8;
}
.features-content .left .features-box{
	padding-top: 30%;
}
.features-content .left .button{
	margin-top: 25%;
	position: relative;
	width: 143px;;
	height: 58px;
}
.features-content .left .button .swiper-button-prev,
.features-content .left .button .swiper-button-next{
	width: 58px;
	height: 100%;
	background-size: 12px 23px;
	background-color: #ffffff;
	border-radius: 50%;
	margin-top: 0;
	top: auto;
}
.features-content .left .button .swiper-button-prev{
	left: 0;
}
.features-content .left .button .swiper-button-next{
	right: 0;
}
.features-content .left .button .swiper-button-next.swiper-button-disabled, 
.features-content .left .button .swiper-button-prev.swiper-button-disabled{
	opacity: 0.8;
}
/*prodetail*/


/*technical*/
.suppBan-img:after{
	display: none;
}
.suppBan-img .nyBan-text .content h2{
	margin-top: 6%;
	margin-bottom: 1%;
}
.suppBan-img .nyBan-text .content p{
	font-family: var(--font-family1);
	font-size: 34px;
}

.technical{
	padding-top: 5%;
	padding-bottom: 10%;
}
.techniacl-title{
	text-align: center;
}
.techniacl-title h2{
	font-weight: 600;
}
.techniacl-title p:after{
	left: 50%;
	transform: translateX(-50%);
}
.technical-list{
	margin-top: 3%;
}
.technical-list .item{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	padding-bottom: 2%;
	border-bottom: 2px solid #bbbbbb;
	margin-bottom: 2%;
}
.technical-list .item:last-child{
	border-bottom: 2px solid transparent;
}
.technical-list .item .img{
	width: 25.25%;
	margin-right: 5.375%;
	overflow: hidden;
}
.technical-list .item .img img{
	transition: all 0.5s;
}
.technical-list .item .info{
	width: 55.625%;
	margin-right: 5.375%;
}
.technical-list .item .info h2{
	font-size: 22px;
	color: #333333;
	line-height: 2;
}
.technical-list .item .info p{
	font-size: 18px;
	color: #8a8a8a;
	line-height: 2;
}
.technical-list .item .down{
	width: 8.375%;
	align-self: center;
	text-align: center;
}
.technical-list .item .down p{
	margin-top: 5%;
	font-size: 18px;
	color: #333333;
	line-height: 2;
}

/*technical*/


/*cases*/
.cases{
	padding-top: 3%;
}
.cases-list .list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cases-list .item{
	border-bottom: 1px solid #bbbbbb;
	width: 46%;
}
.cases-list .item .img{
	border-radius: 15px;
	overflow: hidden;
	margin-right: 4.75%;
	width: 40%;
	border: 1px solid #eee;
}
.cases-list .item .info{
	width: calc(100% - 50%);
	margin-right: 0;
}
.cases-list .item:nth-child(4n) .img{
    margin-right: 0;
}
.cases-list .item:nth-child(4n) .info{
    margin-right: 4.75%;
}
.cases-list .item:nth-child(4n-1) .img{
    margin-right: 0;
}
.cases-list .item:nth-child(4n-1) .info{
    margin-right: 4.75%;
}
.casesdetail-content{
	padding-bottom: 10%;
}
.casesdetail-content .prodetail-box .left{
	width: 100%;
}
.casesdetail-text{
	font-size: 20px;
	color: #616161;
	line-height: 1.8;
}
.files-content .prodetail-box .info .title{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.files_down{
	display: flex;
	text-align: center;
	margin-top: 4%;
}
.files_down a{
	font-size: 16px;
	color: #333333;
}
/*cases*/

/*news*/
.news{
	padding-top: 3%;
}
.news-list .item{
	border-bottom: 1px solid #bbbbbb;
}
.news-list .item .img{
	border-radius: 0;
}
/*news*/

/*pages*/
.pages{
	margin: 20px auto;
}
.pages ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pages li{
	margin: 0 3px;
}
.pages li a{
	padding: 5px 12px;
	display: block;
	border: 1px solid #787878;
}
.pages li.current a{
	border: 1px solid #005aff;
	background-color: #005aff;
	color: #ffffff;
}
/*pages*/

/*contact*/
.contact{
	padding: 5% 0;
}
.contact-box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact-box .left{
	width: 48%;
}
.contact-box .title{
	font-size: 24px;
	color: #333333;
}
.contact-box .left .text{
	margin-top: 2%;
	font-size: 20px;
	line-height: 2;
	color: #333333;
	margin-bottom: 5%;
}
.contact-box .right{
	width: 50%;
}
/*contact*/


/*recruit*/
.recruit-content{
	margin-top: 2%;
	width: 100%;
}
.recruit-header{
	background-color: #eeeeee;
}
.recruit-list{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	padding: 16px 0;
}
.recruit-list .item{
	padding: 0 15px;
	font-size: 18px;
	color: #333333;
}
.recruit-list .job_name{
	flex: 3;
}
.recruit-list .job_num{
	flex: 2;
}
.recruit-list .job_area{
	flex: 2;
}
.recruit-list .job_time{
	flex: 2;
}
.recruit-box{
	cursor: pointer;
	border-bottom: 1px dashed rgba(0,0,0,.2);
}
.recruit-box.active{
	background-color: #f5f5f5;
}
.recruit-box.active .recruit-list{
	border-bottom: 1px dashed rgba(0,0,0,.2);
}
.recruit-text{
	padding: 15px;
	background-color: #f5f5f5;
	display: none;
}
.recruit-box.active .recruit-text{
	display: block;
}
.recruit-text-item{
	margin-bottom: 15px;
}
.recruit-text-tit h2{
	font-size: 18px;
	color: #333333;
	margin-bottom: 8px;
}
.recruit-text-txt p{
	font-size: 16px;
	color: #444444;
	line-height: 2;
}
/*recruit*/

/*message*/
.message{
	margin-top: 3%;
}
.message-box{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.message-box .item{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
}
.message-box .item:last-child{
	margin-right: 0;
}
.message-box .item label{
	font-size: 20px;
	color: #333333;
	line-height: 2;
}
.message-box .item em{
	color: #ff0000;
}
.message-box .item .inp{
	width: 100%;
	height: 50px;
	padding-left: 20px;
	border: 1px solid #bbbbbb;
	font-size: 18px;
	color: #666666;
}
.message-box .textarea{
	width: 100%;
}
.message-box .textarea .inp{
	height: 150px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
	font-family: var(--font-family);
}
.message-box img{
	height: 50px;
}
.message-btn{
	justify-content: center;
}
.message-btn .btn{
	width: 20%;
}
.message-btn .btn button{
	width: 100%;
	height: 50px;
	background-color: #005aff;
	cursor: pointer;
	color: #ffffff;
	font-size: 18px;
}
/*message*/