@font-face {
	font-family: 'AVGARDM';
	src: url("../font/AVGARDM_0.TTF");
}

@font-face {
	font-family: 'DINPro-Regular';
	src: url("../font/DINPro-Regular_0.otf");
}

@font-face {
	font-family: 'DINPro-Bold';
	src: url("../font/DINPro-Bold_0.otf");
}

@font-face {
	font-family: 'DINPro-Light';
	src: url("../font/DINPro-Light_0.otf");
}

@keyframes target {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes scale {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes run {
	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 90px;
		height: 90px;
	}

	100% {
		width: 30px;
		height: 100px;
	}
}

@media screen and (min-width: 1025px) {
	.wow {
		visibility: hidden;
	}
}

.wrapper {
	width: 75vw;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

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

@media screen and (min-width: 1025px) {
	.dom-loaded .header .lang .hide {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

	.dom-loaded .header .nav li .drop {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
}

/* header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-ms-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.header:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .main {
	position: relative;
	z-index: 2;
}

.header .logo {
	font-size: 0;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--yx_Color);
	height: calc(100% + 1px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1vw;
}

.header .logo img {
	display: block;
	height: 75px;
}

.header .nav {
	text-align: center;
	font-size: 0;
}

.header .nav li {
	text-align: left;
	display: inline-block;
	vertical-align: top;
}

.header .nav li a.single {
	display: block;
	font-size: var(--yx_FS16);
	line-height: 105px;
	color: #fff;
	padding: 0 2vw;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .nav li a.single:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background-color: var(--yx_Color);
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.header .nav li .drop {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background-color: #fff;
	display: flex;
	flex: 1 1;
	border-top: 1px solid #e6e6e6;
	opacity: 0;
	visibility: hidden;
}

.header .nav li .drop .left-box {
	width: 31.25%;
	background-color: #fafafa;
	padding: 4.5vw 6vw 4.5vw 3vw;
}

.header .nav li .drop .left-box h3 {
	font-size: var(--yx_FS24);
	color: #595757;
}

.header .nav li .drop .left-box p {
	font-size: 14px;
	line-height: 2;
	color: #595757;
	margin: 20px 0;
}

.header .nav li .drop .left-box a {
	display: inline-block;
	font-size: 14px;
	color: var(--yx_CTwo);
	border-radius: 42px;
	padding: 12px 36px 10px;
	color: #fff;
	margin-top: 48px;
	background: var(--yx_Color);
	transition: all 0.6s;
}

.header .nav li .drop .left-box a:hover {
	background: var(--yx_CTwo);
	transform: translateY(-5px);
}

.header .nav li .drop .center-box {
	width: 31.25%;
	padding: 4.5vw 6vw;
}

.header .nav li .drop .center-box a {
	position: relative;
	display: block;
	line-height: var(--yx_FS60);
	padding: 0 30px;
	font-size: var(--yx_FS16);
	color: #595757;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .nav li .drop .center-box a:after {
	content: '';
	width: 10px;
	height: var(--yx_FS16);
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -8px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/icon-3.png");
}

.header .nav li .drop .center-box a:hover {
	background-color: var(--yx_Color);
	color: #fff;
}

.header .nav li .drop .right-box {
	padding: 4.5vw 6vw;
	text-shadow: 0 0 var(--yx_FS24) rgba(0, 0, 0, 0.1);
}

.header .nav li .drop .right-box img {
	object-fit: cover;
	max-height: 300px;
}

.header .nav li:hover a.single {
	color: var(--yx_Color);
}

.header .nav li:hover a.single:after {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.header .nav li:hover .drop {
	opacity: 1;
	visibility: visible;
}

.header .ope {
	font-size: 0;
	position: absolute;
	right: 3.125vw;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header .search {
	display: inline-block;
	vertical-align: middle;
	width: var(--yx_FS18);
	height: var(--yx_FS18);
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/icon-1.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .lang {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-left: 40px;
}

.header .lang span {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .lang span:before {
	content: '';
	width: var(--yx_FS16);
	height: var(--yx_FS16);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../image/icon-2.png");
	display: inline-block;
	vertical-align: middle;
	margin: -3px 10px 0 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .lang span:after {
	content: '';
	width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 4px solid #fff;
	display: inline-block;
	vertical-align: middle;
	margin: -3px 0 0 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .lang .hide {
	position: absolute;
	width: 90px;
	top: 100%;
	left: 50%;
	margin-left: -45px;
	padding-top: 8px;
	opacity: 0;
	visibility: hidden;
}

.header .lang .hide:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.header .lang .hide a {
	display: block;
	font-size: 12px;
	line-height: 30px;
	color: #fff;
	margin-bottom: 1px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
	.header .lang .hide a:hover {
		background-color: var(--yx_Color);
	}
}

.header .lang:hover .hide {
	opacity: 1;
	visibility: visible;
}

.header:hover,
.header.down {
	background-color: #fff;
}

.header:hover:after,
.header.down:after {
	opacity: 0;
}

.header:hover .nav li a.single,
.header.down .nav li a.single {
	color: #333333;
}

.header:hover .search,
.header.down .search {
	background-image: url("../image/icon-1-on.png");
}

.header:hover .lang span,
.header.down .lang span {
	color: #333;
}

.header:hover .lang span:before,
.header.down .lang span:before {
	background-image: url("../image/icon-2-on.png");
}

.header:hover .lang span:after,
.header.down .lang span:after {
	border-top-color: #333;
}

.header.down .nav li a.single {
	line-height: 90px;
}

.footer img {
	display: block;
	width: 100%;
}

.fixed-right-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.3);
	display: none;
}

.fixed-right {
	position: fixed;
	right: 2px;
	bottom: var(--yx_FS60);
	z-index: 11;
	display: none;
}

.fixed-right .block {
	width: var(--yx_FS60);
	height: var(--yx_FS60);
	border-radius: 5px;
	background-color: var(--yx_CTwo);
	text-align: center;
	margin-top: 2px;
}

.fixed-right .block:last-of-type {
	background-color: var(--yx_Color);
}

.fixed-right .block i {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.fixed-right .block span {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -16px;
	font-size: 14px;
	line-height:16px;
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.fixed-right .block.active i,
.fixed-right .block:hover i {
	opacity: 0;
}

.fixed-right .block.active span,
.fixed-right .block:hover span {
	opacity: 1;
}

.fixed-right .show {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: block;
}

.fixed-right .footContent {
	position: absolute;
	height: 100%;
	width: 240px;
	right: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	color: #fff;
	background-color: var(--yx_CTwo);
	visibility: hidden;
	opacity: 0;
}

.fixed-right .block:hover .footContent {
	opacity: 1 !important;
	visibility: visible;
}

.fixed-right .hide {
	position: absolute;
	right: 84px;
	bottom: 0;
	width: 400px;
	text-align: left;
	display: none;
}

.fixed-right .hide .close {
	position: absolute;
	right: 30px;
	top: 20px;
	width: 20px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/close.png");
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.fixed-right .hide .close:hover {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fixed-right .hide h3 {
	background-color: var(--yx_CTwo);
	padding: 0 30px;
	line-height: var(--yx_FS60);
	font-size: var(--yx_FS24);
	color: #fff;
}

.fixed-right .hide h3:before {
	content: '';
	width: 26px;
	height: var(--yx_FS24);
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/right-6.png");
	display: inline-block;
	vertical-align: middle;
	margin: -4px 10px 0 0;
}

.fixed-right .hide .scroll-box {
	max-height: 500px;
	overflow: auto;
}

.fixed-right .hide .btn {
	background-color: #f5f5f5;
	padding: 34px 37px;
}

.fixed-right .hide .btn a {
	display: block;
	text-align: center;
	font-size: var(--yx_FS16);
	line-height: 42px;
	color: #fff;
	background-color: var(--yx_Color);
	cursor: pointer;
}

/* comm */
.comm-tit h3 {
	font-size: var(--yx_FS48);
	text-align: center;
	font-weight: bold !important;
}

.comm-tit h4 {
	font-size:var(--yx_FS22);
	margin-top: 8px;
	text-align: center;
}



.comm-tit.gray h3,
.comm-tit.gray h4 {
	color: #333;
}

.comm-tit.white h3,
.comm-tit.white h4 {
	color: #fff;
}

.comm-tit.right {
	text-align: right;
}

.comm-tit.right h4:after {
	margin-right: 0;
	margin-left: auto;
}

.index-s1 {
	position: relative;
}

.index-s1 .items {
	z-index: 1;
}

.index-s1 .item {
	height: 100vh;
}

.index-s1 .item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.05);
	z-index: 2;
}

.index-s1 .item:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	z-index: 3;
}

.index-s1 .item video {
	height: 110%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.index-s1 .item .bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.index-s1 .item .txt {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 4;
}

.index-s1 .item h3 {
	font-size: var(--yx_FS72);
	color: #fff;
	font-weight: bold !important;
	letter-spacing: 10px;
}

.index-s1 .item h4 {
	font-size: var(--yx_FS28);
	color: #fff;
	letter-spacing: 3px;
	margin-top: 1.5vw;
	transition-delay: .1s;
}

.index-s1 .ope {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 6.25vw;
	width: 25vw;
	background: #fff;
	font-size: 0;
	z-index: 2;
	border-radius: 8px 0 0 0;
}

.index-s1 ul {
	position: absolute;
	left: 3.125vw;
	top: 50%;
	margin-top: -6px;
}

.index-s1 ul li {
	display: inline-block;
	vertical-align: top;
	width: 12px;
	height: 12px;
	background-color: #cfcfcf;
	border-radius: 6px;
	margin-right: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.index-s1 ul li.active {
	background-color: var(--yx_Color);
	width: var(--yx_FS24);
}

.index-s1 .btns {
	position: absolute;
	right: 3.125vw;
	top: 50%;
	margin-top: -9px;
}

.index-s1 .button {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: var(--yx_FS18);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../image/prev-1.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.index-s1 .button:hover {
	background-image: url("../image/prev-2.png");
}

.index-s1 .button-next {
	margin-left: 1.5vw;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.index-s1 .button.swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.index-s2 {
	position: relative;
	background: #fff;
	overflow: hidden;
}

.index-s2 .left-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 23vw;
	max-width: 387px;
	-webkit-transition: transform 0.3s ease-out;
	-moz-transition: transform 0.3s ease-out;
	-ms-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}

.index-s2 .left-img img {
	display: block;
	width: 100%;
}

.index-s2 .right-img {
	position: absolute;
	right: 0;
	bottom: -6vw;
	width: 19VW;
	max-width: 405px;
	-webkit-transition: transform 0.3s ease-out;
	-moz-transition: transform 0.3s ease-out;
	-ms-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}

.index-s2 .right-img img {
	display: block;
	width: 100%;
}

.index-s2 .main {
	position: relative;
	padding: 6.5vw 25vw 2vw;
	z-index: 2;
}

.index-s2 .para {
	font-size: var(--yx_FS16);
	line-height: 2;
	color: #666;
	text-align: center;
	margin-top: 20px;
}

.index-s2 .img-box {
	margin-top: 20px;
	border-radius:8px;
	overflow: hidden;
}

.index-s2 .img-box img {
	display: block;
	width: 100%;
}

.index-s2 .datas {
	display: flex;
	justify-content: space-between;
	margin-top: 4.5vw;
}

.index-s2 .data {
	display: inline-block;
	vertical-align: top;
}

.index-s2 .data .num {
	font-size: var(--yx_FS24);
	color: #333;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s2 .data .num span {
	font-size: var(--yx_FS60);
	line-height: 1;
	font-family: 'DINPro-Regular';
	font-weight: bold;
}

.index-s2 .data h3 {
	font-size: var(--yx_FS18);
	color: #444746;
	margin-top: 15px;
}

.index-s2 .data h4 {
	font-size: 12px;
	color: #808080;
	margin-top: 5px;
	font-family: 'AVGARDM';
}

@media screen and (min-width: 1025px) {
	.index-s2 .data:hover .num {
		color: var(--yx_Color);
		text-shadow: 0 15px 15px rgba(214, 40, 40, 0.3);
	}
}

.index-s3 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../image/img-5.jpg");
	z-index: 2;
	background-attachment: fixed;
	position: relative;
}

.index-s3 .cover-img img {
	display: block;
	width: 100%;
}

.index-s3 .main {
	padding-top: 6vw;
}

.index-s3 .items {
	margin-top: 3vw;
	margin-left: -12.5vw;
	margin-right: -26vw;
	padding-left: 12.5vw;
	margin-bottom: 2vw;
}

.index-s3 .item {
	padding: 1.5vw 0;
}

.index-s3 .box {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s3 .box .img-box {
	overflow: hidden;
	padding-bottom: 100%;
	border-radius: 8px;
}

.index-s3 .box img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	backface-visibility: hidden;
}

.index-s3 .box .tit {
	font-size: 20px;
	line-height: 32px;
	color: #fff;
}

.index-s3 .box .tit.pos {
	position: absolute;
	top: 2.5vw;
	left: 1.5vw;
	right: 1.5vw;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.index-s3 .box .para {
	font-size: 14px;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.index-s3 .box .para.pos {
	position: absolute;
	bottom: 2vw;
	left: 1.5vw;
	right: 1.5vw;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.index-s3 .box .txt-box {
	position: absolute;
	bottom: -3vw;
	left: 5%;
	width: 90%;
	border-radius: 8px;
	padding: 1.2vw 1.5vw;
	background-color: var(--yx_Color);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s3 .box .txt-box .para {
	margin-top: 15px;
	padding-right: 20px;
	position: relative;
}

.index-s3 .box .txt-box .para:after {
	content: '';
	width: 11px;
	height: var(--yx_FS18);
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/icon-11.png");
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -9px;
}

.index-s3 .box:hover {
	-webkit-transform: translateY(-1.5vw);
	-moz-transform: translateY(-1.5vw);
	-ms-transform: translateY(-1.5vw);
	transform: translateY(-1.5vw);
}

.index-s3 .box:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.index-s3 .box:hover .pos {
	opacity: 0;
}

.index-s3 .box:hover .txt-box {
	opacity: 1;
	visibility: visible;
}

.index-s3 .swiper-pagination {
	position: static;
	margin-top: 1.5vw;
	text-align: left;
}

.index-s3 .swiper-pagination-bullet {
	width: 48px;
	height: 4px;
	margin: 0 12px 0 0 !important;
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 1;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s3 .swiper-pagination-bullet-active {
	background-color: var(--yx_Color);
}

.index-s3 a.more {
	position: absolute;
	right: 0;
	bottom: -var(--yx_FS24);
	width: 180px;
	line-height: 48px;
	font-size: var(--yx_FS18);
	color: #fff;
	border-radius: var(--yx_FS24);
	background-color: var(--yx_Color);
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
	cursor: pointer;
}

.index-s3 a.more:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

.index-s4 {
	position: relative;
	padding-top: 4vw;
	background-image: url("../image/img-1.jpg");
}

.index-s4 .bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.index-s4 .bg img {
	display: block;
	width: 100%;
}

.index-s4 .items {
	position: relative;
	margin-top: 3vw;
	font-size: 0;
	z-index: 2;
}

.index-s4 .item {
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index-s4 .item span {
	font-size: var(--yx_FS24);
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 3vw);
	line-height: 1;
	font-family: 'DINPro-Regular';
}

.index-s4 .item h3 {
	font-size: var(--yx_FS24);
	line-height: 1.33;
}

.index-s4 .item h4 {
	font-size: 14px;
	line-height: 140%;
	margin-top: 15px;
	padding: 0 2%;
	text-transform: capitalize;
}

.index-s4 .item .btn {
	width: var(--yx_FS60);
	height: var(--yx_FS60);
	border-radius: 50%;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/icon-5.png");
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s4 .item:hover {
	z-index: 2;
	-webkit-transform: scale(1.125);
	-moz-transform: scale(1.125);
	-ms-transform: scale(1.125);
	transform: scale(1.125);
}

.index-s4 .item:hover span {
	top: 1.5vw;
}

.index-s4 .item:hover .btn {
	opacity: 1;
}

.index-s4 .item-2,
.index-s4 .item-3 {
	display: inline-block;
	vertical-align: top;
}

.index-s4 .item-2,
.index-s4 .item-3,
.index-s4 .item-5,
.index-s4 .item-6,
.index-s4 .item-8 {
	width: 25vw;
}

.index-s4 .item-2 .img-box,
.index-s4 .item-3 .img-box,
.index-s4 .item-5 .img-box,
.index-s4 .item-6 .img-box,
.index-s4 .item-8 .img-box {
	overflow: hidden;
}

.index-s4 .item-2 .txt-box,
.index-s4 .item-3 .txt-box,
.index-s4 .item-5 .txt-box,
.index-s4 .item-6 .txt-box,
.index-s4 .item-8 .txt-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}

.index-s4 .item-2 .cell-box,
.index-s4 .item-3 .cell-box,
.index-s4 .item-5 .cell-box,
.index-s4 .item-6 .cell-box,
.index-s4 .item-8 .cell-box {
	height: 100%;
}

.index-s4 .item-2 img,
.index-s4 .item-3 img,
.index-s4 .item-5 img,
.index-s4 .item-6 img,
.index-s4 .item-8 img {
	display: block;
	width: 100%;
}

.index-s4 .item-2 .btn,
.index-s4 .item-3 .btn,
.index-s4 .item-5 .btn,
.index-s4 .item-6 .btn,
.index-s4 .item-8 .btn {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 1.5vw;
}

.index-s4 .item-1 h3,
.index-s4 .item-2 h3,
.index-s4 .item-4 h3,
.index-s4 .item-5 h3,
.index-s4 .item-6 h3,
.index-s4 .item-7 h3 {
	color: #fff;
}

.index-s4 .item-1 h4,
.index-s4 .item-2 h4,
.index-s4 .item-4 h4,
.index-s4 .item-5 h4,
.index-s4 .item-6 h4,
.index-s4 .item-7 h4 {
	color: rgba(255, 255, 255, 0.3);
}

.index-s4 .item-1 span,
.index-s4 .item-2 span,
.index-s4 .item-4 span,
.index-s4 .item-5 span,
.index-s4 .item-6 span,
.index-s4 .item-7 span {
	color: #fff;
}

.index-s4 .item-3 h3,
.index-s4 .item-8 h3 {
	color: #333333;
}

.index-s4 .item-3 h4,
.index-s4 .item-8 h4 {
	color: #808080;
}

.index-s4 .item-3 span,
.index-s4 .item-8 span {
	color: #333333;
}

.index-s4 .item-1 {
	width: 50vw;
}

.index-s4 .item-1 .txt-box {
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--yx_CTwo);
	text-align: center;
}

.index-s4 .item-1 .img-box {
	width: 50%;
	margin-left: 50%;
	overflow: hidden;
}

.index-s4 .item-1 .cell-box {
	height: 100%;
}

.index-s4 .item-1 img {
	display: block;
	width: 100%;
}

.index-s4 .item-1 .btn {
	left: 50%;
	top: 50%;
	margin: -30px 0 0 -30px;
}

.index-s4 .item-1:hover {
	box-shadow: 0 1.5vw 3vw rgba(1, 94, 128, 0.5);
}

.index-s4 .item-2:hover {
	box-shadow: 0 1.5vw 3vw rgba(44, 151, 203, 0.5);
}

.index-s4 .item-3:hover {
	box-shadow: 0 1.5vw 3vw rgba(230, 229, 224, 0.5);
}

.index-s4 .item-4 {
	float: right;
	width: 25vw;
	margin-top: -14.0625vw;
}

.index-s4 .item-4 .txt-box {
	height: 25vw;
	position: relative;
	background-color: var(--yx_Color);
	text-align: center;
	padding-top: 3vw;
}

.index-s4 .item-4 .img-box {
	overflow: hidden;
}

.index-s4 .item-4 .cell-box {
	height: 100%;
}

.index-s4 .item-4 img {
	display: block;
	width: 100%;
}

.index-s4 .item-4 .btn {
	top: 25vw;
	left: 0;
	right: 0;
	margin: 0 auto;
	margin-top: -30px;
}

.index-s4 .item-4:hover {
	box-shadow: 0 1.5vw 3vw rgba(214, 40, 40, 0.5);
}

.index-s4 .item-5:hover {
	box-shadow: 0 1.5vw 3vw rgba(233, 184, 65, 0.5);
}

.index-s4 .item-6:hover {
	box-shadow: 0 1.5vw 3vw rgba(88, 177, 155, 0.5);
}

.index-s4 .item-7 {
	margin-top: -50vw;
	margin-left: 25vw;
	float: left;
	width: 25vw;
}

.index-s4 .item-7 .img-box {
	overflow: hidden;
}

.index-s4 .item-7 .txt-box {
	height: 14.0625vw;
	background-color: #bc4a36;
	text-align: center;
}

.index-s4 .item-7 .cell-box {
	height: 100%;
}

.index-s4 .item-7 img {
	display: block;
	width: 100%;
}

.index-s4 .item-7 .btn {
	top: 25vw;
	left: 0;
	right: 0;
	margin: 0 auto;
	margin-top: -30px;
}

.index-s4 .item-7:hover {
	box-shadow: 0 1.5vw 3vw rgba(188, 74, 54, 0.5);
}

.index-s4 .item-8 {
	margin-top: -50vw;
	margin-left: 50vw;
	float: left;
	width: 25vw;
}

.index-s4 .item-8:hover {
	box-shadow: 0 1.5vw 3vw rgba(227, 226, 219, 0.5);
}

.index-s5 {
	position: relative;
	padding: 12vw 0 0;
	background-size: cover;
	background-image: url("../picture/img-29.jpg");
}

.index-s5 .bg {
	position: relative;
	z-index: 1;
	margin-top: 4vw;
}

.index-s5 .bg img {
	display: block;
	width: 100%;
	transform: translateY(10px);
}

.index-s5 .items {
	margin-top: 3vw;
	font-size: 0;
	box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.3);
}

.index-s5 .item {
	display: inline-block;
	vertical-align: top;
	width: 6.25vw;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
}

.index-s5 .item .txt-box {
	width: 6.25vw;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.index-s5 .item .txt-box:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid var(--yx_Color);
	position: absolute;
	left: 100%;
	top: 4.5vw;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.index-s5 .item .txt-box h3 {
	width: 30px;
	font-size: var(--yx_FS24);
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 18vw;
	left: 0;
	right: 0;
	margin: 0 auto;
	writing-mode: lr-tb;
	writing-mode: vertical-lr;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-transition: top 0.3s ease;
	-moz-transition: top 0.3s ease;
	-ms-transition: top 0.3s ease;
	transition: top 0.3s ease;
}

.index-s5 .item .txt-box span {
	position: absolute;
	top: 1.5vw;
	left: 0;
	right: 0;
	text-align: center;
	font-size: var(--yx_FS24);
	color: #fff;
	opacity: .2;
	font-family: 'DINPro-Regular';
}

.index-s5 .item .img-box {
	padding-left: 6.25vw;
	position: relative;
	z-index: 1;
}

.index-s5 .item .img-box img {
	display: block;
	width: 100%;
}

.index-s5 .item .cont {
	width: 43.75vw;
	position: relative;
}

.index-s5 .item .para {
	position: absolute;
	left: 4.5vw;
	right: 4.5vw;
	bottom: 3.5vw;
	max-width: 430px;
}

.index-s5 .item .para p {
	font-size: var(--yx_FS18);
	color: #fff;
	line-height: 1.8;
	-webkit-line-clamp: 3;
}

.index-s5 .item .para span {
	display: block;
	width: 200px;
	line-height: 48px;
	font-size: var(--yx_FS16);
	color: var(--yx_Color);
	text-align: center;
	border-radius: 30px;
	background-color: #fff;
	margin-top: 3vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s5 .item .para span:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.index-s5 .item:nth-of-type(1) .txt-box {
	background-color: rgba(214, 40, 40, 0.1);
}

.index-s5 .item:nth-of-type(2) .txt-box {
	background-color: rgba(214, 40, 40, 0.3);
}

.index-s5 .item:nth-of-type(3) .txt-box {
	background-color: rgba(214, 40, 40, 0.5);
}

.index-s5 .item:nth-of-type(4) .txt-box {
	background-color: rgba(214, 40, 40, 0.7);
}

.index-s5 .item:nth-of-type(5) .txt-box {
	background-color: rgba(214, 40, 40, 0.9);
}

.index-s5 .item.active {
	width: 50vw;
}

.index-s5 .item.active .txt-box {
	background-color: var(--yx_Color);
}

.index-s5 .item.active .txt-box:before {
	opacity: 1;
}

.index-s5 .item.active .txt-box:after {
	opacity: 1;
}

.index-s5 .item.active .txt-box span {
	top: calc(100% - 3vw);
}

.index-s5 .item.active .txt-box h3 {
	top: 1.5vw;
}

.index-s6 {
	border-top: 1px solid transparent;
	position: relative;
	background-image: url("../image/img-28.jpg");
	padding-bottom: 15.625vw;
}

.index-s6 .bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.index-s6 .bg img {
	display: block;
	width: 100%;
}

.index-s6 .main {
	position: relative;
	margin-top: -17.5vw;
	z-index: 2;
}

.index-s6 .map-box {
	margin-top: -5vw;
	margin-right: -5vw;
	position: relative;
}

.index-s6 .map-box:after {
	content: '';
	display: block;
	clear: both;
}

.index-s6 .map-box .show-list {
	width: 420px;
	position: absolute;
	top: 0;
	top: 8.3vw;
}

.index-s6 .map-box .show-list .top-box {
	background-color: var(--yx_Color);
	padding: 1.5vw;
}

.index-s6 .map-box .show-list .top-box form {
	display: block;
	width: 100%;
	height: var(--yx_FS60);
	padding-right: var(--yx_FS60);
	position: relative;
	background-color: #fff;
}

.index-s6 .map-box .show-list .top-box input {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	font-size: 14px;
	color: var(--yx_Color);
}

.index-s6 .map-box .show-list .top-box input::-webkit-input-placeholder {
	color: var(--yx_Color);
}

.index-s6 .map-box .show-list .top-box button {
	position: absolute;
	right: 0;
	top: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	background-image: url("../image/icon-7.png");
	cursor: pointer;
	width: var(--yx_FS60);
	height: var(--yx_FS60);
}

.index-s6 .map-box .show-list .tab-child {
	background-color: #fff;
	padding: 0 .75vw 3vw;
}

.index-s6 .map-box .show-list .child {
	display: none;
}

.index-s6 .map-box .show-list .child.active {
	display: block;
}

.index-s6 .map-box .show-list .bot-box {
	border-radius: 0 0 8px 8px;
	padding: 0 .75vw;
	max-height: 580px;
	overflow: auto;
}

.index-s6 .map-box .show-list .bot-box .item {
	padding: 1.5vw 0;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-image: url("../image/img-39.png");
	background-size: 100% 1px;
}

.index-s6 .map-box .show-list .bot-box .item h3 {
	font-size: 20px;
	color: #333333;
}

.index-s6 .map-box .show-list .bot-box .item .para {
	margin-top: 15px;
	font-size: 14px;
	line-height: var(--yx_FS24);
	color: #808080;
}

.index-s6 .map-box .show-list .bot-box .item p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.index-s6 .map-box .map {
	position: relative;
	width: 67vw;
	max-width: 1286px;
	float: right;
}

.index-s6 .map-box .map img.map-bg {
	display: block;
	width: 100%;
}

.index-s6 .map-box .dot {
	position: absolute;
	width: var(--yx_FS24);
	height: var(--yx_FS24);
	margin: -12px 0 0 -12px;
	cursor: pointer;
}

.index-s6 .map-box .dot .range {
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s6 .map-box .dot .range:after {
	content: '';
	width: 8px;
	height: 8px;
	background-color: #2c97cb;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
}

.index-s6 .map-box .dot .range i {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	border: 2px solid rgba(44, 151, 203, 0.8);
	-webkit-animation: scale 4.5s ease-out infinite;
	-moz-animation: scale 4.5s ease-out infinite;
	-ms-animation: scale 4.5s ease-out infinite;
	animation: scale 4.5s ease-out infinite;
}

.index-s6 .map-box .dot .range i:nth-of-type(2) {
	animation-delay: 1.125s;
}

.index-s6 .map-box .dot .range i:nth-of-type(3) {
	animation-delay: 2.25s;
}

.index-s6 .map-box .dot span.addr {
	position: absolute;
	left: 100%;
	top: 0;
	line-height: var(--yx_FS24);
	color: #cfcfcf;
	padding-left: 5px;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s6 .map-box .dot .icon {
	width: var(--yx_FS16);
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -8px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/icon-6.png");
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s6 .map-box .dot .c-box {
	position: absolute;
	right: 12px;
	bottom: var(--yx_FS24);
	padding-right: 88px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s6 .map-box .dot .c-box:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 88px;
	height: 130px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/img-36.png");
}

.index-s6 .map-box .dot .c-box .box {
	padding: 5px;
	position: relative;
}

.index-s6 .map-box .dot .c-box i.ani {
	width: 30px;
	height: 100px;
	position: absolute;
}

.index-s6 .map-box .dot .c-box i.lt {
	top: 0;
	left: 0;
	border-top: 2px solid #2c97cb;
	border-left: 2px solid #2c97cb;
}

.index-s6 .map-box .dot .c-box i.lb {
	bottom: 0;
	left: 0;
	border-bottom: 2px solid #2c97cb;
	border-left: 2px solid #2c97cb;
}

.index-s6 .map-box .dot .c-box i.rt {
	top: 0;
	right: 0;
	border-top: 2px solid #2c97cb;
	border-right: 2px solid #2c97cb;
}

.index-s6 .map-box .dot .c-box i.rb {
	bottom: 0;
	right: 0;
	border-bottom: 2px solid #2c97cb;
	border-right: 2px solid #2c97cb;
}

.index-s6 .map-box .dot .c-box .info {
	width: 389px;
}

.index-s6 .map-box .dot .c-box .info:before {
	content: '';
	width: 100%;
	height: 25px;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/img-37.png");
}

.index-s6 .map-box .dot .c-box .info:after {
	content: '';
	width: 100%;
	height: 31px;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../image/img-38.png");
}

.index-s6 .map-box .dot .c-box .txt {
	background-color: rgba(44, 151, 203, 0.5);
	border-left: 1px solid #2c97cb;
	border-right: 1px solid #2c97cb;
	padding: 0 var(--yx_FS24);
	font-size: 0;
}

.index-s6 .map-box .dot .c-box .img-b {
	display: inline-block;
	vertical-align: middle;
	width: 180px;
	overflow: hidden;
}

.index-s6 .map-box .dot .c-box .img-b img {
	display: block;
	width: 100%;
}

.index-s6 .map-box .dot .c-box .txt-b {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 180px);
	padding-left: 30px;
}

.index-s6 .map-box .dot .c-box .txt-b h3 {
	font-size: var(--yx_FS24);
	color: #fff;
}

.index-s6 .map-box .dot .c-box .txt-b p {
	font-size: 14px;
	color: #fff;
	margin-top: 10px;
}

.index-s6 .map-box .dot .c-box .txt-b p span {
	font-size: var(--yx_FS24);
	color: var(--yx_Color);
	font-family: 'DINPro-Regular';
	margin: 0 5px;
}

.index-s6 .map-box .dot:nth-of-type(1) {
	top: 37.87%;
	left: 72.62%;
	z-index: 2;
}

.index-s6 .map-box .dot:nth-of-type(2) {
	top: 40.15%;
	left: 74.33%;
}

.index-s6 .map-box .dot:nth-of-type(3) {
	top: 33.52%;
	left: 83.04%;
}

.index-s6 .map-box .dot:nth-of-type(4) {
	top: 48.67%;
	left: 76.2%;
}

.index-s6 .map-box .dot:nth-of-type(5) {
	top: 56.15%;
	left: 58.47%;
}

.index-s6 .map-box .dot:nth-of-type(6) {
	top: 56.81%;
	left: 67.49%;
}

.index-s6 .map-box .dot:nth-of-type(7) {
	top: 57.57%;
	left: 80%;
}

.index-s6 .map-box .dot:nth-of-type(8) {
	top: 64%;
	left: 47.43%;
}

.index-s6 .map-box .dot:nth-of-type(9) {
	top: 67.99%;
	left: 57.38%;
}

.index-s6 .map-box .dot:nth-of-type(10) {
	top: 64.1%;
	left: 66.56%;
}

.index-s6 .map-box .dot:nth-of-type(11) {
	top: 61.93%;
	left: 75.58%;
}

.index-s6 .map-box .dot:nth-of-type(12) {
	top: 62.87%;
	left: 84.29%;
}

.index-s6 .map-box .dot:nth-of-type(13) {
	top: 73.48%;
	left: 65.62%;
}

.index-s6 .map-box .dot:nth-of-type(14) {
	top: 84.46%;
	left: 70.76%;
}

.index-s6 .map-box .dot.active .range {
	opacity: 0;
}

.index-s6 .map-box .dot.active span.addr {
	opacity: 0;
}

.index-s6 .map-box .dot.active .icon {
	opacity: 1;
}

.index-s6 .map-box .dot.active .c-box {
	opacity: 1;
	visibility: visible;
}

.index-s6 .map-box .dot.active .c-box i.ani {
	-webkit-animation: run 2s ease-in-out;
	-moz-animation: run 2s ease-in-out;
	-ms-animation: run 2s ease-in-out;
	animation: run 2s ease-in-out;
}

.index-s7 {
	padding: 4vw 0 7vw;
	position: relative;
	background-image: url("../image/img-1.jpg");
}

.index-s7 .waves {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(0, -100%);
}

.index-s7 .waves use {
	animation: move-forever 15s cubic-bezier(.55, .5, .45, .5) infinite;
}

.index-s7 .swiper {
	margin-top: 3vw;
	position: relative;
}

.index-s7 .item {
	font-size: 0;
}

.index-s7 .item .img-box {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	padding-bottom: 30%;
	border-radius: 8px;
	overflow: hidden;
}

.index-s7 .item img {
	display: block;
	width: 100%;
}

.index-s7 .item .txt-box {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	padding: 0 3.5vw;
	text-align: center;
}

.index-s7 .item h3 {
	font-size: var(--yx_FS30);
	color: #333;
}

.index-s7 .item .para {
	font-size: var(--yx_FS16);
	line-height: 2;
	color: #333;
	padding: 15px 30px;
	position: relative;
	margin-top: 1.5vw;
	transition-delay: .1s;
}

.index-s7 .item .para:before {
	content: '';
	width: var(--yx_FS16);
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../image/icon-21.png");
}

.index-s7 .item .para:after {
	content: '';
	width: var(--yx_FS16);
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url("../image/icon-31.png");
}

.index-s7 .button {
	position: absolute;
	top: 55%;
	margin-top: -30px;
	width: var(--yx_FS60);
	height: var(--yx_FS60);
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	background-image: url("../image/prev-3.png");
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.innews .button{
	top: 62%;
}
.index-s7 .button:hover {
	background-color: var(--yx_Color);
	background-image: url("../image/prev-4.png");
	box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
}

.index-s7 .button-prev {
	left: -6.25vw;
}

.index-s7 .button-next {
	right: -6.25vw;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.index-s7 .button.swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.index-s7 .small-box {
	margin-top: var(--yx_FS42);
	text-align: center;
	font-size: 0;
	padding-bottom: 30px;
}

.index-s7 .small-box .item {
	display: inline-block;
	vertical-align: top;
	margin: 0 12px;
	border: 2px solid transparent;
	border-radius: 50%;
	position: relative;
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	-ms-transform: scale(0.75);
	transform: scale(0.75);
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 10%;
	margin: 0 1%;
}
.index-s7 .small-box .item .yx_ImgCover{
	width: 100%;
	padding-bottom: 100%;
}
.index-s7 .small-box .item img {
	display: block;
	width: 100%;
}

.index-s7 .small-box .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--yx_CTwo);
	opacity: .2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s7 .small-box .item.active {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
	border-color: var(--yx_Color);
}

.index-s7 .small-box .item.active:after {
	opacity: 0;
}

.index-s7 .swiper-container2 {
	overflow: hidden;
}

.index-s7 .swiper-slide {
	padding: 1.6vw 1.4vw 1.6vw;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 8px;
}

.index-s7 .swiper-slide .sl_date {
	position: relative;
	display: inline-block;
	padding-bottom: 2px;
	font-size: 15px;
	color: var(--yx_Color);
}

.index-s7 .swiper-slide .sl_date::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: var(--yx_Color);
}

.index-s7 .swiper-slide dl {
	margin: 40px 0 50px;
}

.index-s7 .swiper-slide dl dt {
	transition: all 0.6s;
	margin-bottom: 14px;
	font-size: var(--yx_FS18);
	font-weight: 800;
	color: #222;
}

.index-s7 .swiper-slide dl dd {
	color: #999;
	line-height: 200%;
	font-size: 14px;
}

.index-s7 .swiper-slide .sl_img {
	border-radius: 8px;
	overflow: hidden;
	padding-bottom: 65%;
}

.index-s7 .swiper-slide img {
	max-width: 100%;
	transition: all 0.6s;
}

.index-s7 .swiper-slide:hover img {
	transform: scale(1.1);
}

.index-s7 .swiper-slide:hover dt {
	color: var(--yx_Color);
}

.index-s7 .event_pagination {
	position: absolute;
	left: -50px;
	bottom: 80px;
	display: flex;
	flex-direction: column-reverse;
	width: auto;
	gap: 20px 0;
}

.index-s8 {
	padding: 0 6vw;
	position: relative;
	background-image: url("../image/img-1.jpg");
}

.index-s8:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background: var(--yx_CTwo);
	z-index: 1;
}

.index-s8 .main {
	position: relative;
	z-index: 2;
	box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.2);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 3.5vw 0;
	border-radius: 8px;
	background: var(--yx_Grad);
}

.index-s8 .line1 {
	font-size: 0;
}

.index-s8 .line1 p {
	font-size: 38px;
	line-height: 40px;
	font-weight: bold;
	height: 40px;
	color: #fff;
	display: inline-block;
	vertical-align: bottom;
}

.index-s8 .line2 {
	font-size: 0;
	margin-top: 20px;
}

.index-s8 .line2 p {
	font-size: var(--yx_FS18);
	line-height: var(--yx_FS24);
	height: var(--yx_FS24);
	color: #fff;
	letter-spacing: 3px;
	display: inline-block;
	vertical-align: bottom;
}

.index-s8 .target {
	width: var(--yx_FS24);
	height: 4px;
	background: #fff;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
}

.index-s8 .target.active {
	-webkit-animation: target 1s infinite;
	-moz-animation: target 1s infinite;
	-ms-animation: target 1s infinite;
	animation: target 1s infinite;
}

.index-s8 a {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -30px;
	width: 240px;
	font-size: 20px;
	line-height: var(--yx_FS60);
	color: var(--yx_Color);
	border-radius: 30px;
	background-color: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index-s8 a:before {
	content: '';
	width: var(--yx_FS24);
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../image/icon-4.png");
	display: inline-block;
	vertical-align: middle;
	margin: -4px 10px 0 0;
}

.index-s8 a:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
	background-color: var(--yx_CTwo);
}

.footer>.yx_flexWrap {
	padding: 5vw 6vw;
}

.footer .yx_FootLeft {
	width: 25%;
	padding-right: 5vw;
}

.footer .yx_FootRight {
	width: 75%;
}

.footer .yx_FootLeft .logo {
	margin-bottom: 2vw;
	display: inline-block;
}

.footer .yx_FootLeft .logo img {
	height: 85px;
}

.footer .yx_FootLeft p,
.footer .yx_FootLeft a {
	line-height: 180%;
	color: rgba(255, 255, 255, 0.7);
	line-height: 200%;
	transition: all 0.6s;
	font-size: 14px;
}

.footer .yx_FootLeft a:hover {
	color: #fff;
}

.footer .yx_FootRight .item {
	border-left: 1px solid rgba(255, 255, 255, 0.03);
	padding-left: 2.5vw;
}

.footer .yx_FootRight .item h4 {
	font-size: 20px;
	color: #fff;
	line-height: 200%;
	margin-bottom: var(--yx_FS24);
}

.footer .yx_FootRight .item a {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 200%;
	transition: all 0.6s;
	color: rgba(255, 255, 255, 0.7);
}

.footer .yx_FootRight .item a:hover {
	color: #fff;
}

.footer .yx_FootRight .itemcontent p {
	display: flex;
}

.footer .yx_FootRight .itemcontent .yx_icon {
	font-size: var(--yx_FS18);
	color: #fff;
	width: 36px;
}

.footer .yx_FootRight .itemcontent a {
	display: block;
	width: calc(100% - 36px);
}

.footer .yx_FBottom {
	padding-top: 1.6vw;
	padding-bottom: 1.6vw;
	background-color: rgba(0, 0, 0, 0.1);
	display: block;
}

.footer .yx_FBottom p,
.footer .yx_FBottom a {
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 200%;
	transition: all 0.6s;
	color: rgba(255, 255, 255, 0.7);
}

.footer .yx_FBottom a:hover {
	color: #fff;
}

/*# sourceMappingURL=bundle.css.map */