/* ===================首页样式========================== */
.banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #030303;
}

.banner-mix {
	width: 100%;
	position: relative;
}

.banner-img {
	width: 100%;
	overflow: hidden;
}

.banner-img img {
	width: 100%;
	object-fit: cover;
}

.banner-img img.none-pad-mb {
	height: 100vh;
}

.banner-img img.none-pc {
	min-height: 600px;
}

.banner-cont {
	position: absolute;
	width: 100%;
	color: #fff;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-cont {
	width: 100%;
	text-align: center;
}

.banner-cont-wrap {
	width: 100%;
}

.banner-cont .image {
	max-width: 330px;
}

.banner-cont .title {
	line-height: 1.1;
}

.banner-cont .text {
	line-height: 1.1;
	font-family: "MB";
	opacity: 0.5;
}

.banner-cont-one .banner-cont-dot {
	width: 520px;
}

.banner-cont-one .banner-cont-dot img {
	width: 100%;
	visibility: hidden;
}

.banner-dot {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.banner-dot #cartoonDot-text {
	width: 100% !important;
	height: 100% !important;
}

.banner-mix-one .banner-img {
	opacity: 0;
}

.banner-shade {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../image/bannerOne.png') no-repeat center/cover;
	z-index: 2;
	pointer-events: none;
}

/* -- */
.banner-cont-one .contain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	justify-content: space-between;
	padding: 0 100px 20px 160px;
}

.banner-cont-one .banner-cont-wrap {
	width: auto;
	pointer-events: auto;
}

.banner-one-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
}

.banner-one-bg img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* 效果 */
.banner-cont .image,
.banner-cont .title,
.banner-cont .text {
	opacity: 0;
}

.swiper-slide-active .banner-cont .image {
	animation: bannerDown 1s ease both .4s;
}

.swiper-slide-active .banner-cont .title {
	animation: bannerUp 1s ease both .5s;
}

.swiper-slide-active .banner-cont .text {
	animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .image {
	animation: bannerDown 1s ease both .4s;
}

.oneSlide .banner-cont .title {
	animation: bannerUp 1s ease both .5s;
}

.oneSlide .banner-cont .text {
	animation: bannerUp 1s ease both .5s;
}

@keyframes bannerDown {
	0% {
		opacity: 0;
		transform: translateY(-100px);
		filter: blur(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes bannerUp {
	0% {
		opacity: 0;
		transform: translateY(100px);
		filter: blur(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

/* -- */
.banner-scroll {
	position: absolute;
	z-index: 99;
	pointer-events: none;
	width: 100%;
	bottom: 0;
	left: 0;
	display: none;
	flex-direction: column;
	align-items: center;
}

.banner-scroll .text {
	font-family: "MB";
	line-height: 1.1;
	color: #fff;
	display: none;
}

.banner-scroll i {
	display: block;
	position: relative;
	margin: 30px auto 0;
	width: 1px;
	height: 50px;
	background: #fff;
	overflow: hidden;
}

.banner-scroll i::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 0;
	background: #FF6801;
	left: 0;
	top: 0;
	animation: bannerScroll 3s linear infinite;
}

@keyframes bannerScroll {
	0% {
		height: 0;
		bottom: auto;
		top: 0;
	}

	50% {
		height: 100%;
		bottom: auto;
		top: 0;
	}

	50.01% {
		height: 100%;
		top: auto;
		bottom: 0;
	}

	100% {
		height: 0;
		top: auto;
		bottom: 0;
	}
}

/* -- */
.banner-control {
	position: absolute;
	width: 100%;
	height: auto;
	background: transparent;
	bottom: 44px;
	right: 0;
	z-index: 99;
}

.banner-page {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-page p {
	width: auto;
	height: auto;
	border-radius: 0;
	opacity: 1;
	background: transparent !important;
	margin: 0 14px !important;
	display: flex;
	align-items: center;
}

.banner-page p span {
	width: 18px;
	height: 18px;
	display: block;
	position: relative;
	border-radius: 100%;
	background: transparent;
	opacity: 1;
	border: 2px solid transparent;
	transition: all .4s ease;
}

.banner-page p span::before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	background: #fff;
	margin: -5px 0 0 -5px;
	transition: all .4s ease;
}

.banner-page p.swiper-pagination-bullet-active span {
	border-color: #FF6801;
}

.banner-page p.swiper-pagination-bullet-active span::before {
	transform: scale(0);
}

.banner-page p i {
	display: none;
	width: 50px;
	height: 2px;
	background: #fff;
	overflow: hidden;
	position: relative;
	margin: 0 20px;
	opacity: .7;
}

.banner-page p:last-child i {
	display: none;
}

/* .banner-page p.swiper-pagination-bullet-active i{height: 50px;} */
/* -- */
.banner-play {
	display: none;
	width: 34px;
	height: 34px;
	background: url('../image/bannerStop.svg') no-repeat center/12px auto;
	cursor: pointer;
	position: absolute;
	pointer-events: auto;
	border: 1px solid #fff;
	border-radius: 3px;
	left: 50%;
	margin-left: -17px;
	bottom: 26px;
}

.banner-play.active {
	background-image: url('../image/bannerStopH.svg');
}

.indTitle {
	width: 100%;
	text-align: center;
	position: relative;
	padding-top: 24px;
}

.indTitle .text {
	line-height: 1;
	position: absolute;
	width: 100%;
	text-align: center;
	font-family: "MB";
	color: #f5f7f9;
	text-transform: uppercase;
	left: 0;
	top: 0;
}

.indTitle .title {
	line-height: 1;
	color: #333;
	position: relative;
	z-index: 2;
}

.indTitle.white .text {
	color: #fff;
	opacity: 0.1;
}

.indTitle.white .title {
	color: #fff;
}

.indfa {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.indfa-list {
	width: 100%;
}

.indfa-ul.mb {
	display: none;
}

.indfa-main {
	width: 700px;
	height: 680px;
}

.indfa-link {
	padding:30px;
    display: flex;
	overflow: hidden;
	position: relative;
	background-color: #fff;
     justify-content: space-between;
    align-items: center;
}


.indfa-link .title {

	color: #363636;
	line-height: 1;
	transition: all .4s ease;
}

.indfa-link:hover img {
	transform: scale(1.04);
}

/*.indfa-link:hover  {*/
/*	width: 100%;*/
/*	background: #FF6801;*/
/*}*/

.indfa-more {
	width: 50%;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.indfa-top {
	width: 100%;
	height: 340px;
	margin-bottom:20px;
}

.indfa-bottom {
	width: 100%;
	justify-content: space-between;
}

.indfa-bottom .indfa-link {
	width: calc(50% - 10px);
	height: 150px;
}

.indfa-more .item1{
    background-color: #FF6801;
    
   
}
.indfa-more .item1 .title{
    color:#fff;
}
.indfa-more  .title .more{
    color:#FF6801;
}
.indfa-more .item1 img{
    width:200px;
   
    
}
.indfa-more  p.lm1{
    margin-bottom:15px;
}
.indfa-more .item4 img{
    width:200px;
}
.indfa-more .item4 .title{
    color:#FF6801;
}
.indfa-more .item4 .title .more{
    color:#363636;
}
.indfa-more .item5 {
    width:100%;
    flex-grow: 1;
}

.indmh {
	width: 100%;
	position: relative;
	/*height: 400vh;*/
}

.indmh-sticky {
	width: 100%;
	top: 0;
	left: 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background-image: url("../image/zzhxbg.webp");
	/*background-attachment: fixed;*/
	background-size: cover;
}

.indmh-bg {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	opacity: 0;
}
/*.indmh-sticky:after{*/
/*    position: absolute;*/
/*    top:0;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:100%;*/
/*    content:"";*/
/*    background-color: rgba(0,0,0,.5);*/
/*}*/


.indmh-logo {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

/*.indmh-logo img {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	object-fit: cover;*/

/*}*/

.indmh-text {
	width: 100%;
	position: absolute;
	z-index: 3;
	justify-content: center;
	left: 0;
	top: 86vh;
	color: #333;
	transition: all .4s ease;
}

.indmh-text span {
	position: relative;
	margin-left: 24px;
}

.indmh-text span:first-child {
	margin-left: 0;
}

.indmh-text.active {
	opacity: 0;
}

.indmh-shade {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
}

.indmh-content {
	position: absolute;
	width: 100%;
	z-index: 4;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
}

.indmh-desc {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #fff;
}
.indmh-desc.black{
    color:#666;
}

.indmh-num {
	width: 100%;

	color:#fff;
}

.indmh-num li {
	width: 25%;
	text-align: center;
	color:#666;
}

.indmh-num li .num {
	font-family: "MB";
	line-height: 1;
	font-weight: 700;
	color: #FF6801;
}

.indmh-num li .title {
	line-height: 1.1;
}

.indmh-more {
	width: 100%;
	justify-content: center;
}

.indmh-more a {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	width: 230px;
	height: 52px;
	padding-top: 2px;
	border: 1px solid #FF6801;
	border-radius: 26px;
	line-height: 1;
	font-size: 14px;
	color: #FF6801;
	transition: all .4s ease;
}

/*.indmh-more a::after {*/
/*	content: "";*/
/*	width: 24px;*/
/*	height: 12px;*/
/*	position: absolute;*/
/*	top: 50%;*/
/*	margin-top: -4px;*/
/*	right: 22px;*/
/*	background: url('../image/indArr.png') no-repeat center;*/
/*	transition: all .4s ease;*/
/*}*/

.indmh-more a:hover {
	background: #FF6801;
	border-color: #FF6801;
	color:#fff;
}

.indmh-more a:hover::after {
	transform: translateX(-26px);
}

/* -- */
.indmh-content {
	opacity: 0;
	pointer-events: none;
	transition: all .8s ease;
}

.indmh-content.active {
	opacity: 1;
	pointer-events: auto;
}

.indmh-content.active .indTitle {
	animation: indmhRun 1s ease both .4s;
}

.indmh-content.active .indmh-desc {
	animation: indmhRun 1s ease both .6s;
}

.indmh-content.active .indmh-num {
	animation: indmhRun 1s ease both .8s;
}

.indmh-content.active .indmh-more {
	animation: indmhRun 1s ease both 1s;
}

@keyframes indmhRun {
	0% {
		opacity: 0;
		transform: translateY(60px);
		filter: blur(6px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

/* -- */

.indjs {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #F5F5F5;
	/*background-image: url(../image/zzhxbg.webp);*/
	background-size:cover; 
}
/*.indjs::after{*/
/*    content:"";*/
/*    position: absolute;*/
/*    background-color: rgba(0,0,0,.8);*/
/*    width:100%;*/
/*    height:100%;*/
/*    left:0;*/
/*    top:0;*/
/*}*/
.indjs .indTitle .title{
    color:#333;
}
.indjs .indTitle .text {
	opacity: 0.3;
	color: #fff;
}

.indjs .contain {
	position: relative;
	z-index: 4;
}

.indjs-list {
	width: 100%;
}

.indjs-list ul {
	margin: -40px 0 0 -40px;
}

.indjs-list li {
	width: calc(25% - 40px);
	margin: 40px 0 0 40px;
	background: #FF6801;
	text-align: center;
	color: #fff;
	transition: all .4s ease;
	padding: 70px 20px;
}

/*.indjs-list li a{display: block;width: 100%;height: 100%;}*/
.indjs-list li .icon {
	width: 118px;
	height: 118px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all .4s ease;
}

.indjs-list li .icon img {
	max-width: 100%;
	max-height: 100%;
}

.indjs-list li .title {
	line-height: 1.1;
}

.indjs-list li .text {
	width: 100%;
}

.indjs-list li:hover {
	box-shadow: 0 4px 16px 2px rgba(0, 86, 184, 0.3);
	transform: translateY(-4px);
}

.indjs-list li:hover .icon {
	transform: translateY(-6px);
}

.indjs-bird {
	width: 1790px;
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -895px;
	animation: indjsBirdRun 10s linear infinite;
}

.indjs-bird img {
	width: 100%;
	object-fit: cover;
}

/* @keyframes indjsBirdRun {0%{transform: translate(0,0);}12.5%{transform: translate(-30px,-15px);}25%{transform: translate(-30px,30px);}37.5%{transform: translate(-15px,30px);}50%{transform: translate(0,0);}62.5%{transform: translate(-30px,-15px);}75%{transform: translate(-30px,-30px);}87.5%{transform: translate(-15px,-30px);}100%{transform: translate(0,0);}} */

.indxw {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.indxw-mix {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.indxw-left {
	width: 842px;
	position: relative;
	height: 682px;
}

.indxw-left .bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indxw-main {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 50px 40px 30px;
	height: 50%;
	z-index: 2;
	width: 560px;
	overflow: hidden;
}

.indxw-main::after {
	content: "";
	animation: indxwRun 10s linear infinite;
	position: absolute;
	width: 282px;
	height: 360px;
	background: url('../image/indwxIcon.png') no-repeat center/100% auto;
	right: 10px;
	bottom: -17px;
}

/* @keyframes indxwRun {0%{transform: translate(0,0);}12.5%{transform: translate(-20px,-10px);}25%{transform: translate(-20px,20px);}37.5%{transform: translate(-10px,20px);}50%{transform: translate(0,0);}62.5%{transform: translate(-20px,-10px);}75%{transform: translate(-20px,-20px);}87.5%{transform: translate(-10px,-20px);}100%{transform: translate(0,0);}} */
.indxw-link {
	background: #f5f7f9;
}

.indxw-link * {
	position: relative;
	z-index: 2;
}

.indxw-link .hint {
	width: 100%;
}

.indxw-link .time {
	color: #666;
	font-family: "MB";
	position: relative;
	height: 32px;
}

.indxw-link .time::after {
	content: "";
	position: absolute;
	width: 46px;
	height: 2px;
	background: #FF6801;
	left: 0;
	bottom: 0;
}

.indxw-link .tags {
	margin-left: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	background: #FF6801;
	color: #fff;
	padding: 0 10px;
	border-radius: 5px;
	line-height: 1;
}

.indxw-link .title {
	color: #333;
	transition: all .4s ease;
}

.indxw-link .title:hover {
	color: #FF6801;
}

.indxw-link .more {
	width: 100%;
}

.indxw-link .more a {
	display: flex;
	color: #666;
	padding-right: 18px;
	background: url('../image/arrR.svg') no-repeat right -2px center/18px auto;
	transition: all .4s ease;
	position: relative;
}

.indxw-link .more a:hover {
	color: #FF6801;
	background-image: url('../image/arrRH.svg');
}

.indxw-link .more a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	background: #FF6801;
	right: 0;
	bottom: 0;
	transition: all .4s ease;
}

.indxw-link .more a:hover::after {
	width: 100%;
	right: auto;
	left: 0;
}

.indxw-right {
	width: calc(100% - 842px);
	position: relative;
	z-index: 2;
}

.indxw-items {
	width: 100%;
	height: 50%;
	position: relative;
	flex-direction: row-reverse;
}

.indxw-items-cont,
.indxw-items-image {
	width: 50%;
}

.indxw-items-image {
	display: block;
	overflow: hidden;
	height: 341px;
	width: 50%;
}

.indxw-items-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease;
}

.indxw-items-image:hover img {
	transform: scale(1.04);
}

.indxw-items-cont {
	position: relative;
	background: #FF6801;
	padding: 50px 20px 20px;
}

.indxw-items-cont.indxw-link .time {
	color: #fff;
}

.indxw-items-cont.indxw-link .time::after {
	background: #fff;
}

.indxw-items-cont.indxw-link .title {
	color: #fff;
}

.indxw-items-cont.indxw-link .tags {
	background: #fff;
	color: #FF6801;
}

.indxw-items-cont.indxw-link .more a {
	background-image: url('../image/arrRW.svg');
	color: #fff;
}

.indxw-items-cont.indxw-link .more a::after {
	background: #fff;
}

.indxw-items:first-of-type {
	left: -50%;
	background: #FF6801;
}

.indxw-small {
	position: absolute;
	width: 50%;
	height: 50%;
	right: 0;
	top: 0;
	padding: 50px 20px 20px;
}

.indxw-loop {
	width: 100%;
	display: none;
}




.service{
    background-color: #F0F0F0;
}

.w1660 {
    width:100%;
	max-width: 1660px;
	margin: 0 auto;
	overflow: hidden;
}

.serA {
	width: 100%;
	float: left;
	background: #fff;
	padding: 90px 0px;
	margin-top: 42px;
	position: relative;
}

.serA_l {
	width: 406px;
	float: left;
	margin-left: 9%;
}

.serA_l>span {
	font-size: 32px;
	color: #222222;
	font-weight: bold;
}

.serA_l>span i {
	display: block;
	font-size: 18px;
	color: #8e8e8e;
	padding-left: 30px;
	position: relative;
	font-style: normal;
}

.serA_l>span i:before {
	content: '';
	width: 16px;
	height: 3px;
	background: #8e8e8e;
	position: absolute;
	left: 0px;
	top: 10px;
}

.serA_l>p {
	color: #666666;
	margin-top: 90px;
	line-height: 24px;
}

.serA_l>ul {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
}

.serA_l>ul li {
	float: left;
	width: 33.3%;
	margin-top: 20px;
	transition-duration: .5s;
	-ms-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-webkit-transition-duration: .5s;
	text-align: center;
}

.serA_l>ul li p {
	width: 70px;
	height: 70px;
	border: 1px solid #c6c6c6;
	border-radius: 20px;
	text-align: center;
	line-height: 70px;
	margin:0 auto;
}

.serA_l>ul li p img {
	vertical-align: middle;
}

.serA_l>ul li span {
	display: block;
	color: #666666;
	margin-top: 18px;
}

.serA_l>ul li span em {
	font-style: normal;
}

.serA_l>a {
	float: left;
	width: 42px;
	height: 42px;
	border: 1px solid #cacaca;
	border-radius: 100%;
	margin-top: 50px;
	position: relative;
	overflow: hidden;
}

.serA_l>a:after {
	content: '';
	width: 100%;
	height: 100%;
	background: url(../image/sico25.png) no-repeat center;
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.serA_R {
	right: 9%;
	top: 50%;
	width: 43.2%;
	transform: translateY(-50%);
	position: absolute;
}

@media screen and (min-width:1200px) {
	.serA_l>ul li:hover {
		padding-left: 1%;
		width: 32.3%;
	}

	.serA_l>a:hover:after {
		-webkit-animation: iHover .6s linear;
		animation: iHover .6s linear;
		background: url(../image/sico025.png) no-repeat center;
	}

	.serA_l>a:hover {
		background: #FF6801;
		border-color: #FF6801;
	}
}

.ser2 {
	height: 747px;
	background: url(../image/serpic6.jpg);
	padding: 0px;
	position: relative;
	z-index: 1;
}

.ser2:after {
	content: url(../image/serpic8.png);
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: -1;
}

.ser2 .serA_R {
	right: auto;
	left: 15.6%;
	width: 37.4%;
}

.ser2 .serA_l {
	float: right;
	margin: 132px 9% 0px 0px;
}

.ser2 .serA_l>span,
.ser2 .serA_l>span i,
.ser2 .serA_l>p {
	color: #fff;
}

.ser2 .serA_l>span i:before {
	background: #fff;
}

.ser2 .serA_l>a:after {
	background: url(../image/sico025.png) no-repeat center;
}

.ser2 .serA_l>ul li span {
	color: #fff;
}

.ser2 .serA_l>ul li p {
	border-color: #fff;
}

.ser3 .serA_l {
	margin: 68px 0px 0px 9%;
}

.ser3 .serA_R {
	width: 49.2%;
}

.ser4 {
	background: url(../image/serpic6.jpg);
	overflow: hidden;
}

.ser4:after {
	content: url(../image/clopic5.png);
	background-size: 100%;
}

.ser4 .serA_l,
.ser5 .serA_l {
	width: 506px;
}

.ser4 .serA_l>ul li,
.ser5 .serA_l>ul li {
	width: 25%;
}

.ser4 .serA_l>ul li:hover,
.ser5 .serA_l>ul li:hover {
	width: 24%;
}

.ser4 .serA_R {
	left: 5%;
	right: auto;
	width: 50%;
}

.ser5 .serA_l {
	margin-top: 68px;
}

.ser5 .serA_R {
	width: 32.2%
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
	/* 1600 × (900) */
}

@media all and (max-width:1599px) {

	/* 1440 × (700)  */
	.banner-cont-one .contain {
		padding: 0 0 20px 180px;
	}

	.banner-cont-one .banner-cont-dot {
		width: 420px;
	}

	.banner-cont-one .banner-cont-wrap {
		width: calc(100% - 420px);
	}

	.banner-scroll i {
		margin-top: 20px;
		height: 38px;
	}

	.indfa-main {
		width: 560px;
		height: 544px;
	}

	.indfa-more {
		width: 100%;
		padding-left: 16px;
		margin-bottom:15px;
	}

	.indfa-bottom .indfa-link {
		width: calc(50% - 8px);
		
	}

	.indfa-link .title {
		padding: 24px;
	}

	/*.indmh {*/
	/*	height: 430vh;*/
	/*}*/

	.indjs-list ul {
		margin: -28px 0 0 -28px;
	}

	.indjs-list li {
		width: calc(25% - 28px);
		margin: 28px 0 0 28px;
	}

	.indjs-list li a {
		padding: 50px 20px;
	}

	.indjs-bird {
		width: 1360px;
		margin-left: -680px;
	}

	.indxw-left {
		width: 670px;
	}

	.indxw-right {
		width: calc(100% - 670px);
	}

	.indxw-main {
		padding: 34px 32px 30px;
		width: 450px;
	}

	.indxw-items-cont,
	.indxw-small {
		padding: 40px 18px 20px;
	}

	.indxw-items-cont.indxw-link .more,
	.indxw-small.indxw-link .more {
		margin-top: 40px;
	}

	.indmh-text {
		top: 88vh;
	}

	.indfa-top {
		height: 272px;
	}

	/*.indfa-bottom .indfa-link {*/
	/*	height: 256px;*/
	/*}*/

	.indxw-left {
		height: 546px;
	}

	.indxw-items-image {
		height: 272px;
	}

	.indxw-main.indxw-link .more {
		margin-top: 24px;
	}

	.indxw-main::after {
		width: 300px;
		height: 280px;
		right: -60px;
		bottom: -40px;
	}
}

@media all and (max-width:1439px) {

	/* 1360 */
	.indjs-bird {
		width: 1200px;
		margin-left: -600px;
	}
}

@media all and (max-width:1359px) {
	/* 1280 */
}

@media all and (max-width:1279px) {

	/* 1152 × (700) */
	.banner-cont-one .banner-cont-dot {
		width: 380px;
	}

	.banner-cont-one .banner-cont-wrap {
		width: calc(100% - 380px);
	}

	.indfa-main {
		width: 450px;
		height: 436px;
	}

	.indfa-more {
		width: 100%;
	}

	.indfa-link .title {
		/*font-size: 18px;*/
		padding: 18px;
	}

	.indfa-link .title p {
		padding-bottom: 12px;
	}

	.indmh-text span {
		margin-left: 18px;
	}

	.indjs-list ul {
		margin: -16px 0 0 -16px;
	}

	.indjs-list li {
		width: calc(25% - 16px);
		margin: 16px 0 0 16px;
	}

	.indjs-list li a {
		padding: 36px 16px;
	}

	.indjs-bird {
		width: 1000px;
		margin-left: -500px;
	}

	.indxw-left {
		width: 500px;
	}

	.indxw-right {
		width: calc(100% - 500px);
	}

	.indxw-items-cont,
	.indxw-small {
		padding: 30px 18px 20px;
	}

	.indxw-items-cont.indxw-link .more,
	.indxw-small.indxw-link .more {
		margin-top: 30px;
	}

	.indxw-main {
		padding: 28px 24px;
		width: 400px;
	}

	.indxw-main.indxw-link .more {
		margin-top: 10px;
	}

	.indfa-top {
		height: 218px;
	}

	.indfa-bottom .indfa-link {
		height: 202px;
	}

	.indxw-left {
		height: 486px;
	}

	.indxw-items-image {
		height: 242px;
	}

	.indxw-main::after {
		width: 240px;
		height: 240px;
		right: -50px;
		bottom: -40px;
	}

	.indTitle {
		padding-top: 18px;
	}

	.banner-cont-one .contain {
		padding: 0 0 20px 40px;
	}
	.contactA_T_l{
	    flex:auto;
	    width:100%;
	    margin-bottom:40px;
	}
}

@media all and (max-width:1151px) {

	/* 1024 */
	.banner-img img.none-pad-mb {
		height: 50vh;
	}

	.indjs-bird {
		width: 900px;
		margin-left: -450px;
	}

	.indfa {
		padding-bottom: 60px;
	}

	.indmh {
		height: auto;
		padding: 70px 0;
	}

	.indmh-sticky {
		position: static;
	}

	.indmh-bg {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}

	.indmh-logo {
		display: none;
	}

	.indmh-text {
		display: none;
	}

	.indmh-shade {
		opacity: 1;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
	}

	.indmh-content {
		position: relative;
		height: auto;
		opacity: 1;
		pointer-events: auto;
	}

	.banner-cont-one .banner-cont-dot {
		display: none;
	}

	.banner-cont-one .banner-cont-wrap {
		width: 100%;
	}

	.banner-dot {
		display: none;
	}

	.banner-mix-one .banner-img {
		opacity: 1;
	}

	.banner-shade {
		display: none;
	}

	.indmh-num li .text {
		font-size: 16px;
	}

	.banner-cont-one .contain {
		padding: 0;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	@keyframes bannerDown {
		0% {
			opacity: 0;
			transform: translateY(-60px);
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	@keyframes bannerUp {
		0% {
			opacity: 0;
			transform: translateY(60px);
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	.indfa-main {
		width: 100%;
		height: auto;
	}

	.indfa-more {
		width: 100%;
		margin-top: 16px;
		padding-left: 0;
	}

	.indfa-top {
		height: auto;
	}

	.indfa-bottom {
		margin-top: 16px;
	}

	.indfa-bottom .indfa-link {
		height: auto;
	}

	.indjs-list li {
		width: calc(50% - 16px);
	}

	.indjs-bird {
		width: 680px;
		margin-left: -340px;
	}

	.indxw-left {
		width: 100%;
		height: auto;
	}

	.indxw-main {
		width: calc(100% - 24px);
		height: auto;
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: 12px;
	}

	.indxw-main::after {
		right: -40px;
		bottom: -20px;
	}

	.indxw-right {
		width: 100%;
		margin-top: 12px;
	}

	.indxw-items {
		height: auto;
		margin-top: 12px;
	}

	.indxw-items:first-of-type {
		left: 0;
		background: #fff;
		flex-direction: row;
	}

	.indxw-items:first-child {
		margin-top: 0;
	}

	.indxw-small {
		position: static;
		width: 100%;
		height: auto;
		margin-top: 12px;
	}

	.indxw-mix {
		border-radius: 0;
	}
	
	
	
	.serA{
	    margin-top:0;
	}
	.serA_l>span i{
	    display: none;
	}
	.serA_l>p{
	    margin-top:30px;
	}
	.serA_l{
	   margin-left:0;
	    float:none;
	    width:100%;
	    text-align: center;
	}
	.serA_R{
	    float:none;
	    width:100%;
	    position: initial;
	    transform: translate(0);
	    text-align: center;
	    padding:0 10px;
	}
	.serA_l>a {
    	left: 50%;
        transform: translateX(-50%);
	}
	
	
	.ser2{
	    height:auto;
	}
	.ser2 .serA_l{
	    float:none;
	}
	.ser2 .serA_R{
	    width:100%;
	}
	

	.ser3 .serA_R{
	    width:100%;
	}
	.ser3 .serA_l,
	.ser4 .serA_l, 
	.ser5 .serA_l{
	    width:100%;
	    margin:0;
	   
	}
	.ser4 {
	    padding-top:90px; 
	}
	.ser4,.ser5{
	    padding-left:10px;
	    padding-right:10px;
	}
	.ser5 .serA_R{
	    width:100%;
	}
	
	.contactA_T_l{
	    text-align: center;
	}
	.contactA_T_m{
	    flex:auto;
	    width:100%;
	    margin-bottom:40px;
	    text-align: center;
	    
	}
	
}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	.banner-img img.none-pc {
		min-height: 400px;
	}

	.banner-cont .image {
		max-width: 160px;
	}

	.banner-cont .title {
		font-size: 24px;
	}

	.banner-cont .text {
		font-size: 16px;
	}

	.banner-scroll,
	.banner-play {
		display: none;
	}

	@keyframes bannerDown {
		0% {
			opacity: 0;
			transform: translateY(-40px);
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	@keyframes bannerUp {
		0% {
			opacity: 0;
			transform: translateY(40px);
			filter: blur(10px);
		}

		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	.indTitle {
		padding-top: 14px;
	}

	.indfa-bottom .indfa-link {
		width: 100%;
		margin-top: 12px;
	
	}
	.indfa-more .indfa-link{
	    	background-color: #FF6801 
	}

	.indfa-bottom .indfa-link:first-child {
		margin-top: 0;
	}

	.indfa-more {
		margin-top: 12px;
	}

	.indfa-bottom {
		margin-top: 12px;
	}

	.indfa-more .indfa-link .title {
		padding: 10px 8px;
		/*font-size: 14px;*/
		text-align: center;
		color:#fff;
	}
	.indfa-more  .indfa-link .title .more{
	    color:#fff;
	}
	.indfa-link img{
	    width:200px;
	}

	.indfa {
		padding-bottom: 38px;
	}
	.indfa  .indfa-link {
	    display: block;
	}

	/*.indfa-ul.pc {*/
	/*	display: none;*/
	/*}*/

	/*.indfa-ul.mb {*/
	/*	display: flex;*/
	/*	margin: -4px 0 0 -4px;*/
	/*}*/

	/*.indfa-ul.mb a {*/
	/*	width: calc(50% - 4px);*/
	/*	margin: 4px 0 0 4px;*/
	/*}*/

	/*.indfa-link img {*/
	/*	height: 160px;*/
	/*}*/

	.indmh .indTitle .text {
		font-size: 22px;
	}

	.indmh .indTitle .title {
		font-size: 20px;
	}

	.indmh .indTitle {
		padding-top: 10px;
	}

	.indmh-desc {
		font-size: 15px;
	}

	.indmh {
		padding: 48px 0;
	}

	.indmh-num {
		margin-top: 28px;
	}

	.indmh-num ul {
		margin-top: -14px;
	}

	.indmh-num li {
		width: 50%;
		margin-top: 14px;
	}

	.indmh-num li .num {
		font-size: 28px;
	}

	.indmh-num li .text {
		margin-top: 4px;
		font-size: 14px;
	}

	.indmh-more {
		margin-top: 30px;
	}

	.indmh-more a::after {
		display: none;
	}



	.indmh-more a {
		width: 132px;
		height: 38px;
		border-radius: 19px;
	}

	.indjs-list ul {
		margin: -4px 0 0 -4px;
	}

	.indjs-list li {
		width: calc(50% - 4px);
		margin: 4px 0 0 4px;
		transform: translateY(0) !important;
	}

	.indjs-list li a {
		padding: 28px 15px;
	}

	.indjs-bird {
		width: 300px;
		margin-left: -150px;
	}

	.indjs-list li .icon {
		width: 88px;
		height: 88px;
	}

	.indjs-list {
		margin-top: 32px;
	}

	.indjs-list li .text {
		display: none;
	}

	.indxw-main::after {
		display: none;
	}

	.indxw-main {
		padding: 20px 15px;
		position: static;
		width: 100%;
		margin-top: 12px;
	}

	.indxw-link .title {
		font-size: 18px;
		line-height: 26px;
		height: 52px;
		-webkit-line-clamp: 2;
	}

	.indxw-main.indxw-link .more {
		margin-top: 12px;
	}

	.indxw-items {
		flex-direction: row;
	}

	.indxw-items-image {
		width: 100%;
		display: none;
	}

	.indxw-items-cont {
		width: 100%;
		padding: 20px 15px;
	}

	.indxw-items-cont.indxw-link .more,
	.indxw-small.indxw-link .more {
		margin-top: 12px;
	}

	.indxw-items-cont.indxw-link .title,
	.indxw-small.indxw-link .title {
		font-size: 16px;
		line-height: 24px;
		height: 48px;
	}

	.indxw-left .bg {
		height: 242px;
	}

	.indxw-items-cont {
		background: #f5f7f9;
	}

	.indxw-items-cont.indxw-link .time {
		color: #666;
	}

	.indxw-items-cont.indxw-link .time::after {
		background: #FF6801;
	}

	.indxw-items-cont.indxw-link .title {
		color: #333;
	}

	.indxw-items-cont.indxw-link .tags {
		background: #FF6801;
		color: #fff;
	}

	.indxw-items-cont.indxw-link .more a {
		background-image: url('../image/arrR.svg');
		color: #666;
	}

	.indxw-items-cont.indxw-link .more a::after {
		background: #FF6801;
	}

	.indxw-items-cont.indxw-link .title:hover {
		color: #FF6801;
	}

	.indxw-items-cont.indxw-link .more a:hover {
		color: #FF6801;
		background-image: url('../image/arrRH.svg');
	}

	.banner-control {
		bottom: 24px;
	}

	.banner-page p {
		margin: 0 10px !important;
	}

	.banner-page p span {
		width: 12px;
		height: 12px;
	}

	.banner-page p span::before {
		width: 6px;
		height: 6px;
		margin: -3px 0 0 -3px;
	}

	.indxw-right,
	.indxw-left .indxw-main {
		display: none;
	}

	.indxw-loop {
		display: block;
		margin-top: 16px;
	}

	.indxw-loop .swiper-pagination {
		bottom: 0;
	}

	.indxw-loop .swiper-pagination-bullet {
		background: #000;
		margin: 0 6px !important;
	}

	.indxw-loop .swiper-pagination-bullet-active {
		background: #FF6801;
	}

	.indxw-loop .swiper-container {
		padding-bottom: 28px;
	}

	.indxw-loop .indxw-main {
		margin: 0;
		transform: translate3d(0, 0, 0);
	}

	.banner-one-bg {
		display: none;
	}
}




#c-banner1{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#c-banner1 .swiper-slide{
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-size: cover!important;
    /*background-position: center!important;*/
    background-repeat: no-repeat!important;    
}
.swiper-slide img {
    vertical-align: middle;
    max-width: 100%;
}
#c-banner1 .swiper-slide img{
    height: 100%;
    width: 100%;
}
#c-banner1 .swiper-slide .pc_img{
    opacity: 1;
}
#c-banner1 .swiper-slide .m_img{
    opacity: 0;
}
@media all (max-width:768px){
    #c-banner1 .swiper-slide .pc_img{
        opacity: 0;
    }
    #c-banner1 .swiper-slide .m_img{
        opacity: 1;
    }
}
#c-banner1 .swiper-slide2 .bgImg img{
    -moz-transition: all 4.5s linear;
    -o-transition:  all 4.5s linear;
    transition: all 4.5s linear;
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
}
#c-banner1 .swiper-slide2.swiper-slide-active .bgImg img {
    top:-200px;
}
#c-banner1 .swiper-pagination{
    text-align: left;
    padding:0 5%;
    bottom:40px;
}
#c-banner1 .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background:#fff;
    opacity: 1;
    margin:0 10px;
} 
#c-banner1 .swiper-pagination .swiper-pagination-bullet-active{
    width: 40px;
}
.banner_text5{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*text-align:center;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    color: #fff;    
}
.banner_text5 p.p1{
    font-size: 78px; 
    line-height: 1;
    font-weight: bold;
}
.banner_text5 p.p2{
    font-size: 46px;
    line-height: 1;
    margin:20px 0 50px;
}
.banner_text5 a{
    display: block;
    width: 160px;
    line-height: 55px;
    font-size: 20px;
    color: #1f9aed;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    font-family: "å¾®è½¯é›…é»‘";
    font-weight: bold;
    overflow: hidden;
    position: relative;
}
.banner_text5 a:before{
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-animation: wave 1.3s infinite;
    animation: wave 1.3s infinite;
    z-index: 1;
}
/*#c-banner1 .banner_text1{*/
/*    display: none;*/
/*}*/
.banner_text1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    color: #fff;
}
.banner_text1 .p1{
    font-size: 34px;
}
.banner_text1 .p2{
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin:0px 0 50px;
}
.banner_text1 a{
    position: relative;
    display: block;
    width: 190px;
    line-height: 55px;
    font-size: 20px;
    color: #fff;
    background:#1f9aed;
    border-radius: 10px;
    text-align:center;
    margin:0 auto;   
    overflow: hidden;
}
.banner_text1 a:before{
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-animation: wave 1.3s infinite;
    animation: wave 1.3s infinite;
    z-index: 1;
}
@-webkit-keyframes wave{
    0%{
        background:rgba(255,255,255,.8);
        transform:translateX(-50%) translateY(-50%) scale(0)
    }
    to{
        background:transparent;
        transform:translateX(-50%) translateY(-50%) scale(1)
    }
}
@keyframes wave{
    0%{
        background:rgba(0,0,0,.25);
        transform:translateX(-50%) translateY(-50%) scale(0)
    }
    to{
        background:transparent;
        transform:translateX(-50%) translateY(-50%) scale(1)
    }
}
#c-banner1 .swiper-slide video{
    object-fit:fill;   
    width: 100%;
    height: 100%;
    display: block;
}
.banner_text7{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    font-size: 32px;
    color: #fff;  
    line-height: 1.6;
    font-weight: bold;
}
.banner_text7 p:nth-child(1){
    font-size: 52px;
    /*color: #1f9aed;*/
    /*font-weight: bold;*/
}
@media(max-width: 1600px){
    /*.banner_text1 .p1{*/
    /*    font-size: 26px;*/
    /*}*/
    .banner_text1 .p2{
        font-size: 46px;
    }
    .banner_text1 a {
        width: 160px;
        line-height: 50px;
        font-size: 16px;
    }
    #c-banner1 .swiper-slide2.swiper-slide-active .bgImg img {
        top:-100px;
    }
    .banner_text5 p.p1{
        font-size: 52px; 
    }
    .banner_text5 p.p2{
        font-size: 32px;
        margin:20px 0 50px;
    }
    .banner_text5 a{
        font-size: 16px;
        width: 120px;
        line-height: 46px;
    }

}
@media(max-width: 1440px){
    .banner_text7{
        font-size:24px;
    }
    .banner_text7 p:nth-child(1){
        font-size: 42px;
    }
}
@media(max-width: 1259px){
    #c-banner1{
        height: auto;
    }
    #c-banner1 .swiper-slide .pc_img{
        display: none;
    }
     #c-banner1 .swiper-slide .m_img{
        display: block;
        opacity: 1;
    }
    /*#c-banner1 .swiper-slide img{*/
    /*    height: auto;*/
    /*}*/
    .banner_text1 .p2{
        font-size: 36px;
    }
    .banner_text1 .p1{
        font-size: 26px;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 820px){
    .banner_text1 .p1{
        font-size: 20px;
    }
    .banner_text1 .p2{
        font-size: 28px;
    }
    .banner_text1 a {
        width: 120px;
        line-height: 45px;
        font-size: 15px;
    }
    #c-banner1 .swiper-pagination{
        bottom:20px;
    }
    #c-banner1 .swiper-pagination .swiper-pagination-bullet{
        margin:0 5px;
        width:7px;
        height:7px;
    }
    #c-banner1 .swiper-pagination .swiper-pagination-bullet-active{
        width: 25px;
    }
    #c-banner1 .swiper-slide2.swiper-slide-active .bgImg img {
        top:-60px;
    }
    .banner_text5 p.p1{
        font-size: 32px; 
    }
    .banner_text5 p.p2{
        font-size: 20px;
        margin:15px 0 30px;
    }
    .banner_text7{
        font-size:20px;
    }
    .banner_text7 p:nth-child(1){
        font-size: 32px;
    }
}
@media(max-width: 640px){
    .banner_text1 .p1{
        font-size: 15px;
    }
    .banner_text1 .p2{
        font-size: 20px;
    } 
    #c-banner1 .swiper-pagination{
        bottom:10px;
    }
    #c-banner1 .swiper-slide2.swiper-slide-active .bgImg img {
        top:-40px;
    }
    .banner_text5 p.p1{
        font-size: 24px; 
    }
    .banner_text5 p.p2{
        font-size: 17px;
        margin:15px 0 25px;
    }
    .banner_text5 a {
        font-size: 14px;
        width: 100px;
        line-height: 32px;
    }
    .banner_text7{
        font-size:16px;
    }
    .banner_text7 p:nth-child(1){
        font-size: 20px;
    }
}
@media(max-width: 460px){
    .banner_text5{
        flex-direction:unset;
        padding:15px 0;
        justify-content:center;
        text-align:center;
    }
    .banner_text5 p.p1{
        font-size: 17px; 
    }
    .banner_text5 p.p2{
        font-size: 14px;
        margin:10px 0 15px;
    }
    .banner_text5 a{
        margin:0 auto;
    }
    #c-banner1 .swiper-slide video,#c-banner1 .swiper-slide .banner_text7{
        display:none;    
    }
    .temp4-right-main{
        padding-left: 10px;
    }
}


.banner_text8{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    color: #fff;  
    line-height: 1.6;
    text-align: center;
}
.banner_text8 h3{
    font-size: 60px;
}
.banner_text8 p{
    font-size: 46px;
}
.banner_text9{
    position: absolute;
    top: 0;
    right: 10%;
    /*width: 100%;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    color: #fff;  
    line-height: 1.6;
   
}
.banner_text9.textright2{
    right:14vw;
}
.banner_text9.textright2 .contain{
    width:auto;
}

.banner_text9.textright{
    right:60%;
}
.banner_text9 .ys_logo{
    max-width: 187px;
}
.banner_text9 h3{
    font-size: 57px;
}
.banner_text9 p{
    font-size: 30px;
}
.banner_text9 a.a1{
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 16px;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    margin-top:20px;
}
.banner_text9 a.a1 i {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #d30301;
    vertical-align: middle;
    margin-right: -25px;
    transition: all 0.4s ease-out;
}
.banner_text9 a.a1 em{
    position: relative;
    display: inline-block;
    margin-left: 25px;
    font-style: normal;
}
.banner_text9 a.a1:hover i{
    width: 100%;
}
.banner_text9 a.a2{
    display: flex;
    align-items: center;
    max-width: 176px; 
    height: 54px;
    font-size: 15px;
    color:#4c4c4c;
    margin-top:90px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 27px;
    font-family: "puhui65";
}
.banner_text9 a.a2 i{
    display: block;
    position: relative;
    width: 54px;
    height: 54px;
/*    background:url(../images/cn_more1.png) no-repeat center;*/
    margin-right: 28px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-out;
}
.banner_text9 a.a2 i div{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background:url(../image/cn_more2.png) no-repeat center #d30301;
    position: relative;
    z-index: 8;
}
.banner_text9 a.a2 i img{
    display: inline-block;
    position: relative;
    z-index: 8;
}
.banner_text9 a.a2 i:after,.banner_text9 a.a2 i:before{
    content:'';
    display: block;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background:#d30301;
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    transition: all 1s ease-out;
    z-index: 1;
    opacity: 0.1;

/*    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);*/
}
.banner_text9 a.a2:hover i{
    transform: rotate(0deg);
}
.banner_text9 a.a2:hover i:after{
    -ms-transform: scale(3);
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
/*    opacity: 0.03; */   
}
.banner_text9 a.a2:hover i:before{
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
/*    opacity: 0.05;*/
/*    animation: big1 1s linear infinite;*/
}
/*.banner_text9 a.a2 i:before{
    animation-delay: 0.6s;
}
.banner_text9 a.a2 i:after{
    animation-delay: 0s; 
}*/
/*@keyframes big1 { 
    from {
        transform: scale(1, 1); 
        opacity: 0.8;
    } 
    to {
        transform: scale(1.8, 1.8); 
        opacity: 0;
    } 
}*/
.banner_text9 a.a2.a3{
    background-color: rgba(255, 255, 255, 0.3);
    color:#fff;
}
.banner_text9 a.a2.a3 i div{
    background:url(../image/cn_more3.png) no-repeat center #fff;
}
.banner_text9 a.a2.a3 i:after,.banner_text9 a.a2.a3 i:before{
    background:#fff;
}
.banner_text9 a.a2.a4{
    background-color: rgba(255, 255, 255, 0.3);
    color:#4c4c4c;
}
.banner_text9 a.a2.a4 i div{
    background:url(../image/cn_more2.png) no-repeat center #248f57;
}
.banner_text9 a.a2.a4 i:after,.banner_text9 a.a2.a4 i:before{
    background:#248f57;
}
.banner_text9 a.a2.a5{
    background-color: rgba(255, 255, 255, 0.3);
    color:#4c4c4c;
}
.banner_text9 a.a2.a5 i div{
    background:url(../image/cn_more2.png) no-repeat center #ed0007;
}
.banner_text9 a.a2.a5 i:after,.banner_text9 a.a2.a4 i:before{
    background:#ed0007;
}
.banner_text9 .ys_logo2{
    max-width: 277px;
}

.temp4-main.mb,
.temp4-main.mb .temp4-right,
.temp4-main.mb .temp4-right-box{
    width:100%;
    
}
.template-4 .mb{
    display: none;
}

@media all and (max-width:1300px){
    .template-4 .mb{
        display: block;
    }
    
    .template-4 .pc{
        display: none;
    }
    .temp4-bg-1{
      
       background-size: cover;
       background-position: top right;
     }
     .temp4-bg-2{
     background-size: cover;
       background-position: top right;
    }
    .temp4-bg-3{
      background-size: cover;
       background-position: top right;
    }
    .temp4-bg-4{
      background-size: cover;
      background-position: top right;
    }
    .temp4-bg-5{
      background-size: cover;
       background-position: top right;
    }
    .temp4-bg-6{
      background-size: cover;
       background-position: top right;
    }
}








.searchBox{
    padding:80px 0;
}
.searchBox .text-yellow{
    color:#000;
}
.searchBox .line{
    font-size:20px;
    font-weight: bolder;
    border-bottom:1px solid #ddd;
    padding-bottom:10px;
    margin-bottom:10px;
}
.searchBox .normal-list{
    font-size:16px;
}
.searchBox .normal-list li{
    display: flex;
    justify-content: space-between;
    padding:15px;
}
.searchBox .normal-list li:nth-child(odd){
    background-color: #ddd;
}
.searchBox .normal-list li:hover{
    background-color: #eee;
}
.searchBox .normal-list span{
    font-size:14px;
}







