/*
Theme Name: IOULUO
Version: 1.0
Description:
Author:
*/
@charset "utf-8";

:root {
	--i_color: #0D53C7;
	--linear_color: linear-gradient(to right, #42ADE0, #0D53C7);
	--header_height:.9rem;
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: 60px;
	}
}




.wrap{width: 1400px; margin-left: auto; margin-right: auto;}
.wrap_l{box-sizing: border-box; padding-left: calc((100vw - 1400px) / 2);}
.wrap_r{box-sizing: border-box; padding-right: calc((100vw - 1400px) / 2);}
.wrap_top{width: 94vw; margin-left: auto; margin-right: auto;}

@media screen and (min-width:1921px) {
	.wrap{width: 88vw;}
	.wrap_l{padding-left: 6vw;}
	.wrap_r{padding-right: 6vw;}
}
@media screen and (max-width:1440px) {
	.wrap{width: 88vw;}
	.wrap_l{padding-left: 6vw;}
	.wrap_r{padding-right: 6vw;}
}
@media screen and (max-width:1024px) {
	.wrap{width: 94%;}
	.wrap_l{padding-left: 3vw;}
	.wrap_r{padding-right: 3vw;}
}






/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFF;
	z-index: 2014;
	transition:all .5s ease;
}
header::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #EEE;}
header.header_on, header:hover{background: #FFF; }

@media screen and (max-width:1024px) {
	header{background: #FFF !important}
}

header .wrap_top{display:flex; flex-wrap:nowrap; align-items: center; position: relative;}






/* logo */
.logo {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-height: 55%;}
@media screen and (max-width:1440px) {
	.logo img {max-height: 45%;}
}
@media screen and (max-width:1200px) {
	.logo img {max-height: 35%;}
}
@media screen and (max-width:1024px) {
	.logo img {max-height: 50%;}
}





/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: auto;
		margin-right: auto;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 0 4.5vw;
		position: relative;
		z-index: 2014;
	}

	.i_nav>li {position: relative;}

	.i_nav>li>a {
		text-align: center;
		height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; justify-content: center;
		font-size: .18rem;
		color: #111;
		white-space: nowrap;
		font-weight: bold;
		position: relative;
	}
	/* .i_nav>li>a::before{content: ''; position: absolute; left: 0; bottom: 32%; width: 0; height: 2px; background: var(--i_color); transition:all .5s ease;} */
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a,
	.i_nav>li:hover>a,
	.i_nav>li.active>a
	{color: var(--i_color);}

	.i_nav>.current-menu-item>a::before,
	.i_nav>.current-category-ancestor>a::before,
	.i_nav>.current-post-ancestor>a::before,
	.i_nav>.current-menu-ancestor>a::before,
	.i_nav>.current-menu-parent>a::before,
	.i_nav>li:hover>a::before,
	.i_nav>li.active>a::before
	{width: 100%;}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left: 0;
		top: var(--header_height);
		min-width: 2.6rem;
		background: #FFF;
		box-shadow: 4px 4px 16px rgb(0 0 0 / 20%);
		font-size: 0;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	/* .i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left: 0; width: 100%;height: 1px; background: #EEE;} */
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.17rem;
		color: #333;
		font-weight: bold;
		line-height: 0.44rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}
	.i_nav .sub-menu .menu-item-has-children>a{padding-right: 0.46rem;}
	.i_nav .sub-menu .menu-item-has-children>a::after{content: '';position:absolute; top:50%; transform:translate(0,-50%); right: .1rem; width: .24rem; height: .24rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' fill-rule='evenodd' d='m10.207 8l-3.854 3.854l-.707-.707L8.793 8L5.646 4.854l.707-.708z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center; background-size: contain;}

	/* .i_nav .sub-menu .current-menu-item::before,
	.i_nav .sub-menu .current-category-ancestor::before,
	.i_nav .sub-menu .current-post-ancestor::before,
	.i_nav .sub-menu .current-menu-ancestor::before,
	.i_nav .sub-menu .current-menu-parent::before,
	.i_nav .sub-menu li:hover::before{
		width: 100%;
	} */

	.i_nav>li>.sub-menu>li:hover>a {
		color: var(--i_color);
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
		top: 0; left: 100%;
		box-shadow:8px 4px 8px rgb(0 0 0 / 10%);
	}
	.i_nav .sub-menu .sub-menu a:hover{color: var(--i_color);}
}
@media screen and (max-width:1440px) {
	.i_nav{gap: 0 3.5vw;}
}
@media screen and (max-width:1366px) {
	.i_nav>li>a{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 3vw;}
	.i_nav>li>a{font-size: 0.16rem;}
}






@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		margin: 0 0;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		-webkit-transition:all .5s ease; transition:all .5s ease;
		z-index: 9999
	}
	.i_nav.active{opacity: 1; left: 0;}
	/*滚动条*/
	.i_nav::-webkit-scrollbar {
		width: 3px;
		height: 8px
	}
	.i_nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: #555
	}
	.i_nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1
	}

	.i_nav>li {
		margin: 0 0 !important;
		border-bottom: 1px solid var(--border_color);
		position: relative
	}
	.i_nav>.menu-item-has-children span {
		display: block;
		position: absolute;
		top: 8px;
		right: 20px;
		width: 30px;
		height: 30px;
		box-sizing: border-box;
		border: 1px solid #CCC;
		-webkit-border-radius:50%; border-radius:50%;
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}
	.i_nav>.menu-item-has-children span.on {
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}

	.i_nav>li>a {
		padding: 0 20px;
		font-size: 16px;
		color: #222;
		line-height: 44px;
		text-transform: uppercase;
	}
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a{
		color: var(--i_color) !important;
	}

	.i_nav>li>.sub-menu {
		display: none
	}
	.i_nav>li>.sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu a {
		padding: 0 40px;
		font-size: 15px;
		color: #555;
		line-height: 40px;
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	}

	.i_nav>li>.sub-menu b {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
	}

	.i_nav .sub-menu .sub-menu a {
		padding: 0 60px;
		font-size: 13px;
		color: #888;
		line-height: 36px;
		position: relative;
	}

	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}






/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	flex-shrink: 0;
	position: relative;
	width: 22px;
	height: 16px;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background: var(--i_color);
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: var(--i_color);
	position: absolute;
	left: 0;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before {
	top: 0;
}
.nav_menu::after {
	bottom: 0;
}


.nav_menu.on i {
	opacity: 0
}

.nav_menu.on::before {
	transform: rotate(45deg);
	top: 50%;
	margin-top: -2px
}

.nav_menu.on::after {
	transform: rotate(-45deg);
	top: 50%;
	margin-top: -2px
}

@media screen and (max-width:1024px) {
	.nav_menu {
		display: block !important;
		margin-left: 0.3rem;
	}
}





.top_r{--size:.26rem}
.top_r {
	flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0 .2rem;
}
@media screen and (max-width:1024px) {
	.top_r{--size:.24rem}
	.top_r{margin-left: auto; gap: 0 20px; width: auto; padding: 0;}
}
@media screen and (max-width:560px) {
	.top_r{gap: 0 18px;}
}




.top_search_ico{padding-right: 0.2rem; position: relative; font-size: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; cursor: pointer;}
.top_search_ico::before{content: '';position:absolute; top:50%; transform:translate(0,-50%); right: 0; width: 1px; height: 0.2rem; background: #333;}
.top_search_ico iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_search_ico.on iconify-icon{color: var(--i_color);}

/* search */
.top_search {
	--search_height: .44rem
}
.top_search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: -.8rem;
	left: 0;
	width: 100%;
	height: 100vh;
	display:flex; flex-wrap:wrap; align-items: center;
	background: #FFF;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 9999999;
}
.top_search.on {
	visibility: visible;
	opacity: 1;
	top: 0;
}

.top_search_close{position: absolute; right: 0.2rem; top: 0.2rem; cursor: pointer;}
.top_search_close iconify-icon{font-size: 0.5rem; color: #666;}
@media screen and (min-width:1025px) {
	.top_search_close:hover{transform:rotate(-360deg); transition:all .7s ease;}
	.top_search_close:hover iconify-icon{color: var(--i_color);}
}

.wrap_search{width: 94%; max-width: 8.8rem; margin-left: auto;margin-right: auto;}
.top_search h4{text-align: center; font-size: 2.8vw; color: #111;}
.top_search form {
	display: block;
	width: 100%;
	margin-left: auto;margin-right: auto;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	box-sizing: border-box;
	border-bottom: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: 100%;
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 .2rem 0 0;
}
.top_search_btn {
	flex-shrink: 0;
	font-size: 0;
	color: #FFF;
	width: calc(var(--search_height) * 1.5);
	height: var(--search_height);
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230D53C7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m17 17l4 4M3 11a8 8 0 1 0 16 0a8 8 0 0 0-16 0'/%3E%3C/svg%3E") no-repeat center;
	background-size: .24rem;
	cursor: pointer;
}
.top_search_link{}
.top_search_link h6{margin-bottom: 0.2rem; font-size: .2rem; font-weight: bold;}
.top_search_link ul{display:flex; flex-wrap:wrap; justify-content: center; gap: .14rem .2rem;}
.top_search_link li{}
.top_search_link li a{display: block; padding: .12rem .4rem; background: #F1F1F1; border-radius:2rem; font-size: 0.18rem; color: #666; transition:all .7s ease;}
.top_search_link li a:hover{background: var(--i_color); color: #FFF;}

@media screen and (max-width:1024px) {
	.top_search_close iconify-icon{font-size: 0.4rem;}

	.top_search_link h6{font-size: 17px;}
	.top_search_link li a{padding: 8px 30px; font-size: 16px;}
}
@media screen and (max-width:768px) {
	.top_search h4{font-size: 24px;}
}
@media screen and (max-width:560px) {
	.top_search_close iconify-icon{font-size: 34px;}

	.top_search_link ul{gap: 14px 14px;}
}





.top_language{flex-shrink: 0; height: var(--header_height); display:flex; flex-wrap:wrap; align-items: center; position: relative;}
.top_language_btn{padding-right: 0.16rem; height: 100%;display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; cursor: pointer; position: relative;}
.top_language_btn::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0; width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:6px solid #333;}
.top_language_btn iconify-icon{font-size: var(--size);color: #333;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_btn.on iconify-icon{color: var(--i_color);}
.top_language_btn.on::before{border-top-color:var(--i_color);}

.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + .16rem);
	right: -.1rem;
	min-width: 1.6rem;
	background: #FFF;
	box-sizing: border-box;
	box-shadow: 2px 6px 10px rgb(0 0 0 / 10%);
	padding: .1rem .18rem .1rem;
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.top_language_list.on {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.top_language_list ul {overflow: hidden;}
.top_language_list li{position: relative;left: 0;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_list a>span {
	display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 8px;
	box-sizing: border-box;
	overflow: hidden
}
.top_language_list .trp-ls-language-name{font-size: 15px; color: #666;line-height: .3rem;}

.top_language_list li:hover{left: 4px;}
.top_language_list li:hover .trp-ls-language-name{color: var(--i_color);}






.full_header_height{display: block; height: var(--header_height);}
@media screen and (max-width:1024px) {
	.full_header_height{display: block !important;}
}




/* banner */
.banner {
	width: 100%;
	font-size: 0;
	overflow: hidden;
	position: relative;
}

.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.banner .swiper-wrapper {
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1
}
.banner .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	height: 0;
	padding-bottom: calc(100vh - var(--header_height));
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;
}

.banner-button{position:absolute; top:48%; transform:translate(0,-50%); width: 0.6rem;height: 0.6rem;box-sizing: border-box;cursor: pointer; z-index: 3;-webkit-transition:all .5s ease; transition:all .5s ease;}
.banner-button-prev{left: -1rem}
.banner-button-next{right: -1rem;}
.banner-button iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.5rem;color:#FFF;}
.banner:hover .banner-button-prev{left: .1rem;}
.banner:hover .banner-button-next{right: .1rem;}

.banner-dot{position: absolute; bottom: .5rem; left: 0; width: 100%; z-index: 9;}
.banner-pagination {display:flex; flex-wrap:wrap; justify-content: flex-end; gap: 0 .14rem;}
.banner-pagination .swiper-pagination-bullet {
	width: .7rem; height: 4px;
	outline: none;
	cursor: pointer;
	position: relative;
}
.banner-pagination .swiper-pagination-bullet::after{content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: #FFF; transition:all .5s ease;}
.banner-pagination .swiper-pagination-bullet-active::after{height: 100%; background: var(--i_color)}

@media screen and (max-width:1366px) {
	.banner-button{width: 0.4rem; height: 0.4rem;}
	.banner-button iconify-icon{font-size: 0.36rem;}
}
@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 44%;}
	.banner-button-prev,.banner-button-next{display: none;}

	.banner-dot{bottom: 20px;}
	.banner-pagination .swiper-pagination-bullet{width: 40px; height: 3px;}
}
@media screen and (max-width:560px) {
	.banner-pagination{gap: 0 10px;}
	.banner-pagination .swiper-pagination-bullet{width: 30px; height: 2px;}
}





.banner1_text{position:absolute; top:40%; transform:translate(0,-50%); left: 0; width: 100%;}
.banner1_text h3{margin-bottom: 0.24rem; padding-bottom: 0.3rem; font-size: 2.5vw; font-weight: bold; line-height: 1.5; position: relative;}
.banner1_text h3::before{content: ''; position: absolute; bottom: 0; left: 0; width: 1.2rem; height: 7px; background: #222;}
.banner1_text p{font-size: 1.8vw;}

@media screen and (max-width:1024px) {
	.banner1_text h3{}
	.banner1_text h3::before{width: 100px; height: 4px;}
}
@media screen and (max-width:768px) {
	.banner1_text h3{margin-bottom: 16px; padding-bottom: 14px;}
	.banner1_text .i_more{margin-top: 20px;}
}
@media screen and (max-width:560px) {
	.banner1_text{top: 48%;}
	.banner1_text h3{font-size: 3.5vw;}
	.banner1_text h3::before{width: 60px; height: 3px;}
	.banner1_text p{font-size: 13px;}
	.banner1_text .i_more{margin-top: 10px;}
}






.banner2_text{position: absolute; top: 14%; left: 0; width: 100%;}
.banner2_text h3{font-size: 3vw; color: #FFF; font-weight: bold; text-shadow: 0 4px 0 rgb(0 0 0 / 40%);}
.banner2_text .line{display: block; margin: .2rem 0; width: 100%; height: 8px; background:linear-gradient(to right, #FFF, transparent); border-radius:2rem;}

@media screen and (max-width:1024px) {
	.banner2_text{top: 10%;}
	.banner2_text .line{margin: 14px 0; height: 5px;}
}
@media screen and (max-width:768px) {
	.banner2_text h3{font-size: 3.5vw; text-shadow: 0 2px 0 rgb(0 0 0 / 40%)}
	.banner2_text .i_more{margin-top: 20px;}

	.banner2_text .i_more{border-color: transparent;}
	.banner2_text .i_more::before{left: -20%;}
	.banner2_text .i_more b{color: #FFF;}
}
@media screen and (max-width:560px) {
	.banner2_text h3{font-size: 4vw}
	.banner2_text .line{margin: 8px 0; height: 2px;}
}






/* Main */
main{position: relative; overflow: hidden;}
.mainBg{background: #F7F7F7;}


.linear_t{
	-webkit-text-fill-color: transparent;
	background: var(--linear_color);
	-webkit-background-clip: text;
}



.i_tit{}
.i_tit>span{display: table;}
.i_tit h3{font-weight: bold; position: relative;}
.i_tit h3 i{font-weight: bold; color: var(--i_color);}
.i_tit h6{margin-top: 0.14rem; font-size: 0.18rem; color: #666; line-height: 1.6;}

.i_tit.white h3{color: #FFF;}
.i_tit.white h6{color: #FFF;}

.i_tit.center{text-align: center;}
.i_tit.center>span{margin-left: auto; margin-right: auto;}
.i_tit.right{text-align: right;}
/* .i_tit.center .line{margin-left: auto;margin-right: auto;} */

@media screen and (max-width:1200px) {
	.i_tit h6{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.i_tit h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.i_tit h6{margin-top: 14px; font-size: 13px;}
}





.i_more{display: table; border: 1px solid var(--i_color); border-radius:6px; position: relative; overflow: hidden;}
.i_more::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%) skewX(-40deg); left: -170%; width: 150%; height: 2rem; background: var(--linear_color);}
.i_more span{padding: .12rem .3rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .16rem; position: relative;}
.i_more b{font-size: 0.16rem; color: var(--i_color);}

.i_more:hover{transform:translate(0,-6px);}
.i_more:hover, .i_more.active{border-color: transparent;}
.i_more:hover::before, .i_more.active::before{left: -20%;}
.i_more:hover b, .i_more.active b{color: #FFF;}

.i_more, .i_more::before, .i_more b{transition:all .7s ease;}

.i_more.center{margin-left: auto;margin-right: auto;}

@media screen and (max-width:1024px) {
	.i_more span{padding: 10px 20px;}
	.i_more b{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.i_more span{padding: 8px 16px;}
	.i_more b{font-size: 13px;}
}






.secTit{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 10%;}
.secTit .i_more{flex-shrink: 0; margin-left: auto;}

@media screen and (max-width:1024px) {
	.secTit{flex-wrap: wrap; gap: 30px 0;}
	.secTit .i_tit{width: 100%;}
	.secTit .i_more{margin-left: 0;}
}
@media screen and (max-width:560px) {
	.secTit{gap: 20px 0;}
}




.public-pagination{text-align: center;}
.public-pagination .swiper-pagination-bullet{width:14px; height:14px; display:inline-block; margin:0 6px; border-radius:50%; outline:none; cursor:pointer; position: relative;}
.public-pagination .swiper-pagination-bullet::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 10px; height: 10px; box-sizing: border-box; border: 2px solid #DDD; border-radius:50%; transition:all .5s ease;}
.public-pagination .swiper-pagination-bullet-active::after{width: 100%; height: 100%; border-color: var(--i_color);}





.iAbout{position: relative; overflow: hidden;}

.iAbout_round{position: absolute; top: 0.4rem; left: 51vw; width: 60vw; height: 60vw; box-sizing: border-box; border: 1px solid rgb(13 83 199 / 30%); border-radius:50%;}
.iAbout_round::before,.iAbout_round::after{content: ''; position: absolute; left:50%; transform:translate(-50%,0); width: .2rem; height: 0.2rem; background: var(--linear_color); border-radius:50%;}
.iAbout_round::before{top: -.1rem;}
.iAbout_round::after{bottom: -.1rem;}

.iAbout_round{animation:round_rotate 40s infinite linear}
@keyframes round_rotate{
	0% {transform:rotate(0deg);}
	100% {transform:rotate(360deg)}
}
@media screen and (max-width:1024px) {
	.iAbout_round::before,.iAbout_round::after{width: 16px; height: 16px;}
	.iAbout_round::before{top: -8px;}
	.iAbout_round::after{bottom: -8px;}
}
@media screen and (max-width:768px) {
	.iAbout_round{opacity: .5; left: 20vw; width: 100vw; height: 100vw;}
}
@media screen and (max-width:560px) {
	.iAbout_round{left: 15vw; width: 130vw; height: 130vw;}
}






.iAbout_cont{padding-top: 2rem; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5vw; position: relative;}

.iAbout_cont .t{width: 100%;}
.iAbout_cont article{color: #666;}
.iAbout_btn{display:flex; flex-wrap:wrap; align-items: center; gap: 0 .24rem;}
.iAbout_v iconify-icon{font-size: 0.3rem;}

.iAbout_cont .p{margin-top: 0.4rem; flex-shrink: 0; margin-left: auto; width: 52%; position: relative;}
.iAbout_cont .p::before{content: ''; position: absolute; right: 0; bottom: 0; width: 100%; height: 100%; background: #E4E4E4; border-radius:.1rem;}
.iAbout_cont img{position: relative; top: -.3rem; left: -.3rem; border-radius:.1rem; width: 100%;}

.iAbout_cont .p:hover::before{bottom: 0.2rem;}
.iAbout_cont .p:hover img{top: 0; left: .2rem;}
.iAbout_cont .p::before, .iAbout_cont img{transition:all .7s ease;}

@media screen and (max-width:1440px) {
	.iAbout_cont{padding-top: 1.5rem;}
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.iAbout_cont{padding-top: 1.2rem;}
}
@media screen and (max-width:1024px) {
	.iAbout_cont{padding-top: 80px;}

	.iAbout_cont .t .i_tit{margin-bottom: 20px;}
	.iAbout_cont article{font-size: 16px;}

	.iAbout_cont img{top: -20px; left: -20px;}
}
@media screen and (max-width:768px) {
	.iAbout_cont{padding-top: 60px; flex-wrap: wrap; gap: 0 0;}

	.iAbout_cont .p{width: 100%; margin-top: 60px;}
	.iAbout_cont img{left: 0; width: calc(100% - 20px);}
	.iAbout_cont .p::before{width: calc(100% - 20px);}
	.iAbout_cont .p:hover::before{right: 20px;}
}
@media screen and (max-width:560px) {
	.iAbout_cont article{font-size: 15px;}
	.iAbout_v iconify-icon{font-size: 0.24rem;}

	.iAbout_cont .p{margin-top: 44px;}
	.iAbout_cont img{top: -10px; width: calc(100% - 10px);}
	.iAbout_cont .p::before{width: calc(100% - 10px);}
	.iAbout_cont .p:hover img{top: 0; left: 10px;}
	.iAbout_cont .p:hover::before{bottom: 10px; right: 10px;}
}





.vd_full {display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgb(255 255 255 / 80%);z-index:99999;}
.vd_box {position:absolute;top:52%;left:50%;transform:translate(-50%,-50%);width:60%;z-index:2;}
.vd_box::before {content:'';display:block;padding-bottom:56.25%;}
.close_v {position:absolute;top:-.2rem;right:-.2rem;width:0.4rem;height:0.4rem;background:var(--i_color);z-index:2;-webkit-border-radius:50%;border-radius:50%;cursor:pointer;}
.close_v::before {content:'+';position:absolute;top:54%;left:46%;font-size:.4rem;color:#FFF;-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}
.vd_box iframe {position:absolute;top:0;right:0;width:100%;height:100%;background:#000;object-fit:contain;}
@media screen and (max-width:1024px) {
	.vd_box {width:80%;}
	.close_v::before {font-size:0.4rem;}
}
@media screen and (max-width:768px) {
	.vd_box {width:88%;}
	.close_v {top:-.15rem;right:-.15rem;width:0.3rem;height:0.3rem;}
	.close_v::before {font-size:0.3rem;}
}





.iAbout_global_h{display: none; opacity: 0; width: 100%; height: 100vh; position: relative;}
.iAbout_global_h.show{display: block;}
/* .iAbout_global_h::before{content: ''; position: absolute; top: 100vh; left: 0; width: 100%; height: 100vh; background: #F1F1F1;}
.iAbout_global_h::after{content: ''; position: absolute; top: 300vh; left: 0; width: 100%; height: 100vh; background: #CCC;} */


.iAbout_global{width: 100%; height: 100vh; display:flex; flex-wrap:wrap; align-items: center;}
.iAbout_global.fixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
}
.iAbout_global.end{position: absolute; bottom: 0; left: 0;}
.iAbout_global .wrap{padding-top: var(--header_height); display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5vw;}
.iAbout_global .p{width: 100%; aspect-ratio: 628 / 674; border-radius:.1rem; position: relative; overflow: hidden;}
.iAbout_global .p dl{width: 100%; height: 100%; position: absolute; top: 0; left: 0; display:flex; flex-wrap:nowrap; transition:all .5s ease;}
.iAbout_global .p dt{flex-shrink: 0; width: 100%; height: 100%;}
.iAbout_global .p img{width: 100%; height: 100%; object-fit: cover;}
.iAbout_global .t{flex-shrink: 0; width: calc(52% + .3rem);}


.iAbout_num{display:flex; flex-wrap:wrap; flex-direction: column; gap: .2rem 0;}
.iAbout_num li{}
.iAbout_num span{display:flex; flex-wrap:wrap; align-items: center; gap: 0 6px; font-size: 0.5rem; font-weight: bold;}
.iAbout_num span i{font-weight: bold;}
.iAbout_num p{margin-top: 0.06rem; font-size: 0.22rem; color: #666;}

.iAbout_num .active span{color: var(--i_color);}
.iAbout_num .active span i{
	-webkit-text-fill-color: transparent;
	background: var(--linear_color);
	-webkit-background-clip: text;
}

@media screen and (max-width:1440px) {
	.iAbout_num span{font-size: 0.44rem;}
	.iAbout_num p{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.iAbout_num span{font-size: 0.4rem;}
	.iAbout_num p{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.iAbout_global_h{display: none !important;}

	.iAbout_global{height: auto;}
	.iAbout_global .wrap{padding: 80px 0;}

	.iAbout_global .p{display: none;}

	.iAbout_global .t{width: 100%;}
	.iAbout_global_list{width: 100%; position:relative; overflow:hidden}
	.iAbout_global_list .swiper-wrapper{display:flex; position:relative; width:100%}
	.iAbout_global_list li{flex-shrink:0; position:relative; aspect-ratio: 628 / 674; overflow: hidden;}
	.iAbout_global_list li img{width: 100%; height: 100%; object-fit: cover;}

	.iAbout_global-navigation{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 10px; position: relative;}

	.iAbout_global-prev,.iAbout_global-next{flex-shrink: 0; position: relative; width:.3rem; height:.3rem; z-index:3; cursor:pointer; outline:none; user-select:none}
	.iAbout_global-prev{left:0;}
	.iAbout_global-next{right:0;}
	.iAbout_global-prev iconify-icon,.iAbout_global-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.3rem; color:var(--i_color);}
	.iAbout_global_list .swiper-button-disabled{cursor:not-allowed}

	.iAbout_global-pagination{display:block; margin: 0 auto; width: 100%;}

	.iAbout_num{flex-direction: initial; gap: 30px 4%;}
	.iAbout_num li{width: 48%;}
	.iAbout_num span{font-size: 36px;}
	.iAbout_num p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.iAbout_num span{font-size: 30px;}
}
@media screen and (max-width:560px) {
	.iAbout_global .wrap{padding: 50px 0;}

	.iAbout_num span{font-size: 28px;}
	.iAbout_num p{font-size: 14px;}
}







.iProduct{background: #F9F9F9;}

.iOffer{display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5vw;}
.iOffer .t{width: 100%;}
.iOffer .t ul{}
.iOffer .t li{margin-bottom: 0.5rem;}
.iOffer .t li h5{font-size: 0.22rem; font-weight: bold; line-height: 1.5;}
.iOffer .t li span{display: block; margin-top: 0.16rem; font-size: 0.17rem; color: #666;}


.iOffer .p{flex-shrink: 0; margin-top: 0.4rem; margin-left: auto; width:calc(52% + .3rem); border-radius:.1rem; overflow: hidden;}


.iContrast{width: 100%; aspect-ratio: 712 / 495; position: relative; overflow: hidden;}
.iContrast>img{width: 100%; height: 100%; object-fit: cover;}

.beer-reveal{position:absolute;left:0;top:0;bottom:0;right:50%;overflow:hidden;z-index:1;opacity:0;transition:opacity 0.35s;}
.beer-ready .beer-reveal,.beer-ready .beer-handle {opacity:1;}
.beer-reveal > img:first-child{height:100%;}
.beer-range {position:absolute;z-index:2;top:0;bottom:0;height:100%;margin:0;left:-1px;width:calc(100% + 2px);cursor:pointer;-webkit-appearance:slider-horizontal !important;-moz-appearance:none;opacity:0;-ms-touch-action:auto;touch-action:auto;}

.beer-handle {position:absolute;z-index:3;pointer-events:none;opacity:0;top:50%;left:50%;transform:translate3d(-50%,-50%,0);width:.4rem;height:100%;box-shadow:0 0 6px rgba(0,0,0,0);transition:background 0.3s,box-shadow 0.3s,opacity 0.5s 0.25s;}
.beer-handle::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); width: 2px; height: 100%; background: #FFF;}
.beer-handle::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 40px; height: 40px; background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M9.71 6.29a1 1 0 0 0-1.42 0l-5 5a1 1 0 0 0 0 1.42l5 5a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.42L5.41 12l4.3-4.29a1 1 0 0 0 0-1.42m11 5l-5-5a1 1 0 0 0-1.42 1.42l4.3 4.29l-4.3 4.29a1 1 0 0 0 0 1.42a1 1 0 0 0 1.42 0l5-5a1 1 0 0 0 0-1.42'/%3E%3C/svg%3E") no-repeat center; background-size: .24rem; border-radius:50%;}

@media screen and (max-width:1440px) {
	.iOffer .t li{margin-bottom: .36rem;}
}
@media screen and (max-width:1024px) {
	.iOffer{flex-wrap: wrap; gap: 0 0;}

	.iOffer .t li h5{font-size: 18px;}

	.iOffer .p{order: -1; margin-top: 0; margin-bottom: 30px; width: 100%;}
}
@media screen and (max-width:560px) {
	.iOffer .t li{margin-bottom: 24px;}
	.iOffer .t li h5{font-size: 16px;}
	.iOffer .t li span{margin-top: 10px; font-size: 14px;}
}






.iProduct_cont{}

.iProduct_catename{text-align: center;}
.iProduct_catename p{font-weight: bold;}

.iProduct_show{width: 100%; aspect-ratio: 856 / 266; text-align: center; position: relative;}
.iProduct_show .pic{max-width: 100%; height: 90%; object-fit: contain; position: relative; top: 0; z-index: 2; transition:all .5s ease;}
.iProduct_show .pic.jump{top: -.2rem;}
.iProduct_show .bg{position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 100%; animation:scaling 3s infinite linear}
@keyframes scaling{
	0% {width:50%; opacity: 0;}
	75% {opacity: 1;}
	100% {width:100%; opacity: 0;}
}

.iProduct_list{display:flex; flex-wrap:wrap; gap: .2rem 1.5%;}
.iProduct_list li{width: 23.875%; aspect-ratio: 338 / 252; background: #FFF; position: relative; border-radius:.1rem; overflow: hidden;}
.iProduct_list a{display: block; height: 100%;}
.iProduct_list i{position: absolute; top: .12rem; left: .16rem; font-family: 'Bruno'; font-size: 0.24rem; z-index: 3;}
.iProduct_list .p{width: 100%; height: 100%; position: relative;}
.iProduct_list img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 80%; max-height: 70%; object-fit: contain;}
.iProduct_list .t{position: absolute; left: 0; top: 101%; width: 100%; height: 100%; background: rgb(0 0 0 / 75%);}
.iProduct_list .t p{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 100%; text-align: center; box-sizing: border-box; padding: 0 .2rem; font-family: 'Bruno'; font-size: 0.24rem; color: #FFF; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.iProduct_list li.active .t{top: 0;}
.iProduct_list li.active i{color: #FFF;}
.iProduct_list i, .iProduct_list .t{transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.iProduct_catename{display: none;}
	.iProduct_show{display: none;}

	.iProduct_list{gap: 40px 4%;}
	.iProduct_list li{width: 48%; background: none; aspect-ratio:initial; border-radius:0;}

	.iProduct_list i{color: var(--i_color);}
	.iProduct_list .p{height: auto; aspect-ratio: 338 / 252; background: #FFF; border-radius:.1rem;}
	.iProduct_list li img{}

	.iProduct_list .t{position: initial; background: none; height: auto; margin-top: 16px;}
	.iProduct_list .t p{position: initial; transform: none; font-size: 18px; color: #333}
}
@media screen and (max-width:768px) {
	.iProduct_list .t p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.iProduct_list{gap: 30px 4%;}
	.iProduct_list i{font-size: 18px;}
	.iProduct_list li img{top: 53%; max-width: 70%;}
	.iProduct_list .t p{font-size: 14px;}
}







.iApp{}

.iApp_list{position:relative; overflow:hidden}
.iApp_list .swiper-wrapper{display:flex; position:relative; width:100%}
.iApp_list li{flex-shrink:0; position:relative; box-sizing: border-box; border: 1px solid #DDD; border-radius:.1rem; background: #FFF; overflow: hidden;}
.iApp_list li a{display:flex; flex-wrap:wrap; align-items: center; background: #FFF; position: relative;}
.iApp_list li a::after{opacity: 0; content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: -65%; width: 20vw; height: 20vw; box-sizing: border-box; border: 5vw solid rgb(0 0 0 / 5%); border-radius:50%; transition:all 1s ease;}

.iApp_list .t{width: 50%; box-sizing: border-box; padding: 0 .4rem; position: relative; top: 0.3rem; z-index: 2;}
.iApp_list .t h5{font-size: 0.24rem; font-weight: bold; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.iApp_list .t p{margin: .4rem 0; font-size: 0.18rem; color: #666; line-height: 1.8; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.iApp_list .p{width: 50%; aspect-ratio: 70 / 59; overflow: hidden; border-radius:.1rem;}
.iApp_list .p img{position: relative; left: 0.3rem; width: 100%; height: 100%; object-fit: cover; transition:left .8s ease;}

.iApp_list .swiper-slide-active{z-index: 3;}
.iApp_list .swiper-slide-active a::after{opacity: 1; width: 35vw; height: 35vw}

.iApp_list .swiper-slide-active .t{top: 0; transition:top .8s ease;}
@media screen and (min-width:769px) {
	.iApp_list .swiper-slide-active .p img{left: 0;}
}

.iApp-pagination{display:block; position: absolute; left: .4rem; bottom: .4rem; z-index: 4;}
.iApp-pagination .swiper-pagination-bullet{width:14px; height:14px; display:inline-block; margin:0 6px; border-radius:50%; outline:none; cursor:pointer; position: relative;}
.iApp-pagination .swiper-pagination-bullet::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 10px; height: 10px; box-sizing: border-box; border: 2px solid #DDD; border-radius:50%; transition:all .5s ease;}
.iApp-pagination .swiper-pagination-bullet-active::after{width: 100%; height: 100%; border-color: var(--i_color);}

@media screen and (max-width:1024px) {
	.iApp_list .t h5{font-size: 20px;}
	.iApp_list .t p{margin: 20px 0; font-size: 16px;}

	.iApp-pagination{position: initial; margin-top: 30px; text-align: center;}
}
@media screen and (max-width:768px) {
	.iApp_list li a::after{display: none;}

	.iApp_list .t{width: 100%; top: 10px; padding: 20px 30px 30px;}
	.iApp_list .t h5{font-size: 18px;}
	.iApp_list .p{order: -1; width: 100%;}
	.iApp_list .p img{left: 0;}
}
@media screen and (max-width:560px) {
	.iApp_list .t{padding: 20px 20px 30px;}
	.iApp_list .t h5{font-size: 16px;}
	.iApp_list .t p{font-size: 14px; -webkit-line-clamp:2}
}






.iPartners{--icon_size:14px}
.iPartners .wrap_l{display:flex; flex-wrap:nowrap; align-items: center;}

.iPartners .i_tit{width: 100%;}

.iPartnersMap{margin-left: auto; flex-shrink: 0; width: 74.124%; position: relative;}
.iPartnersMap img{width: 100%;}

.iPartnersMap_dot{position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.iPartnersMap_dot dt{position: absolute; text-align: center;}

.iPartnersMap_dot i{display: block; margin-bottom: 0.16rem; width: var(--icon_size); height: var(--icon_size); background: var(--i_color); border-radius:50%; position: relative;}
.iPartnersMap_dot i::before {content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(var(--icon_size) + 20px);height:calc(var(--icon_size) + 20px); background: var(--i_color);-webkit-border-radius:50%;border-radius:50%; animation:serv_one_border 1.5s 0s ease infinite;}
@keyframes serv_one_border {
  0% {opacity:0;transform:translate(-50%,-50%) scale(.6);-ms-transform:translate(-50%,-50%) scale(.6);-o-transform:translate(-50%,-50%) scale(.6);-webkit-transform:translate(-50%,-50%) scale(.6);-moz-transform:translate(-50%,-50%) scale(.6)}
  20% {opacity:.6}
  80% {opacity:0}
  100% {opacity:0;transform:translate(-50%,-50%) scale(1.1);-ms-transform:translate(-50%,-50%) scale(1.1);-o-transform:translate(-50%,-50%) scale(1.1);-webkit-transform:translate(-50%,-50%) scale(1.1);-moz-transform:translate(-50%,-50%) scale(1.1)}
}
.iPartnersMap_dot p{position:absolute; left:50%; transform:translate(-50%,0); font-size: 0.18rem; width:2rem;}
.iPartnersMap_dot .tTop i{margin-bottom: 0;}
.iPartnersMap_dot .tTop p{bottom: calc(100% + .16rem);}
.iPartnersMap_dot dt:first-child i{margin-bottom: 0; --icon_size:20px}

.iPartnersMap_dot dt:nth-child(1){top: 40.2%; left: 33.8%;}
.iPartnersMap_dot dt:nth-child(2){top: 23.7%; left: 10%;}
.iPartnersMap_dot dt:nth-child(3){top: 23%; left: 36%;}
.iPartnersMap_dot dt:nth-child(4){top: 27.8%; right: 25%;}
.iPartnersMap_dot dt:nth-child(5){bottom: 30.4%; left: 13.9%;}
.iPartnersMap_dot dt:nth-child(6){bottom: 20%; left: 40.8%;}
.iPartnersMap_dot dt:nth-child(7){bottom: 21%; right: 10.5%;}

@media screen and (max-width:1024px) {
	.iPartners{--icon_size:10px}

	.iPartners .wrap_l{padding-right: 3%; flex-wrap: wrap;}

	.iPartnersMap{width: 100%;}

	.iPartnersMap_dot dt:first-child i{--icon_size:14px}
}
@media screen and (max-width:768px) {
	.iPartnersMap_dot p{font-size: 15px;}

	.iPartnersMap_dot i{margin-bottom: 10px;}
}
@media screen and (max-width:560px) {
	.iPartners{--icon_size:6px}
	.iPartnersMap_dot i{margin-bottom: 8px;}
	.iPartnersMap_dot dt:first-child i{--icon_size:10px}
	.iPartnersMap_dot i::before{width:calc(var(--icon_size) + 10px);height:calc(var(--icon_size) + 10px)}
}






.iBrand{}

.iBrand_list{padding-bottom: 2px; position:relative; overflow:hidden}
.iBrand_list .swiper-wrapper{display:flex; position:relative; width:100%}
.iBrand_list li{flex-shrink:0; padding-bottom: 0.16rem; position:relative; border-bottom: 1px solid #DDD;}
.iBrand_list li span{display: block; width: 100%; aspect-ratio: 4 / 2; overflow: hidden; position: relative;}
.iBrand_list li img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 85%; max-height: 100%; object-fit: contain;}

.iBrand-pagination{display: none;}

@media screen and (max-width:1024px) {
	.iBrand-pagination{display: block;}
}







.iNews{background: #F7F7F7;}

.iNews_list{position:relative; overflow:hidden}
.iNews_list .swiper-wrapper{display:flex; position:relative; width:100%}
.iNews_list li{flex-shrink:0; position:relative}
.iNews_list li a{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 3%;}

.iNews_list .p{flex-shrink: 0; width: 50%; aspect-ratio: 70 / 51; position: relative; overflow: hidden; border-radius:.1rem;}
.iNews_list .p img{width: 100%; height: 100%; object-fit: cover;}

.iNews_list .t{width: 100%; padding-bottom: 4vw;}
.iNews_list .t i{font-size: 0.16rem; color: #555;}
.iNews_list .t h5{margin: .1rem 0 .2rem; font-size: 0.22rem; font-weight: bold; color: var(--i_color); line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.iNews_list .t p{font-size: 0.18rem; color: #666; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.iNews_list .t .i_more{margin-top: 0.5rem;}

.iNews-pagination {
	position: absolute; bottom: .34rem; left: 53%;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	z-index: 3;
	font-size: 0.18rem;
	gap: 0.1rem;
}
.iNews-pagination span{
	font-size: 0rem;
	position: relative;
	transition: all 0.5s ease;
	background-color: transparent;
	opacity: 1;
}
.iNews-pagination span::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	width: 0.08rem;
	height: 0.08rem;
	border-radius: 50%;
	background: #AAA;
	transition: all 0.3s ease;
}
.cricle_svg_num{
	font-size: 0.14rem;
	color: #666;
	position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.3s ease;
	line-height: 100%;
}
.cricle_svg{
	position: relative;
	width: 30px !important;
	height: 30px !important;
	display: block;
}
.cricle_svg svg{
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0);
	transition: all 0.3s ease 0.1s;
}
.bullet-bg{
    fill: #CCC;
}
.bullet-progress-circle{
	stroke:var(--i_color);
	stroke-dasharray:85;
    stroke-dashoffset:85;

}
.iNews-pagination .swiper-pagination-bullet-active::after{
	transform: translate(-50%,-50%) scale(0) !important;
}
.iNews-pagination .swiper-pagination-bullet-active.cricle_svg svg{
	transform: translate(-50%, -50%) rotate(-90deg) scale(1) !important;
}
.iNews-pagination .swiper-pagination-bullet-active.cricle_svg .cricle_svg_num{
	transform: translate(-50%, -50%) scale(1) !important;
}
.iNews-pagination .swiper-pagination-bullet-active .bullet-progress-circle{
	animation: rotate 6s ease;
}
@keyframes rotate {
	0%{
		stroke-dashoffset:85;
	}
	100%{
		stroke-dashoffset:0;
	}
}

@media screen and (max-width:1024px) {
	.iNews_list .t h5{font-size: 18px;}
	.iNews_list .t p{font-size: 16px;}
	.iNews_list .t .i_more{margin-top: 20px;}

	.iNews-pagination{margin-top: 30px; position: initial; justify-content: center;}
}
@media screen and (max-width:768px) {
	.iNews_list li a{flex-wrap: wrap; gap: 20px 0;}
	.iNews_list .p{width: 100%;}
}
@media screen and (max-width:560px) {
	.iNews_list .t h5{font-size: 17px}
	.iNews_list .t p{font-size: 15px;}
}






.iContact{position: relative; overflow: hidden;}

.iContact .wrap{position: relative; z-index: 4;}
.iContact .t{width: 60%;}
.iContact .t h3{font-size: 2.4vw; color: #222; line-height: 1.55;}
.iContact .t strong{color: var(--i_color);}

.iContact .p{position: absolute; top: 0; right: 5vw; padding: 1.1rem 0 2.2rem; width: 40%;}
.iContact .p i{opacity: 0; position:absolute; left:50%; transform:translate(-50%,0); bottom: 100%; width: 100%; aspect-ratio: 1 / 1; background:linear-gradient(to bottom, transparent, #F2F2F2); border-radius:50%; transition:all 1.5s ease;}
.iContact .p i::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 70%; height: 70%; background: #FFF; border-radius:50%;}
.iContact .p img{display: block; margin-left: auto; margin-right: auto; height: 1.28rem; position: relative; z-index: 3;}

.iContact .p.arrive i{opacity: 1; bottom: 0;}

@media screen and (max-width:1440px) {
	.iContact .p{padding-bottom: 2rem;}
}
@media screen and (max-width:1024px) {
	.iContact .p{padding: 60px 0 120px;}
	.iContact .p i{opacity: 1; bottom: 0;}
	.iContact .p img{height: 100px;}
}
@media screen and (max-width:768px) {
	.iContact .t h3{font-size: 20px;}
	.iContact .p{padding: 60px 0 100px;}
	.iContact .p img{height: 70px;}
}
@media screen and (max-width:560px) {
	.iContact .t{width: 100%;}
	.iContact .t h3{font-size: 18px;}

	.iContact .p{padding: 120px 0 110px;}
	.iContact .p i{width: 70vw;}
	.iContact .p img{height: 50px;}
}






footer{background:url(static/images/footer-bg.webp) no-repeat bottom center; background-size: cover;}

.fMedia{display:flex; flex-wrap:wrap; align-items: center;}
.fMail{font-size: 2.2vw; color: #FFF; font-weight: bold;}
.fMedia ul{margin-left: auto; display:flex; flex-wrap:wrap; gap: 0 4vw;}
.fMedia li{box-sizing: border-box; border: 1px solid #FFF; border-radius:50%; transition:all .7s ease; position: relative; overflow: hidden;}
.fMedia li::before{content: ''; position:absolute; top:50%; transform:translate(0,-50%) skewX(-40deg); left: -350%; width: 300%; height: 1rem; background: var(--linear_color); transition:all .7s ease;}

.fMedia li a{display: block; width: 0.4rem; height: 0.4rem; position: relative;}
.fMedia li iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem; color: #FFF;}
.fMedia li:hover{transform:translate(0,-8px); border-color: var(--i_color);}
.fMedia li:hover::before{left: -20%;}
.fMedia li:hover a{border-color: transparent;}

.fNavBox{border-top: 1px solid rgb(255 255 255 / 10%); display:flex; flex-wrap:nowrap; justify-content: space-between; gap: 0 3%;}
.fNavBox dt{max-width: 30%;}

.fTit{display: block; margin-bottom: 0.3rem; font-size: 0.24rem; color: #FFF; font-weight: bold;}

.fNav{}
.fNav li a{display: block; padding: 6px 0; font-size: 0.18rem; color: #999;}

.fContact{}
.fContact li{margin-bottom: 0.3rem; display:flex; flex-wrap:nowrap; gap: 0 .14rem;}
.fContact iconify-icon{flex-shrink: 0; font-size: 0.2rem; color: rgb(255 255 255 / 75%);}
.fContact p,.fContact a{font-size: 0.18rem; color: #999; line-height: 1.6;}

.fLogo img{height: 0.5rem;}

.fCR{border-top: 1px solid rgb(255 255 255 / 10%);}
.fCR, .fCR a{font-size: 0.18rem; color: #999; line-height: 1.6;}
.fCR a{text-decoration: underline;}

@media screen and (max-width:1024px) {
	.fMedia li a{width: 34px; height: 34px;}
	.fMedia li iconify-icon{font-size: 18px;}

	.fNav{display: none;}
	.fNavBox dt{max-width: 100%;}
	.fContact p, .fContact a{font-size: 17px;}

	.fLogo img{height: 38px;}

	.fCR, .fCR a{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.fMail{font-size: 3.6vw;}

	.fCR, .fCR a{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.fMail{font-size: 4.2vw;}

	.fMedia li a{width: 26px; height: 26px;}
	.fMedia li iconify-icon{font-size: 15px;}

	.fContact li{margin-bottom: 20px;}
	.fContact p, .fContact a{font-size: 16px;}

	.fLogo img{height: 30px;}

	.fCR, .fCR a{font-size: 14px;}
}








/* ============================================================== */

.banner__{position: relative; font-size: 0; overflow: hidden;}
.banner__>img{width: 100vw; transform: scale(1.4, 1.4); max-height: 6.5rem; object-fit: cover; transition:all 3s ease;}
.banner__>img.scale{transform: scale(1, 1);}

.banner__text{position: absolute; left: 0; bottom: 12%; width: 100%;}
.banner__text .wrap{box-sizing: border-box; padding-right: 44vw;}
.banner__text h2{font-size: 3vw; color: #FFF; font-weight: bold;}
.banner__text p{margin: .26rem 0 .6rem; font-size: 1.15vw; color: #FFF; line-height: 1.6;}
.banner__text img{height: 0.18rem;}

@media screen and (max-width:1440px) {
	.banner__text p{margin: .22rem 0 .4rem;}
}
@media screen and (max-width:1200px) {
	.banner__text p{margin: .2rem 0 .3rem;}
}
@media screen and (max-width:1024px) {
	.banner__text p{margin: 10px 0 10px; font-size: 15px;}
	.banner__text img{height: 12px;}
}
@media screen and (max-width:768px) {
	.banner__text h2{font-size: 4vw; margin-bottom: 14px;}
	.banner__text p{display: none;}
}
@media screen and (max-width:560px) {
	.banner__text h2{font-size: 4.6vw; margin-bottom: 10px;}
	.banner__text img{height: 10px;}
}






/* Breadcrumb */
.in_position{padding:.2rem 0; background: #F7F7F7; border-bottom: 1px solid #CACACA; position:relative;}
.in_position .wrap{display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#333;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 18px;height: 18px;
	background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#555}
.in_position a:last-child {color:var(--i_color) !important}
.in_position a:hover {color:var(--i_color)}
@media screen and (max-width:1024px) {
	.in_position {padding:.16rem 0;}
	.in_position a {font-size:14px}
}
@media screen and (max-width:560px) {
	.in_position {padding:.12rem 0;}
	.in_position a {font-size:13px}
}






.catePage{--boxSpace:4%; --cateNav_w:21%}
.catePage{display:flex; flex-wrap:wrap; align-items: flex-start; position: relative; gap: 0 var(--boxSpace);}

.cateNav{width: var(--cateNav_w);}
.cateNav>li{margin-bottom: 0.2rem;}
.cateNav_t{display: block; padding: .1rem .2rem; border-radius:.08rem; position: relative; overflow: hidden;}
.cateNav_t::before{content: ''; position: absolute; left: 0; top: 0; width: 0; height: 100%; background: var(--linear_color); transition:all .7s ease;}
.cateNav_t p{position: relative; font-size: 0.18rem; font-weight: bold; line-height: 1.3; transition:all .7s ease;}

.cateNav ul{margin-top: .14rem; padding: 0 .2rem;}
.cateNav ul li{padding-left: 0.2rem; position: relative;}
.cateNav li li a{
	display: block;
	padding: .12rem 0;
}
.cateNav li li a i{
	font-size: 0.16rem;
	line-height: 1.6;
	background: linear-gradient(to right, var(--i_color) ,var(--i_color)) no-repeat right bottom;
	background-size: 0 2px;
	-webkit-transition:background-size .5s ease;
	transition:background-size .5s ease;
}
.cateNav li li a::before{content: ''; position: absolute; left: 0; top: .2rem; width: 8px; height: 8px; background: #999; border-radius:50%;}

.cateNav_t.active::before{width: 100%;}
.cateNav_t.active p{color: #FFF;}
.cateNav ul .active a i{color: var(--i_color); background-position: left bottom; background-size: 100% 2px;}
.cateNav ul .active a::before{background: var(--i_color);}

@media screen and (max-width:1366px) {
	.cateNav>li{margin-bottom: 0.16rem;}
	.cateNav li li a{padding: .1rem 0;}
}
@media screen and (max-width:1200px) {
	.catePage{--boxSpace:3%; --cateNav_w:24%}
}
@media screen and (max-width:1024px) {
	.catePage{--boxSpace:0; --cateNav_w:100%}
	.catePage{padding-top: 40px;}
	.cateNav{display: none; background: #FFF; box-sizing: border-box; padding: 16px 20px 10px;}
	.cateNav.fixed{position: fixed; left: 0; z-index: 9999;}
}
@media screen and (max-width:768px) {
	.cateNav_t p{font-size: 16px;}
	.cateNav ul{margin-top: 6px;}
	.cateNav li li a::before{top: 18px; width: 6px; height: 6px;}
	.cateNav li li a i{font-size: 14px;}

}
@media screen and (max-width:560px) {
	.cateNav>li{margin-bottom: 8px;}
	.cateNav_t{padding: 12px 20px;}
	.cateNav li li a{padding: 8px 0;}
}







.cateNavBtn{display: none;}

@media screen and (max-width:1024px) {
	.cateNavBtn{display:flex; flex-wrap:nowrap; align-items: center; width: 100%; background: var(--linear_color); box-sizing: border-box; padding:12px 20px;}
	.cateNavBtn.fixed{position: fixed; top: var(--header_height); left: 0; z-index: 2013;}
	.cateNavBtn p{font-size: 20px; color: #FFF; font-weight: bold;}
	.cateNavBtn iconify-icon{margin-left: auto; font-size: 30px; color: #FFF;}
}
@media screen and (max-width:768px) {
	.cateNavBtn iconify-icon{font-size: 26px;}
}
@media screen and (max-width:560px) {
	.cateNavBtn p{font-size: 18px;}
	.cateNavBtn iconify-icon{font-size: 24px;}
}






.cateBox{margin-left: auto; width: calc(100% - var(--cateNav_w) - var(--boxSpace)); box-sizing: border-box; padding-left: var(--boxSpace); border-left: 1px solid #CACACA;}

.cateList{}
.cateItem{}

.cateInfo{}
.cateInfo h2{font-size: 0.34rem; font-weight: bold;}
.cateInfo span{display: block; margin-top: 0.2rem; font-size: 0.18rem; line-height: 1.6; color: #666;}

.cateList ul{}
.cateList ul li{margin-bottom: 0.6rem;}
.cateName{font-weight: bold;}

@media screen and (max-width:1200px) {
	.cateInfo h2{font-size: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.cateBox{border: none;}
	.cateInfo h2{font-size: 24px;}
	.cateInfo span{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.cateInfo h2{font-size: 20px;}
	.cateInfo span{font-size: 15px;}
	.cateName{margin-bottom: 20px; font-size: 18px;}
}
@media screen and (max-width:560px) {
	.cateInfo span{margin-top: 12px; font-size: 14px;}
}






.pList{}
.pList dt{margin-bottom: 0.4rem; background: #FFF; border-radius:.1rem;}
.pList a{padding: .4rem; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 7%;}
.pList .p{flex-shrink: 0; width: 24%;}
.pList .p img{width: 100%;}

.pList .t{width: 100%;}
.pList .t h5{display: table; padding: .1rem .2rem; font-size: 0.2rem; font-weight: bold; border: 1px solid #DDD; border-radius:6px; line-height: 1.5;}

.pTable{margin-top: 0.3rem; display:flex; flex-wrap:wrap; gap: .2rem 4%;}
.pTable_text{width: 48%; box-sizing: border-box; padding-left: 0.2rem; position: relative;}
.pTable_text::before{content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--i_color); border-radius:50%;}
.pTable_text p{font-size: 0.16rem; color: #666; line-height: 1.5;}

.pList2{}
.pList2 a{display: block;}
.pList2 img{width: 100%; height: auto; border-radius:.1rem;}
.pList2 .pTable_text{width: 100%;}

@media screen and (max-width:1024px) {
	.pList .t h5{padding: 8px 14px; font-size: 17px;}
	.pTable_text p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.pList dt{margin-bottom: 22px;}
	.pList a{padding: 26px 30px;}
	.pList .t h5{font-size: 16px;}
	.pTable{margin-top: 20px; gap: 12px 4%;}
}
@media screen and (max-width:560px) {
	.pList a{flex-wrap: wrap; padding: 40px 20px 30px;}

	.pList .p{width: 70%; margin: 0 auto 30px;}

	.pList .t{}
	.pList .t h5{font-size: 15px;}

	.pTable{gap: 8px 0;}
	.pTable_text{width: 100%; padding-left: 15px;}
	.pTable_text::before{width: 4px; height: 4px;}
	.pList .t h5{padding: 6px 12px;}
	.pTable_text p{font-size: 14px;}
}








.p_data{position: relative;}

.p_data_bg{position: absolute; left: 105%; bottom: 15%; width: 45vw; height: 45vw; background:linear-gradient(to bottom, transparent, #F2F2F2); border-radius:50%; transition:all 1.5s ease;}
.p_data_bg::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 70%; height: 70%; background: #FFF; border-radius:50%;}
.p_data_bg.arrive{left: 82%;}

.p_data .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 5%; position: relative; z-index: 3;}

/* atlas */
.p_atlas{flex-shrink: 0; width:40%; aspect-ratio: 1 / 1; box-sizing: border-box; position: relative; background: #F1F1F1;}
#canvas-container { width: 100%; height: 100%; }
#loading {
	position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
	pointer-events: none; z-index: 10;
}
#loading iconify-icon{font-size: 0.6rem; color: var(--i_color);}
#loading p{text-align: center; font-size: 0.24rem; color: #D2D2D2; font-weight: bold; line-height: 1.6;}

.p_atlas img{width: 100%; height: 100%; object-fit: contain;}

@media screen and (max-width:768px) {
	.p_data .wrap{flex-wrap: wrap; gap: 30px 0;}
	.p_atlas{width: 100%; max-width: 5rem; margin: 0 auto;}

	.p_data_bg{opacity: .8; left: 20%; width: 150vw; height: 150vw;}
	.p_data_bg.arrive{left: 20%;}
}





.p_title{margin-left: auto;width: 100%;}

.pCate{color: #666; text-decoration: underline;}
.p_title h1{margin-top: 0.14rem; color: var(--i_color); position: relative; font-weight: 600;}

.p_des{padding: .3rem 0 0; border-top: 1px solid #DDD;}
.p_des>h5{margin-bottom: 0.2rem; font-size: 0.22rem; color: #111; font-weight: bold;}
.p_des article{color: #666; line-height: 1.8;}
.p_des article table{margin: 0 0; border: none !important; background: #F4F9F3}
.p_des article tbody{display: inline-table;}
.p_des article table tr:nth-child(odd) {
	background: #FFF;
}
.p_des article table td{border: none !important;}


.p_menu{display:flex; flex-wrap:nowrap; border-top: 1px solid #DDD;}

.p_btn{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .3rem;}

@media screen and (max-width:1024px) {
	.pCate{font-size: 15px;}
	.p_des>h5{font-size: 18px;}
	.p_des article{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.pCate{font-size: 14px;}
	.p_title h1{font-size: 20px;}
	.p_des{padding-top: 20px;}
	.p_des>h5{margin-bottom: 12px; font-size: 16px;}
	.p_des article{font-size: 14px;}

	.p_menu{flex-wrap: wrap;}
	.p_btn{gap: 0 20px;}
}







.pIcon{background: #F7F7F7;}

.pIcon_list{display:flex; flex-wrap:wrap; justify-content: center; gap: .4rem 4%;}
.pIcon_list li{width: 13.33%; text-align: center;}
.pIcon_list .icon{display: block; margin: 0 auto; width: 0.66rem; height: 0.66rem; background:linear-gradient(25deg, #DFE6F2, var(--i_color)); position: relative; border-radius:50%;}
.pIcon_list .icon::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: calc(100% - 4px); height: calc(100% - 4px); background: #F7F7F7; border-radius:50%;}
.pIcon_list .icon img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.42rem; z-index: 3;}
.pIcon_list p{margin-top: 0.2rem; font-size: 0.18rem; line-height: 1.5;}

@media screen and (max-width:1024px) {
	.pIcon_list li{width: 30.66%;}
	.pIcon_list .icon{width: 54px; height: 54px;}
	.pIcon_list .icon img{height: 34px;}
	.pIcon_list p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.pIcon_list .icon{width: 46px; height: 46px;}
	.pIcon_list .icon img{height: 28px;}
	.pIcon_list p{margin-top: 10px; font-size: 14px;}
}







.pFeatures{}

.pFeatures_pic{text-align: center;}
.pFeatures_pic img{max-width: 100%;}

.pFeatures_t{display:flex; flex-wrap:wrap; gap: .3rem 4%;}
.pFeatures_t dt{width: 30.66%; padding-top: 0.2rem; position: relative;}
.pFeatures_t dt::before,.pFeatures_t dt::after{content: ''; position: absolute; top: 0; left: 0; height: 1px;}
.pFeatures_t dt::before{width: 100%; background: #DDD;}
.pFeatures_t dt::after{width: 0; background: var(--i_color); transition:all .5s ease;}

.pFeatures_t h5{margin-bottom: 0.2rem; font-size: 0.24rem; font-weight: bold;}

.pFeatures_t dt:hover::after{width: 100%;}
.pFeatures_t dt:hover h5{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.pFeatures_t{gap: 26px 0;}
	.pFeatures_t dt{width: 100%;}
	.pFeatures_t h5{font-size: 20px;}
}
@media screen and (max-width:768px) {
	.pFeatures_t h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.pFeatures_t h5{margin-bottom: 14px;}
}






.pFeatures2{background: #F7F7F7;}

.pFeatures2_list{}
.pFeatures2_list dt{margin-top: 0.3rem; width: 100%; background: #FFF; display:flex; flex-wrap:nowrap; align-items: center;}

.pFeatures2_list .pic{flex-shrink: 0; width: 40%; aspect-ratio: 482 / 246; font-size: 0; border-radius:.1rem; overflow: hidden;}
.pFeatures2_list .pic img{width: 100%; height: 100%; object-fit: cover;}

.pFeatures2_list .txt{padding: .3rem .4rem;}
.pFeatures2_list .t{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}

.pFeatures2_list .icon{display: block; flex-shrink: 0; width: 0.66rem; height: 0.66rem; background:linear-gradient(25deg, #DFE6F2, var(--i_color)); position: relative; border-radius:50%;}
.pFeatures2_list .icon::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: calc(100% - 4px); height: calc(100% - 4px); background: #FFF; border-radius:50%;}
.pFeatures2_list .icon img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.42rem; z-index: 3;}

.pFeatures2_list .t h5{}
.pFeatures2_list .txt span{display: block; margin-top: 0.2rem; color: #666;}

.pFeatures2_list .rs .txt{order: -1;}
.pFeatures2_list .rs .txt .t{justify-content: flex-end;}
.pFeatures2_list .rs .t h5{order: -1;}
.pFeatures2_list .rs .txt span{text-align: right;}

@media screen and (max-width:1440px) {
	.pFeatures2_list .icon{width: 0.52rem; height: 0.52rem;}
	.pFeatures2_list .icon img{height: 0.34rem;}
}
@media screen and (max-width:1024px) {
	.pFeatures2_list .icon{width: 40px; height: 40px;}
	.pFeatures2_list .icon img{height: 26px;}
	.pFeatures2_list .txt span{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.pFeatures2_list dt{flex-wrap: wrap; border-radius:10px 10px 0 0;}
	.pFeatures2_list .pic{order: -2; width: 100%;}
	.pFeatures2_list .txt{padding: 30px 24px;}
}
@media screen and (max-width:560px) {
	.pFeatures2_list .icon{width: 30px; height: 30px;}
	.pFeatures2_list .icon img{height: 20px;}
	.pFeatures2_list .t h5{font-size: 16px;}
	.pFeatures2_list .txt span{font-size: 14px;}
}





.pContent article table tr:nth-child(odd) {
	background: #F2F7FF
}





.pVideos{}

.pVideos_list{display:flex; flex-wrap:wrap; gap: .4rem 3%;}
.pVideos_list li{width: 48.5%;}

.pVideos_list .pic{width: 100%; aspect-ratio: 16 / 9; position: relative; border-radius:.1rem; background: #000; overflow: hidden;}
.pVideos_list .pic i{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 1.5rem; height: 0.5rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.42em' height='1em' viewBox='0 0 512 116'%3E%3Cpath fill='red' d='M159.89 17.93a20.55 20.55 0 0 0-14.471-14.47C132.73 0 81.666 0 81.666 0S30.6.105 17.913 3.565a20.55 20.55 0 0 0-14.47 14.47c-3.838 22.545-5.327 56.896.105 78.538a20.55 20.55 0 0 0 14.47 14.47c12.688 3.46 63.753 3.46 63.753 3.46s51.065 0 63.753-3.46a20.55 20.55 0 0 0 14.47-14.47c4.047-22.576 5.295-56.906-.105-78.642'/%3E%3Cpath fill='%23fff' d='m65.413 81.788l42.362-24.536l-42.362-24.537z'/%3E%3Cpath fill='%23fff' d='M491.237 33.24c5.557 0 9.751 1.048 12.687 3.04q4.404 2.989 6.292 9.438c1.258 4.299 1.782 10.17 1.782 17.72v12.269H485.05v3.774l.42 10.381c.314 2.307.839 3.985 1.677 5.033c.84 1.049 2.202 1.573 3.985 1.573c2.412 0 4.09-.943 4.928-2.83c.944-1.888 1.363-5.034 1.468-9.333l13.946.839c.105.629.105 1.468.105 2.516c0 6.606-1.783 11.535-5.453 14.785s-8.703 4.928-15.309 4.928c-7.969 0-13.526-2.516-16.672-7.444C471 95 469.322 87.24 469.322 76.86V64.172c.356-17.825 3.491-30.88 21.915-30.932m-193.88 1.363v52.533c0 3.146.314 5.453 1.048 6.816c1.489 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zm82.732 0v52.533c0 3.146.314 5.453 1.048 6.816c1.49 2.915 5.348 2.17 7.445.734a8.4 8.4 0 0 0 2.831-3.25V34.602h16.043v71.617h-12.583l-1.363-8.808h-.314c-3.46 6.606-8.599 9.961-15.414 9.961c-10.49-.026-13.057-7.584-13.668-15.26l-.04-.541a65 65 0 0 1-.133-3.492V34.603zM250.8 33.24c5.243 0 9.542 1.048 12.688 3.25c3.145 2.202 5.557 5.558 7.025 10.171c1.468 4.614 2.202 10.8 2.202 18.455v10.38c0 7.655-.734 13.737-2.202 18.35c-1.468 4.615-3.775 7.97-7.025 10.172c-3.25 2.097-7.655 3.25-13.107 3.25c-5.663.105-10.067-1.048-13.317-3.145c-3.25-2.202-5.558-5.558-6.92-10.171c-1.364-4.614-1.993-10.696-1.993-18.35V65.22c0-7.655.734-13.946 2.307-18.56c1.573-4.718 3.984-8.074 7.34-10.17c3.355-2.098 7.654-3.251 13.002-3.251m181.822-28.73v37.748h.105c1.468-2.726 3.355-4.928 5.977-6.606a14.8 14.8 0 0 1 8.283-2.516c3.88 0 6.816 1.048 9.018 3.04c2.202 2.098 3.775 5.348 4.718 9.857c.915 4.368 1.435 10.409 1.467 18.027l.001.743v11.324c0 10.59-1.363 18.455-3.88 23.488c-2.62 5.033-6.605 7.55-12.058 7.55c-3.04 0-5.767-.734-8.283-2.097a14.7 14.7 0 0 1-5.35-5.392l-.208-.376h-.314l-1.678 6.816h-13.317V4.51zm-64.173 3.67V21.18h-15.938v85.039h-15.728V21.181H320.74V8.18zm-172.909 0l.01.04c.153.681 2.273 10.106 4.605 21.087l.184.87l.278 1.315l.186.883l.093.443l.186.888l.093.445l.185.891l.27 1.303c1.575 7.604 3.078 15.23 3.977 20.698h.42c.861-4.905 2.112-11.182 3.446-17.591l.35-1.674q.263-1.258.53-2.512l.274-1.297a2039 2039 0 0 1 5.597-25.444l.03-.135l.048-.21h16.043l-18.56 66.165v31.771h-15.833V74.448h-.105l-18.35-66.27zm54.945 36.175c-2.202 0-3.67 1.154-4.613 3.566s-1.363 6.081-1.363 11.22v22.334c0 5.243.419 9.122 1.258 11.43q1.259 3.46 4.718 3.46q3.303 0 4.719-3.46c.944-2.308 1.363-6.187 1.363-11.43V59.139c0-5.138-.42-8.913-1.363-11.22c-.944-2.411-2.517-3.565-4.719-3.565m184.968 2.098c-1.278 1.18-2.187 2.635-2.728 4.454l-.103.369v40.684c1.3 2.202 3.146 3.67 6.396 3.775q2.516 0 4.09-1.887q1.572-1.887 2.201-6.292q.605-4.227.629-11.644v-9.956c0-5.662-.21-9.961-.524-13.002c-.42-3.041-.943-5.243-1.887-6.501c-1.825-2.622-5.767-2.59-8.074 0m55.47-2.412q-2.675.157-3.776 1.573c-.838 1.048-1.363 2.621-1.677 4.928c-.309 2.26-.415 10.16-.42 10.476v5.148h11.744v-4.54v.087c-.007 1.587-.04-.921-.112-4l-.01-.414c-.066-2.706-.162-5.723-.297-6.757c-.315-2.412-.84-4.09-1.678-5.033c-.839-.944-2.097-1.468-3.775-1.468'/%3E%3C/svg%3E") no-repeat center; background-size: contain;}
.pVideos_list .pic img{opacity: .5; width: 100%; height: 100%; object-fit: cover; transition:all .8s ease;}
.pVideos_list p{margin-top: 0.2rem; text-align: center; font-size: 0.18rem; line-height: 1.5;}

.pVideos_list li:hover img{transform: scale(1.05, 1.05);}
.pVideos_list li:hover p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.pVideos_list .pic i{width: 120px;}
	.pVideos_list p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.pVideos_list{gap: 40px 0;}
	.pVideos_list li{width: 100%;}
}
@media screen and (max-width:560px) {
	.pVideos_list p{font-size: 15px;}
}






.pDownload{}

.pDownload_list{display:flex; flex-wrap:wrap; gap: .3rem 2%;}
.pDownload_list li{width: 32%; box-shadow: 3px 3px .1rem rgb(0 0 0 / 10%); border-radius:.1rem; overflow: hidden; display:flex; flex-wrap:wrap; align-items: center; transition:all .7s ease;}
.pDownload_list a{display: block; width: 100%; height: 100%; box-sizing: border-box; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4vw; padding: .14rem .26rem;}

.pDownload_list p{font-size: 0.16rem; line-height: 1.5;}

.pDownload_list iconify-icon{flex-shrink: 0; margin-left: auto; font-size: 0.26rem; color: var(--i_color);}

.pDownload_list li:hover{background: #F4F4F4; box-shadow: none;}
.pDownload_list li:hover p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.pDownload_list a{gap: 0 20px;}
	.pDownload_list p{font-size: 15px;}
	.pDownload_list iconify-icon{font-size: 24px;}
}
@media screen and (max-width:768px) {
	.pDownload_list{gap: 26px 0;}
	.pDownload_list li{width: 100%;}
}
@media screen and (max-width:560px) {
	.pDownload_list a{padding: 12px 20px;}
}






.pFAQ{}

.fold_list{}
.fold_list li{position: relative; border-bottom: 1px solid #EEE;}

.fold_list .tit{padding: .3rem .3rem; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .14rem;align-items: baseline;position: relative;cursor: pointer;}
.fold_list .tit::before{content: '';position: absolute; left:50%; transform:translate(-50%,0); top: 0;width: 0;height: 2px;background: var(--i_color);}

.fold_list .qa{flex-shrink: 0; display: block; width: 0.3rem;height: 0.3rem;line-height: .3rem;text-align: center;font-size: 0.18rem;font-weight: bold; color: #FFF;-webkit-border-radius:4px; border-radius:4px;}
.fold_list .tit .qa{background: #666;}
.fold_list .txt .qa{background: var(--i_color);}

.fold_list .tit p{}
.fold_list li.active{background: #F4F4F4; border-radius:.1rem; border-bottom: none; z-index: 2;}

.fold_list .txt{display: none;padding: 0 .3rem .3rem;}
.fold_list .txt span{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .14rem;align-items: baseline;}

@media screen and (max-width:768px) {
	.fold_list .tit{padding: 24px 24px}
	.fold_list .qa{width: 26px;height: 26px;line-height: 26px;font-size: 16px;}
	.fold_list .txt{padding: 0 24px 30px;}
}
@media screen and (max-width:560px) {
	.fold_list .tit{padding: 14px 20px;}
	.fold_list .qa{width: 22px;height: 22px;line-height: 22px;font-size: 14px;}
	.fold_list .txt{padding: 0 20px 30px;}
}







.pProjects{background: #F4F4F4;}

.pProjects_list{display:flex; flex-wrap:wrap; gap: .4rem 2.5%;}
.pProjects_list li{width: 31.66%; background: #FFF; border-radius:.1rem; overflow: hidden; box-shadow: 6px 4px .1rem rgb(0 0 0 / 10%);}

.pProjects_list .pic{width: 100%; aspect-ratio: 45 / 28; overflow: hidden;}
.pProjects_list .pic img{width: 100%; transition:all .5s ease;}

.pProjects_list .txt{padding: .24rem;}
.pProjects_list .txt h5{font-weight: bold;}
.pProjects_list .txt span{display: block; margin-top: 0.14rem;}

.pProjects_list li:hover img{transform: scale(1.05, 1.05);}
.pProjects_list li:hover h5{color:var(--i_color)}

@media screen and (max-width:1024px) {
	.pProjects_list{gap: 40px 0;}
	.pProjects_list li{width: 100%;}
}
@media screen and (max-width:560px) {
	.pProjects_list{gap: 30px 0;}
}







.pLike{background:linear-gradient(to bottom, transparent, #F7F7F7);}

.pLike_list{position:relative; overflow:hidden}
.pLike_list .swiper-wrapper{display:flex; position:relative; width:100%}
.pLike_list li{flex-shrink:0; position:relative}

.pLike_list .pic{width: 100%; aspect-ratio: 338 / 252; background: #FFF; border-radius:.12rem; position: relative; overflow: hidden;}
.pLike_list .pic img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 80%; max-height: 70%; object-fit: contain;}
.pLike_list .btn{position: absolute; top: 101%; left: 0; width: 100%; height: 100%; background: rgb(0 0 0 / 75%); transition:all .3s ease;}
.pLike_list .btn i{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.34rem; height: 0.34rem; background: var(--i_color); border-radius:50%;}
.pLike_list .btn img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.16rem;}

.pLike_list li p{margin-top: 0.2rem; text-align: center; font-size: 1.2vw; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.pLike_list li:hover .btn{top: 0;}
.pLike_list li:hover p{color: var(--i_color);}

.pLike-pagination{display:block; text-align:center}
.pLike-pagination .swiper-pagination-bullet{width:.1rem; height:.1rem; display:inline-block; margin:0 4px; background:#CCC; border-radius:1rem; outline:none; cursor:pointer; transition:all .8s ease;}
.pLike-pagination .swiper-pagination-bullet-active{width: 0.2rem; background:var(--i_color)}

@media screen and (max-width:1440px) {
	.pLike_list li p{font-size: 1.4vw;}
}
@media screen and (max-width:1024px) {
	.pLike_list li p{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.pLike_list li p{font-size: 16px;}
	.pLike-pagination .swiper-pagination-bullet{width: 8px; height: 8px;}
	.pLike-pagination .swiper-pagination-bullet-active{width: 16px;}
}







.pBottom{}

.p_tags{padding-bottom: 0.2rem; border-bottom: 1px solid rgb(0 0 0 / 10%);display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: baseline; gap: .16rem 0;}
.p_tags>p{margin-right: .14rem; font-size: 0.18rem;}
.p_tags a{display: block; padding: 8px .2rem; margin-right: 0.2rem; font-size: .16rem; color: var(--i_color); border: 1px solid var(--i_color); border-radius:6px;}
.p_tags a:hover{background: var(--i_color); color: #FFF;}
@media screen and (max-width:1024px) {
	.p_tags>p{font-size: 16px;}
	.p_tags a{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.p_tags{gap: 12px 0;}
}





.p_view_other{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between; align-items: center; gap: 0 4%;}
.p_view_other li{max-width: 46%; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .14rem; align-items:center}
.p_view_other a{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}
.p_view_other span{flex-shrink: 0; width: 0.44rem; height: 0.44rem; box-sizing: border-box; border: 1px solid var(--i_color); border-radius:50%; position: relative;}
.p_view_other span img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.24rem;}
.p_view_other p{font-size: 0.16rem; color: #333; line-height: 1.5;}
.p_view_other p b{font-size: 0.18rem; color: #333;}

.p_view_other li:hover p,.p_view_other li:hover p b{color: var(--i_color)}
.p_view_other li:hover span{background: var(--i_color);}
.p_view_other li:hover span img{-webkit-filter:brightness(100); filter:brightness(100);}

@media screen and (max-width:1024px) {
	.p_view_other span{width: 34px; height: 34px;}
	.p_view_other span img{height: 18px;}
	.p_view_other p,.p_view_other p b{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.p_view_other{flex-wrap: wrap;gap: 12px 0;}
	.p_view_other li{max-width: 100%; width: 100%;}
	.p_view_other span{order: -1;}
}
@media screen and (max-width:560px) {
	.p_view_other span{width: 26px; height: 26px;}
	.p_view_other span img{height: 14px;}
}








.p2Form{background: #F4F4F4;}

#wpforms-150{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:120px;
	--wpforms_input_font_size: 16px;
	--wpforms-field-border-radius: 0;
	--wpforms-button-background-color: var(--i_color);
	--wpforms-button-border-color: var(--i_color);
	--wpforms-page-break-color: var(--i_color)
}
#wpforms-150{margin:0; padding:0;}
#wpforms-form-150{width:100%; position:relative;}

/* 字段样式 */
#wpforms-150 .wpforms-field-container>.wpforms-field{width: 100%; padding: 0 1px 20px; margin: 0 0 6px;overflow-x:initial !important; position: relative;}
#wpforms-150 label.wpforms-field-label{display: block; margin-bottom: 8px; font-size: 16px; font-weight: bold;}
#wpforms-150 .wpforms-field-container .wpforms-required-label{color: #D63637;}
#wpforms-150 .wpforms-field-container .wpforms-field>input,
#wpforms-150 .wpforms-field-container textarea
{width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 14px!important; margin: 0 0; border: 1px solid #CCC; background: #FFF; border-radius:var(--wpforms-field-border-radius); font-size:var(--wpforms_input_font_size); line-height: 1.4;}
#wpforms-150 .wpforms-field-container .wpforms-field>input{height: var(--wpforms_input_height);}
#wpforms-150 .wpforms-field-container textarea{height: var(--wpforms_textarea_height);}
#wpforms-150 input::placeholder, #wpforms-150 textarea::placeholder{color:#AAA; font-size:var(--wpforms_input_font_size); line-height: 1.4;}

/* 下拉菜单样式 */
/* #wpforms-150 .choices{width: 100%; max-width: 100% !important; height: var(--wpforms_input_height);}
#wpforms-150 .choices__inner{background: #F2F4F5; border: none !important; height: 100%;}
.wpforms-container .wpforms-field .wpforms-field-row:before{display: none !important;} */

#wpforms-150 .wpforms-field-container .wpforms-field>input:hover,
#wpforms-150 .wpforms-field-container textarea:hover,
#wpforms-150 .wpforms-field-container .wpforms-field>input:focus,
#wpforms-150 .wpforms-field-container textarea:focus{border-color: var(--i_color);}

/* 验证错误提示 */
#wpforms-150 label.wpforms-error, #wpforms-150 em.wpforms-error{position: absolute; left: 0; bottom: 0; font-size: 13px; color: #D63637;}

/* 隐藏 Label 标签 */
/* #wpforms-150 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-150 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 6px; font-size: 16px; font-weight: bold;} */

/* 输入框水平排列，一行两个 */
#wpforms-150 .wpforms-field-container{display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-150-field_3-container,
#wpforms-150-field_4-container,
#wpforms-150-field_5-container,
#wpforms-150-field_6-container,
#wpforms-150-field_7-container,
#wpforms-150-field_8-container,
#wpforms-150-field_14-container,
#wpforms-150-field_15-container{width: 49% !important;}

/* 提交按钮样式 */
#wpforms-150 .wpforms-submit-container{width: 220px; margin: 0 auto; padding:0 0; position: relative; overflow: hidden;}
#wpforms-150 .wpforms-submit-container button{width: 100%; height:44px; font-size: 15px; color: #FFF; background: var(--linear_color);}
#wpforms-150 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-150 .wpforms-submit-container button:hover{background: var(--i_color);}

@media screen and (max-width:1024px) {
	#wpforms-150 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}
@media screen and (max-width:768px) {
	#wpforms-150 label.wpforms-field-label{font-size: 14px;}
}
@media screen and (max-width:560px) {}





.inNav{display:flex; flex-wrap:wrap; gap: 6px 5px; position: relative; z-index: 2;}
.inNav::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #DDD;}

.inNav li{position: relative;}
.inNav li::after{content: ''; position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width: 0; height: 3px; background: var(--linear_color); transition:all .5s ease;}
.inNav a{display: block; padding: .2rem .4rem; font-size: 0.24rem; font-weight: bold;}

.inNav li:hover::after, .inNav .active::after{width: 100%;}
.inNav li:hover a, .inNav .active a{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.inNav a{font-size: 0.22rem;}
}
@media screen and (max-width:1200px) {
	.inNav a{font-size: 0.2rem;}
}
@media screen and (max-width:1024px) {
	.inNav a{padding: 20px 20px;}
	.inNav a{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.inNav li{min-width: 45%;}
	.inNav a{padding: 16px 16px;}
	.inNav a{font-size: 17px;}
}
@media screen and (max-width:560px) {
	.inNav a{padding: 12px 8px;}
	.inNav a{font-size: 16px;}
}







.service__{}
.service__ .wrap{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 3vw;}

.service__ .pic{flex-shrink: 0; width: 25%; aspect-ratio: 35 / 40; text-align: center; position: relative;}
.service__ .pic img{opacity: 0; max-width: 100%; max-height: 100%; object-fit: contain; left: -20vw; transform:rotate(-220deg); transition:all 1.5s ease; position: relative;}

.service__ .txt{margin-left: auto; width: 100%;}

.service__ .pic.arrive img{opacity: 1; left: 0; transform:rotate(0deg);}

@media screen and (max-width:1440px) {
	.service__ .pic{width: 20%;}
}
@media screen and (max-width:560px) {
	.service__ .wrap{align-items: flex-start;}
	.service__ .pic{width: 15%;}
	.service__ .txt article{font-size: 15px;}
}







.serviceContent{padding: 1.4rem 0; position: relative;}

.serviceContent .iAbout_round{top: 3rem; left: -2vw;}

.serviceContent .wrap{position: relative; z-index: 2;}
.serviceContent_list{}
.serviceContent_list dt{margin-bottom: 1.6rem; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; gap: 0 4vw;}

.serviceContent_list .pic{width: 35%; aspect-ratio: 1 / 1;}
.serviceContent_list .pic img{width: 100%; height: 100%; object-fit: cover; border-radius:50%;}

.serviceContent_list .txt{width: 40%;}
.serviceContent_list .txt h5{font-weight: bold;}
.serviceContent_list .txt span{display: block; border-top: 1px solid var(--i_color); color: #666;}

.serviceContent_list dt:nth-child(even) .txt{order: -1;}

@media screen and (min-width:1025px) {
	.serviceContent_list dt:nth-child(1){justify-content: space-between;}
	.serviceContent_list dt:nth-child(1) .pic{width: 40%;}
	.serviceContent_list dt:nth-child(2) .txt{padding-left: 4vw;}
	.serviceContent_list dt:last-child{margin-bottom: 0; padding-bottom: 0.6rem; justify-content: flex-end;}
	.serviceContent_list dt:last-child .txt{padding-right: 1rem;}
}

.serviceContent_bg{position: absolute; bottom: -10vw; right: -60vw; width: 50vw; height: 50vw; background:linear-gradient(to right, transparent, #F2F2F2); border-radius:50%; transition:all 1s ease;}
.serviceContent_bg::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 80%; height: 80%; background: #FFF; border-radius:50%;}
.serviceContent_bg.arrive{right: 4vw;}

@media screen and (max-width:1440px) {
	.serviceContent_list dt{margin-bottom: 1rem;}
	.serviceContent_list dt:last-child{padding-bottom: 0;}
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.serviceContent{padding: 110px 0 70px}
	.serviceContent .iAbout_round{top: 2rem; left: -6vw;}

	.serviceContent_list dt{margin-bottom: 80px;}
	.serviceContent_list dt:last-child{margin-bottom: 0 !important;}
	.serviceContent_list .txt{width: 50%;}

	.serviceContent_bg{right: 4vw;}
}
@media screen and (max-width:768px) {
	.serviceContent .iAbout_round{top: 1.5rem; left: -15vw; width: 120vw; height: 120vw;}

	.serviceContent_list dt{gap: 0 5%; margin-bottom: 60px;}
	.serviceContent_list .pic{width: 40%;}
	.serviceContent_list .txt{width: 55%;}

	.serviceContent_bg{right: -15vw; width: 102vw; height: 102vw;}
	.serviceContent_bg.arrive{right: -15vw;}
}
@media screen and (max-width:560px) {
	.serviceContent{padding: 60px 0 60px;}
	.serviceContent_list dt{gap:30px 0}
	.serviceContent_list .pic{order: -1; width: 60%;}
	.serviceContent_list .txt{width: 100%;}
	.serviceContent_list .txt span{margin-top: 10px; padding-top: 10px; font-size: 15px;}
}







.serForm{text-align: center; background:url(static/images/service-form-bg.webp) no-repeat center; background-attachment: fixed; background-size: cover; position: relative;}

@media screen and (max-width:560px) {
	.serForm .i_more{margin-top: 20px;}
}








.search_download{--size:.5rem}
.search_download{display: table; width: 100%; max-width: 5rem; margin-left: auto; border: 1px solid #DDD; -webkit-border-radius:6px; border-radius:6px; overflow: hidden;}
.search_download form{width: 100%; display:-webkit-flex; display:flex; flex-wrap:nowrap;}

.search_download_ipt{width: 100%;background: none; line-height: var(--size); box-sizing: border-box; padding:0 .18rem;}

.search_download_btn{width: var(--size); height: var(--size); font-size: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.553 15.553a7.06 7.06 0 1 0-9.985-9.985a7.06 7.06 0 0 0 9.985 9.985m0 0L20 20'/%3E%3C/svg%3E") no-repeat center;background-size: .3rem; cursor: pointer;}

.search_download:hover{border-color: var(--i_color);}

@media screen and (max-width:1024px) {
	.search_download{--size:.44rem}
	.search_download{max-width: 4rem;}
}
@media screen and (max-width:768px) {
	.search_download{max-width: 100%;}
}
@media screen and (max-width:560px) {
	.search_download{--size:.4rem}
	.search_download_btn{background-size: 24px;}
}







.download_list{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 44px 3%;}
.download_list li{
	background: #F6F6F6;
	width: 31.33%;
	-webkit-border-radius:.12rem; border-radius:.12rem;
	position: relative;
	overflow: hidden;
}
.download_list li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 100%; background: var(--linear_color);}
.download_list li::after{content: ''; position: absolute; right: 0.2rem; bottom: 0.2rem; width: 50%; height: 80%; background:url(static/images/logo-download.webp) no-repeat right bottom; background-size: contain;}
.download_list a{display: block;padding: 0.46rem 0.4rem 1.5rem; position: relative; z-index: 3;}

.download_list p{height: 0.98rem; font-size: 0.2rem; line-height: 1.6; font-weight: bold;overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; position: relative;}

.download_list span{position: absolute; left: .4rem; bottom: .36rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .06rem;}
.download_list span iconify-icon{font-size: 0.26rem;color:var(--i_color)}
.download_list span i{font-size: 0.18rem;color: #666;}

.download_list li:hover::before{width: 100%; transition:all .4s ease;}
.download_list li:hover p{color: #FFF;}
.download_list li:hover iconify-icon,.download_list li:hover i{color: #FFF;}

@media screen and (max-width:1440px) {
	.download_list li::after{width: 40%;}
	.download_list a{padding: 0.36rem 0.4rem 1.4rem;}
}
@media screen and (max-width:1024px) {
	.download_list{gap: 20px 0;}
	.download_list li{width: 100%; -webkit-border-radius:6px; border-radius:6px;}
	.download_list li::after{display: none;}
	.download_list a{padding: 14px 20px; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center;gap: 0 30px;}
	.download_list p{height: auto;font-size: 17px;}
	.download_list span{margin-left: auto; position: relative; left: initial; bottom: initial;}
	.download_list span i{display: none;}
}
@media screen and (max-width:768px) {
	.download_list p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.download_list{gap: 14px 0;}
	.download_list p{font-size: 15px;}
	.download_list span iconify-icon{font-size: 22px;}
}






/* Paging */
.in_paging{
	--size:36px;
	--border_radius:1rem;
}
.in_paging ul{display:flex; flex-wrap:wrap;justify-content:center;align-items:center;text-align: center;}
.in_paging li{min-width: var(--size);margin: 0 4px;}
.in_paging a,.in_paging span {display:block;padding: 0 10px; height: var(--size); line-height:calc(var(--size) - 2px);font-size:14px;color:#666;background:#FFF;box-sizing: border-box; border:1px solid #CCC; border-radius:var(--border_radius);overflow:hidden;}
.in_paging i {margin-top:14px;width:100%;font-size:13px;color:#888;}
.in_paging a:hover,.in_paging .curr_page a,.in_paging .curr_page span {border-color:var(--linear_color) !important;background:var(--linear_color);color:#FFF !important}

@media screen and (max-width:768px) {
	.in_paging{--size:32px;}
}
@media screen and (max-width:560px) {
	.in_paging{--size:28px;}
}







.vContent{background:linear-gradient(to bottom, transparent, #F6F6F6);}






.inVav2{display:flex; flex-wrap:wrap; justify-content: center; gap: .2rem .3rem;}
.inVav2 li{position: relative; border-radius:8px; overflow: hidden;}
.inVav2 li::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background: var(--linear_color); transition:all .5s ease;}
.inVav2 a{display: block; padding: .12rem .24rem; font-size: 0.2rem; position: relative; transition:all .5s ease;}

.inVav2 li:hover::before, .inVav2 li.active::before{height: 100%;}
.inVav2 li:hover a, .inVav2 li.active a{-webkit-text-fill-color:initial; background: none; -webkit-background-clip:initial; color: #FFF;}

@media screen and (max-width:1024px) {
	.inVav2{gap: 14px 14px;}
	.inVav2 li{background: #F1F1F1;}
	.inVav2 a{padding: 10px 20px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.inVav2 a{padding: 10px 16px; font-size: 15px;}
}






.about__{--bg: #F7F7F7}
.about__{position: relative;}
.about__::before, .about__::after{content: ''; position: absolute; top: 0; width: 50%; height: 100%;}
.about__::before{left: 0; background: var(--bg);}
.about__::after{left: 50%; background:linear-gradient(to right, var(--bg), transparent);}

.aboutCont{position: relative; z-index: 2;}

.aboutCont .line{position: absolute; left: 15%; top: 0; width: 1px; height: 0; background: var(--i_color); transition:all .8s ease;}

.aboutT{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 10vw; position: relative; overflow: hidden;}
.aboutT>span{flex-shrink: 0; width: 30%; text-align: center; background: var(--bg); position: relative;}
.aboutT .round{width: 0.84rem; height: 0.84rem; margin: 0 auto; position: relative;}
.aboutT .round::before{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 100%; height: 100%; background: rgb(13 83 199 / 20%); border-radius:50%; animation:serv_one_border 1.5s 0s ease infinite}
.aboutT .round i{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.16rem; height: 0.16rem; background: var(--i_color); border-radius:50%;}
.aboutT>span h3{margin-top: 0.1rem;}

.aboutT2>span::before{content: ''; position: absolute; left: 0; top: 100%; width: 100%; height: 100rem; background: var(--bg);}

.aboutPic{width: 100%; position: relative;}
.aboutPic img{width: 100%;}

.about__ .full{width: 100%; background:linear-gradient(to bottom, transparent, #FFF); position: relative; z-index: 2;}

@media screen and (max-width:1200px) {
	.aboutT{gap:0 5vw}
}
@media screen and (max-width:1024px) {
	.aboutT article{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.aboutCont .line{opacity: .3; left: 30px;}
	.aboutT{flex-wrap: wrap; gap: 20px 0;}
	.aboutT>span{display: table; width: auto; text-align: left; padding-bottom: 10px;}
	.aboutT .round{margin: 0 0; width: 60px; height: 60px;}
	.aboutT .round i{width: 12px; height: 12px;}
	.aboutT2>span::before{display: none;}
	.aboutT article{padding-left: 50px;}
}
@media screen and (max-width:560px) {
	.aboutT article{font-size: 14px;}

	.aboutCont .line{left: 15px;}
	.aboutT .round{margin: 0 0; width: 30px; height: 30px;}
	.aboutT .round i{width: 8px; height: 8px;}
	.aboutT article{padding-left: 40px;}
}






.aboutNum{background: #F6F6F6;}
.aboutNum dl{display:flex; flex-wrap:nowrap; gap:0 6%}
.aboutNum dt{width: 100%; max-width: 30%;}

.aboutNum span{font-size: 0.3rem; font-weight: bold; color: var(--i_color);}
.aboutNum i,.aboutNum b{font-size: 0.5rem; font-weight: bold;}
.aboutNum b{color: var(--i_color);}
.aboutNum p{margin-top: 6px; font-size: 0.18rem; color: #666; line-height: 1.65;}

@media screen and (max-width:1024px) {
	.aboutNum i, .aboutNum b{font-size: 40px;}
	.aboutNum p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.aboutNum dl{flex-wrap: wrap; gap: 28px 4%;}
	.aboutNum dt{width: 48%; max-width: 48%;}
	.aboutNum i, .aboutNum b{font-size: 34px;}
}
@media screen and (max-width:560px) {
	.aboutNum i, .aboutNum b{font-size: 30px;}
	.aboutNum p{font-size: 14px;}
}






.abCulture{--roundBg:60vw}
.abCulture{position: relative; overflow: hidden;}
.abCulture::before {
	content: '';
	position: absolute;
	bottom: calc(var(--roundBg) / 2 * -1); right: calc(var(--roundBg) / 2 * -1);
	border-radius: 50%;
	-webkit-filter: blur(80px);
	filter: blur(80px);
	width: var(--roundBg);
	height: var(--roundBg);
	opacity: .4;
	background: linear-gradient(0deg, #9dc0e9 0%, #c6d9f4 100%);
}

/* .abCulture_r1{opacity: 0; position: absolute; top: -12vw; right: -3vw; width: 0; height: 0; background:url(static/images/culture-round1.webp) no-repeat bottom; background-size: 100%; z-index: 2}
.abCulture_r2{opacity: 0; position: absolute; top: -24vw; right: -13vw; width: 20vw; height: 20vw; background:url(static/images/culture-round2.webp) no-repeat bottom; background-size: 100%; z-index: 2}
.abCulture_r3{opacity: 0; position: absolute; top: -34vw; right: -22vw; width: 40vw; height: 40vw; background:url(static/images/culture-round3.webp) no-repeat bottom; background-size: 100%; z-index: 2}
.abCulture.show .abCulture_r1{opacity: 1; width: 38vw; height: 38vw;}
.abCulture.show .abCulture_r2{opacity: 1; width: 58vw; height: 58vw;}
.abCulture.show .abCulture_r3{opacity: 1; width: 77vw; height: 77vw;}
.abCulture_r1,.abCulture_r2,.abCulture_r3{transition:all 1s ease;} */

.abCulture_r{opacity: 0; position: absolute; top: -33vw; right: -21vw; width: 40vw; height: 40vw; background:url(static/images/culture-round.webp) no-repeat bottom; background-size: 100%; z-index: 2; transition:all 1s ease;}
.abCulture.show .abCulture_r{opacity: 1; width: 77vw; height: 77vw;}


.abCulture .wrap{box-sizing: border-box; height: 80vh; position: relative;}

.abCultureCont{width: 45%; position: relative; z-index: 3;}
.abSecLine{display: block; width: 2px; height: 0.75rem; position: relative;}
.abSecLine .i{content: ''; position: absolute; width: 100%; height: 0; background: var(--i_color); transition:all 1.5s ease;}
@media screen and (max-width:1024px) { .abSecLine{height: 50px;} }
@media screen and (max-width:560px) { .abSecLine{height: 40px;} }


.abCultureCont h3{font-weight: bold;}

.abCulture_t{}
.abCulture_t h5{}
.abCulture_t i{display: block; margin: .6rem 0 .4rem; width: 0.6rem; height: 0.06rem; background: var(--i_color);}
.abCulture_t span{display: block; color: #666;}

.abCulture_nav{display: none;}

.abCultureItem{position: absolute; right: 0; top: 0; width: 50%; height: 100%; z-index: 3;}
.abCultureItem dt{position: absolute; width: 1.6rem; aspect-ratio: 1 / 1; border-radius:50%; background: #FFF; box-shadow: 0 0 .3rem rgb(0 0 0 / 15%); cursor: pointer; overflow: hidden;}
.abCultureItem dt::before{content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background: var(--linear_color); transition:all .8s ease;}

.abCultureItem dt p{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 75%; font-weight: bold; font-size: 0.19rem; text-align: center; color: var(--i_color);}

.abCultureItem dt:nth-child(1){top: 10%; left: 0; width: 1.6rem;}
.abCultureItem dt:nth-child(2){top: 15%; right: 20%; width: 1.3rem;}
.abCultureItem dt:nth-child(3){bottom: 30%; left: 25%; width: 2.2rem;}
.abCultureItem dt:nth-child(4){bottom: 7%; right: 0; width: 1.6rem;}

.abCultureItem dt:nth-child(3) p{font-size: 0.26rem;}

.abCultureItem dt.active{box-shadow: none;}
.abCultureItem dt.active::before{height: 100%;}
.abCultureItem dt.active p{color: #FFF; font-weight: normal;}

@media screen and (max-width:1440px) {
	.abCulture_t i{margin: .4rem 0 .3rem;}
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.abCultureItem dt:nth-child(1){top: 10%; left: 0; width: 1.4rem;}
	.abCultureItem dt:nth-child(2){top: 15%; right: 20%; width: 1.2rem;}
	.abCultureItem dt:nth-child(3){bottom: 30%; left: 25%; width: 2rem;}
	.abCultureItem dt:nth-child(4){bottom: 7%; right: 0; width: 1.4rem;}
}
@media screen and (max-width:1024px) {
	.abCulture .wrap{height: auto;}

	.abCultureCont{width: 100%; margin: 0 0;}
	.abCultureCont h3{margin: 10px 0 16px;}
	.abCultureCont h3 br{display: none;}

	.abCulture_nav{display:flex; flex-wrap:nowrap; gap: 0 .1rem;}
	.abCulture_nav dt{width: 100%; background: #FFF; box-sizing: border-box; border: 1px solid rgb(13 83 199 / 40%); text-align: center; display:flex; flex-wrap:wrap; align-items: center; justify-content: center; border-radius:6px; overflow: hidden;}
	.abCulture_nav dt.active{background: var(--linear_color); border: none;}
	.abCulture_nav p{padding: 30px 10px; font-size: 16px; font-weight: bold; line-height: 1.6;}
	.abCulture_nav dt.active p{color: #FFF;}

	.abCulture_t i{margin: 20px 0 20px; height: 4px;}
	.abCulture_t span{font-size: 16px;}

	.abCultureItem{display: none;}
}
@media screen and (max-width:560px) {
	.abCulture_r{top: -35vw; right: -40vw;}
	.abCulture.show .abCulture_r{opacity: .7; width: 140vw; height: 140vw;}

	.abCulture_nav{flex-wrap: wrap; gap: 14px 4%;}
	.abCulture_nav dt{width: 48%;}
	.abCulture_nav p{padding: 14px 10px; font-size: 14px;}

	.abCulture_t i{width: 30px; height: 2px;}
}






.abCE{--radius:.1rem}

.abCE_cont{display:flex; flex-wrap:nowrap; align-items: flex-end; gap: 0 1.5%; width: 100%; aspect-ratio: 91 / 34;}
.abCE_cont dt{width: 100%; height: 100%; display:flex; flex-wrap:wrap; flex-direction: column; justify-content: space-between;}

.abCE_cont dt:nth-child(1),.abCE_cont dt:nth-child(5){height: 72%;}
.abCE_cont dt:nth-child(3){flex-shrink: 0; width: 26%; height: 87%;}

.abCE_cont dt span{display: block; width: 100%; height: 100%; overflow: hidden; position: relative;}
.abCE_cont dt span::before,.abCE_cont dt span::after{content: ''; position: absolute; left: 0; width: 100%; height: 50%; background: rgb(255 255 255 / 40%); transition:all .5s ease; z-index: 2;}
.abCE_cont dt span::before{top: 0;}
.abCE_cont dt span::after{bottom: 0;}

.abCE_cont dt img{width: 100%; height: 100%; object-fit: cover; transition:all 1s ease;}

.abCE_cont .p1{width: 100%; height: 68%; border-radius:var(--radius);}
.abCE_cont .p2{width: 100%; height: calc(32% - 1.3vw); border-radius:var(--radius) var(--radius) 0 0;}

.abCE_cont dt:nth-child(1) span{border-radius:0 var(--radius) 0 0;}
.abCE_cont dt:nth-child(3) span{border-radius:var(--radius) var(--radius) 0 0;}
.abCE_cont dt:nth-child(5) span{border-radius:var(--radius) 0 0 0;}

.abCE_cont dt span:hover::before,.abCE_cont dt span:hover::after{height: 0;}
.abCE_cont dt span:hover img{transform: scale(1.1, 1.1);}

@media screen and (max-width:1024px) {
	.abCE_cont dt span::before,.abCE_cont dt span::after{display: none;}
}
@media screen and (max-width:768px) {
	.abCE_cont{flex-wrap: wrap; align-items: flex-start; width: 94%; margin-left: auto;margin-right: auto; aspect-ratio:initial; gap: 10px 3%;}
	.abCE_cont dt{width: 48.5%; height: 100% !important; aspect-ratio: 1 / 1.8;}
	.abCE_cont dt:nth-child(3){width: 100%; aspect-ratio: 4 / 4;}
	.abCE_cont dt span{border-radius:var(--radius) !important;}
	.abCE_cont .p1{height: 62%;}
	.abCE_cont .p2{height: calc(38% - 10px);}
}






.abCore{position: relative;}

.abCore_logo{opacity: 0; position:absolute; top:50%; transform:translate(0,-50%); left: -80vw; width: 88vw; height: 75vh; object-fit: contain; transition:all 1.5s ease;}
.abCore_logo.arrive{opacity: 1; left: -58vw;}

.abCore_cont{width: 84%; margin-left: auto;}
.abCore_cont .abSecLine{margin-left: auto;}
.abCore_cont>h3{text-align: right; font-weight: bold;}

.abCore_box{width: 100%; display:flex; flex-wrap:nowrap; justify-content: space-between; align-items: flex-end; gap: 0 3%;}
.abCore_box dt{width: 100%; padding-bottom: 2rem; position: relative; cursor: pointer;}

.abCore_box .txt{position: relative;}
.abCore_box .copy,.abCore_box .show{font-size: 0.16rem; color: #666; line-height: 1.6;}
.abCore_box .show{position: absolute; bottom: 0; left: 0; width: 100%; max-height: 0; overflow: hidden; transition:all .8s ease; z-index: 2;}
.abCore_box .copy{opacity: 0; visibility: hidden;}

.abCore_box dt h6{height: 1rem; font-size: 0.18rem; line-height: 1.6;}

.abCore_box .tit{position: absolute; left: 0; width: 100%; padding-top: 0.2rem;}
.abCore_box .t{padding-top: 0.2rem; display:flex; flex-wrap:wrap; align-items: baseline; gap: 0 6px; font-size: 0.34rem; font-weight: bold; position: relative; position: relative;}
.abCore_box .t::before,.abCore_box .t::after{content: ''; position: absolute; left: 0; top: 0; height: 1px;}
.abCore_box .t::before{width: 100%; background: #DDD;}
.abCore_box .t::after{width: 0; background: var(--i_color); transition:all .5s ease;}
.abCore_box .t h5{font-size: 0.22rem; color: #111; font-weight: bold;}

.abCore_box dt:hover .show{max-height: 3.6rem;}
.abCore_box dt:hover .t{
	-webkit-text-fill-color: transparent;
	background: var(--linear_color);
	-webkit-background-clip: text;
}
.abCore_box dt:hover .t::after{width: 100%;}
.abCore_box dt:hover h5{color: var(--i_color);}

@media screen and (max-width:1440px) {
	/* .abCore_logo{left: -62vw;} */
	.abCore_logo.arrive{left: -62vw;}
}
@media screen and (max-width:1200px) {
	.abCore_logo{opacity: .1;}
	.abCore_cont{width: 100%;}
	.abCore_box .t{font-size: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.abCore_logo{width: 260vw; left: -112vw;}

	.abCore_cont .abSecLine{margin-left: 0;}
	.abCore_cont>h3{text-align: left;}

	.abCore_box{flex-wrap: wrap; align-items: flex-start; gap: 40px 4%;}
	.abCore_box dt{width: 48%; padding-bottom: 0; display:flex; flex-wrap:wrap; flex-direction: column; gap: 24px 0;}

	.abCore_box .show{display: none;}
	.abCore_box .copy{opacity: 1; visibility: visible; font-size: 14px;}

	.abCore_box .tit{order: -1; position: initial; padding-top: 0;}
	.abCore_box dt h6{height: auto;}
	.abCore_box .t{margin-top: 14px;}
}
@media screen and (max-width:768px) {
	.abCore_box{gap: 24px 0;}
	.abCore_box dt{width: 100%; background: rgb(255 255 255 / 70%); box-sizing: border-box; padding: 20px; box-shadow: 0 0 .16rem rgb(13 83 199 / 15%); border-radius:10px; gap: 14px 0;}
	.abCore_box dt h6{font-size: 16px;}
	.abCore_box .t{font-size: 24px;}
}
@media screen and (max-width:560px) {
	.abCore_logo{width: 330vw; left: -236vw;}

	.abCore_box .t{font-size: 20px;}
	.abCore_box .t h5{font-size: 16px;}
}







.abBrand{position: relative;}
.abBrand::before {
	content: '';
	position:absolute; top:45%; transform:translate(0,-50%); right: 8vw;
	border-radius: 50%;
	-webkit-filter: blur(80px);
	filter: blur(80px);
	width: 30vw;
	height: 30vw;
	opacity: .4;
	background: linear-gradient(0deg, #9dc0e9 0%, #c6d9f4 100%);
}

.abBrand .wrap{min-height: 85vh; display:flex; flex-wrap:wrap; align-items: center; position: relative;}

.abBrand_t{width: 40%; position: relative; z-index: 2;}
.abBrand_t h4{font-size: 0.4rem; font-weight: bold;}
.abBrand_t h4 i{font-size: 0.75rem; font-weight: bold;}
.abBrand_t h6{color: #666;}
.abBrand_t h5{font-weight: bold;}
.abBrand_t span{display: block;}

.abBrand_swiper{opacity: .6; position:absolute; top:50%; transform:translate(0,-50%); right: 0; width: 72%;}
.abBrand_swiper::after{content: ''; position: absolute; top: 0; left: 0; width: 20%; height: 100%; background:linear-gradient(to right, #FFF, transparent);}

.abBrand_list{position:relative; overflow:hidden;}
.abBrand_list .swiper-wrapper{
	display:flex;
	position:relative;
	width:100%;
	-webkit-transition-timing-function: linear !important;
	-moz-transition-timing-function: linear !important;
	-ms-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.abBrand_list li{flex-shrink:0; position:relative; aspect-ratio: 1 / 1; background: #FFF; border-radius:8px;}
.abBrand_list li img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-width: 85%; max-height: 44%;}

@media screen and (max-width:1440px) {
	.abBrand_t h4 i{font-size: 0.66rem;}
}
@media screen and (max-width:1024px) {
	.abBrand{margin: 80px 0;}
	.abBrand .wrap{min-height: auto;}

	.abBrand_t h4 i{font-size: 54px;}
	.abBrand_t h5{margin: 10px 0;}
}
@media screen and (max-width:768px) {
	.abBrand::before{width: 60vw; height: 60vw;}
	.abBrand_t{width: 100%;}
	.abBrand_t h4 i{font-size: 40px;}
	.abBrand_swiper{opacity: 1; position: initial; transform: none; margin-top: 40px; width: 100%;}
}
@media screen and (max-width:560px) {
	.abBrand{margin: 60px 0;}
	.abBrand_t h4{font-size: 26px;}
	.abBrand_t h4 i{font-size: 34px;}

	.abBrand_list li{aspect-ratio: 3 / 2;}
}







.abHistory{--roundSize:24px}

.abHistoryList{position: relative;}
.abHistoryList::before{
	opacity: .25;
	content: '';
	position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
	width: 20vw; height: 90%;
	border-radius: 50%;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	background: linear-gradient(0deg, #9dc0e9 0%, #c6d9f4 100%);
}
.abHistoryList::after{content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: #FFF;}


.abCulture::before {
	content: '';
	position: absolute;
	bottom: calc(var(--roundBg) / 2 * -1); right: calc(var(--roundBg) / 2 * -1);
	border-radius: 50%;
	-webkit-filter: blur(80px);
	filter: blur(80px);
	width: var(--roundBg);
	height: var(--roundBg);
	opacity: .4;
	background: linear-gradient(0deg, #9dc0e9 0%, #c6d9f4 100%);
}

.abHistoryList ul{padding-bottom: 2rem; display:flex; flex-wrap:wrap; flex-direction: column; gap: .3rem 0; position: relative; z-index: 3;}
.abHistoryList ul::before{content: ''; position:absolute; left:50%; transform:translate(-50%,0); top: .2rem; width: 3px; height: 100%; background:linear-gradient(to bottom, var(--i_color), transparent);}

.abHistoryList li{width: 50%; box-sizing: border-box; position: relative; z-index: 3;}
.abHistoryList .round{position: absolute; top: .1rem; left: calc(var(--roundSize) / 2 * -1); width: var(--roundSize); height: var(--roundSize); background: #EFF8FF; border-radius:50%; box-shadow: 0 0 .1rem rgb(0 0 0 / 30%);}
.abHistoryList .round::after{content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: calc(var(--roundSize) - 10px); height: calc(var(--roundSize) - 10px); background:linear-gradient(to right, #9FD4EF, #87ABE4); border-radius:50%;}

.abHistoryList .year{font-size: 0.36rem; font-family: 'Bruno';}
.abHistoryList span{display: block; margin: 0.2rem 0 .24rem; font-size: 0.18rem; color: #666; line-height: 1.6;}
.abHistoryList img{max-width: 4rem; width: 100%; aspect-ratio: 40 / 15; object-fit: cover; border-radius:.1rem;}

@media screen and (min-width:769px) {
	.abHistoryList li:nth-child(odd){margin-left: auto; padding-left: 0.5rem;}
	.abHistoryList li:nth-child(even){text-align: right; padding-right: .5rem;}
	.abHistoryList li:nth-child(even) .round{left: initial; right: calc(var(--roundSize) / 2 * -1);}
}

@media screen and (max-width:1024px) {
	.abHistoryList .year{font-size: 28px;}
	.abHistoryList span{margin: 14px 0 20px; font-size: 16px;}
}
@media screen and (max-width:768px) {
	.abHistory{--roundSize:20px}
	.abHistoryList::before{opacity: .4; transform:translate(0,-50%); left: var(--roundSize); width: 40vw; height: 100%;}
	.abHistoryList::after{display: none;}
	.abHistoryList ul{padding-bottom: 100px;}
	.abHistoryList ul::before{left: calc(var(--roundSize) / 2 - 2px); transform: none;}
	.abHistoryList li{width: 100%; padding-left: 40px;}
	.abHistoryList .round{left: 0; top: 4px;}
	.abHistoryList .year{font-size: 22px;}
	.abHistoryList span{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.abHistoryList .year{font-size: 20px;}
}







.abHonor{position: relative;}
.abHonor .wrap{position:absolute; left:50%; transform:translate(-50%,0); top: 5%;}
.abHonorTxt{width: 40%;}

.abHonorPic{display: table; margin-left: auto; width: 71.667vw;}

@media screen and (max-width:768px) {
	.abHonor .wrap{position: initial; transform: none;}
	.abHonorTxt{width: 100%;}
	.abHonorPic{width: 100%;}
}






.abPatent{}

.abPatentList{display:flex; flex-wrap:wrap; gap: .5rem 4%;}
.abPatentList li{width: 22%;}
.abPatentList li span{display: block; width: 100%; height: 100%; box-sizing: border-box; border: 1px solid #DDD; padding: 6px; position: relative;}
.abPatentList li img{width: 100%; height: 100%; object-fit: contain;}

.abPatent_expand{display: table; margin-left: auto;margin-right: auto; text-align: center; cursor: pointer;}
.abPatent_expand .icon{width: 0.58rem; height: 0.58rem; margin-left: auto;margin-right: auto; position: relative;}
.abPatent_expand .icon::before {content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% + 20px);height:calc(100% + 20px); background: var(--linear_color);-webkit-border-radius:50%;border-radius:50%; animation:serv_one_border 1.5s 0s ease infinite;}
.abPatent_expand .icon i{display: block; width: 100%; height: 100%; background: var(--linear_color); border-radius:50%; position: relative;}
.abPatent_expand .icon iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.24rem; color: #FFF;}
.abPatent_expand p{margin-top: 0.2rem; font-size: 0.24rem; color: var(--i_color);}

.abPatent_expand.less i{transform:rotate(-180deg);}

@media screen and (max-width:1024px) {
	.abPatent_expand .icon{width: 44px; height: 44px;}
	.abPatent_expand .icon iconify-icon{font-size: 18px;}
	.abPatent_expand p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.abPatentList{gap: 30px 3%;}
	.abPatentList li{width: 48.5%;}
}
@media screen and (max-width:560px) {
	.abPatentList{gap: 16px 3%;}
}







.nTop{border-bottom: 1px solid #DDD;}
.nTop a{display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4vw;}

.nTop .txt{width: 100%;}
.nTop .txt i{font-size: 0.16rem; color: #666;}
.nTop .txt h5{margin: .2rem 0; font-size: 0.3rem; font-weight: bold; line-height: 1.5; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nTop .txt p{font-size: 0.18rem; line-height: 1.6; color: #666; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4;}
.nTop .txt .i_more{margin-top: .5rem;}

.nTop .pic{flex-shrink: 0; margin-left: auto; width: 50%; aspect-ratio: 700 / 514;}
.nTop .pic img{width: 100%; height: 100%; object-fit: cover; border-radius:.1rem; transition:all .8s ease;}

.nTop a:hover img{transform: scale(1.05, 1.05);}

@media screen and (max-width:1024px) {
	.nTop .txt h5{margin: 10px 0; font-size: 22px;}
	.nTop .txt p{font-size: 15px;}
	.nTop .txt .i_more{margin-top: 20px;}
}
@media screen and (max-width:768px) {
	.nTop a{flex-wrap: wrap; gap: 30px 0;}
	.nTop .pic{order: -1; width: 100%;}
	.nTop .txt i{font-size: 14px;}
	.nTop .txt h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.nTop a{gap: 20px 0;}
}







.nList{}
.nList li{border-top: 1px solid #DDD;}
.nList li:first-child{border-top: none;}
.nList a{padding: .4rem 0; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 2.5vw;}

.nList .pic{flex-shrink: 0; width: 25%; aspect-ratio: 346 / 255; border-radius:.1rem; overflow: hidden;}
.nList .pic img{width: 100%; height: 100%; object-fit: cover; transition:all .8s ease;}

.nList .txt{width: 100%; display:flex; flex-wrap:nowrap; gap: 0 1.6vw;}
.nList .date{flex-shrink: 0; width: 0.8rem; height: 0.8rem; box-sizing: border-box; border: 1px solid rgb(13 83 199 / 40%); border-radius:4px; text-align: center; display:flex; flex-wrap:wrap; align-items: center; justify-content: center;}
.nList .date i{font-size: 0.4rem; color: var(--i_color); font-weight: bold;}
.nList .date h6{font-size: 0.18rem; color: var(--i_color);}
.nList .t{width: 100%;}
.nList .t h5{font-size: 0.24rem; color: #111; font-weight: bold; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.nList .t p{margin: .14rem 0; font-size: 0.16rem; color: #666; line-height: 1.6; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}
.nList .i_more{margin-left: auto; margin-top: 0.2rem;}

.nList a:hover img{transform: scale(1.05, 1.05);}
.nList a:hover h5{
	-webkit-text-fill-color: transparent;
	background: var(--linear_color);
	-webkit-background-clip: text;
}
.nList a:hover .i_more{border-color: transparent;}
.nList a:hover .i_more::before{left: -20%;}
.nList a:hover .i_more b{color: #FFF;}

@media screen and (max-width:1440px) {
	.nList .date i{font-size: 0.32rem;}
	.nList .date h6{font-size: 0.17rem;}
	.nList .t h5{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
	.nList .pic{width: 34%;}
	.nList .date{width: 70px; height: 70px;}
	.nList .date i{font-size: 28px;}
	.nList .date h6{font-size: 16px;}
	.nList .t h5{font-size: 18px;}
	.nList .t p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.nList a{gap: 0 26px;}
	.nList .pic{width: 42%;}
	.nList .txt{flex-wrap: wrap; gap: 10px 0;}
	.nList .date{padding: 4px; width: auto; height: auto;}
	.nList .date span{display:flex; flex-wrap:wrap; align-items: center;}
	.nList .date h6{order: -1;}
	.nList .date h6::after{content: '.';}
	.nList .date h6,.nList .date i{font-size: 14px; font-weight: normal;}
	.nList .t h5{font-size: 16px;}
	.nList .t p{font-size: 14px; -webkit-line-clamp:2}
	.nList .i_more{display: none;}
}
@media screen and (max-width:560px) {
	.nList a{padding: 20px 0;}
	.nList .pic{width: 40%;}
	.nList .date h6,.nList .date i{font-size: 13px}
	.nList .t h5{font-size: 15px; line-height: 1.5; color: #555; -webkit-line-clamp:3}
	.nList .t p{display: none;}
}







.contact__{position: relative;}
.contact__::before{content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: #FAFAFA;}
.contact__{}

.contactBox{padding: .6rem; background: #FFF; border-radius:.14rem;}

.contact1{display:flex; flex-wrap:nowrap; gap: 0 4vw;}
.contact1 dt{width: 100%; display:flex; flex-wrap:nowrap; gap: 0 .4rem;}

.contact1 .icon{flex-shrink: 0; width: 0.8rem; height: 0.8rem; position: relative;}
.contact1 .icon::before {content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% + 20px);height:calc(100% + 20px); background: var(--linear_color);-webkit-border-radius:50%;border-radius:50%; animation:serv_one_border 1.5s 0s ease infinite;}
.contact1 .icon i{display: block; width: 100%; height: 100%; background: var(--linear_color); border-radius:50%; position: relative;}
.contact1 .icon iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.36rem; color: #FFF;}
.contact1 .txt{width: 100%;}
.contact1 .txt h5{font-size: 0.32rem; font-weight: bold;}
.contact1 .txt p{margin-top: .14rem; font-size: 0.18rem; color: #666; line-height: 1.6;}
.contact1 a{margin-top: 0.3rem; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .16rem;}
.contact1 a h6{font-size: 0.2rem; color: var(--i_color); text-decoration: underline;}
.contact1 a i{width: 0.26rem; height: 0.26rem; background: var(--linear_color); border-radius:50%; position: relative;}
.contact1 a iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.14rem; color: #FFF;}

.contact1 dt:nth-child(1){flex-shrink: 0; width: 56%;}

@media screen and (max-width:1366px) {
	.contact1 .icon{width: 0.74rem; height: 0.74rem;}
	.contact1 .txt h5{font-size: 0.26rem;}
	.contact1 .txt p{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.contact1 .txt h5{font-size: 0.22rem;}
}
@media screen and (max-width:1024px) {
	.contactBox{padding:50px 40px;}

	.contact1{flex-wrap: wrap;}
	.contact1 dt{margin-bottom: 40px; width: 100% !important;}
	.contact1 dt:last-child{margin-bottom: 0;}
	.contact1 .icon{width: 58px; height: 58px;}
	.contact1 .icon iconify-icon{font-size: 28px;}
	.contact1 .txt h5{font-size: 18px;}
	.contact1 a h6{font-size: 16px;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.contactBox{padding:40px 20px;}

	.contact1 dt{gap:0 24px}
	.contact1 .icon{width: 42px; height: 42px;}
	.contact1 .icon iconify-icon{font-size: 20px;}
	.contact1 .txt h5{font-size: 16px;}
	.contact1 .txt p{margin-top: 10px; font-size: 15px;}
	.contact1 a{margin-top: 14px;}
}




.contact2{display:flex; flex-wrap:wrap; gap: .4rem 8%; border-top: 1px solid #EEE;}
.contact2 li{width: 28%; box-sizing:border-box; padding-right: 0.3rem; position: relative; overflow: hidden;}
.contact2 li::before{content: ''; position: absolute; top: -.7rem; left: 75%; width: 3rem; height: 3rem; background:url(static/images/contact-round.webp) no-repeat center; background-size: contain;}
.contact2 i{display: block; margin: .4rem 0 .5rem;}
.contact2 i img{height: 0.38rem;}
.contact2 span{}
.contact2 h5{padding-bottom: 0.2rem; margin-bottom: 0.2rem; font-size: 0.2rem; font-weight: bold; position: relative;}
.contact2 h5::before,.contact2 h5::after{content: ''; position: absolute; left: 0; bottom: 0; height: 1px;}
.contact2 h5::before{width: 100%; background: #DDD;}
.contact2 h5::after{width: 50%; background: var(--i_color); transition:all .8s ease;}
.contact2 p,.contact2 a{display: block; font-size: 0.18rem; color:#666; line-height: 1.6;}

.contact2 li:hover h5::after{width: 100%;}
.contact2 span:hover p{color: var(--i_color);}
.contact2 a:hover{color: var(--i_color); text-decoration: underline;}

@media screen and (max-width:1024px) {
	.contact2{gap: 30px 4%;}
	.contact2 li{width: 30.66%;}
	.contact2 li::before{opacity: .5; left: 60%; width: 2.6rem; height: 2.6rem;}
	.contact2 i{margin: 30px 0 34px;}
	.contact2 i img{height: 30px;}
	.contact2 h5{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.contact2{padding-top: 40px; gap: 30px 0;}
	.contact2 li{width: 100%; padding-right: 0; display:flex; flex-wrap:nowrap; gap: 0 26px;}
	.contact2 li::before{opacity: 0;}
	.contact2 i{margin: 0 0; flex-shrink: 0;}
	.contact2 span{width: 100%; margin-top: 6px;}
	.contact2 h5{margin-bottom: 10px; padding-bottom: 14px;}
}
@media screen and (max-width:560px) {
	.contact2 i img{height: 24px;}
	.contact2 span{margin-top: 3px;}
	.contact2 p, .contact2 a{font-size: 16px;}
}







.cOffices{background:linear-gradient(to bottom, #FAFAFC, transparent);}

.cOfficesList{padding-bottom: 0.1rem; display:flex; flex-wrap:wrap; justify-content: space-between;}

.cOfficesList dt{flex-shrink: 0; width: 1.1rem; height: 1.1rem; position: relative; box-shadow: 0 0 .2rem rgb(13 83 199 / 15%); border-radius:50%; cursor: pointer; -webkit-tap-highlight-color:transparent; -webkit-touch-callout:none; -webkit-user-select:none; user-select:none;}
.cOfficesList dt::before{display: none; content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% + 20px);height:calc(100% + 20px); background: var(--linear_color);-webkit-border-radius:50%;border-radius:50%; animation:serv_one_border 1.5s 0s ease infinite;}
.cOfficesList dt i{display: block; width: 100%; height: 100%; background: #FFF; border-radius:50%; position: relative;}
.cOfficesList dt p{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.2rem; text-align: center; color: #111; font-weight: bold; line-height: 1.4;}

.cOfficesList dt.active::before{display: block;}
.cOfficesList dt.active i{background: var(--linear_color);}
.cOfficesList dt.active p{color: #FFF;}

.cOfficesGlobal{position: relative;}

.cOfficesGlobal_line {
	position: absolute;
	top: -.26rem;
	left: 0;
	width: 100vw;
	padding-top: 15.5%;
	z-index: 10;
}
.cOfficesGlobal_line svg {
	position: absolute; left: 0; top: 0;
	width: 100%;
	height: 100%;
}
.curve-progress {stroke-dasharray: 2000; stroke-dashoffset: 0; transition: stroke-dashoffset 0.8s ease;}

.cOfficesGlobal_pic{width: 100vw;}

.cOfficesGlobal_add{position:absolute; left:50%; transform:translate(-50%,0); top: 40%; width: 30%; text-align: center;}
.cOfficesGlobal_add img{display: table;margin: 0 auto .14rem; height: 0.28rem; position: relative; top: 0; transition:all .3s ease;}
.cOfficesGlobal_add img.jump{top: -10px;}
.cOfficesGlobal_add p{font-size: 0.18rem; color:#666; line-height: 1.6;}

@media screen and (max-width:1440px) {
	.cOfficesGlobal_add{width: 40%;}
}
@media screen and (max-width:1200px) {
	.cOfficesGlobal_add{width: 50%;}
}
@media screen and (max-width:1024px) {
	.cOfficesList{flex-wrap: wrap; justify-content:flex-start; gap: 36px calc((100% - 90px * 4) / 3);}
	.cOfficesList dt{width: 90px; height: 90px;}
	.cOfficesList dt p{font-size: 15px; line-height: 1.2;}

	.cOfficesGlobal_add{width: 70%;}
	.cOfficesGlobal_add p{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.cOfficesGlobal{padding-bottom: 60px;}
	.cOfficesGlobal_line{top: -16px;}
	.cOfficesGlobal_add{top: 30%;}
	.cOfficesGlobal_add p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.cOfficesList{gap: 30px calc((100% - 76px * 4) / 3)}
	.cOfficesList dt{width: 76px; height: 76px;}
	.cOfficesList dt p{font-size: 14px;}
	.cOfficesGlobal_add{width: 90%;}
	.cOfficesGlobal_add p{font-size: 14px;}
}






.cForm{background:url(static/images/contact-form-bg.webp) no-repeat;}

#wpforms-134{
	--wpforms_input_height:48px;
	--wpforms_textarea_height:180px;
	--wpforms_input_font_size: 16px;
	--wpforms-field-border-radius: 0;
	--wpforms-button-background-color: var(--i_color);
	--wpforms-button-border-color: var(--i_color);
	--wpforms-page-break-color: var(--i_color)
}
#wpforms-134{margin:0; padding:0;}
#wpforms-form-134{width:100%; position:relative;}

/* 字段样式 */
#wpforms-134 .wpforms-field-container>.wpforms-field{width: 100%; padding: 0 1px 20px; margin: 0 0 6px;overflow-x:initial !important; position: relative;}
#wpforms-134 label.wpforms-field-label{display: block; margin-bottom: 8px; font-size: 16px; font-weight: bold;}
#wpforms-134 .wpforms-field-container .wpforms-required-label{color: #D63637;}
#wpforms-134 .wpforms-field-container .wpforms-field>input,
#wpforms-134 .wpforms-field-container textarea
{width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 14px!important; margin: 0 0; border: none; background: #FFF; border-radius:var(--wpforms-field-border-radius); font-size:var(--wpforms_input_font_size); line-height: 1.4; box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);}
#wpforms-134 .wpforms-field-container .wpforms-field>input{height: var(--wpforms_input_height);}
#wpforms-134 .wpforms-field-container textarea{height: var(--wpforms_textarea_height);}
#wpforms-134 input::placeholder, #wpforms-134 textarea::placeholder{color:#AAA; font-size:var(--wpforms_input_font_size); line-height: 1.4;}

/* 下拉菜单样式 */
/* #wpforms-134 .choices{width: 100%; max-width: 100% !important; height: var(--wpforms_input_height);}
#wpforms-134 .choices__inner{background: #F2F4F5; border: none !important; height: 100%;}
.wpforms-container .wpforms-field .wpforms-field-row:before{display: none !important;} */

#wpforms-134 .wpforms-field-container .wpforms-field>input:hover,
#wpforms-134 .wpforms-field-container textarea:hover,
#wpforms-134 .wpforms-field-container .wpforms-field>input:focus,
#wpforms-134 .wpforms-field-container textarea:focus{border-color: var(--i_color);}

/* 验证错误提示 */
#wpforms-134 label.wpforms-error, #wpforms-134 em.wpforms-error{position: absolute; left: 0; bottom: 0; font-size: 13px; color: #D63637;}

/* 隐藏 Label 标签 */
#wpforms-134 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-134 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 6px; font-size: 16px; font-weight: bold;}

/* 输入框水平排列，一行两个 */
#wpforms-134 .wpforms-field-container{display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-134-field_1-container,
#wpforms-134-field_2-container,
#wpforms-134-field_3-container{width: 32% !important;}

/* 提交按钮样式 */
#wpforms-134 .wpforms-submit-container{width: 260px; margin: 0 auto; padding:0 0; position: relative; border-radius:6px; overflow: hidden;}
#wpforms-134 .wpforms-submit-container button{width: 100%; height:44px; font-size: 15px; color: #FFF; background: var(--linear_color);}
#wpforms-134 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-134 .wpforms-submit-container button:hover{background: var(--i_color);}

@media screen and (max-width:768px) {
	#wpforms-134 .wpforms-field-container>.wpforms-field{width: 100% !important;}
}





.cMap{}
.cMap iframe{width: 100%; height: 65vh}

@media screen and (max-width:1024px) {
	.cMap iframe{height: 50vh;}
}




