/*
Theme Name: Shinrong
Version: 1.0
Description: Anhui Lingju Digital, as a core partner of Google China, owns the only Google Overseas Experience Center in Anhui Province, providing one-stop services for localized foreign trade enterprises in Anhui to go overseas - website construction, Google SEO optimization, Google bidding, Google SNS social media marketing, etc.
Author: Copyright: Anhui Lingju
*/
@charset "utf-8";


:root {
	/* Global Color */
	--i_color: #AD823E;

	/* Head height */
	--header_height: .9rem;

	/* Default Border Color */
	--border_color: rgba(0, 0, 0, .1);
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: .6rem;
	}
}
@media screen and (max-width:768px) {
	:root {
		--border_color: rgba(0, 0, 0, .06)
	}
}


.wrap {
	width: 94vw;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}


.wrap_l{box-sizing: border-box; padding-left: 8.2vw;}
.wrap_r{box-sizing: border-box; padding-right: 8.2vw;}
@media screen and (max-width:1440px) {
	.wrap_l{padding-left: 3vw;}
	.wrap_r{padding-right: 3vw;}
}






/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition:all .5s ease; transition:all .5s ease;
	z-index: 2014
}
header::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: rgb(255 255 255 / 10%);}
header.fixedHeader{
	background: #8a6e41;
}
header .wrap {
	box-sizing: border-box;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

@media screen and (max-width:1024px) {
	header {background: #8a6e41;}
}




/* logo */
.logo {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: 50%;}
}
@media screen and (max-width:1200px) {
	.logo img {max-height: 42%;}
}
@media screen and (max-width:1024px) {
	.logo img {max-height: 44%;}
}




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

	.i_nav>li{ position: relative;}
	.i_nav>li::before{opacity: 0; content: '';position:absolute; bottom: -10px; left:50%; transform:translate(-50%,0) scaleX(0.6);width: 0.28rem;height: 0.26rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23FFF' d='M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 0 0 140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7'/%3E%3C/svg%3E") no-repeat; background-size: contain; -webkit-transition:all .5s ease; transition:all .5s ease;}

	.i_nav>li>a {
		display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;
		text-align: center;
		height: var(--header_height);
		font-size: .18rem;
		color: #FFF;
		line-height: 1.3;
		white-space: wrap;
		position: relative;
	}

	.i_nav>.current-menu-item::before,
	.i_nav>.current-category-ancestor::before,
	.i_nav>.current-post-ancestor::before,
	.i_nav>.current-menu-ancestor::before,
	.i_nav>.current-menu-parent::before,
	.i_nav>li:hover::before,
	.i_nav>li.active::before
	{
		opacity: 1; bottom: 5px
	}
	.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 .sub-menu {
		display: none;
		position: absolute;
		left:50%; transform:translate(-50%,0);
		top: var(--header_height);
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: center;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0);width: 90%;height: 1px;background: #EEE;}
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.15rem;
		color: #666;
		line-height: 0.4rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}

	.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 .sub-menu li:hover a {
		color: var(--i_color);
	}

}
@media screen and (max-width:1440px) {
	.i_nav{gap: 0 .4rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{gap: 0 .4rem;}
	.i_nav>li>a{font-size: 15px;}
}
@media screen and (max-width:1024px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		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: .2rem;
		width: .3rem;
		height: .3rem;
		box-sizing: border-box;
		border: 1px solid #CCC;
		-webkit-border-radius:50%; border-radius:50%;
		background:url('data:image/svg+xml,%3Csvg xmlns="https%3A%2F%2Fsiteproxy.ruqli.workers.dev%3A443%2Fhttp%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: .2rem;
	}
	.i_nav>.menu-item-has-children span.on {
		background:url('data:image/svg+xml,%3Csvg xmlns="https%3A%2F%2Fsiteproxy.ruqli.workers.dev%3A443%2Fhttp%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: .2rem;
	}

	.i_nav>li>a {
		padding: 0 .2rem;
		font-size: .16rem;
		color: #222;
		line-height: .44rem;
		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 .4rem;
		font-size: .15rem;
		color: #555;
		line-height: .4rem;
		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: .4rem;
		height: .4rem;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}

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

	.i_nav .sub-menu .sub-menu a {
		padding: 0 .6rem;
		font-size: .13rem;
		color: #888;
		line-height: .36rem;
		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%); */
	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: #FFF;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #FFF;
	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: 20px;
	}
}







.top_r {--size_height: .4rem}
.top_r {
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	margin-left: 0.4rem;
	gap: 0 .2rem;
}
@media screen and (max-width:1024px) {
	.top_r{margin-left: auto;}
}

.search_cont,
.top_language{
	height: var(--header_height);
	display:-webkit-flex; display:flex; flex-wrap:wrap;
	align-items: center;
	text-align: center;
	position: relative;
}

.top_search_ico{width: 0.5rem;height: var(--size_height);box-sizing: border-box;border: 1px solid rgb(255 255 255 / 30%); position: relative; cursor: pointer;}
.top_search_ico iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: .24rem;color: #FFF;}
.top_search_ico:hover,.top_search_ico.on{background: var(--i_color);}

.top_language{position: relative;}
.top_language_btn{padding: 0 .16rem; background: var(--i_color); position: relative; cursor: pointer;}
.top_language_btn span{display: block;padding-right: 0.2rem; height: var(--size_height); line-height: var(--size_height); font-size: 0.16rem;color: #FFF; position: relative;}
.top_language_btn span::before{content: '';position:absolute; top:44%; right: 0; width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-top:6px solid #FFF;-webkit-transition:all .5s ease; transition:all .5s ease;}

.top_language_btn.on::before{-webkit-transform:rotate(-180deg); transform:rotate(-180deg); border-top-color:var(--i_color)}
.top_language_btn.on p{color: var(--i_color);}

.language_list{
	opacity: 0;
	visibility: hidden;
	position: absolute;top: calc(var(--header_height) + .2rem);right: 0;
	background: #FFF;
	min-width: 1.8rem;
	z-index: 2016;
	box-shadow: 0 8px .1rem rgb(0 0 0 / 10%);
	-webkit-transition:all .4s ease; transition:all .4s ease;
	padding: .16rem .2rem;
	text-align: left;
}
.language_list.on{
	opacity: 1;
	visibility: visible;
	top: var(--header_height);
}

.language_list dt>h6{margin-bottom: 0.08rem; font-size: 0.17rem;font-weight: bold;white-space: nowrap;}
.curr_lang{margin-bottom: 0.12rem;padding-bottom: 0.12rem;border-bottom: 1px solid #EEE;}

.lang_list a{display: block; padding: .06rem 0;}
.lang_list span img{display: none;}
.lang_list .trp-ls-language-name{padding-left: 0.3rem; font-size: 14px;position: relative;}
.lang_list .trp-ls-language-name::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0;width: 0.18rem;height: 0.18rem;box-sizing: border-box;border: 1px solid #AAA;-webkit-border-radius:50%; border-radius:50%;}
.lang_list .trp-ls-language-name::after{display: none; content: '';position:absolute; top:50%; transform:translate(0,-50%);left: 0.06rem;width: 0.06rem;height: 0.06rem;background: var(--i_color);-webkit-border-radius:50%; border-radius:50%;}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after{display: block;}
.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name{color: var(--i_color);}

/* @media screen and (max-width:1024px) {
	.language_list dt>h6{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.top_language_btn p{display: none;}
	.top_language_btn iconify-icon{display: block;}
	.language_list dt>h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.language_list dt>h6{font-size: 14px;}
	.language_list{-webkit-border-radius:6px; border-radius:6px;}
	.lang_list .trp-ls-language-name{font-size: 13px;}
} */
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top_r{--size_height: 32px}
	.top_r{gap: 0 14px;}
	.top_search_ico{width: 32px;}
	.top_search_ico iconify-icon{font-size: 20px;}
	.top_language_btn{padding: 0 10px;}
	.top_language_btn span{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.language_list dt>h6{font-size: 15px;}
}






/* search */
.top_search {
	--search_height: .38rem
}
.top_search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: calc(var(--header_height) + .3rem);
	right: 0;
	width: 100%;
	padding: .2rem 0;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
}
.top_search.on {
	visibility: visible;
	opacity: 1;
	top: var(--header_height);
	box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
}
.top_search form {
	width: 90%;
	margin: 0 auto;
	max-width: 5rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: calc(100% - var(--search_height) * 2);
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 0 0 .12rem;
}
.top_search_btn {
	font-size: 0;
	color: #FFF;
	width: calc(var(--search_height) * 2);
	height: var(--search_height);
	background: var(--i_color) url('data:image/svg+xml,%3Csvg xmlns="https%3A%2F%2Fsiteproxy.ruqli.workers.dev%3A443%2Fhttp%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: .24rem;
	cursor: pointer;
}
@media screen and (max-width:1024px) {
	.top_search{padding: 16px 0;}
}
@media screen and (max-width:768px) {
	.top_search {
		--search_height: .34rem
	}
}





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





/* 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: 100vh;
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;
}

.banner_controlBox{position: absolute; bottom: 0.5rem; left: 0;width: 100%; z-index: 3;}
.banner_controlBox .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;}

.banner_control{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .3rem;}
.banner-button{width: 1.2rem;height: .2rem;cursor: pointer;position: relative;}
.banner-button::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);width: calc(100% - 5px);height: 1px;background: #FFF;}
.banner-button iconify-icon{position:absolute; top:50%; transform:translate(0,-50%); font-size: 14px;color: #FFF;}
.banner-button-prev::before{right: 0;}
.banner-button-prev iconify-icon{left: 0;}
.banner-button-next::before{left: 0;}
.banner-button-next iconify-icon{right: 0;}
.banner-button:hover::before{background: var(--i_color);}
.banner-button:hover iconify-icon{color: var(--i_color);}

.banner-pagination{font-size: 16px;color: #FFF;display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.banner-pagination .swiper-pagination-current{color: var(--i_color);}

.banner_media{margin-left: auto; display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 .2rem;}
.banner_media li{-webkit-transition:all .5s ease; transition:all .5s ease;}
.banner_media a{display: block;width: 0.4rem;height: 0.4rem;box-sizing: border-box;border: 1px solid rgb(255 255 255 / 40%); -webkit-border-radius:50%; border-radius:50%; position: relative;}
.banner_media iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.22rem;color: rgb(255 255 255 / 80%);}
.banner_media li:hover{-webkit-transform:translate(0,-5px); transform:translate(0,-5px);}
.banner_media a:hover{border-color: var(--i_color); background: var(--i_color);}

@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 50%;}

	.banner_controlBox{bottom: 26px;}
	.banner-button{width: 60px;}
	.banner-pagination{font-size: 14px;gap: 0 10px;}
	.banner_media{display: none;}
}
@media screen and (max-width:768px) {
	.banner_controlBox{bottom: 20px;}
}
@media screen and (max-width:560px) {
	.banner .swiper-slide{padding-bottom: 60%;}
	.banner_control{gap: 0 20px;}
	.banner-button{width: 40px;}
	.banner_controlBox{bottom: 14px;}
}





.bannerText1{position:absolute; top:50%; transform:translate(0,-50%);left: 0;width: 100%;}
.bannerText1 .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;}

.bannerText1_t{width: 48%;}
.bannerText1_t i{font-size: 0.2rem; color: rgb(255 255 255 / 80%);}
.bannerText1_t h3{margin-top: 0.1rem; font-size: 2.6vw;color: #FFF;font-weight: bold;}

.bannerText1 h6{margin-left: auto; width: 42%; font-size: 1.3vw;color: #FFF;line-height: 1.6;}

@media screen and (max-width:1024px) {
	.bannerText1{top: 46%;}

	.bannerText1_t i{font-size: 16px;}
	.bannerText1_t .i_more{margin-top: 30px;}
	.bannerText1 h6{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.bannerText1_t{width: 100%;}
	.bannerText1_t i{font-size: 15px;}
	.bannerText1_t h3{font-size: 18px;}
	.bannerText1 h6{display: none;}
}
@media screen and (max-width:560px) {
	.bannerText1{top: 43%;}
	.bannerText1_t i{font-size: 13px;}
	.bannerText1_t h3{font-size: 15px;}
	.bannerText1_t .i_more{margin-top: 16px;}
}







/* Main */
main{position: relative;overflow: hidden;}


.i_tit h3{font-weight: bold;}
.i_tit.center{text-align: center;}




.i_more{display: table;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.i_more span{padding: .08rem .2rem; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;gap: 0 .12rem;}
.i_more b{font-size: 0.18rem;color: #FFF;}
.i_more iconify-icon{height: 0.34rem; font-size: 0.34rem; color: #FFF;}

.i_more.nobg{background: none; border: 1px solid rgb(255 255 255 / 50%);}

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

.i_more:hover{-webkit-transform:translate(0,-6px); transform:translate(0,-6px); box-shadow:0 8px 10px rgb(173 130 62 / 80%);}
.i_more.nobg:hover{border-color: var(--i_color); background: var(--i_color);}

@media screen and (max-width:1024px) {
	.i_more span{padding: 6px 12px; gap: 0 8px;}
	.i_more b{font-size: 15px;}
	.i_more iconify-icon{height: 26px; font-size: 26px;}
}
@media screen and (max-width:560px) {
	.i_more b{font-size: 14px;}
	.i_more iconify-icon{height: 22px; font-size: 22px;}
}





.i_more2{display: table; position: relative; overflow: hidden;}
.i_more2::before,.i_more2::after{content: '';position: absolute;bottom: 0;}
.i_more2::before{left: 0; width: 100%; height: 1px; background: #777}
.i_more2::after{right: 0; width: 0;height: 2px; background: var(--i_color);-webkit-transition:all .5s .2s; transition:all .5s .2s;}
.i_more2 span{padding: .08rem 0; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;gap: 0 .8rem;-webkit-transition:all .5s ease; transition:all .5s ease;}
.i_more2 b{font-size: 0.18rem;color: #111;}
.i_more2 iconify-icon{font-size: 0.34rem; color: #555;}
.i_more2:hover span{gap: 0 1.1rem;}
.i_more2:hover::after{right: initial; left: 0; width: 100%;}
.i_more2:hover b,.i_more2:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.i_more2 span{gap: 0 60px;}
	.i_more2 b{font-size: 15px;}
	.i_more2 iconify-icon{height: 26px; font-size: 26px;}
	.i_more2:hover span{gap: 0 80px;}
}
@media screen and (max-width:560px) {
	.i_more2 b{font-size: 14px;}
	.i_more2 iconify-icon{height: 22px; font-size: 22px;}
}





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







.newsItem{}
.newsItem .coverpic{position: relative; overflow: hidden;}
.newsItem .coverpic::before{content: ''; display: block; padding-bottom: 65%;}

.newsItem .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; -webkit-transition:all .5s ease; transition:all .5s ease;}
.newsItem .coverpic i{position: absolute;left: 0;bottom: -.4rem; padding: 6px .3rem 6px .2rem; -webkit-border-radius:0 .5rem 0 0; border-radius:0 .5rem 0 0; background: rgb(173 130 62 / 70%); backdrop-filter:blur(5px); font-size: 14px;color: #FFF; -webkit-transition:all .5s ease; transition:all .5s ease;}

.newsItem_t{margin-top: 0.2rem;}
.newsItem_t h5{font-size: 0.2rem;font-weight: bold; line-height: 1.7;}
.newsItem_t p{margin-top: 0.1rem; line-height: 1.5;}
.newsItem_t h5,.newsItem_t p{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.newsItem:hover .coverpic img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.newsItem:hover .coverpic i{bottom: 0;}
.newsItem:hover h5{color: var(--i_color);}

@media screen and (max-width:1200px) {
	.newsItem_t h5{font-size: 0.18rem;}
}
@media screen and (max-width:1024px) {
	.newsItem .coverpic i{bottom: 0;}
	.newsItem_t h5{font-size: 16px;}
	.newsItem_t p{font-size: 14px;}
}





.v_btn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 0.6rem;height: 0.6rem; background: rgb(255 255 255 / 60%); backdrop-filter:blur(5px); -webkit-border-radius:50%; border-radius:50%; cursor: pointer;z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.v_btn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.4rem;color: var(--i_color);}
.v_btn:hover{background: var(--i_color); -webkit-transform:translate(-50%,-50%) rotate(360deg); transform:translate(-50%,-50%) rotate(360deg);}
.v_btn:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.v_btn{width: 50px;height: 50px;}
	.v_btn iconify-icon{font-size: 34px;}
}
@media screen and (max-width:560px) {
	.v_btn{width: 40px;height: 40px;}
	.v_btn iconify-icon{font-size: 30px;}
}







.about{position: relative; background: #F1F1F1;}
.about::before{content: '';position: absolute;right: 0;top: 0;width: 50%;height: 100%;background:#E4E4E4;}
.about::after{content: '';position:absolute; left:calc(50% + 2px); transform:translate(-50%,0);bottom: 0;width: 100%;height: 75%;background:url(static/images/about_logo.webp) no-repeat bottom center; background-size: contain;}
.about .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; position: relative; z-index: 3;}

.about_t{width: 40%; position: relative;}

.about_p{margin-left: auto; width: 40%; position: relative; overflow: hidden;}
.about_p::before{content: '';display: block;padding-bottom: 105%;}

.about_p dt,.about_p dd{position: absolute; height: 95%;-webkit-transition:all .7s ease; transition:all .7s ease;}
.about_p dt{left: 0;top: 0; width: 54%; }
.about_p dd{right: 0;bottom: 0; width: 42.5%;}
.about_p img{width: 100%; height: 100%; object-fit: cover;}
.about_p:hover dt{top: 0.26rem;}
.about_p:hover dd{bottom: 0.26rem;}

@media screen and (max-width:1024px) {
	.about::before{display: none;}
	.about_t{width: 48%;}
	.about_p{width: 45%;}
}
@media screen and (max-width:768px) {
	.about::after{height: 40%;}
	.about_t{width: 100%;}
	.about_t .i_tit{margin-bottom: 14px;}
	.about_t .i_more{margin-top: 28px;}
	.about_p{width: 100%; margin-top: 40px;}
}






/* eject videos */
.vd_box {
	display: none;
	position: fixed;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2016;
	width: 60%;
	max-height: 90%;
}
.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: 50%;
	left: 50%;
	font-size: 0.44rem;
	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: .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;
	}
}






.surgerySol{}

.surgerySol_cont{margin-top: 1rem; background:url(static/images/surgerySol_bg.webp) no-repeat center;background-size: cover;}
.surgerySol_cont .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start;}

.surgerySol_pic{flex-shrink: 0; width: 42%; position: relative; margin-top: -1.1rem;}
.surgerySol_pic::before{content: '';display: block;padding-bottom: 101%;}
.surgerySol_pic dt{opacity: 0; position: absolute;top: 0;left: -.2rem; width: 100%; height: 100%;-webkit-transition:all .5s ease; transition:all .5s ease;}
.surgerySol_pic dt img{width: 100%; height: 100%;object-fit: cover;}
.surgerySol_pic dt.active{opacity: 1; left: 0; z-index: 2;}

.surgerySol_t{margin-left: auto; width: 52%;}
.surgerySol_t h4{font-weight: bold; color: #FFF;}

.surgerySol_item{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 20px 4%;}
.surgerySol_item li{width: 48%; position: relative; cursor: pointer; overflow: hidden;}
.surgerySol_item li::before,.surgerySol_item li::after{content: '';position: absolute;bottom: 0;height: 1px;}
.surgerySol_item li::before{left: 0; width: 100%; background: rgb(255 255 255 / 10%);}
.surgerySol_item li::after{right: 0; width: 0;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.surgerySol_item p{padding: .14rem 0; font-size: 0.16rem;color: #FFF;}

.surgerySol_item li.active::after{right: initial; left: 0; width: 100%;}

@media screen and (max-width:1440px) {
	.surgerySol_item{gap: 16px 4%;}
}
@media screen and (max-width:1024px) {
	.surgerySol_cont{margin: 40px 0 0;}
	.surgerySol_pic{margin: 0 0;}
	.surgerySol_t h4{margin-bottom: 14px; font-size: 16px;}
	.surgerySol_item p{font-size: 14px; padding: 10px 0;}
	.surgerySol_t .i_more{margin-top: 30px;}

}
@media screen and (max-width:768px) {
	.surgerySol_cont .wrap{flex-wrap: wrap;gap: 30px 0;}
	.surgerySol_pic{width: 100%;}
	.surgerySol_t{width: 100%;}
}
@media screen and (max-width:560px) {
	.surgerySol_t h4{font-size: 15px;}
	.surgerySol_item{gap: 6px 4%;}
	.surgerySol_item p{font-size: 13px;}
}








.team{}
.team dl{position: static;}
.team dt{
	position: sticky; top: 0;
	height: 100vh;
	display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;
	background:-webkit-linear-gradient(top, #FFF, #F1F1F1);
	background:linear-gradient(to bottom, #FFF, #F1F1F1);
}
.team dt::before{content: '';position: absolute;left: 32%;bottom: 0;width: 3rem;height: 3rem;background:url(static/images/team_logo.webp) no-repeat bottom center; background-size: contain;}

.team .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; position: relative;}

.team_t{width: 35%;}
.team_t h6{font-weight: bold;}

.team_t_name{display: table; margin-top: 0.1rem; position: relative;}
.team_t_name::before,.team_t_name::after{content: '';position: absolute;width: 0;height: 0;box-sizing: border-box; z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.team_t_name::before{top: 0;left: 0; border-top: 1px solid var(--i_color);border-left: 1px solid var(--i_color);}
.team_t_name::after{right: 0;bottom: 0;border-bottom: 1px solid var(--i_color); border-right: 1px solid var(--i_color);}

.team_t h4{display: table; padding: .06rem .2rem; font-size: 0.2rem;color: #666;font-weight: bold;}
.team_t h4::before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;box-sizing: border-box; border: 1px solid #DDD;}

.team_t ul{margin-top: 0.3rem;}
.team_t li{padding-left: 0.3rem; margin: .2rem 0;font-size: 0.16rem;line-height: 1.6; position: relative;}
.team_t li::before{content: '';position:absolute; left: 0;top: 0; transform:scaleX(0.6);width: 0.28rem;height: 0.26rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23AD823E' d='M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 0 0 140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7'/%3E%3C/svg%3E") no-repeat; background-size: contain; -webkit-transition:all .5s ease; transition:all .5s ease;}

.team_p{margin-left: auto; width: 60%; overflow: hidden; position: relative;}
.team_p::before{content: '';display: block; padding-bottom: 66%;}
.team_p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.team .team_t:hover .team_t_name::before,.team .team_t:hover .team_t_name::after{width: 100%;height: 100%;}
.team .team_t:hover h4{color:var(--i_color);}
.team .team_p:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

@media screen and (max-width:1024px) {
	.team dt{position: relative;height: auto; padding: 50px 0;}
	.team dt::before{opacity: .5; width: 240px;height: 240px;}
	.team .wrap{padding: 0 0;}
	.team_t{width: 50%;}
	.team_t h4{padding: 6px 14px; font-size: 16px;}
	.team_t li{margin: 10px 0; font-size: 14px;}

	.team_p{width: 45%;}
}
@media screen and (max-width:768px) {
	.team .wrap{flex-wrap: wrap;gap: 26px 0;}
	.team_p{order: -1; margin: 0 0; width: 100%;}
	.team_t{width: 100%;}
	.team_t h4{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.team dt{padding: 34px 0;}
	.team dt::before{opacity: .3; width: 200px;height: 200px;}
	.team_t h6{font-size: 17px;}
	.team_t .i_more{margin-top: 20px;}
}








.environment{}
.environment_tit{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 6%;}
.environment_tit .i_tit{flex-shrink: 0;}

.environment_list{position:relative; overflow:hidden}
.environment_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.environment_list .swiper-slide{flex-shrink:0; position:relative}
.environment_list .swiper-slide::after{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgb(0 0 0 / 50%);-webkit-transition:all .5s ease; transition:all .5s ease;}

.environment_list .swiper-slide span{display: block; width:100%; position:relative; overflow:hidden}
.environment_list .swiper-slide span::before{content:""; display:block; padding-bottom:83%}
.environment_list span img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.environment_list .swiper-slide:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

.environment_list .swiper-slide-active::after, .environment_list .swiper-slide-next::after{background: transparent;}

.environment-next{
	position:absolute; top:50%; transform:translate(0,-50%); right: 6%;
	width:1rem; height:1rem;
	box-sizing: border-box;
	border: 1px solid #FFF;
	-webkit-border-radius:50%; border-radius:50%;
	z-index:3;
	cursor:pointer;
	outline:none; -webkit-user-select:none; user-select:none;
	-webkit-transition:all .8s ease; transition:all .8s ease;
}
.environment-next p{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 15px;color: #FFF;}
.environment-next:hover{border-color: var(--i_color); background: var(--i_color);}

.environment-pagination{display: none;}

@media screen and (max-width:1024px) {
	.environment_tit{flex-wrap: wrap;gap: 16px 0;}

	.environment-next{width: 70px;height: 70px;}
	.environment-next p{font-size: 14px;}

	.environment-pagination{display:block; margin-top:0.3rem; text-align:center}
	.environment-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer;}
	.environment-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}
@media screen and (max-width:768px) {
	.environment .wrap_l{padding-right: 3vw;}
	.environment_list .swiper-slide::after{display: none;}
	.environment-next{display: none;}
	.environment-pagination{margin-top: 20px;}
}







@media screen and (min-width:1025px) {
	.fadein_pic_box{height: calc(200vh + var(--header_height));position: relative; overflow: hidden;}
	.fadein_pic{position: absolute;left: 0;top: 0;width: 100%;height: 100vh;}
	.fadein_pic.fixed{position: fixed;}
	.fadein_pic.fixed_bottom{top: initial;bottom: 0;}
	.fadein_pic_mask{
		position:absolute; top:50%; left:50%; transform:translate(-50%, -50%) scale(1);
		width: 100%; height: calc(100% + 2px);object-fit: cover;
		-webkit-transition:all .2s ease; transition:all .2s ease;
		z-index: 2;
	}
	.fadein_cont{
		width: 100%;height: 100%;position: relative;
		z-index: 1;
	}
	.fadein_cont img{width: 100%;height: 100%;object-fit: cover;}
}

.fadein_t{opacity: 0; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);width: 54%; text-align: center; -webkit-transition:all .5s ease; transition:all .5s ease;}
.fadein_t.showP{opacity: 1;}
.fadein_t p{color: #FFF; font-weight: bold;}

@media screen and (max-width:1024px) {
	.fadein_pic_mask{display: none;}
	.fadein_cont{position: relative;}
	.fadein_cont img{width: 100%; height: auto; object-fit: cover;}
	.fadein_t{opacity: 1; width: 70%;}
}
@media screen and (max-width:768px) {
	.fadein_cont img{min-height: 280px;}
	.fadein_t{width: 94%;}
}
@media screen and (max-width:560px) {
	.fadein_t p{font-size: 15px;}
}






.service{}

.serviceItem{}
.serviceItem dl{display:-webkit-flex; display:flex; flex-wrap:nowrap;}
.serviceItem dt{width: 100%;background: #F1F1F1; position: relative; overflow: hidden;}
.serviceItem dt::before{content: '';display: block;padding-bottom: 168%;}
.serviceItem a{display: block;}

.serviceItem_t{position: absolute;bottom: 0;left: 0; width: 100%; height: 50%; box-sizing: border-box; padding: .1rem .5rem; display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;}
.serviceItem_t h5{font-size: 0.22rem;font-weight: bold;}
.serviceItem_t p{font-size: 0.16rem; line-height: 1.6; margin: .2rem 0 .5rem; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:5;}
.serviceItem_t iconify-icon{font-size: 0.34rem; color: #444;-webkit-transition:all .5s ease; transition:all .5s ease;}

.serviceItem_p{position: absolute;top: 0;left: 0;width: 100%;height: 50%; overflow: hidden;}
.serviceItem_p i{position: absolute;top: 0.4rem;left: 0.3rem;font-size: 0.2rem;color: #FFF; z-index: 2;}
.serviceItem_p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.serviceItem dt:hover .serviceItem_p img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.serviceItem dt:hover .serviceItem_t h5{color: var(--i_color);}
.serviceItem dt:hover .serviceItem_t iconify-icon{margin-left: 0.2rem; color: var(--i_color);}

@media screen and (min-width:1025px) {
	.serviceItem dt:nth-child(even) .serviceItem_t{bottom: initial; top: 0;}
	.serviceItem dt:nth-child(even) .serviceItem_p{top: initial; bottom: 0;}

	.serviceItem dt:nth-child(1) .serviceItem_p{height: 100%;}
	.serviceItem dt:nth-child(1) .serviceItem_t{position: absolute;bottom: .5rem;left: 0; height: auto; z-index: 2;}
	.serviceItem dt:nth-child(1) .serviceItem_t::before{content: '';position: absolute;bottom: 120%; left: .5rem; width: 0.7rem;height: 0.7rem;box-sizing: border-box; border: 1px solid rgb(255 255 255 / 30%); -webkit-border-radius:50%; border-radius:50%; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23FFF' d='M7 8H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1m6 0h-3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1'/%3E%3Cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-width='2' d='M5.5 12C6.5 11 7 9.5 7 8V6m4.5 6c1-1 1.5-2.5 1.5-4V6'/%3E%3C/svg%3E") no-repeat center;background-size: .3rem;}
	.serviceItem dt:nth-child(1) .serviceItem_t h5{color: #FFF;}
	.serviceItem dt:nth-child(1) .serviceItem_t p,.serviceItem dt:nth-child(1) .serviceItem_t iconify-icon{display: none;}

	.serviceItem dt:nth-child(3) .serviceItem_t::before{content: '';position: absolute;right: 0;bottom: 0;width: 50%;height: 52%;background:url(static/images/service_logo.webp) no-repeat right bottom; background-size: contain;}

	.serviceItem dt:nth-child(1):hover .serviceItem_t::before{background-color: var(--i_color);}
}

@media screen and (max-width:1366px) {
	.serviceItem_t{padding: .1rem .4rem;}
	.serviceItem dt:nth-child(1) .serviceItem_t::before{left: 0.4rem;}
}
@media screen and (max-width:1024px) {
	.serviceItem_t{padding: 10px 30px;}
	.serviceItem dt:nth-child(1) .serviceItem_t::before{left: 30px;}
	.serviceItem_p i{top: 30px;font-size: 16px;}
	.serviceItem_t h5{font-size: 17px;}
	.serviceItem_t p{margin: 10px 0 20px; font-size: 14px; -webkit-line-clamp:3}
	.serviceItem_t iconify-icon{font-size: 28px;}
}
@media screen and (max-width:768px) {
	.serviceItem dl{flex-wrap: wrap;gap: 30px 0;}
	.serviceItem dt::before{display: none;}
	.serviceItem a{display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;}
	.serviceItem_t{position: relative;width: 60%;}
	.serviceItem_p{order: -1; position: relative;width: 40%; overflow: hidden;}
	.serviceItem_p::before{content: '';display: block;padding-bottom: 83%;}
	.serviceItem_p i{top: 20px;left: 20px;}
}
@media screen and (max-width:560px) {
	.serviceItem_p{width: 100%;}
	.serviceItem_t{width: 100%; padding: 20px 20px;}
	.serviceItem_t h5{font-size: 15px;}
}







.latestNews{background: #F1F1F1;}

.latestNews_list{position:relative; overflow:hidden}
.latestNews_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.latestNews_list .swiper-slide{flex-shrink:0; position:relative}

.latestNews-prev,.latestNews-next{position:absolute; top:50%; transform:translate(0,-50%); width:.4rem; height:.4rem; box-sizing: border-box; border: 1px solid #AAA; z-index:3; cursor:pointer; outline:none; -webkit-user-select:none; user-select:none}
.latestNews-prev{left:-.7rem;}
.latestNews-next{right:-.7rem;}
.latestNews-prev iconify-icon,.latestNews-next iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.3rem; color:#777;}
.latestNews_list .swiper-button-disabled{cursor:not-allowed}
.latestNews-prev:hover,.latestNews-next:hover{border-color: var(--i_color); background: var(--i_color);}
.latestNews-prev:hover iconify-icon,.latestNews-next:hover iconify-icon{color: #FFF;}

.latestNews-pagination{display:none}

@media screen and (max-width:1440px) {
	.latestNews-prev,.latestNews-next{display: none;}
}
@media screen and (max-width:1024px) {
	.latestNews-pagination{display:block; margin-top:0.3rem; text-align:center}
	.latestNews-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer;}
	.latestNews-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}






.contactMap{}
.contactMap .wrap{background: #F1F1F1; box-sizing: border-box; padding: .5rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center;gap: 0 5%; overflow: hidden;}

.contactMap_t{width: 100%;}
.contactMap_t h6{margin-top: 0.1rem; width: 70%;}
.contactMap_t dl{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 10px 2%;}
.contactMap_t dt,.contactMap_t dd{background: #FFF; box-sizing: border-box;}
.contactMap_t dt{width: 49%;text-align: center; padding: .2rem .14rem;}
.contactMap_t dd{width: 100%; padding: .2rem .3rem;}
.contactMap_t a,.contactMap_t p{font-size: .16rem;}
.contactMap_t a:hover{color: var(--i_color);text-decoration: underline;}

.contactMap_p{flex-shrink: 0; margin-left: auto; width: 56%; position: relative; overflow: hidden;}
.contactMap_p::before{content: '';display: block;padding-bottom: 65%;}
.contactMap_p iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

@media screen and (max-width:1440px) {
	.contactMap_p{width: 50%;}
}
@media screen and (max-width:1024px) {
	.contactMap .wrap{padding: 30px; flex-wrap: wrap;gap: 30px 0;}
	.contactMap_p{width: 100%;}
	.contactMap_t dt{width: 100%; text-align: left;}
	.contactMap_t dt,.contactMap_t dd{padding: 16px 20px;}
}
@media screen and (max-width:768px) {
	.contactMap_t h6{width: 100%;}
	.contactMap_t a, .contactMap_t p{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.contactMap .wrap{padding: 20px;}
	.contactMap_t dt,.contactMap_t dd{padding: 12px 16px;}
	.contactMap_t a, .contactMap_t p{font-size: 14px;}
	.contactMap_p::before{padding-bottom: 90%;}
}






/* Footer */
footer{background:#1A1A1A url(static/images/footer_bg.webp) no-repeat center;background-size: cover;}

.f_logo{}
.f_logo a{display: table;margin-left: auto;margin-right: auto;}
.f_logo img{max-height: .7rem;}

.f_cont{border-top: 1px solid rgb(255 255 255 / 10%); border-bottom: 1px solid rgb(255 255 255 / 10%); display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between;}

.f_tit{font-size: 0.24rem;color: var(--i_color);font-weight: bold;}

.f_contact{width: 30%;}
.f_contact ul{display:-webkit-flex; display:flex; flex-wrap:wrap;flex-direction: column;gap: 20px 0;}
.f_contact li{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 10px;}
.f_contact iconify-icon{flex-shrink: 0; font-size: 0.24rem;color: var(--i_color);}
.f_contact li a,.f_contact li p{font-size: 0.16rem;color: rgb(255 255 255 / 80%);line-height: 1.6;}
.f_contact a:hover{color: var(--i_color);}

.fQR{display:table; text-align:center}
.fQR img{height:120px}
.fQR p{margin-top:10px; font-size:14px; color:#FFF}

.f_nav ul{display:-webkit-flex; display:flex; flex-wrap:wrap;flex-direction: column;gap: 8px 0;}
.f_nav li{}
.f_nav li a{display: block; padding: 6px 0; font-size: 0.16rem;color: rgb(255 255 255 / 80%);}
.f_nav a:hover{color: var(--i_color);}


.f_media{width: 11%;}
.f_media ul{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .2rem .26rem;}
.f_media li{}
.f_media a{display: block;width: 0.5rem;height: 0.5rem;box-sizing: border-box;border: 1px solid rgb(255 255 255 / 30%); -webkit-border-radius:50%; border-radius:50%; position: relative;}
.f_media iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.24rem;color: #B7B7B7;}
.f_media li:hover a{background: #B7B7B7;}
.f_media li:hover iconify-icon{color: #1A1A1A;}

.f_cr{}
.f_cr p,.f_cr a{font-size: 0.15rem;color: rgb(255 255 255 / 60%);}
.f_cr a:hover{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.f_logo img{max-height: .5rem;}
}
@media screen and (max-width:1024px) {
	.f_logo img{max-height: .36rem;}
	.f_cont{flex-wrap: wrap;}
	.f_tit{margin-bottom: 20px; font-size: 20px;}

	.f_nav{display: none;}
	.f_contact,.f_media{width: 100%;}
	.f_contact ul{gap: 10px 0;}
	.f_media{margin-top: 40px;}
	.f_media a{width: 40px;height: 40px;}
	.f_media iconify-icon{font-size: 20px;}

	.f_cr{padding: 20px 0;}
}
@media screen and (max-width:560px) {
	footer{padding-top: 20px !important;}
	.f_logo img{max-height: .32rem;}
	.f_cont{margin-top: 16px; padding: 20px 0;}
	.f_tit{font-size: 17px;}
	.f_contact iconify-icon{font-size: 20px;}
	.f_contact li a, .f_contact li p{font-size: 15px;}
	
	.fQR img{height:100px}
	
	.f_media{margin-top: 24px;}
	.f_media ul{gap: 0 16px;}
	.f_media a{width: 36px;height: 36px;}
	.f_media iconify-icon{font-size: 18px;}

	.f_cr p, .f_cr a{font-size: 13px;}
}







/* ======================================= */
.banner__{position: relative; overflow: hidden;}
.banner__::before{content: '';display: block;padding-bottom: 32.29%;}
.banner__ img{position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;}





/* Breadcrumb */
.in_position{padding:.14rem 0;background:#F4F4F4;position:relative;}
.in_position .wrap{display:-webkit-flex;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="https%3A%2F%2Fsiteproxy.ruqli.workers.dev%3A443%2Fhttp%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}
}





.pageTitle{padding-bottom: 0.14rem; border-bottom: 1px solid #DDD;}
.pageTitle h2{font-weight: bold;}
@media screen and (max-width:768px) {
	.pageTitle{padding-bottom: 8px;}
}
@media screen and (max-width:560px) {
	.pageTitle{margin-bottom: 18px;}
}





.about__{}
.about__ .wrap::before{content: '';position: absolute;top: 0;right: 0; width: 2.8rem;height: 2.8rem;background:url(static/images/team_logo.webp) no-repeat bottom center;background-size: contain;}

.about__cont{display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; position: relative;}

.about__p{width: 38%; position: relative; overflow: hidden;}
.about__p::before{content: '';display: block;padding-bottom: 120%;}
.about__p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.about__t{width: 57%; margin-left: auto; padding-bottom: 0.6rem;}
.about__t article{font-size: 0.18rem; line-height: 1.6;}

@media screen and (max-width:1366px) {
	.about__t article{font-size: 0.17rem;}
}
@media screen and (max-width:1200px) {
	.about__t article{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.about__cont{align-items: flex-start;}
	.about__ .wrap::before{width: 160px;height: 160px;}
	.about__t article{font-size: 15px;}
	.about__t{padding: 0 0;}
}
@media screen and (max-width:768px) {
	.about__p{width: 100%;}
	.about__t{width: 100%; margin: 30px 0 0;}
}
@media screen and (max-width:560px) {
	.about__{padding-top: 10px;}
}







.aboutCulture{margin-top: -.6rem; display:-webkit-flex; display:flex; flex-wrap:wrap; background: #F1F1F1;}

.aboutCulture_t{width: 50%; padding-top: 1rem;padding-bottom: 1rem; padding-right: 0.8rem;}

.culture-pagination{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .3rem .6rem;}

.culture-pagination .swiper-pagination-bullet{width: 0.56rem;height: 0.56rem; cursor:pointer; position: relative;}
.culture-pagination .swiper-pagination-bullet::before,.culture-pagination i{position:absolute;width: 14px;height: 14px;background: var(--i_color); -webkit-border-radius:50%; border-radius:50%;}
.culture-pagination .swiper-pagination-bullet::before{opacity: 0; content: ''; top:50%; left:50%; transform:translate(-50%,-50%);-webkit-transition:all .5s .3s; transition:all .3s .3s;}

.culture-pagination i{position:absolute; top: 0; left:50%; transform:translate(-50%,0);}
.culture-pagination p{position: absolute;left: 0;bottom: 0;width: 100%;font-size: 0.22rem; text-align: center; -webkit-transition:all .5s .1s; transition:all .5s .1s;}

.culture-pagination .swiper-pagination-bullet-active::before{opacity: 1; width: 100% !important; height: 100% !important;}
.culture-pagination .swiper-pagination-bullet-active i{top:50%; transform:translate(-50%,-50%);transition:all .5s ease;}
.culture-pagination .swiper-pagination-bullet-active p{bottom: 50%; transform:translate(0,50%);color: #FFF;}

.culture_list{position:relative; overflow:hidden}
.culture_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.culture_list .swiper-slide{flex-shrink:0; position:relative}
.culture_list .swiper-slide h5{margin-bottom: 0.2rem; font-size: 0.26rem;font-weight: bold;}
.culture_list .swiper-slide span{font-size: 0.16rem;line-height: 1.8;}

.culture_navigation{display:-webkit-flex; display:flex; flex-wrap:wrap; gap: 0 .24rem;}
.culture_navigation>div{width:.5rem; height:.5rem; box-sizing: border-box; border: 1px solid #BBB; z-index:3; cursor:pointer; outline:none; -webkit-user-select:none; user-select:none; position: relative;}
.culture-prev{left:0;}
.culture-next{right:0;}
.culture_navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.3rem; color:#666;}
.culture_list .swiper-button-disabled{cursor:not-allowed}
.culture_navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.culture_navigation>div:hover iconify-icon{color: #FFF;}


.aboutCulture_p{margin-left: auto; width: 50%;}
.aboutCulture_p img{width: 100%; height: 100%;object-fit: cover;}

@media screen and (max-width:1024px) {
	.aboutCulture{margin: 50px 0 0; position: relative;}
	.aboutCulture_t{padding-top: 40px;padding-bottom: 40px; padding-right: 3vw; width: 100%; position: relative;z-index: 2;}
	.culture-pagination{gap: 30px 40px;}
	.culture-pagination .swiper-pagination-bullet{width: 50px;height: 50px;}
	.culture-pagination .swiper-pagination-bullet::before, .culture-pagination i{width: 10px;height: 10px;}
	.culture-pagination p{font-size: 20px;}
	.culture_list .swiper-slide h5{font-size: 20px;}
	.culture_list .swiper-slide span{font-size: 15px;}
	.culture_navigation>div{width: 40px;height: 40px;}
	.culture_navigation iconify-icon{font-size: 24px;}

	.aboutCulture_p{opacity: .1; position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
}
@media screen and (max-width:768px) {
	.culture_list .swiper-slide h5{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.culture-pagination{gap: 20px 20px;}
	.culture-pagination .swiper-pagination-bullet{width: 38px;height: 38px;}
	.culture-pagination .swiper-pagination-bullet::before, .culture-pagination i{width: 8px;height: 8px;}
	.culture-pagination p{font-size: 17px;}

	.culture_list .swiper-slide h5{font-size: 16px;}
	.culture_list .swiper-slide span{font-size: 14px;}

	.culture_navigation{gap: 0 14px;}
	.culture_navigation>div{width: 36px;height: 36px;}
	.culture_navigation iconify-icon{font-size: 20px;}
}








.ourAdv{}
.ourAdv_cont{
	padding-top: 3.5rem;
	padding-bottom: 0.6rem;
	background:url(static/images/adv-bg.webp) no-repeat center;
	background-size: cover;
}
.ourAdv_item{width: 100%; box-sizing: border-box; padding: .4rem 4% 0 2%; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .1rem; overflow-x: auto; user-select: none; cursor: grab;}
.ourAdv_item dt{flex-shrink: 0; width:32%; background: rgb(255 255 255 / 25%); box-sizing: border-box; padding: .4rem; -webkit-border-radius:.1rem; border-radius:.1rem; backdrop-filter:blur(5px);}
.ourAdv_item::-webkit-scrollbar{opacity: 0; width:0; height:0}
.ourAdv_item i{display: block; margin-top: -.7rem; width: 0.56rem;height: 0.56rem;background: var(--i_color);position: relative; -webkit-border-radius:6px; border-radius:6px;}
.ourAdv_item i img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); height: 0.3rem;-webkit-transition:all .5s ease; transition:all .5s ease;}
.ourAdv_item span h5{margin: 0.1rem 0; font-size: 0.22rem;color: #FFF;font-weight: bold;}
.ourAdv_item span p{font-size: 0.15rem; color: #FFF;}

.adv_line{width: 100%;position: relative;}
.adv_line::before{content: '';position:absolute; top:50%; left: 0;width: 100%;height: 1px;background: rgb(255 255 255 / 20%);}
.adv_line span{display: block; width: 80%; height: 0.4rem; margin: 0 auto; position: relative;}
.adv_line i{position: absolute;top: 0;left: 0;width: .4rem;height: .4rem;background: var(--i_color); -webkit-border-radius:50%; border-radius:50%; cursor: pointer;}
.adv_line iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.24rem;color: #FFF;}

.ourAdv_item dt:hover i img{-webkit-transform:translate(-50%,-50%) rotateY(180deg); transform:translate(-50%,-50%) rotateY(180deg);}

@media screen and (max-width:1440px) {
	.ourAdv_cont{padding-top: 3rem;}
}
@media screen and (max-width:1366px) {
	.ourAdv_item span h5{font-size: 0.2rem;}
}
@media screen and (max-width:1200px) {
	.ourAdv_cont{padding-top: 2.4rem;}
}
@media screen and (max-width:1024px) {
	.ourAdv_cont{padding-top: 160px;}
	.ourAdv_item dt{padding: .46rem .2rem .3rem; width: 48%;}
	.ourAdv_item i{width: 50px;height: 50px;}
	.ourAdv_item i img{height: 26px;}
	.ourAdv_item span h5{margin: 16px 0 10px; font-size: 17px;}
	.ourAdv_item span p{font-size: 14px;}
	.adv_line{display: none;}
}
@media screen and (max-width:560px) {
	.ourAdv_cont{padding-top: 100px; padding-bottom: 34px;}
	.ourAdv_item dt{width: 75%;}
}






.partners{}

.partners_list{position:relative; overflow:hidden}
.partners_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.partners_list .swiper-slide{flex-shrink:0; position:relative; box-sizing: border-box; border: 1px solid #DDD;}

.partners_list .swiper-slide span{display: block; width:100%; background: #F1F1F1; position:relative; overflow:hidden}
.partners_list .swiper-slide span::before{content:""; display:block; padding-bottom:70%}
.partners_list .swiper-slide span img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:92%; height:92%; object-fit: contain;-webkit-transition:all .5s ease; transition:all .5s ease;}
.partners_list p{padding: .1rem .2rem; font-size: 15px;text-align: center;}

.partners_list .swiper-slide:hover img{-webkit-transform:translate(-50%,-50%) scale(1.05, 1.05); transform:translate(-50%,-50%) scale(1.05, 1.05);}
.partners_list .swiper-slide:hover p{color: var(--i_color);}

.partners-pagination{display:block; margin-top:0.3rem; text-align:center}
.partners-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer;}
.partners-pagination .swiper-pagination-bullet-active{background:var(--i_color)}

@media screen and (max-width:1200px) {
	.partners_list p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.partners-pagination{margin-top: 14px;}
}






.backGround{background: #F1F1F1; position: relative;}
.backGround::before{content: '';position: absolute;bottom: 0;right: -2.1rem;width: 6.2rem;height: 6.2rem;background:url(static/images/about_logo.webp) no-repeat bottom center;background-size: contain;}

.backGround_t{border-top: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 5%;}
.backGround_t h5{flex-shrink: 0; width: 45%; font-weight: bold;}
.backGround_t p{width: 100%;}

.backGround_p{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 2%;}
.backGround_p dt{width: 49%;position: relative; overflow: hidden;}
.backGround_p dt::before{content: '';display: block;padding-bottom: 74%;}
.backGround_p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.backGround_p dt:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

@media screen and (max-width:768px) {
	.backGround_t{flex-wrap: wrap;gap: 0 0;}
	.backGround_t h5{width: 100%; font-size: 17px;}
	.backGround_t p{margin-top: 14px; font-size: 14px;}
}
@media screen and (max-width:560px) {
	.backGround_t h5{font-size: 16px;}
}







.team__{
	background:-webkit-linear-gradient(top, transparent, #F1F1F1);
	background:linear-gradient(to bottom, transparent, #F1F1F1);
	position: relative;
}
.team__::before{content: '';position: absolute;left:30%;bottom: 0;width: 3rem;height: 3rem;background:url(static/images/team_logo.webp) no-repeat bottom center;background-size: contain;}
.team__ .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 6%;}

.team__t{width: 100%; box-sizing: border-box; padding-left: 0.3rem; position: relative;}
.team__t h3{padding-bottom: 0.3rem; padding-top: 0.5rem; margin-bottom: 0.3rem; font-weight: bold; position: relative;}
.team__t h3::before{content: '';position: absolute;left: -.3rem;top: 0;width: 1px;height: 130%;background: var(--i_color);}
.team__t h3::after{content: '';position: absolute;right: 0;bottom: 0;width: 115%;height: 1px;background: var(--i_color);}

.team__t>span{font-size: 0.16rem;line-height: 2;}

.team__p{flex-shrink: 0; width: 58%;}
.team__p img{width: 100%;}

@media screen and (max-width:1024px) {
	.team__ .wrap{flex-wrap: wrap; gap: 40px 0;}
	.team__t{padding-left: 20px;}
	.team__t h3{padding: 20px 0 12px; margin-bottom: 12px;}
	.team__t h3::before{left: -20px; height: 1.4rem;}
	.team__t>span{font-size: 15px;}
	.team__t .i_more{margin-top: 20px;}

	.team__p{width: 100%;}
}
@media screen and (max-width:768px) {
	.team__t>span{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.team__{padding-top: 0;}
	.team__t h3{padding-top: 10px;}
}








.doctorList{}
.doctorList dl{}
.doctorList dt{margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: flex-start;}

.doctor_p{width: 55%; overflow: hidden; position: relative;}
.doctor_p::before{content: '';display: block; padding-bottom: 66%;}
.doctor_p img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.doctor_t{margin-left: auto; width: 40%;}
.doctor_name{display: table; margin-top: 0.2rem; position: relative;}
.doctor_name::before,.doctor_name::after{content: '';position: absolute;width: 0;height: 0;box-sizing: border-box; z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.doctor_name::before{top: 0;left: 0; border-top: 1px solid var(--i_color);border-left: 1px solid var(--i_color);}
.doctor_name::after{right: 0;bottom: 0;border-bottom: 1px solid var(--i_color); border-right: 1px solid var(--i_color);}

.doctor_t h4{display: table; padding: .06rem .3rem; font-size: 0.24rem;color: #3d3d3d;font-weight: bold; position: relative;}
.doctor_t h4::before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;box-sizing: border-box; border: 1px solid #DDD;}
.doctor_t ul{margin-top: 0.4rem;}
.doctor_t li{padding-left: 0.3rem; margin: .2rem 0;font-size: 0.16rem;line-height: 1.6; position: relative;}
.doctor_t li::before{content: '';position:absolute; left: 0;top: 0; transform:scaleX(0.6);width: 0.28rem;height: 0.26rem; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23AD823E' d='M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 0 0 140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7'/%3E%3C/svg%3E") no-repeat; background-size: contain; -webkit-transition:all .5s ease; transition:all .5s ease;}

.doctorList dt:hover .doctor_name::before,.doctorList dt:hover .doctor_name::after{width: 100%;height: 100%;}
.doctorList dt:hover h4{color: var(--i_color);}
.doctorList dt:hover .doctor_p img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

.showless{display: none; cursor: pointer;}
.showless p{font-size: 0.16rem;text-decoration: underline;}
.showless p:hover{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.doctor_p{width: 40%;}
	.doctor_t{width: 55%;}
	.doctor_t h4{margin: 0 0; padding: 6px 14px; font-size: 16px;}
	.doctor_t ul{margin-top: 24px;}
	.doctor_t li{margin: 10px 0; font-size: 14px;}

	.showless{margin-top: 20px;}
	.showless p{font-size: 15px;}
}
@media screen and (max-width:768px) {
	.doctorList dt{gap: 30px 0;}
	.doctor_p{width: 100%;}
	.doctor_t{width: 100%;}
}
@media screen and (max-width:560px) {
	.doctorList dt{margin-bottom: 30px;padding-bottom: 30px;}
	.doctor_t h4{font-size: 15px;}
}







.certList{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 1%;}
.certList li{width: 24.25%; background: #F1F1F1; box-sizing: border-box; border: 1px solid transparent; padding: .14rem; cursor: pointer;-webkit-transition:all .5s ease; transition:all .5s ease;}

.certList .coverpic{width:100%; position:relative; overflow:hidden}
.certList .coverpic::before{content:""; display:block; padding-bottom:66.5%}
.certList .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain;-webkit-transition:all .5s ease; transition:all .5s ease;}

.certList figcaption{margin-top: 0.22rem;}
.certList figcaption h6{margin-bottom: 0.12rem; font-size: 0.18rem; line-height: 1.5; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.certList figcaption p{display: none;}
.certList figcaption iconify-icon{font-size: 0.34rem;color: #444;}

.certList li:hover{background: #FFF; border-color: var(--i_color);}
.certList li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.certList li:hover h6{color: var(--i_color);}
.certList li:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.certList{gap: 40px 4%;}
	.certList li{width: 48%;}
	.certList figcaption h6{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.certList{gap: 16px 4%;}
	.certList li{padding: 8px;}
	.certList figcaption{margin-top: 10px;}
	.certList figcaption h6{margin-bottom: 4px; font-size: 14px;}
	.certList figcaption iconify-icon{display: none;}
}






.certExpand{display: table;margin: 0 auto;}
.certExpand span{padding: .14rem .4rem; display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; background: var(--i_color); gap: 0 .12rem; cursor: pointer;}
.certExpand p{font-size: 0.2rem;color:#FFF}
.certExpand iconify-icon{font-size: 0.24rem;color: #FFF;}

@media screen and (max-width:1024px) {
	.certExpand span{padding: 10px 30px;}
	.certExpand p{font-size: 16px;}
	.certExpand iconify-icon{font-size: 18px;}
}
@media screen and (max-width:560px) {
	.certExpand span{padding: 8px 20px;}
	.certExpand p{font-size: 15px;}
	.certExpand iconify-icon{font-size: 16px;}
}








.historyPage{background:#F1F1F1 url(static/images/historyBg.webp) no-repeat bottom center;background-size: 100%;}

.historyBox{}
.historyBox>h3{font-weight: bold;}

.historyList{padding-bottom: 1px; position: relative;}
.historyList::before{content: '';position: absolute;left: 126px;top: 0;width: 1px;height: 100%;background: var(--i_color);}
.historyList li{margin-bottom: 0.5rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 1rem;}

.historyList h4{flex-shrink: 0; width: 80px; font-size: 0.3rem;color: #666; font-weight: bold;}
.history_t{width: 100%; background: rgb(255 255 255 / 50%); box-sizing: border-box; backdrop-filter: blur(4px); padding: .3rem .6rem;position: relative;-webkit-transition:all .5s ease; transition:all .5s ease;}
.history_t::before{display: none; content: '';position: absolute; right: 0;bottom: 0;width: 1rem;height: .7rem; background:url(static/images/about_logo.webp) no-repeat bottom right;background-size: contain;}

.history_t .yuan{position:absolute; top:50%; transform:translate(0,-50%);left: .26rem;width: 12px;height: 12px;box-sizing: border-box; border: 2px solid var(--i_color); -webkit-border-radius:50%; border-radius:50%;}
.history_t .yuan::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 10px; width: .76rem;height: 2px;background: var(--i_color);}
.history_t .yuan2{position: absolute;top:50%; transform:translate(0,-50%);left: -.6rem;width: 12px;height: 12px;background: var(--i_color);-webkit-border-radius:50%; border-radius:50%;}
.history_t .yuan2::before{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);width: 0;height: 0;background: rgb(173 130 62 / 30%);-webkit-border-radius:50%; border-radius:50%;-webkit-transition:all .7s ease; transition:all .7s ease;}
.history_t span{font-size: 0.16rem;line-height: 1.8;}

.historyList li:hover h4{color: var(--i_color);}
.historyList li:hover .history_t{background: #FFF;}
.historyList li:hover .history_t::before{display: block;}
.historyList li:hover .history_t .yuan2::before{width: 26px;height: 26px;}

@media screen and (max-width:1440px) {
	.historyList::before{left: 122px;}
}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {
	.historyList::before{left: 121px;}
}
@media screen and (max-width:1024px) {
	.historyList::before{display: none;}
	.historyList li{margin-bottom: 24px; background: #FFF; box-sizing: border-box; padding: .2rem; flex-wrap: wrap;}
	.historyList h4{margin-bottom: 10px; width: auto;font-size: 24px; position: relative;}
	.historyList h4::before{content: '';position:absolute; top:54%; transform:translate(0,-50%);left: calc(100% + 20px); width: 8px;height: 8px;background: var(--i_color); -webkit-border-radius:50%; border-radius:50%;}
	.historyList h4::after{content: '';position:absolute; top:54%; transform:translate(0,-50%);left: calc(100% + 20px);width: 80px;height: 2px;background: var(--i_color);}
	.history_t{padding: 0 0;}
	.history_t span{font-size: 15px;}
	.history_t i{display: none;}
}
@media screen and (max-width:560px) {
	.historyList h4{font-size: 20px;}
	.historyList h4::before,.historyList h4::after{top: 50%;}
	.history_t span{font-size: 14px;}
}









.certInfo{display: none; position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgb(0 0 0 / 80%);z-index: 9999;}
.certInfo .box{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);background: #FFF; box-sizing: border-box; padding: .3rem; width: 94%; max-width: 11.4rem;}
.certInfo .box_cont{display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center; gap: 0 4%;}

.certInfo .coverpic{flex-shrink: 0; width:42%;position: relative; overflow: hidden;}
.certInfo .coverpic::before{content:""; display:block; padding-bottom:66.5%}
.certInfo .coverpic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain;-webkit-transition:all .5s ease; transition:all .5s ease;}
.certInfo span{padding-right: 0.3rem;}
.certInfo h6{font-size: 0.22rem;color: var(--i_color);font-weight: bold;}
.certInfo p{margin-top: 0.26rem; font-size: 0.15rem;line-height: 1.8;}

.close_cert{position: absolute;top: 0.2rem;right: 0.2rem;width: 0.24rem;height: 0.24rem;box-sizing: border-box;border: 1px solid #555;-webkit-border-radius:50%; border-radius:50%; cursor: pointer;-webkit-transition:all .5s ease; transition:all .5s ease; z-index: 2;}
.close_cert iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.2rem; color: #555;-webkit-transition:all .5s ease; transition:all .5s ease;}
.close_cert:hover{background: var(--i_color); border-color: var(--i_color);}
.close_cert:hover iconify-icon{color: #FFF; -webkit-transform:translate(-50%,-50%) rotate(360deg); transform:translate(-50%,-50%) rotate(360deg);}

@media screen and (max-width:1024px) {
	.certInfo .box{padding: 20px;}
	.certInfo h6{font-size: 18px;}
	.certInfo p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.certInfo .box{padding-top: 46px;}
	.certInfo .box_cont{box-sizing: border-box; padding-right: 20px; max-height: 75vh; overflow-y: auto; display: block;}
	.certInfo .box_cont::-webkit-scrollbar{width:3px; height:8px}
	.certInfo .coverpic{margin-bottom: 20px; width: 100%;}
	.certInfo p{margin-top: 10px;}

	.close_cert{top: 0;right: 0;background: var(--i_color); width: 34px;height: 34px; border-color: var(--i_color); -webkit-border-radius:0; border-radius:0;}
	.close_cert iconify-icon{color: #FFF;}
}
@media screen and (max-width:560px) {
	.certInfo h6{font-size: 16px;}
}






.pictureBox{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .4rem 1.5%;}
.pictureBox li{width: 32.33%; cursor: pointer;}
.pictureBox span{display: block; width: 100%; position: relative;overflow: hidden;}
.pictureBox span::before{content: '';display: block;padding-bottom: 83%;}
.pictureBox img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.pictureBox li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}

@media screen and (max-width:768px) {
	.pictureBox{gap:40px 4%;}
	.pictureBox li{width: 48%;}
}
@media screen and (max-width:560px) {
	.pictureBox{gap:20px 4%;}
}



.loading{display: none; position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgb(0 0 0 / 90%); z-index: 999999;}
.loading iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 0.6rem;color: #FFF;}
@media screen and (max-width:768px) {
	.loading iconify-icon{font-size: 40px;}
}





.surgeryItemBox{position: relative;}
.surgeryItemBox::before{content: '';position: absolute;top: 0;right: 0;width: 75%;height: 100%;background:url(static/images/surgeryItemBox-bg.webp) no-repeat center;background-size: cover;}
.surgeryItemBox .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start;}

.surgeryItemBox .surgerySol_pic{margin: 0 0;}

.surgeryItemBox .surgerySol_item li::before{background: #DDD;}
.surgeryItemBox .surgerySol_t h4{color: #333;}
.surgeryItemBox .surgerySol_item p{color: #555;}

@media screen and (max-width:768px) {
	.surgeryItemBox{padding: 0 0;}
	.surgeryItemBox::before{display: none;}
	.surgeryItemBox .wrap{flex-wrap: wrap; gap: 30px 0;}
}





.surgeryVideo{width:100%; position:relative; overflow:hidden}
.surgeryVideo::before{content:""; display:block; padding-bottom:32%}
.surgeryVideo img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}
@media screen and (max-width:1024px) {
	.surgeryVideo::before{padding-bottom: 45%;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.surgeryVideo::before{padding-bottom: 56.25%;}
}







.surgeryVideoList{}
.surgeryVideoList .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .4rem 2%;}
.surgeryVideoList li{width: 32%; position:relative; overflow:hidden}
.surgeryVideoList li::before{content:""; display:block; padding-bottom:122%}
.surgeryVideoList li img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
@media screen and (max-width:1024px) {
	.surgeryVideoList .wrap{gap: 24px 2%;}
}
@media screen and (max-width:560px) {
	.surgeryVideoList .wrap{gap: 12px 2%;}
}






.serviceList{}
.serviceList dt{padding: .5rem 0;}
.serviceList .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 5%;}

.serPic{flex-shrink: 0; width: 36%; position: relative; overflow: hidden;}
.serPic::before{content: '';display: block;padding-bottom: 83%;}
.serPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; -webkit-transition:all .5s ease; transition:all .5s ease;}

.serT{width: 100%;}
.serT h5{margin-bottom: 0.2rem;padding-bottom: 0.2rem; font-size: 0.24rem;font-weight: bold;color: var(--i_color); position: relative;}
.serT h5::before,.serT h5::after{content: '';position: absolute;bottom: 0;height: 1px;}
.serT h5::before{left: 0; width: 100%;background: #DDD;}
.serT h5::after{right: 0; width: 0;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}

.serT span{}

.serviceList dt:nth-child(even){background: #F1F1F1;}
.serviceList dt:nth-child(even) .serT{order: -1;}

.serviceList dt:hover img{-webkit-transform: scale(1.02, 1.02); transform: scale(1.02, 1.02);}
.serviceList dt:hover h5::after{right: initial; left: 0; width: 100%;}

@media screen and (max-width:1024px) {
	.serT h5{font-size: 22px;}
}
@media screen and (max-width:768px) {
	.serT h5{margin-bottom: 12px;padding-bottom: 12px; font-size: 18px;}
}
@media screen and (max-width:560px) {
	.serviceList dt{padding: 30px 0;}
	.serviceList dt:first-child{padding-top: 10px;}
	.serviceList .wrap{flex-wrap: wrap;gap: 20px 0;}
	.serPic{order: -2; width: 100%;}
	.serT h5{font-size: 16px;}
}






.faq{}
.faq .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 6%;}
.faq_t{flex-shrink: 0; width: 30%;}

.fold_list{width: 100%;}
.fold_list li{}
.fold_list .tit{padding: .22rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .4rem; border-top: 1px solid #DDD; cursor: pointer;}
.fold_list li:first-child .tit{border-top: none;}
.fold_list .tit h5{font-size: 0.24rem;font-weight: bold;}
.fold_list .tit i{flex-shrink: 0; display: block;margin-left: auto; width: 0.34rem;height: 0.34rem;background: #999 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E") no-repeat center; background-size: .22rem; -webkit-border-radius:50%; border-radius:50%;}

.fold_list .tit.active{background: #F1F1F1; border-top-color:transparent}
.fold_list .tit.active i{background: var(--i_color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E") no-repeat center;background-size: .22rem;}

.fold_list .txt{display: none; padding: .22rem;}
.fold_list .txt span{font-size: 0.16rem;line-height: 1.8;}

@media screen and (max-width:1200px) {
	.fold_list .tit h5{font-size: 20px;}
}
@media screen and (max-width:1024px) {
	.faq .wrap{flex-wrap: wrap;gap: 40px 0;}
	.faq_t{width: 100%;}
	.faq_t .i_more{margin-top: 20px;}

	.fold_list .tit h5{font-size: 18px;}
}
@media screen and (max-width:768px) {
	.fold_list .tit{padding: 16px 20px;}
	.fold_list .tit h5{font-size: 17px;}
	.fold_list .txt{padding: 20px;}
	.fold_list .txt span{font-size: 15px;line-height: 1.6;}
}
@media screen and (max-width:560px) {
	.fold_list .tit{gap: 0 20px;}
	.fold_list .tit h5{font-size: 16px;}
	.fold_list .tit i{width: 26px;height: 26px; background-size: 18px !important;}
}






.nav_hor{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .2rem .1rem;}
.nav_hor li{box-sizing: border-box; border: 1px solid #AAA; position: relative;}
.nav_hor li::before,.nav_hor li::after{content: '';position: absolute;top: 0;width: 0;height: 100%;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.nav_hor li::before{left: 0;}
.nav_hor li::after{right: 0;}

.nav_hor a{display: block; text-align: center; min-width: .8rem; padding: .12rem .3rem; font-size: 0.18rem; position: relative; z-index: 2;-webkit-transition:all .5s ease; transition:all .5s ease;}
.nav_hor li:hover::before,
.nav_hor li:hover::after,
.nav_hor .active::before,
.nav_hor .active::after{width: 50%;}
.nav_hor li:hover, .nav_hor .active{border-color: var(--i_color);}
.nav_hor li:hover a, .nav_hor .active a{color: #FFF;}

@media screen and (max-width:1024px) {
	.nav_hor{gap: 14px 10px;}
	.nav_hor a{min-width: 50px; padding: 10px 20px; font-size: 15px;}
}
@media screen and (max-width:560px) {
	.nav_hor{gap: 10px 10px;}
	.nav_hor a{padding: 8px 10px;}
}









.blogList{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 2%;}
.blogList li{width: 32%;}

@media screen and (max-width:768px) {
	.blogList{gap: 40px 4%;}
	.blogList li{width: 48%;}
}
@media screen and (max-width:560px) {
	.blogList{gap: 40px 0;}
	.blogList li{width: 100%;}
}






/* Paging */
.in_paging{
	--size:32px;
	--border_radius:0;
}
.in_paging ul{display:-webkit-flex; 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; -webkit-border-radius:var(--border_radius);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(--i_color) !important;background:var(--i_color);color:#FFF !important}






.contact__form{
	background:-webkit-linear-gradient(top, transparent, #F1F1F1);
	background:linear-gradient(to bottom, transparent, #F1F1F1);
	position: relative;
}
.contact__form::before{content: '';position: absolute;left:20%;bottom: 0;width: 3rem;height: 3rem;background:url(static/images/team_logo.webp) no-repeat bottom center;background-size: contain;}
.contact__form .wrap{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 10%;}

.contact__formT{width: 100%;}
.contact__formT h6{color: var(--i_color);}
.contact__formT h3{margin-top: 0.1rem; font-weight: bold;}
.contact__formT p{margin: .2rem 0;}
.contact__formT h5{}

#wpforms-194{
	--wpforms-field-size-input-height:30px;
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-194{flex-shrink: 0; width: 50%; margin:0;padding:0;}
#wpforms-form-194{width:100%;position:relative;}

#wpforms-194 .wpforms-field-container{}
#wpforms-194 .wpforms-field-container>.wpforms-field{width: 100%;padding: 0 1px 20px;margin: 0 0 10px;overflow-x:initial !important}
#wpforms-194 .wpforms-field-container>.wpforms-field>label{font-weight: normal;}

/* #wpforms-194 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-194 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;} */

#wpforms-194 .wpforms-field-container .wpforms-field>input,
#wpforms-194 .wpforms-field-container textarea
{border: none; border-bottom: 1px solid #CCC;background: none; border-radius:0 !important; box-shadow:none !important}
#wpforms-194 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

#wpforms-194 .wpforms-field-container .wpforms-field>input,
#wpforms-194 .wpforms-field-container textarea,
#wpforms-194 .wpforms-field-container select,
#wpforms-194 .wpforms-field-container .choices
{width: 100%;max-width: 100%; box-sizing: border-box; margin: 0 0;}
#wpforms-194 .wpforms-field-container .wpforms-field>input,
#wpforms-194 .wpforms-field-container textarea,
#wpforms-194 .wpforms-field-container select
{padding-left: 0;padding-right: 0;}
#wpforms-194 .wpforms-field-container textarea{padding-top: 10px;padding-bottom: 10px;}
#wpforms-194 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-194 .wpforms-field-container select{cursor: pointer;}
#wpforms-194 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-194 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-194 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-194 .wpforms-field-container em.wpforms-error,#wpforms-194 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; bottom: -2px;}

/* #wpforms-194 input::placeholder, #wpforms-194 textarea::placeholder{color:#333;font-size:16px} */

/* #wpforms-194 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-194-field_1-container,
#wpforms-194-field_2-container
{width: 48% !important;} */

#wpforms-194 .wpforms-submit-container{width: 260px;padding:0 0}
#wpforms-194 .wpforms-submit-container button{width: 100%;height:.44rem; font-size: 15px; color: #FFF; background: var(--i_color);}
#wpforms-194 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-194 .wpforms-submit-container button:hover{background: #8a6e41;}

@media screen and (max-width:1024px) {
	.contact__form::before{display: none;}
	.contact__form .wrap{flex-wrap: wrap;gap: 40px 0}
	#wpforms-194{width: 100%;}
}






.contact__{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}

.map{flex-shrink: 0; width: 53%;position: relative;overflow: hidden;}
.map::before{content: '';display: block;padding-bottom: 56%;}
.map iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.contact__info{width: 100%;}
.contact__info h3{font-weight: bold;}

.contact__list{}
.contact__list li{margin: .3rem 0;}
.contact__list iconify-icon{display: block; margin-bottom: 6px; width: 0.24rem; height: 0.24rem; font-size: 0.26rem; color: #666;}
.contact__list p,.contact__list a{font-size: 0.18rem;}
.contact__list a:hover{color: var(--i_color);}

.contact__media{border-top: 1px solid #DDD;display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .2rem;}
.contact__media dt{}
.contact__media a{display: block; width: 0.4rem;height: 0.4rem;box-sizing: border-box;border: 1px solid #CCC;-webkit-border-radius:50%; border-radius:50%;position: relative;}
.contact__media iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.22rem; color: #777;}

.contact__media a:hover{background: var(--i_color); border-color: var(--i_color);}
.contact__media a:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.contact__{margin-bottom: 0; flex-wrap: wrap;gap: 40px 0;}
	.contact__info{order: -1; padding-left: 3vw;}
	.contact__list p,.contact__list a{font-size: 16px;}
	.map{width: 100%;}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {
	.contact__media a{width: 36px;height: 36px;}
	.contact__list p,.contact__list a{font-size: 15px;}
	.map::before{padding-bottom: 70%;}
}


