/*
Theme Name: LingJu
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: #e9b945;
  --i_color2: #ae7138;

  /* Head height */
  --header_height: 0.9rem;

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);
  /* txt color */
  --txt_color: #333;
	--f_menu_height: 50px;
	/* 移动端底部菜单 */
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
    --header_top_height: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

/* 通用 */

/* title */
.titleBox {
}
.titleBox p {
}

.i_more {
  display: table;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.i_more span {
  padding: 0.16rem 0.25rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.12rem;
}
.i_more b {
  font-size: 0.18rem;
  color: #fff;
}
.i_more iconify-icon {
  font-size: 0.16rem;
  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;
  }
}
@media screen and (max-width: 560px) {
  .i_more b {
    font-size: 14px;
  }
  .i_more iconify-icon {
    font-size: 0.12rem;
  }
}

.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 0.5s 0.2s;
  transition: all 0.5s 0.2s;
}
.i_more2 span {
  padding: 0.08rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.8rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.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;
  }
}

/* --- --- */

.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%;
	z-index: 2014;
  transition: all 0.3s ease;
}
header::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 1px;
	background: var(--border_color);
	z-index: 2014;
}

.top_cont {
	position: relative;
	z-index: 2013;
  transition: all 0.3s ease;
}
.top_cont::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	opacity: 0;
	z-index: -1;
	transition: all 0.3s ease;
}
.top {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.TopHeader .top_cont::after {
	opacity: 1;
	backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:1024px) {
	header {
		top: 0;
		top: 0;
		width: 100%;
		box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	}
	.top_cont {
		background: #fff !important;
	}
}
@media screen and (min-width:1024px){
	.TopHeader .top_cont{
		box-sizing: border-box;
		margin: 0.2rem 0.2rem 0 0.2rem;
	}
	.top_cont::after{
		border-radius: 0.2rem;
	}

	.top_cont::before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		opacity: 0;
		transition: opacity 0.3s ease;
		z-index: -1;
	}
	.top_cont:hover{
		margin: 0;
		box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, .1);
	}
	.top_cont:hover::after{
		border-radius: 0;
	}
	.top_cont:hover::before{
		opacity: 1;
	}
  .TopHeader .logo img,
  .top_cont:hover .logo img{
    filter: unset;
    -webkit-filter: unset;
  }
  .TopHeader .i_nav>li>a,
  .top_cont:hover .i_nav>li>a{
    color: #333;
  }
  .TopHeader .top_search_ico iconify-icon,
  .top_cont:hover .top_search_ico iconify-icon{
    color: #333;
  }
  .TopHeader .top_language_all iconify-icon,
  .TopHeader .top_language_all p,
  .top_cont:hover .top_language_all iconify-icon,
  .top_cont:hover .top_language_all p{
    color: #333;
  }
  .TopHeader .top_search_ico::after,
  .top_cont:hover .top_search_ico::after{
    background-color: rgba(51, 51, 51, .2) !important;
  }
  .TopHeader .top_search.on {
    top: calc(var(--header_height) + 0.2rem);
  }
  header:hover .top_search.on{
    top: var(--header_height);
  }
}


/* logo */
.logo {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {
	height: 0.5rem;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

@media screen and (max-width:1440px) {
	.logo img {
		height: 0.45rem;
	}

}
@media screen and (max-width:1024px) {
	.logo img {
		max-height: 50%;
	}

}





/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: auto;
    margin-right: 5%;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		z-index: 2014;
	}

	.i_nav>li {
		position: relative;
		margin: 0 .26rem;
	}

	.i_nav>li>a {
		display: block;
		font-size: .18rem;
		color: #fff;
		line-height: var(--header_height);
		white-space: nowrap;
		-webkit-border-radius: .08rem;
		border-radius: .08rem;
		text-transform: capitalize;
		position: relative;
		font-weight: 550;
	}
	.i_nav>li>a::after{
		content: '';
		position: absolute;
		bottom: 0.2rem;
		right: 0;
		width: 0;
		height: 0.01rem;
		background-color: var(--i_color2);
		transition: all 0.3s 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 .curr>a {
		color: var(--i_color) !important;
	}


  .TopHeader .i_nav>.current-menu-item>a,
	.TopHeader .i_nav>.current-category-ancestor>a,
	.TopHeader .i_nav>.current-post-ancestor>a,
	.TopHeader .i_nav>.current-menu-ancestor>a,
	.TopHeader .i_nav>.current-menu-parent>a,
	.TopHeader .i_nav>li:hover>a,
	.TopHeader .i_nav .curr>a {
		color: var(--i_color2) !important;
	}

	/* .i_nav>.current-menu-item>a::after,
	.i_nav>.current-category-ancestor>a::after,
	.i_nav>.current-post-ancestor>a::after,
	.i_nav>.current-menu-ancestor>a::after,
	.i_nav>.current-menu-parent>a::after,
	.i_nav>li:hover>a::after,
	.i_nav .curr>a::after{
		width: 100%;
        right: auto;
		left: 0;
	} */

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		border-top: 2px solid var(--i_color2);
		background: rgb(255 255 255 / 100%);
		min-width: 1.6rem;
		overflow: hidden;
	}
	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li::before,
	.i_nav .sub-menu li::after {
		content: '';
		position: absolute;
		bottom: 0;
		height: 1px;
	}
	.i_nav .sub-menu li::before {
		left: 0;
		width: 100%;
		background: rgb(0 0 0 / 8%);
	}
	.i_nav .sub-menu li::after {
		right: 0;
		width: 0;
		background: var(--i_color2);
	}

	.i_nav .sub-menu a {
		display: block;
		padding: 0 .8rem 0 .2rem;
		font-size: 0.15rem;
		color: #444;
		line-height: 0.44rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
		left: 0;
	}
	.i_nav .sub-menu a::before {
		content: "\f324";
		font-family: "Font Awesome 5 Pro";
		font-weight: 300;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		left: -.16rem;
		font-size: 0.14rem;
		color: var(--i_color);
	}
	.i_nav .sub-menu li:hover::after {
		right: initial;
		left: 0;
		width: 100%;
	}
	.i_nav .sub-menu li:hover a {
		left: .16rem;
	}
	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}
	.i_nav .sub-menu li:hover a::before {
		left: 0;
	}
	.i_nav .sub-menu li,
	.i_nav .sub-menu li::after,
	.i_nav .sub-menu a,
	.i_nav .sub-menu a::before {
		-webkit-transition: all .5s ease;
		transition: all .5s ease
	}

}

@media screen and (max-width:1440px) {
	.i_nav>li {
		margin: 0 .2rem;
	}
}
@media screen and (max-width:1366px) {
	.i_nav>li {
		margin: 0 .16rem;
	}
	.i_nav>li>a {
		font-size: 0.15rem;
	}
}
@media screen and (max-width:1200px) {
	.i_nav>li {
		margin: 0 .14rem;
	}
	.i_nav>li>a {
		font-size: 0.14rem;
	}
}
@media screen and (max-width:1024px) {
	.i_nav {
		display: none;
		position: fixed;
		top: var(--header_height);
		left: 0;
		width: 100%;
		width: 100vw;
		max-height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		z-index: 2
	}
	/*滚动条*/
	.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 i {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: .44rem;
		height: .44rem;
		background: #F1F1F1;
	}
	.i_nav>.menu-item-has-children i::before {
		content: '\f107';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 0.26rem;
		color: #222;
	}

	.i_nav>.menu-item-has-children i.on::before {
		content: '\f106';
	}

	.i_nav>li>a {
		padding: 0 .2rem;
		font-size: .15rem;
		color: #222;
		line-height: .44rem;
		text-transform: uppercase;
	}

	.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: .14rem;
		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/imgs/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: .16rem;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/imgs/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
	}
}
@media screen and (max-width:768px) {}
@media screen and (max-width:560px) {}






/* 移动端导航按钮 */
.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: #333;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #333;
	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
	}
  .logo img {
    filter: unset;
    -webkit-filter: unset;
  }
  .top_search_ico iconify-icon{
    color: #333 !important;
    font-size: 0.18rem !important;
  }
  .top_language_all iconify-icon{
    color: #333 !important;
    font-size: 0.2rem !important;
  }
  .top_language_all p{
    color: #333 !important;
  }

}


.top_r {
	--size: .22rem
}
.top_r {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
  flex-shrink: 0;
}




.top_search_ico {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: var(--header_height);
	margin-right: 0.2rem;
	position: relative;
}
.top_search_ico i{
	display: block;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.top_search_ico::after{
	content: '';
	position: absolute;
	top: 50%;
	right: -0.2rem;
	transform: translate(0,-50%);
	width: 0.01rem;
	height: 0.2rem;
	background-color: #CECECE;
}
.top_search_ico iconify-icon {
	font-size: var(--size);
	cursor: pointer;
	color: #fff;
}
.top_search_ico.on iconify-icon {
	color: var(--i_color2) !important;
}


.top_language {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
	position: relative;
}
.top_language_all{
   display: flex !important;
   display: -webkit-flex;
   align-items: center;
   box-sizing: border-box;
   padding: 0 0.2rem;
   cursor: pointer;
   gap: 0.05rem;
}
.top_language_all p{
   font-size: 0.18rem;
   font-weight: 550;
   font-family: "Montserrat";
   color: #fff;
   transition: all 0.3s ease;
}
.top_language_all iconify-icon{
	font-size: 0.24rem;
	cursor: pointer;
	color: #fff;
	line-height: 100%;
	transition: all 0.3s ease;
}
.Language_sss {
  font-size: 0.2rem !important;
}
.top_language.on p{
	color: var(--i_color2) !important;
}
.top_language.on iconify-icon {
	color: var(--i_color2) !important;
}



.language_list{
	opacity: 0;
	visibility: hidden;
	position: absolute;top: calc(var(--header_height) + .2rem);right: 0;
	background: #FFF;
	min-width: 1.2rem;
	z-index: 2016;
	box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);
	-webkit-transition:all .4s ease; transition:all .4s ease;
	padding: .16rem .2rem;
}
.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_color2);}


@media screen and (max-width:1200px) {
	.top_language_all p{
		font-size: 0.16rem;
	 }
}
@media screen and (max-width:1024px) {
	.top_search_ico::after{
    display: none;
  }
  .top_language_all p {
    font-size: 0.14rem !important;
  }
  .Language_sss {
    font-size: 0.16rem !important;
  }
}
@media screen and (max-width:767px) {
  .top_language_all{
    padding: 0 0.1rem;
  }
  .top_language_all p{
    font-size: 0.12rem !important;
  }
  .Language_sss  {
    display: none;
  }
}






.top_language,
.top_language>iconify-icon {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}
@media screen and (max-width:1024px) {

	.top_language_all p {
		font-size: 0.16rem;
	}

}
@media screen and (max-width:768px) {


}
@media screen and (max-width:560px) {}



header,
.top_cont,
.logo,
.i_nav>li,
.i_nav>li>a,
.top_r {
	transition: all .7s ease
}






/* search main */
.top_search {
	--search_height: .38rem
}
.top_search {
	position: fixed;
	top: -1rem;
	left: 0;
	width: 100%;
	padding: .16rem 0;
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 6;
}
.top_search.on {
	top: var(--header_height);
	box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}
.top_search form {
	width: 80%;
	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));
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 0 0 .12rem;
	border-radius: 0;
}
.top_search_btn {
	font-size: 0;
	width: calc(var(--search_height));
	height: var(--search_height);
	background: var(--i_color) url(static/imgs/zxy/search.svg) no-repeat center;
	background-size: .2rem;
	cursor: pointer;
	border-radius: 0;
}

@media screen and (max-width:1366px) {

	.top_search_ico {
		margin-right: 0.3rem;
	}
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {
	.top_r {
		margin-left: auto;
	}
	.top_search_ico {
		margin-right: 0;
	}
}
@media screen and (max-width:768px) {
	.top_search {
		--search_height: .34rem
	}
	.top_search {
		padding: .12rem 0;
	}
}
@media screen and (max-width:560px) {
	.top_search form {
		width: 94%;
	}
	.top_search_btn {}
}




/* 导航下拉 */
/* products */
@media screen and (min-width:1025px) {
    .xiala{
		position: fixed;
		top: var(--header_height);
		left: 50%;
		transform: translate(-50%,0);
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
		box-sizing: border-box;
		padding:0.4rem 0;
		transition: top 0.3s ease;
		display: none;
		border-top: 1px solid var(--i_color2);
		box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, .1);
	}
	.TopHeader .xiala{

	}
    .products_drop_ul{
        display: flex;
		display: -webkit-flex;
		flex-wrap: wrap;
		gap: 0.4rem;
	}
	.products_drop_ul li{
        width: calc((100% - 2.4rem) / 7);
	}
	.products_drop_ul li a{
		display: block;
		width: 100%;
	}
	.products_drop_img{
        position: relative;
		overflow: hidden;
	}
	.products_drop_img::after{
        content: '';
		display: block;
		padding-bottom: 100%;
	}
	.products_drop_img img{
        position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.products_drop_ul li p{
		font-size: 0.16rem;
		color: #222;
		font-family: 'med';
		text-transform: capitalize;
		text-align: center;
		margin-top: 0.2rem;
		transition: all 0.3s ease;
	}
	.products_drop_ul li a:hover p{
		color: var(--i_color);
	}
    .products_nav ul,
	.solutions_nav ul{
		display: none !important;
	}
    .solution_drop{

	}
    .solution_drop_ul{
       display: flex;
	   display: -webkit-flex;
	   gap: 0.4rem 0.7rem;
	   justify-content: center;
	   flex-wrap: wrap;
	}
	.solution_drop_ul li{
       width: 2.2rem;

	}
	.solution_drop_ul li a{
       display: block;
	   width: 100%;
	}
	.solution_drop_img{
       position: relative;
	   overflow: hidden;
	   border-radius: 0.15rem;
	}
	.solution_drop_img::after{
       content: '';
	   display: block;
	   padding-bottom: 100%;
	}
	.solution_drop_img img{
       position: absolute;
	   top: 50%;
	   left: 50%;
       transform: translate(-50%,-50%);
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
	}
	.solution_drop_ul li a p{
       font-size: 0.16rem;
	   line-height: 0.24rem;
	   color: #333;
	   font-family: 'med';
	   text-align: center;
	   text-transform: capitalize;
	   margin-top: 0.2rem;
	   transition: all 0.3s ease;
	}
	.solution_drop_ul li a:hover p{
		color: var(--i_color);
	}


	@media screen and (max-width:1880px){

	}
	@media screen and (max-width:1600px){
		.products_drop_ul{
			gap: 0.2rem;
		}
		.products_drop_ul li{
			width: calc((100% - 1.2rem) / 7);
		}
		.products_drop_ul li p {
			font-size: 0.14rem;
			margin-top: 0.15rem;
		}
	}
	@media screen and (max-width:1440px){

	}
	@media screen and (max-width:1366px){

	}
	@media screen and (max-width:1200px){

	}

}

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



.top_phone{
   display: inline-block;
   box-sizing: border-box;
   padding: 0 0.4rem;
   background-color: var(--i_color2);

}
.top_phone a{
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: var(--header_height);
}
.top_phone a iconify-icon{
   font-size: 0.24rem;
   color: var(--i_color);
}
.top_phone a p{
   font-size: 0.2rem;
   color: #fff;
   font-weight: bold;
   margin-left: 0.1rem;
}



@media screen and (max-width:1440px){
	.top_phone a iconify-icon{
		font-size: 0.22rem;
	}
	.top_phone a p{
		font-size: 0.18rem;
	}
	.top_phone{
		padding: 0 0.35rem;
	}
}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){
	.top_phone a iconify-icon{
		font-size: 0.2rem;
	}
	.top_phone a p{
		font-size: 0.16rem;
	}
	.top_phone{
		padding: 0 0.3rem;
	}
}
@media screen and (max-width:1024px){
	.top_phone{margin-left: 0.2rem;}
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}



/* banner */
.banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.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 {
	height: 0;
	padding-bottom: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	position: relative;
  background-color: var(--i_color2);
	overflow: hidden
}
.banner .swiper-slide>img,.banner .swiper-slide video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}


.banner-button-prev,
.banner-button-next {
	position: absolute;
	top: 48%;
	transform: translate(0, -50%);
	width: .5rem;
	height: .5rem;
	background: rgb(0 0 0 / 30%);
	z-index: 999;
	outline: none;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	-webkit-border-radius: .05rem;
	border-radius: .05rem;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.banner-button-prev {
	left: -.6rem;
}
.banner-button-next {
	right: -.6rem;
}
.banner-button-prev i,
.banner-button-next i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.24rem;
	color: #FFF;
}
.banner:hover .banner-button-prev {
	left: .3rem
}
.banner:hover .banner-button-next {
	right: .3rem
}
.banner-button-prev:hover,
.banner-button-next:hover {
	background-color: var(--i_color)
}


.banner-pagination {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 6%;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
	z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
	display: block;
	width: 0.7rem;
	height: 0.03rem;
	margin: 0 .05rem;
	background: rgb(255 255 255 / 40%);
	position: relative;
	outline: none;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
.banner-pagination .swiper-pagination-bullet-active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}
.banner_share_box{
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 100%;
  z-index: 2;
}
.banner_share{
  display: flex;
  gap: 0.24rem;
  justify-content: flex-end;
}
.banner_share dt{

}
.banner_share dt a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.banner_share dt a iconify-icon{
  font-size: 0.22rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.banner_share dt a:hover{
  background-color: #fff;
  transform: translateY(-5px);
}
.banner_share dt a:hover iconify-icon{
  color: var(--i_color2);
}


@media screen and (max-width:1024px) {
	.banner {
		margin-top: var(--header_height);
		position: relative;
		top: initial;
		height: auto;
		-webkit-border-radius: 0 0;
		border-radius: 0 0;
	}
	.banner .swiper-slide {
		padding-bottom: 49%
	}

	.banner-button-prev,
	.banner-button-next {
		display: none
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.6rem;
	}
  .banner_share{
    display: none;
  }
}
@media screen and (max-width:768px) {

	.banner-pagination {
		bottom: 0.3rem;
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.5rem;
	}
}
@media screen and (max-width:560px) {
	.banner-pagination {
		bottom: 0.2rem;
	}
	.banner-pagination .swiper-pagination-bullet {
		width: 0.4rem;
	}
}






.fullMask {
	width: 100%;
	height: 100vh;
}
.fullMask_about{
	width: 100%;
	height: 86.6vh;
}
@media screen and (max-width:1024px) {
	.fullMask,.fullMask_about{
		display: none;
	}
}

main {
    position: relative;
    background: #FFF;
    max-width: 100%;
	overflow: hidden;
}

footer {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    background-color: white;
}





/* banner 文字 */
.banner_text1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_text1_box{
  width: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;

}
.banner_text1_box h3{
  font-size: 0.52rem;
  color: #fff;
  font-weight: bold;
  text-align: center;

}
.banner_text1_box h4{
  font-size: 0.24rem;
  color: #fff;
  line-height: 150%;
  font-weight: 550;
  text-align: center;
  margin: 0.3rem 0 0.5rem 0;
}

.banner_text2_img{
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  display: flex;
}
.banner_text2_img li{
  width: 20%;
  position: relative;
}
.banner_text2_img li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_text2_img li::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.banner_text2_img li:hover::after{
  opacity: 0;
}
.banner_text2_img li p{
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  position: absolute;
  bottom: 1.4rem;
  left: 0%;
  box-sizing: border-box;
  padding: 0 0.2rem 0.1rem 0.2rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.banner_text2_img li p::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.2rem;
  width: 0.48rem;
  height: 2px;
  background-color: #fff;
}
.banner_text2_img li:hover p{
  opacity: 1;
}

.banner_text2{
  top: 40%;
}








@media screen and (max-width:1440px){
  .banner_text1_box h3{
    font-size: 0.45rem;
  }
  .banner_text1_box h4 {
    font-size: 0.24rem;
    margin: 0.2rem 0 0.4rem 0;
  }
  .banner_text2_img li p{
    font-size: 0.28rem;
  }
}
@media screen and (max-width:1200px){
  .banner_text1_box h3{
    font-size: 0.4rem;
  }
  .banner_text1_box h4 {
    font-size: 0.2rem;
    margin: 0.2rem 0;
  }
  .banner_text2_img li p{
    font-size: 0.26rem;
  }

}
@media screen and (max-width:1024px){
  .banner_text1_box h3{
    font-size: 0.25rem;
  }
  .banner_text1_box h4 {
    font-size: 0.14rem;
    margin: 0.2rem 0 0 0;
  }
  .banner_text2_img p{
    display: none;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .banner_text1_box h4 {
    margin: 0.1rem 0 0 0;
  }
  .banner_text1_box h3{
    font-size: 0.2rem;
  }
}
@media screen and (max-width:560px){
  .banner_text1_box h3{
    font-size: 0.16rem;
  }
  .banner_text1_box h4{
    display: none;
  }
}
@media screen and (max-width:425px){

}





/* *************** 关于我们 *************** */

/* +++ 关于我们: 医院介绍  +++ */

/* 内页banner */
.banner__ {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner__ img {
  width: 100vw;
  display: block;
}
.banner__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* 面包屑*/
.in_position {
  padding: 0.2rem 0;
  background: #f0f0f0;
  position: relative;
}
.in_position .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 16px;
  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: 16px;
  height: 16px;
  background: url(static/imgs/home.webp) 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: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
  .banner__{
    margin-top: var(--header_height);
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

/* 关于公司 */
.ac_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.acc_video {
  width: 41.13%;
  height: max-content;
  position: relative;
  overflow: hidden;
}
.acc_video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 106.38%;
}
.acc_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.v_btn {
  width: 0.59rem;
  height: 0.59rem;
  position: absolute;
  left: 68%;
  top: 62%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.v_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  animation: pulseAnimation 3s infinite;
  z-index: -1;
}
@keyframes pulseAnimation {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 136%;
    height: 136%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.v_btn iconify-icon {
  font-size: 0.3rem;
  color: var(--i_color);
}

.acc_info {
  width: 53.88%;
  box-sizing: border-box;
}

.acc_info article i {
  font-weight: bold;
}

.Core_credentials {
  width: 96.52%;
  position: relative;
}
.Core_credentials::before {
  content: "";
  display: block;
  width: 40%;
  height: 0;
  border-top: 1px dashed #d8d8d8;
  position: absolute;
  left: 0;
  top: 0;
}

.Core_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 2%;
}

.Core_list li {
  width: 32%;
  box-sizing: border-box;
  padding: 0.24rem 0.12rem 0.2rem 0.12rem;
  background: #faf7ed;
  border: 1px solid #e8e5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.14rem 0;
  transition: all 0.4s ease;
}

.Core_list img {
  width: 42%;
}

.Core_list li:hover {
  background-color: var(--i_color);
}
.Core_list li:hover img {
  filter: brightness(0) invert(1);
}
.Core_list li:hover p {
  color: #fff;
}

@media screen and (max-width: 1366px) {
  .ac_content {
    align-items: center;
  }
  .Core_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .acc_video,
  .acc_info {
    width: 100%;
  }
  .acc_info {
    margin-top: 0;
    order: -1;
  }
}
@media screen and (max-width: 768px) {
  .v_btn {
    left: 50%;
    top: 50%;
  }
  .Core_list li {
    width: 49%;
  }
  .Core_list p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .acc_info h2 {
    font-size: 0.14rem;
  }
  .acc_info article {
    font-size: 0.12rem;
  }
  .Core_list img {
    width: 0.4rem;
  }
  .Core_list p {
    font-size: 0.1rem;
  }
}

/* 品牌内涵 */
.Brand_connotation {
  background: url(static/imgs/Brand_connotationBa.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 2.35rem;
}

.connotationList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.connotationList li {
  width: 20%;
  box-sizing: border-box;
  padding: 0.18rem 0.16rem 0.15rem 0.16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connotationIcon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}
.connotationIcon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--i_color);
  transition: all 0.4s ease;
}

.connotationIcon img {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.connotationList li:hover .connotationIcon {
  background-color: var(--i_color);
}
.connotationList li:hover .connotationIcon::before {
  width: 100%;
  height: 100%;
}
.connotationList li:hover img {
  transform: translate(-50%, -50%) scaleX(-1);
}
.connotationList li:hover h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1366px) {
  .connotationList li p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Brand_connotation {
    padding-bottom: 0.4rem;
  }
  .connotationList li {
    width: 33.33%;
  }
  .connotationIcon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .connotationList li p {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 560px) {
  .connotationList li {
    width: 50%;
    padding: 0;
  }
  .connotationIcon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .connotationList li h6 {
    margin: 0.1rem 0;
  }
}

/* 我们的优势 */
.Our_Advantages {
  --oa_top_height: 1.7rem;
}

@media screen and (max-width: 1366px) {
  .Our_Advantages {
    --oa_top_height: 1rem;
  }
}

.Our_Advantages {
  margin-top: calc(-1 * var(--oa_top_height));
}

.Our_Advantages .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  justify-content: space-between;
}

.oa_left {
  width: 36.82%;
  box-sizing: border-box;
}

.oa_left h2 {
  height: var(--oa_top_height);
  background-color: var(--i_color2);
  box-sizing: border-box;
}

.oa_left_list {
  width: 91%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.oa_left_list li {
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 0 0.3rem;
  cursor: pointer;
}

.oa_left_list li:hover p,
.oa_left_list li.active p {
  color: var(--i_color);
}

.oa_left_list img {
  width: 12%;
  display: block;
  margin-left: 0.3rem;
}

.oa_right {
  width: 62.13%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.3rem;
}

.oar_box {
  display: none;
}

.oar_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.oar_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 55.78%;
}
.oar_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.oar_box p {
  margin-top: 0.25rem;
}

.oar_box.active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .Our_Advantages {
    margin-top: 0.4rem;
  }
  .oa_right {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .oa_left h2 {
    height: 0.6rem;
  }
  .oa_left,
  .oa_right {
    width: 100%;
  }
  .oa_left_list {
    gap: 0.1rem 0;
  }
  .oa_left_list li {
    gap: 0 0.15rem;
    padding-bottom: 0.1rem;
  }
  .oa_left_list img {
    width: 0.3rem;
    margin-left: 0;
  }
  .oa_left_list p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .oa_left h2 {
    height: 0.4rem;
  }
  .oa_left_list img {
    width: 0.25rem;
  }
  .oa_left_list p {
    font-size: 0.13rem;
  }
  .oar_box p {
    font-size: 0.14rem;
  }
}

/* 合作伙伴 */
.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;
  border-bottom: 1px solid #e5e5e5;
}
.Partners_item {
  background-color: #f6f6f6;
  box-sizing: border-box;
  padding: 0.12rem;
}
.Partners_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.Partners_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 67%;
}
.Partners_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Partners_list .swiper-slide p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------- */
.Partners-pagination,
.Employee-pagination {
  display: block;
  margin-top: 0.48rem;
  text-align: center;
}
.Partners-pagination .swiper-pagination-bullet,
.Employee-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.03rem;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  display: inline-block;
  margin: 0 6px;
  background: #d6d6d6;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Partners-pagination .swiper-pagination-bullet-active,
.Employee-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Partners-pagination,
  .Employee-pagination {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .Partners_list .swiper-slide p {
    width: 100%;
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 560px) {
  .Partners_list .swiper-slide {
    padding-bottom: 0;
    border: none;
  }
}

/* 介绍信息 */
.Introduction {
  display: flex;
  flex-wrap: wrap;
}

.IntroductionPic {
  width: 39.4%;
  position: relative;
  overflow: hidden;
}
.IntroductionPic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 111.39%;
}
.IntroductionPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.IntroductionInfo {
  width: 60.6%;
  background-color: #f7f7f7;
  position: relative;
}
.IntroductionInfo::before {
  content: "";
  display: block;
  width: 57.6%;
  height: 78.7%;
  background: url(static/imgs/big_logo.webp) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
}

.I_Box {
  box-sizing: border-box;
  padding-left: 0.7rem;
  padding-top: 0.96rem;
  padding-bottom: 0.9rem;
  position: relative;
  z-index: 2;
}

.I_Box h2 {
  padding-bottom: 0.24rem;
  position: relative;
}
.I_Box h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px dashed var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.Ib_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
  margin-top: 0.24rem;
}

.Ib_imgs li {
  width: 23.5%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.Ib_imgs li img {
  width: 100%;
}
.Ib_imgs li p{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0;
  background: var(--i_color2);
  font-size: 0.2rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0.1rem;
  transition: all 0.5s ease;
  transform: scale(0.5);
  opacity: 0;

}
.Ib_imgs li:hover p{
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 1440px) {
  .I_Box {
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .Ib_imgs li p{
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 1200px) {

  .Ib_imgs li p{
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .IntroductionInfo::before {
    background-size: contain;
    top: 50%;
  }
  .IntroductionPic {
    width: 100%;
  }
  .IntroductionPic::before {
    padding-bottom: 60%;
  }
  .IntroductionInfo {
    width: 100%;
    order: -1;
  }
  .I_Box {
    padding-left: 3vw;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .Ib_imgs li p{
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 560px) {
  .IntroductionPic::before {
    padding-bottom: 100%;
  }
  .Ib_imgs {
    gap: 0.05rem 2%;
  }
  .Ib_imgs li {
    width: 49%;
  }
}

/* +++ 关于我们: 医生团队介绍  +++ */

/* 专业能力 */
.professional_skills {
}

.ps_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.psi_img {
  width: 31.5%;
  position: relative;
  overflow: hidden;
}
.psi_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 144.45%;
}
.psi_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.psi_txt {
  width: 64.75%;
  box-sizing: border-box;
}

.Position {
  box-sizing: border-box;
  padding: 0.3rem 0.4rem 0.36rem 0.4rem;
  margin-bottom: 0.24rem;
  background-color: #fcf8f5;
  border-bottom: 2px solid var(--i_color);
}

.Doctor_Honors {
  box-sizing: border-box;
  background-color: var(--i_color2);
  padding: 0.3rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.24rem 0;
}

.Doctor_Honors i {
  width: 0.04rem;
  height: 0.04rem;
  display: inline-block;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.03rem;
  margin-bottom: 0.03rem;
}

@media screen and (max-width: 1024px) {
  .psi_img,
  .psi_txt {
    width: 100%;
  }
  .psi_txt {
    order: -1;
  }

  .Position,
  .Doctor_Honors {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Position h3 {
    font-size: 0.14rem;
  }
  .Doctor_Honors {
    gap: 0.15rem 0;
  }
  .Doctor_Honors li {
    font-size: 0.13rem;
  }
}

/* 专家小组 */
.Expert_Panel {
  overflow: hidden;
}

.Expert_Panel h2 {
  border-bottom: 1px solid #e5e5e5;
}

.Expert_Options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.36rem;
}

.Expert_Options li {
  box-sizing: border-box;
  border: 1px solid rgba(51, 51, 51, 0.5);
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.Expert_Options li:hover,
.Expert_Options li.active {
  background-color: var(--i_color);
  color: #fff;
  border-color: var(--i_color);
}

@media screen and (max-width: 560px) {
  .Expert_Options {
    gap: 0.1rem;
  }
  .Expert_Options li {
    padding: 0.05rem 0.1rem;
    font-size: 0.12rem;
  }
}

/* 专家展示 */
.Expert_presentation {
  display: none;
}
.Expert_presentation.active {
  display: block;
}

.ep_GroupPhoto img {
  width: 100%;
}

.Expert_Details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem 0;
}

.Expert_item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.Expert_item_pic {
  width: 39.88%;
  padding-top: 0.12rem;
  position: relative;
}
.Expert_item_pic::before {
  content: "";
  display: block;
  width: 35%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 2%;
  top: 0;
}
.Expert_item_pic::after {
  content: "";
  display: block;
  width: 17%;
  height: 42%;
  position: absolute;
  top: 0;
  right: 0;
  border: 2px solid var(--i_color);
}

.Expert_item_img {
  width: 97.8%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.Expert_item_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 86.22%;
}
.Expert_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Expert_item_info {
  width: 56.38%;
  box-sizing: border-box;
}

.Jt_list {
  margin-top: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.9rem;
}

.Jt_list li {
  display: flex;
  align-items: center;
}
.Jt_list li::before {
  content: "";
  display: block;
  width: 0.18rem;
  height: 0.18rem;
  background: url(static/imgs/hook.webp) no-repeat center;
  background-size: contain;
  margin-right: 0.12rem;
}

.Expert_item_info span {
  display: block;
}

.Expert_Details .Expert_item:nth-child(even) {
  padding: 0.6rem 0;
  position: relative;
}
.Expert_Details .Expert_item:nth-child(even)::before {
  width: 300%;
  height: 100%;
  background-color: #fcf8f5;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 1366px) {
  .Expert_item {
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .Expert_item_pic,
  .Expert_item_info {
    width: 100%;
  }
  .Expert_item_info {
    order: -1;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .Expert_Details {
    gap: 0.3rem 0;
  }
  .Expert_item_info h3 {
    font-size: 0.16rem;
  }
  .Job_Title {
    margin-top: 0.1rem;
  }
  .Job_Title h6 {
    font-size: 0.14rem;
  }
  .Jt_list {
    margin-top: 0.1rem;
    gap: 0.1rem 0.3rem;
  }
  .Jt_list li::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .Jt_list li,
  .Expert_item_info span {
    font-size: 0.12rem;
  }

  .Expert_Details .Expert_item:nth-child(even) {
    padding: 0.3rem 0;
  }
}

/* +++ 关于我们: 大事件  +++ */

/* 旅游中心 */
.Tourist_Center {
  overflow: hidden;
}

.Tourist_text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 限制3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* 省略号 */
  transition: all 0.4s ease; /* 展开动画 */
}

/* 展开状态：取消限制 */
.Tourist_text.expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.Tourist_more.hidden {
  display: none;
}

.Tourist_more {
  box-sizing: border-box;
  padding: 0 0.24rem;
  padding-bottom: 0.12rem;
  width: max-content;
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0 0.15rem;
  border-bottom: 1px solid #666666;
  transition: all 0.4s ease;
}

.Tourist_more iconify-icon {
  font-size: 0.26rem;
}

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

@media screen and (max-width: 560px) {
  .Tourist_more {
    padding: 0.05rem 0 0.05rem 0.1rem;
    border: 1px solid #999;
  }
  .Tourist_more p {
    font-size: 0.14rem;
  }
}

.Tourist_Center img {
  width: 100%;
}

.Tourist_txt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  justify-content: space-between;
  position: relative;
}
.Tourist_txt::before {
  content: "";
  display: block;
  width: 300%;
  height: 100%;
  background-color: #fcf8f5;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.tt_left {
  width: 30.13%;
  background-color: var(--i_color2);
  position: relative;
}
.tt_left::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.53rem;
  background-color: var(--i_color2);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 0;
  bottom: 100%;
}

.tt_left img {
  width: 84%;
}

.Tourist_txt p {
  padding-top: 0.13rem;
  width: 66%;
}

@media screen and (max-width: 1024px) {
  .Tourist_txt {
    padding: 0.3rem 0;
  }
  .tt_left::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tt_left {
    padding: 0.2rem 0;
    margin-left: auto;
    margin-right: auto;
  }
  .Tourist_txt p {
    width: 100%;
    padding-top: 0;
    font-size: 0.14rem;
  }
}

/* 员工展示 */
.Employee_Showcase {
}

.es_top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  justify-content: space-between;
}

.es_top p {
  width: 66%;
}

@media screen and (max-width: 1024px) {
  .es_top h2,
  .es_top p {
    width: 100%;
  }
}

.gol_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gol_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.gol_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: hidden;
  width: 20% !important;
}
.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 5.3rem;
}
.gol_partner_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.gol_partner_list .swiper-slide-active {
  width: 48% !important;
}

@media screen and (max-width: 1440px) {
  .gol_partner_list .img {
    height: 5rem;
  }
  .golbal_bac {
    padding: 0.8rem 0;
    margin-top: -0.8rem;
    border-radius: 1rem 0 0 0;
  }
}
@media screen and (max-width: 1366px) {
  .gol_partner_list .img {
    height: 4.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .gol_partner .pt-button-prev,
  .gol_partner .pt-button-next {
    display: none;
  }
  .gol_partner .pt-pagination {
    display: block;
  }
  .gol_partner_list .img {
    height: 4.5rem;
  }
  .golbal_bac {
    padding: 0.6rem 0;
    margin-top: -0.6rem;
    border-radius: 0.8rem 0 0 0;
  }
}
@media screen and (max-width: 959px) {
  .gol_partner_list .img {
    height: 4rem;
  }
  .golbal_bac {
    border-radius: 0.6rem 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .gol_partner_box {
    margin-top: 0.4rem;
  }
  .gol_partner_list .img {
    height: 3.5rem;
  }

  .gol_partner_list li {
    width: 100% !important;
  }
  .gol_partner_list .swiper-slide-active {
    width: 100% !important;
  }
  .gol_partner_box {
    box-sizing: border-box;
    padding: 0 3%;
  }
  .golbal_bac {
    border-radius: 0.4rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  .gol_partner_list .img {
    height: 3rem;
  }
  .gol_partner .pt-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
  }
}

/* +++ 关于我们: 我们的荣誉  +++ */

/* 科学研究 */
.Scientific_research {
  background: url(static/imgs/Scientific_researchBa.webp) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.Scientific_list {
  position: relative;
  overflow: hidden;
}
.Scientific_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Scientific_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  align-items: center;
  justify-content: space-between;
}

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

.Scientific_list i {
  height: 100%;
  border-left: 1px dashed #333;
}

.Scientific_text {
  width: 61.88%;
  box-sizing: border-box;
}

.Scientific-pagination {
  transform: translateX(20%);
}

@media screen and (max-width: 1024px) {
  .Scientific-pagination {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 768px) {
  .Scientific_text h2 {
    font-size: 0.14rem;
  }
  .Scientific_text p {
    font-size: 0.12rem;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .Scientific_img,
  .Scientific_text {
    width: 100%;
  }
  .Scientific_list i {
    display: none;
  }
}

/* 社会责任 */
.Social_responsibility {
  overflow: hidden;
  background-color: var(--i_color2);
}

.Social_responsibility .wrap_l {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.Social_left {
  width: 39.63%;
  box-sizing: border-box;
  padding-right: 0.6rem;
  position: relative;
}
.Social_left::before {
  content: "";
  display: block;
  width: 300%;
  height: 100%;
  background-color: var(--i_color2);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.Social_left img {
  width: 100%;
}

.Social_left .titleBox p {
  color: #fff;
}

.Social_left h6 {
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  padding: 0.15rem 0.24rem;
}

.Social_right {
  width: 60.37%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.Social_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 78.84%;
}
.Social_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1440px) {
  .Social_left {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
  }
  .Social_left .titleBox,
  .Social_left .titleBox p,
  .i_more.nobg,
  .Social_left h6 {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .Social_left .titleBox p,
  .Social_left h6 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Social_responsibility {
    padding-bottom: 0.2rem;
  }
  .Social_responsibility .wrap_l {
    padding-right: 3vw;
  }
  .Social_left,
  .Social_right {
    width: 100%;
  }
  .Social_left {
    padding: 0.3rem 0;
  }
  .Social_left::before {
    right: 50%;
    transform: translateX(50%);
  }
  .Social_left img {
    width: 50%;
  }
  .Social_responsibility .wrap_l {
    gap: 0rem 0;
  }
}
@media screen and (max-width: 560px) {
  .Social_left .titleBox p,
  .Social_left h6 {
    font-size: 0.14rem;
  }
  .Social_left h6 {
    padding: 0.1rem;
  }
}

/* 荣誉时刻 */
.Moment_Honor {
}

.mh_top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
  align-items: center;
}

.mht_left {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.mht_left::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 81.25%;
}
.mht_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.mht_right {
  width: 45.5%;
}

@media screen and (max-width: 1024px) {
  .mht_left,
  .mht_right {
    width: 100%;
  }
  .mht_right {
    order: -1;
  }
}
@media screen and (max-width: 560px) {
  .mht_right h4 {
    font-size: 0.14rem;
  }
}

.mh_bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.mh_bottom li {
  width: 23.5%;
  box-sizing: border-box;
  padding: 0.12rem;
  background-color: #f6f6f6;
}

.mhb_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mhb_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 112%;
}
.mhb_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  .mh_bottom {
    gap: 0.1rem 2%;
  }
  .mh_bottom li {
    width: 49%;
  }
}

/* 学术会议 */
.Academic_Conference {
  background-color: var(--i_color2);
  padding-bottom: 1.48rem;
}

.Academic_Conference .wrap {
  display: flex;
  align-items: center;
}
.Academic_Conference .wrap::before {
  content: "";
  display: block;
  width: 0.66rem;
  height: 0.66rem;
  background: url(static/imgs/quotation_marks01.webp) no-repeat center;
  background-size: contain;
}
.Academic_Conference .wrap::after {
  content: "";
  display: block;
  width: 0.66rem;
  height: 0.66rem;
  background: url(static/imgs/quotation_marks02.webp) no-repeat center;
  background-size: contain;
}

.Academic_Conference p {
  width: 85.75%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1366px) {
  .Academic_Conference .wrap::before,
  .Academic_Conference .wrap::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .Academic_Conference {
    padding-bottom: 0.45rem;
  }
  .Academic_Conference .wrap::before,
  .Academic_Conference .wrap::after {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .Academic_Conference {
    padding-bottom: 0.35rem;
  }
  .Academic_Conference .wrap::before,
  .Academic_Conference .wrap::after {
    width: 0.2rem;
    height: 0.2rem;
  }
  .Academic_Conference p {
    font-size: 0.12rem;
  }
}

/* 会议展示 */
.Conference_Presentation {
  margin-top: -1rem;
}

.cp_box {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.6rem 0.4rem 0.7rem 0.4rem;
}

.cpb_top {
  gap: 0.2rem 0;
}

.cpbt_info {
  width: 52.37%;
  box-sizing: border-box;
}

.cpbt_img {
  width: 43.43%;
  position: relative;
  overflow: hidden;
}
.cpbt_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 56.36%;
}
.cpbt_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .Conference_Presentation {
    margin-top: 0;
  }
  .cp_box {
    padding: 0.3rem 0;
  }
  .cpbt_info,
  .cpbt_img {
    width: 100%;
  }
}

.cpb_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.cpb_list li {
  flex: 1;
  height: 4.45rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.cpi_pic {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cpi_pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}
.cpi_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.cpi_txt {
  width: 88%;
  background: linear-gradient(180deg, #e9b945 0%, rgba(233, 185, 69, 0.6) 100%);
  position: absolute;
  bottom: -2%;
  right: 0;
  border-top-left-radius: 10px;
  box-sizing: border-box;
  padding: 0.16rem 0.24rem 0.07rem 0.24rem;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
}

@media screen and (min-width: 1025px) {
  .cpb_list li.active {
    flex: 2;
  }
  .cpb_list li.active .cpi_pic::after {
    height: 0;
    opacity: 0;
  }
  .cpb_list li.active .cpi_txt {
    bottom: 0;
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .cpi_txt {
    width: 95%;
    font-size: 0.14rem;
    padding: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .cpb_list li {
    flex: none;
    width: 100%;
    height: 3.5rem;
  }
  .cpi_pic::after {
    display: none;
  }
  .cpi_txt {
    width: 100%;
    bottom: 0;
    opacity: 1;
  }
}

/* 任命仪式 */
.Appointment_Ceremony {
  background: #fcf8f5;
}

.Appointment_Ceremony .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.Appointment_left {
  width: 35.44%;
  height: max-content;
  position: relative;
  overflow: hidden;
}
.Appointment_left::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 134.74%;
}
.Appointment_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Appointment_right {
  width: 59.5%;
}

.Appointment_right h2 {
  position: relative;
}
.Appointment_right h2::before {
  content: "";
  display: block;
  width: 22%;
  height: 4px;
  background-color: var(--i_color2);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1024px) {
  .Appointment_left,
  .Appointment_right {
    width: 100%;
  }
  .Appointment_right {
    order: -1;
  }
}

/* 科研成就 */
.research_achievements {
  overflow: hidden;
}

.achievements_box {
  position: relative;
}

.achievements_list {
  position: relative;
  overflow: hidden;
}
.achievements_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.achievements_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(51, 51, 51, 0.2);
  transition: all 0.4s ease;
}

.achievements_img {
  background-color: #f7f7f7;
  box-sizing: border-box;
  padding: 0.24rem;
}

.achievements_img img {
  width: 100%;
}

.achievements_txt {
  width: 92.5%;
}

.achievements_list .swiper-slide:hover {
  border-color: var(--i_color);
  color: var(--i_color);
}

/* -------------------------- */
.achievements-prev,
.achievements-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.64rem;
  height: 0.64rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.achievements-prev {
  left: -5.5%;
}
.achievements-next {
  right: -5.5%;
}
.achievements-prev iconify-icon,
.achievements-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.22rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}
.achievements_list .swiper-button-disabled {
  cursor: not-allowed;
}
.achievements-prev:hover,
.achievements-next:hover {
  background: var(--i_color);
}
.achievements-prev:hover iconify-icon,
.achievements-next:hover iconify-icon {
  color: #fff;
}

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

@media screen and (max-width: 1440px) {
  .achievements-prev,
  .achievements-next {
    width: 0.4rem;
    height: 0.4rem;
  }
  .achievements-prev iconify-icon,
  .achievements-next iconify-icon {
    font-size: 0.2rem;
  }
  .achievements-prev {
    left: 0;
  }
  .achievements-next {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .achievements-prev,
  .achievements-next {
    display: none;
  }
  .achievements-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .achievements_txt {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    font-size: 0.12rem;
  }
}

/* +++ 关于我们: 医院环境  +++ */

/* 医院环境 */
.Hospital_Environment {
}

.he_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.he_top p {
  width: 61.38%;
}

.Hospital_Options {
  gap: 0.24rem 0.36rem;
}

@media screen and (max-width: 1024px) {
  .he_top p {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Hospital_Options {
    gap: 0.1rem;
  }
}

.Hospital_Showcase {
  display: none;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.hs_item {
  width: 49%;
  position: relative;
  overflow: hidden;
}
.hs_item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 67%;
}
.hs_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.hs_item:hover img {
  transform: scale(1.1);
}

.Hospital_Showcase.active {
  display: flex;
}

@media screen and (max-width: 768px) {
  .Hospital_Showcase {
    gap: 0.15rem 2%;
  }
}
@media screen and (max-width: 560px) {
  .Hospital_Showcase {
    gap: 0.07rem 2%;
  }
}

/* *************** 服务页面 *************** */

/* 贴心服务 */
.thoughtful_service {
}

.thoughtful_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 2%;
}

.thoughtful_list li {
  width: 32%;
  box-sizing: border-box;
  background-color: #f7f2ee;
  padding: 0.3rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.thoughtful_list img {
  width: 18.59%;
  display: block;
  margin-left: 0.1rem;
  margin-bottom: 0.26rem;
}

.thoughtful_hide {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow-y: auto;
  left: 0;
  top: 2%;
  background-color: var(--i_color2);
  box-sizing: border-box;
  padding: 0.3rem 0.3rem 0.16rem 0.3rem;
  opacity: 0;
}

.thoughtful_hide h4 {
  margin-bottom: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid var(--i_color);
}

.thoughtful_list li:hover .thoughtful_hide {
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 1366px) {
  .thoughtful_list h6,
  .thoughtful_hide h4 {
    font-size: 0.18rem;
  }
  .thoughtful_hide h4 {
    margin-bottom: 0.15rem;
    padding-bottom: 0.15rem;
  }
  .thoughtful_hide p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .thoughtful_list {
    gap: 0.18rem 2%;
  }
  .thoughtful_list li {
    width: 49%;
  }
  .thoughtful_list img {
    width: 0.45rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .thoughtful_list h6,
  .thoughtful_hide h4 {
    font-size: 0.16rem;
  }
  .thoughtful_hide p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .thoughtful_list li {
    width: 100%;
  }
  .thoughtful_hide {
    padding: 0.2rem;
  }
}

/* 差异化 */
.Differentiation {
  overflow: hidden;
}

.DifferentiationBox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  align-items: center;
  justify-content: space-between;
}

.db_left {
  width: 32.8%;
  position: relative;
  z-index: 3;
}
.db_left::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 166%;
}
.db_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.db_right {
  width: 63.77%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.db_right::before {
  content: "";
  display: block;
  width: 500%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: var(--i_color2);
  z-index: -1;
}

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

.Differentiated_item {
  height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.48rem 0.2rem 0.27rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Differentiated-operate {
  width: max-content;
  display: flex;
  align-items: center;
  margin-left: 35%;
  gap: 0 0.4rem;
}

/* -------------------------- */
.Differentiated-prev,
.Differentiated-next {
  width: 0.64rem;
  height: 0.64rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Differentiated-prev {
}
.Differentiated-next {
}
.Differentiated-prev iconify-icon,
.Differentiated-next iconify-icon {
  font-size: 0.2rem;
  color: #fff;
  transition: all 0.4s ease;
}
.Differentiated_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Differentiated-prev:hover,
.Differentiated-next:hover {
  background: #fff;
}
.Differentiated-prev:hover iconify-icon,
.Differentiated-next:hover iconify-icon {
  color: var(--i_color);
}

/* -------------------------- */
.Differentiated-pagination {
  display: none;
  margin-top: 0.3rem;
  text-align: center;
}
.Differentiated-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Differentiated-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .Differentiated_item p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Differentiated-operate {
    display: none;
  }
  .Differentiated-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .Differentiation .wrap_l {
    padding-right: 3vw;
  }
  .db_left {
    display: none;
  }
  .db_right {
    width: 100%;
  }
  .Differentiated_item {
    padding: 0.2rem;
  }
  .Differentiated_item p {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .Differentiated_item p {
    font-size: 0.12rem;
  }
}

/* 五星级 */
.Five_star {
}

.Five_star_Box {
}

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

/* -------------------------- */
.FiveStar_operate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.4rem;
}

.FiveStar-prev,
.FiveStar-next {
  width: 0.64rem;
  height: 0.64rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.FiveStar-prev {
}
.FiveStar-next {
}
.FiveStar-prev iconify-icon,
.FiveStar-next iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}
.FiveStar_list .swiper-button-disabled {
  cursor: not-allowed;
}
.FiveStar-prev:hover,
.FiveStar-next:hover {
  background: var(--i_color);
}

.FiveStar-prev:hover iconify-icon,
.FiveStar-next:hover iconify-icon {
  color: #fff;
}

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

.FiveStar_item {
  height: 100%;
  position: relative;
}

.FiveStar_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.FiveStar_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 76.18%;
}
.FiveStar_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

#FsPic {
  display: none;
}

.FiveStar_list
  .swiper-wrapper
  .swiper-slide:nth-child(even)
  .FiveStar_item
  .FiveStar_img {
  display: none;
}

.FiveStar_list
  .swiper-wrapper
  .swiper-slide:nth-child(even)
  .FiveStar_item
  #FsPic {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.FiveStar_list
  .swiper-wrapper
  .swiper-slide:nth-child(even)
  .FiveStar_item
  .FiveStar_txt {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  margin-top: 0;
  padding: 0.48rem 0.3rem;
}

.FiveStar_list
  .swiper-wrapper
  .swiper-slide:nth-child(even)
  .FiveStar_item
  .FiveStar_txt
  h6 {
  color: #fff;
}

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

/* vip服务 */
.VIP_service {
  background: url(static/imgs/VIP_service.webp) no-repeat center;
  background-size: cover;
}

.oa_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  overflow: hidden;
}

.oac_imgs {
  width: 53.13%;
  position: relative;
  overflow: hidden;
}
.oac_imgs::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 57%;
}
.oac_imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.oac_texts {
  width: 41%;
  max-height: 4.38rem;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

/* Chrome, Safari, Edge 滚动条样式 */
.oac_texts::-webkit-scrollbar {
  width: 2px;
}
.oac_texts::-webkit-scrollbar-track {
  background: transparent;
}
.oac_texts::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}
.oac_texts::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255);
}

.oact_item {
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.oact_item img {
  width: 0.4rem;
}

.oact_item h3 {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  cursor: pointer;
}

.oact_item h6 {
  align-items: center;
  justify-content: space-between;
  display: flex;
  transition: all 0.4s ease;
}

.oact_item h6 p {
  box-sizing: border-box;
  padding-left: 0.6rem;
}

.oac_texts .txt {
  display: none;
}

@media screen and (max-width: 1200px) {
  .oac_texts {
    max-height: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .oac_imgs,
  .oac_texts {
    width: 100%;
  }
  .oac_texts {
    gap: 0.2rem 0;
  }
  .oact_item {
    padding-bottom: 0.2rem;
  }
  .oact_item img {
    width: 0.25rem;
  }
  .oact_item h6 p {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .oac_texts {
    order: -1;
  }
}
@media screen and (max-width: 560px) {
  .oac_texts {
    gap: 0.1rem 0;
  }
  .oact_item {
    padding-bottom: 0.1rem;
  }
  .oact_item h3 {
    font-size: 0.14rem;
    gap: 0.1rem;
  }
}

/* FAQ问答 */
.FAQ_box .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.faq_left {
  width: 40%;
}

.faq_whatsapp {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.faq_whatsapp::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 68%;
}
.faq_whatsapp::after {
  content: "";
  display: block;
  width: 100%;
  height: 28%;
  background: linear-gradient(0deg, #e9b945 0%, rgba(233, 185, 69, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.faq_whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.faq_info {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  z-index: 2;
}
.faq_info a {
  color: #fff;
  font-size: 0.18rem;
  font-weight: bold;
  transition: all 0.4s ease;
}

.faq_info iconify-icon {
  font-size: 0.24rem;
  margin-right: 0.12rem;
}

.faq_info a:hover {
  color: var(--i_color2);
}

.faq_right {
  width: 53%;
}

.fold_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.42rem 0;
}
.fold_list li {
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #e5e5e5;
}
.fold_list .tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.4rem;
  cursor: pointer;
}

.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.2rem;
  height: 0.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%333' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.22rem;
}

.fold_list .tit.active {
}
.fold_list .tit.active i {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%333' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.22rem;
}

.fold_list .txt {
  display: none;
  margin-top: 0.24rem;
}
.fold_list .txt span {
  font-size: 0.18rem;
  color: #666;
  line-height: 1.8;
}

@media screen and (max-width: 1200px) {
  .fold_list {
    gap: 0.2rem 0;
  }
  .fold_list li {
    padding-bottom: 0.2rem;
  }
  .fold_list .tit h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .faq_left,
  .faq_right {
    width: 100%;
  }
  .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;
  }
  .fold_list .txt span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .fold_list .tit h5 {
    font-size: 17px;
  }
  .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: 14px;
  }
  .fold_list .tit i {
    width: 26px;
    height: 26px;
    background-size: 18px !important;
  }

  .fold_list {
    gap: 0.15rem 0;
  }
  .fold_list .txt {
    margin-top: 0.15rem;
  }
  .fold_list li {
    padding-bottom: 0.15rem;
  }
}

.cote_img {
  width: 100%;
  display: block;
}

/* *************** 新闻页面 *************** */

/* 新闻分类选项 */

.News_Options li {
  padding: 0;
}

.News_Options a {
  display: block;
  box-sizing: border-box;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.News_Options .active a,
.News_Options li:hover a {
  color: #fff;
}

@media screen and (max-width: 560px) {
  .News_Options a {
    padding: 0.05rem 0.1rem;
  }
}

/* 新闻列表 */
.News_content {
}

.news_list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}

.news_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.ni_left {
  width: 66%;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
}

.ni_left span {
  font-weight: 550;
}

.ni_right {
  width: 30%;
  position: relative;
  overflow: hidden;
}
.ni_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 59.77%;
}
.ni_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.news_item:hover .ni_left {
  border-color: var(--i_color);
}
.news_item:hover h4 {
  color: var(--i_color);
}
.news_item:hover .ni_right img {
  transform: scale(1.1);
}

@media screen and (max-width: 1366px) {
  .news_item h4 {
    margin: 0.2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .news_list {
    gap: 0.3rem 0;
  }
  .ni_left span {
    font-size: 0.14rem;
  }
  .news_item h4 {
    margin: 0.1rem 0;
    font-size: 0.16rem;
  }
  .news_item p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .news_item h4 {
    margin: 0.05rem 0;
    font-size: 0.14rem;
  }
  .news_item p {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 560px) {
  .ni_left span {
    display: none;
  }
  .news_item h4 {
    margin: 0 0 0.05rem 0;
  }
  .news_item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ni_right {
    width: 34%;
  }
}

/* *************** 联系我们页面 *************** */

/* 联系信息 */

.contact_information {
  background-color: #fcf8f5;
}

.contact_infoBox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.cib_left {
  width: 46.75%;
  box-sizing: border-box;
}

.cibl_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cibl_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 48.27%;
}
.cibl_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cibl_txt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0 0.4rem 0.29rem 0.4rem;
  display: flex;
  gap: 0 0.3rem;
}

.cibl_txt img {
  flex-shrink: 0;
  width: 0.92rem;
  height: 0.92rem;
}

.cibl_txt h6 {
  flex-shrink: 0;
  width: 82%;
}

.cibl_txt h6 p {
  font-weight: normal;
}

.Contact_list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
  border-bottom: 1px solid #bfbcba;
}

.Contact_list li {
  display: flex;
  align-items: center;
}

.Contact_list iconify-icon {
  font-size: 0.24rem;
  color: var(--i_color);
  margin-right: 0.12rem;
}

.Contact_list a {
  font-size: 0.18rem;
  transition: all 0.4s ease;
}

.Contact_list a:hover {
  color: var(--i_color);
}

.contact__media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 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;
  transition: all 0.4s ease;
}
.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;
}

.cib_right {
  width: 46.75%;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #cabbb2;
  padding: 0.6rem 0.7rem;
}

.contact_form {
}

@media screen and (max-width: 1024px) {
  .cib_left,
  .cib_right {
    width: 100%;
  }
  .cibl_txt {
    padding: 0.2rem;
  }
  .cibl_txt img {
    width: 0.72rem;
    height: 0.72rem;
  }
  .cib_right {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .cibl_txt img {
    width: 0.52rem;
    height: 0.52rem;
  }
  .cib_right {
    padding: 0.3rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .cibl_txt {
    padding: 0.1rem;
    gap: 0 0.1rem;
  }
  .cibl_txt img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .cibl_txt h6 {
    font-size: 0.14rem;
  }
  .cibl_txt h6 p {
    font-size: 0.12rem;
    margin-top: 0.05rem;
  }

  .Contact_list {
    gap: 0.15rem 0;
  }
  .Contact_list iconify-icon {
    font-size: 0.2rem;
  }
  .Contact_list a,
  .Contact_list span,
  .Contact_list p {
    font-size: 0.14rem;
  }

  .contact__media a {
    width: 0.35rem;
    height: 0.35rem;
  }
  .contact__media iconify-icon {
    font-size: 0.2rem;
  }
}



/* *************** 项目 *************** */

/* +++ 项目: Reproductive Center  +++ */

/* Reproductive Center */
.Reproductive_Center {
}

.physiology_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.physiology_list li {
  width: 32%;
  background-color: #f3e4d9;
  box-sizing: border-box;
  padding: 0.14rem 0.3rem;
  transition: all 0.4s ease;
}

.physiology_list li:hover {
  background-color: var(--i_color2);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .physiology_list li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .physiology_list li {
    padding: 0.1rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .physiology_list li {
    font-size: 0.12rem;
  }
}

.surgerySol_cont {
  position: relative;
  z-index: 2;
}
.surgerySol_cont::before {
  content: "";
  display: block;
  width: 74%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(static/imgs/surgerySol_contBa.webp) no-repeat center center;
  background-size: cover;
  z-index: -1;
}

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

.surgerySol_pic {
  flex-shrink: 0;
  width: 44%;
  position: relative;
}
.surgerySol_pic::before {
  content: "";
  display: block;
  padding-bottom: 102%;
}
.surgerySol_pic dt {
  opacity: 0;
  position: absolute;
  top: 0;
  left: -0.2rem;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.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: 50.7%;
}
.surgerySol_t h4 {
  font-weight: bold;
}

.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: rgba(51, 51, 51, 0.2);
}
.surgerySol_item li::after {
  right: 0;
  width: 0;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.surgerySol_item p {
  padding: 0.14rem 0;
  font-size: 0.16rem;
  line-height: 1.5;
}

.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::before {
    width: 100%;
  }
  .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 {
    padding-top: 0;
  }
  .surgerySol_t h4 {
    font-size: 15px;
  }
  .surgerySol_item {
    gap: 6px 4%;
  }
  .surgerySol_item p {
    font-size: 10px;
  }
}

/* 宣传视频 */
.video_section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.video_section::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 32.4%;
}
.video_section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.physiology_Vbtn {
  width: 0.59rem;
  height: 0.59rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .physiology_Vbtn {
    width: 0.49rem;
    height: 0.49rem;
  }
}
@media screen and (max-width: 560px) {
  .physiology_Vbtn {
    width: 0.39rem;
    height: 0.39rem;
  }
  .physiology_Vbtn iconify-icon {
    font-size: 0.2rem;
  }
}

/* 视频列表 */
.physiology_videos {
}

.pvs_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.pvs_item {
  width: 32%;
  box-sizing: border-box;
}

.pvsi_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pvsi_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 122%;
}
.pvsi_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  .pvs_item p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .pvs_item p {
    font-weight: normal;
    font-size: 0.13rem;
    margin-top: 0.1rem;
  }
}

/* 表单 */
.physiology_form {
  background: url(static/imgs/physiology_form_Ba.webp) no-repeat center center;
  background-size: cover;
}

.physiology_form .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.pf_left {
  width: 52.5%;
}

.pf_left h2 {
  font-weight: 550;
  margin-top: 0.24rem;
  border-bottom: 1px dashed #d8d8d8;
}

.pfl_list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.pfl_list li {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
}

.pfl_list li::before {
  content: "";
  display: block;
  width: 0.48rem;
  height: 2px;
  background-color: #333;
}

.pf_right {
  width: 38%;
}

.pf_formBox {
}



@media screen and (max-width: 1024px) {
  .pf_left,
  .pf_right {
    width: 100%;
  }
  .pfl_list {
    gap: 0.2rem 0;
  }
}
@media screen and (max-width: 560px) {
  .pfl_list {
    gap: 0.12rem 0;
    margin-top: 0.2rem;
  }
  .pfl_list li {
    font-size: 0.14rem;
    gap: 0 0.1rem;
  }
  .pfl_list li::before {
    width: 0.2rem;
    height: 1px;
  }
}







#wpforms-70{--input_font_size:0.16rem; --input_height:0.5rem}
#wpforms-70{width:100%; margin:0 auto; padding:0}
#wpforms-form-70{width:100%; overflow:hidden}


#wpforms-70 input, #wpforms-70 button{margin:0; padding:0; border:none; background:none}
#wpforms-70 .wpforms-field{padding:0; margin:0}
#wpforms-70 .wpforms-error-container{line-height:16px}
#wpforms-70 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-70 .wpforms-submit-container{


}
#wpforms-70 .wpforms-field-container{
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 0.2rem;
}

#wpforms-70-field_2-container,
#wpforms-70-field_3-container{
  width: calc((100% - 0.2rem) / 2) !important;
}


#wpforms-70 .wpforms-field{
	position: relative;
}
#wpforms-70 .wpforms-field-label{
	font-size: 0rem;
	color: #333;
	display: block;
	padding-left: 0.1rem;
  font-weight: 300;
}
#wpforms-70 .wpforms-field-label span{
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	left: 0rem;
	font-size: 0.14rem;
  color: red;
}
#wpforms-70 .wpforms-error{

}
#wpforms-70 .wpforms-field{width:100%;margin-bottom: 0.3rem; background:transparent; overflow:hidden}

#wpforms-70-field_4-container .wpforms-field-label{
  font-size: 0.18rem !important;
  margin-bottom: 0.1rem;
}

#wpforms-70-field_4-container .wpforms-field-label span{
	top: 0.06rem;
  transform: unset !important;
}






#wpforms-70 input{height:var(--input_height)}
#wpforms-70 textarea{height:1.6rem}
#wpforms-70 input, #wpforms-70 textarea{
	width:100%;border: 0; max-width:100%!important; font-size:var(--input_font_size);
	color:#333;
	box-sizing:border-box; line-height:var(--input_height); padding:0 10px;
	border-radius: 0rem;
	border-bottom: 1px solid rgba(51,51,51,0.3);
}
#wpforms-70 textarea{
	line-height: 160%;
	padding:10px;
}


#wpforms-70 input::-webkit-input-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 input::-moz-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 input::-moz-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 input::-ms-input-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 textarea::-webkit-input-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 textarea::-moz-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 textarea::-moz-placeholder{color:#333; font-size:var(--input_font_size)}
#wpforms-70 textarea::-ms-input-placeholder{color:#333; font-size:var(--input_font_size)}



#wpforms-70 .wpforms-submit-container button{
	overflow: hidden;width:100%; height:0.5rem;
	font-size:0.16rem; color:#333;
	font-weight: bold;
	display: block;
	cursor:pointer; text-transform:capitalize;
	position:relative; z-index:2;
	background-color: var(--i_color);
	border-radius: 0rem;
	transition: all 0.3s ease;
}
#wpforms-70 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}
#wpforms-70 .wpforms-submit-container button:hover{
	background-color: #333;
  color: #fff;
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){


}
@media screen and (max-width:1024px){
	#wpforms-70-field_2-container,
  #wpforms-70-field_3-container{
    width:100% !important;
  }
  #wpforms-70{--input_font_size:0.14rem; --input_height:0.4rem}
  #wpforms-70-field_4-container .wpforms-field-label {
    font-size: 0.14rem !important;
  }
  #wpforms-70 textarea{height:1.2rem}
  #wpforms-70 .wpforms-submit-container button {
    height: 0.4rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	#wpforms-70{--input_height:0.5rem}
	#wpforms-70 .wpforms-field{margin-bottom:0.2rem; }
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}
















/* +++ 项目: 抗衰中心  +++ */

/* 核心概念 */
.Core_Concepts {
}

.CoreList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.CoreList li {
  width: 32%;
  box-sizing: border-box;
}

.Core_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.Core_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 98.44%;
}
.Core_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.CoreList li:hover img {
  transform: scale(1.1);
}
.CoreList li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 560px) {
  .CoreList li {
    width: 49%;
  }
  .CoreList p {
    font-weight: normal;
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

/* 特色医疗 */
.Specialized_Medical_Care {
  background-color: #fcf8f5;
}

.smc_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.smc_item {
  width: 32%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.4rem 0.24rem 0.48rem 0.24rem;
}

.smc_item h2 {
  margin-bottom: 0.24rem;
}

@media screen and (max-width: 1024px) {
  .smc_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .smc_list {
    gap: 0.2rem 0;
  }
  .smc_item {
    width: 100%;
    padding: 0.3rem 0.2rem;
  }
}

/* 皮肤管理 */
.Skin_management {
}

.Skin_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.Skin_item {
  width: 49%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.Skin_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.Skin_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75.8%;
}
.Skin_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Skin_show {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.Skin_hide {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.3rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}
/* Chrome, Safari, Edge 滚动条样式 */
.Skin_hide::-webkit-scrollbar {
  width: 2px;
}
.Skin_hide::-webkit-scrollbar-track {
  background: transparent;
}
.Skin_hide::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}
.Skin_hide::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255);
}

.Skin_hideList {
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.Skin_item:hover .Skin_show {
  opacity: 0;
  transform: scale(1.1);
}
.Skin_item:hover .Skin_hide {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 1024px) {
  .Skin_hide {
    padding: 0.2rem;
  }
  .Skin_hide p {
    margin-bottom: 0.1rem;
  }
  .Skin_hideList {
    gap: 0.1rem 0;
  }
  .Skin_hideList li,
  .Skin_hideList span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .Skin_item {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Skin_hide p {
    font-size: 0.14rem;
  }
  .Skin_hideList li,
  .Skin_hideList span {
    font-size: 0.12rem;
  }
}

/* 仪器介绍 */
.Instrument_Introduction {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.Instrument_Introduction::before {
  content: "";
  display: block;
  width: 20vw;
  height: 7.5vw;
  background: url(static/imgs/Instrument_IntroductionRight.webp) no-repeat
    center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.Instrument_Options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 5%;
  border-top: 1px solid rgba(51, 51, 51, 0.24);
}

.Instrument_Options li {
  width: 16%;
  padding-top: 0.36rem;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  font-size: 0.24rem;
}

.Instrument_Options li::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  background-color: var(--i_color);
  transition: all 0.4s ease;
}

.Instrument_Options li:hover::before,
.Instrument_Options .active::before {
  width: 100%;
}
.Instrument_Options li:hover,
.Instrument_Options .active {
  color: var(--i_color);
}

.Instrument_content {
}

.ic_item {
  display: none;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  align-items: center;
  justify-content: space-between;
}

.ic_item.active {
  display: flex;
}

.ici_left {
  width: 62%;
  box-sizing: border-box;
  position: relative;
  padding-top: 0.4rem;
  padding-bottom: 2.5rem;
}
.ici_left::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -16%;
  top: 0;
  background: url(static/imgs/Instrument_txtBa.webp) no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.ici_left h3 {
  display: flex;
  align-items: center;
}
.ici_left h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 0.4rem;
  background-color: var(--i_color);
  margin-right: 0.16rem;
}

.ici_left p {
  width: 69%;
  line-height: 0.36rem;
  height: 1.44rem;
  overflow: auto;
  box-sizing: border-box;
  padding-right: 2%;

}

/*滚动条*/
.ici_left p::-webkit-scrollbar{width:1px; height:1px}
.ici_left p::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); background:#333}
.ici_left p::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); border-radius:0; background:#F1F1F1}


.ici_right {
  width: 38%;
  box-sizing: border-box;
  background: url(static/imgs/Instrument_picBa.webp) no-repeat center center;
  background-size: contain;
  position: relative;
}
.ici_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.ici_right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1440px) {
  .Instrument_Options li {

    font-size: 0.2rem;
  }
}
@media screen and (max-width: 1366px) {
  .ici_left p {
    line-height: 0.25rem;
    height: 1rem;

  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .Instrument_Introduction::before {
    display: none;
  }
  .Instrument_Options li {
    width: 30%;
    font-size: 0.15rem;
    padding-top: 0.1rem;
  }
  .ici_left {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .ici_left,
  .ici_left p {
    width: 100%;
  }
  .ici_left {
    background-color: #fcf8f5;
    padding: 0.3rem 0.2rem;
  }
  .ici_left::before {
    display: none;
  }
  .ici_right {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Instrument_Options {
    gap: 0.1rem 5%;
  }
  .Instrument_Options li {
    width: 47.5%;
    font-size: 0.12rem;
  }
}

/* 抗衰专家小组 */
.Anti-aging_expert_group {
}

.aaeg_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2%;
}

.aargl_item {
  width: 32%;
  box-sizing: border-box;
  cursor: pointer;
}
.aargl_item a{
  display: block;
  width: 100%;
}
.aargl_item_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.aargl_item_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 86.22%;
}
.aargl_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.aargl_item_hide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -2%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 98%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 0;
}

.aargl_item_hide p {
  width: 92%;
  overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
  -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
}

.aargl_item:hover .aargl_item_hide {
  bottom: 0;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .aaeg_list {
    gap: 0.15rem 2%;
  }
  .aargl_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .aargl_item h5 {
    font-size: 0.16rem;
    margin-top: 0.1rem;
  }
  .aargl_item h6 {
    font-size: 0.12rem;
    margin-top: 0.05rem;
  }
  .aargl_item_hide p {
    font-size: 0.12rem;
  }
}


/* home_about */
.home_about_bac{
  box-sizing: border-box;
  padding: 1.3rem 0 1.6rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #FFFEFC;
}
.home_about_bacImg{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65.42%;
  z-index: -1;
}
.home_about{

}
.home_about_box{
  width: 63%;
}
.home_about_h3{
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.home_about_h3 i{
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url('static/imgs/zxy/home_about_h3.png') center no-repeat;
  background-size: contain;
}
.home_about_h3 h3{
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 550;
}
.home_about_box>h4{
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
  margin: 0.25rem 0;
}
.home_about_box>h5{
  font-size: 0.18rem;
  color: #333;
  line-height: 166%;
}
.home_about_box>h6{
  font-size: 0.2rem;
  color: #666;
  font-weight: bold;
  box-sizing: border-box;
  padding-top: 0.2rem;
  position: relative;
  margin-top: 0.6rem;
}
.home_about_box>h6::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3.36rem;
  height: 1px;
  border-top: 1px dashed #D8D8D8;
}
.home_about_ul{
  display: flex;
  gap: 0.2rem;
  margin: 0.2rem 0 0.6rem 0;

}
.home_about_ul li{
  width: 2.64rem;
  border: 1px solid #E8E5DB;
  background: #FAF7ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0.2rem 0.1rem;
  max-width: calc((100% - 0.4rem) / 3);
}

.home_about_ul li img{
  width: 1rem;
  height: auto;

}
.home_about_ul li p{
  font-size: 0.18rem;
  color: #333;
  text-align: center;
  line-height: 166%;
  font-weight: bold;
  margin-top: 0.2rem;
}
.home_about_btn{
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.home_about_video{
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
}
.home_about_video iconify-icon{
  font-size: 0.6rem;
  color: red;
}
.home_about_video p{
  font-size: 0.2rem;
  color: #333;
  font-weight: 550;
  border-bottom: 1px solid #333;
  line-height: 166%;

}



@media screen and (max-width:1600px){
  .home_about_bac{
    padding: 1rem 0;
  }
}
@media screen and (max-width:1440px){
  .home_about_box>h4 {
    font-size: 0.35rem;
    margin: 0.2rem 0;
  }
  .home_about_h3 h3 {
    font-size: 0.18rem;
  }
  .home_about_box>h6 {
    font-size: 0.18rem;
    padding-top: 0.2rem;
    margin-top: 0.4rem;
  }
  .home_about_ul li p {
    font-size: 0.16rem;
  }
  .home_about_bac {
    padding: 0.8rem 0;
  }
  .home_about_ul li img {
    width: 0.8rem;
  }
}
@media screen and (max-width:1200px){
    .home_about_box>h4 {
      font-size: 0.3rem;
      margin: 0.15rem 0;
    }
    .home_about_box>h5 {
      font-size: 0.16rem;
    }
    .home_about_box>h6 {
      font-size: 0.16rem;
      padding-top: 0.1rem;
      margin-top: 0.2rem;
    }
    .home_about_bac {
      padding: 0.6rem 0;
    }
    .home_about_ul li img {
      width: 0.6rem;
    }
}
@media screen and (max-width:1024px){
  .home_about_ul li p {
    font-size: 0.12rem;
  }
  .home_about_box>h4 {
    font-size: 0.22rem;
  }
  .home_about_h3 h3 {
    font-size: 0.14rem;
  }
  .home_about_box>h5 {
    font-size: 0.14rem;
  }
  .home_about_bacImg {
    top: 0;
    bottom: unset;
  }
  .home_about_bac {
    padding: 0.4rem 0;
  }
  .home_about_ul {
    margin: 0.2rem 0;
  }
  .home_about_btn {
    gap: 0.2rem;
  }
  .home_about_video {
    gap: 0.1rem;
  }
  .home_about_video iconify-icon {
    font-size: 0.3rem;
  }
  .home_about_video p {
    font-size: 0.16rem;
  }
  .home_about_ul li img {
    width: 0.5rem;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .home_about_box {
    width: 100%;
  }
  .home_about_bacImg{
    display: none;
  }
  .home_about_ul {
    gap: 0.05rem;
  }
  .home_about_ul li{
    max-width: calc((100% - 0.1rem) / 3);
  }
  .home_about_ul li p {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width:560px){
  .home_about_box>h4{
      font-size: 0.2rem;
  }
  .home_about_ul li {
    padding: 0.1rem 0.04rem;
  }
  .home_about_ul li p {
    font-size: 0.1rem;
  }
  .home_about_box>h5 {
    font-size: 0.12rem;
  }
}
@media screen and (max-width:425px){

}


/* home_projects */
.home_projects_bac{
  box-sizing: border-box;
  padding-top: 1rem;
}
.home_projects{

}






/*  */
.HPro_partner_box{
  margin-top: 0.6rem;
}

.HPro_partner{position:relative}
.HPro_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.HPro_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.HPro_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
  background-color: var(--i_color2);
  box-sizing: border-box;
  padding-top: 1rem;

}
.HPro_box{
  gap: 2%;
  display: flex;
  align-items: flex-start;
}
.HPro_partner_list .img{width:39.375%; box-sizing:border-box; position:relative; overflow:hidden}
.HPro_partner_list .img:before{content:""; display:block; padding-bottom:102.54%}
.HPro_partner_list .img img{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:100%; height:100%; object-fit:cover;
  box-sizing: border-box;
  padding: 0.16rem 0.16rem 0 0.16rem;
  background-color: rgba(255, 255, 255, 0.24);
}


.HPro_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}


.HPro_img{
  width: 0.6rem;
  height: auto;
  object-fit: contain;
}
.HPro_text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.HPro_text h3{
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  line-height: 133%;
  box-sizing: border-box;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}
.HPro_text_dl{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.4rem 0;
}
.HPro_text_dl dt{
  display: flex;
  gap: 0.1rem;
}
.HPro_text_dl dt i{
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  background: url('static/imgs/zxy/HPro.png') center no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.HPro_text_dl dt p{
  font-size: 0.2rem;
  color: #fff;
  font-weight: 550;
}










/* 指示器 */
.HPro_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto
}
.HPro_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.HPro_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.HPro_partner .pt-button-prev, .HPro_partner .pt-button-next{
	position:absolute;
	top:50%;
	transform:translate(0,-50%);
	width:0.5rem;
	height:0.5rem;
	border: 1px solid #fff;
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 0.3s ease;
  z-index: 3;
}
.HPro_partner .pt-button-prev iconify-icon, .HPro_partner .pt-button-next iconify-icon{
	font-size: 0.2rem;
	color: #fff;
	transition: all 0.3s ease;
}
.HPro_partner .pt-button-prev{left:-5%;}
.HPro_partner .pt-button-next{right:-5%;}

.HPro_partner .pt-button-prev:hover, .HPro_partner .pt-button-next:hover{
	background-color: #fff;
}
.HPro_partner .pt-button-prev:hover iconify-icon, .HPro_partner .pt-button-next:hover iconify-icon{
	color: var(--i_color2);
}

.HPro_partner_box:hover .pt-button-next{
  right: 3% !important;
}

@media screen and (max-width:1440px){
  .HPro_img {
    width: 0.5rem;
  }
  .HPro_text h3 {
    font-size: 0.28rem;
  }
  .HPro_text_dl dt p {
    font-size: 0.18rem;
  }
  .HPro_partner_list li {
    padding-top: 0.8rem;
  }
  .home_projects_bac {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width:1200px){
	.HPro_partner .pt-button-prev, .HPro_partner .pt-button-next{display:none}
	.HPro_partner .pt-pagination{display:block}
  .HPro_img {
    width: 0.4rem;
  }
  .HPro_text h3 {
    font-size: 0.26rem;
  }
  .HPro_text_dl dt p {
    font-size: 0.16rem;
  }
  .HPro_partner_list li {
    padding-top: 0.6rem;
  }
  .home_projects_bac {
    padding-top: 0.6rem;
  }
}
@media screen and (max-width:1024px){
  .HPro_text h3 {
    font-size: 0.2rem;
  }
  .HPro_text_dl dt p {
    font-size: 0.14rem;
  }
  .HPro_img {
    width: 0.3rem;
  }
  .HPro_text_dl {
    gap: 0.1rem;
    margin: 0.2rem 0;
  }
  .HPro_text_dl dt i {
    width: 0.1rem;
    height: 0.1rem;
  }
  .HPro_partner_list li {
    padding-top: 0.4rem;
  }
  .HPro_partner_box {
    margin-top: 0.2rem;
  }
  .home_projects_bac {
    padding-top: 0.4rem;
  }
}
@media screen and (max-width:959px){
  .HPro_text h3 {
    padding-bottom: 0.1rem;
  }
  .HPro_img{
    display: none;
  }
}
@media screen and (max-width:767px){
  .HPro_partner_list .img img {
    padding: 0.1rem;
  }
  .HPro_partner_list .img {
    width: 100%;
  }
  .HPro_box{
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .HPro_text {
    width: 100%;
    height: unset;
    padding-bottom: 0.4rem;
  }
  .HPro_partner_list li {
    padding-top: 0.2rem;
  }
}
@media screen and (max-width:560px){
  .HPro_partner .pt-pagination {
    margin: 0.2rem auto;
  }
}


/* home_services */
.home_services_bac{
  box-sizing: border-box;
  padding: 1rem 0;
  background: url('static/imgs/zxy/home_services_bac.webp') center no-repeat;
  background-size: cover;
}
.home_services{

}
.home_services_box{
  margin-top: 0.4rem;
}
.home_services_img{
  position: relative;
}
.home_services_img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.home_services_dl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  box-sizing: border-box;
  padding: 0.6rem 4%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home_services_dl dt{
  font-size: 0.3rem;
  line-height: 160%;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.home_services_ul{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.home_services_ul li{
  width: 25%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.3rem 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.home_services_ul li::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--i_color);
  z-index: -1;
  transition: all 0.7s ease;
}
.home_services_ul li img{
  width: 0.72rem;
}
.home_services_ul li h3{
  font-size: 0.2rem;
  color: #333;
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
  margin-top: 0.2rem;
  transition: all 0.3s ease;
}

.home_services_ul li.current::after{
  height: 120%;
}
.home_services_ul li.current img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.home_services_ul li.current h3{
  color: #fff !important;
}


@media screen and (max-width:1440px){
  .home_services_dl dt {
    font-size: 0.28rem;
  }
  .home_services_ul li h3 {
    font-size: 0.18rem;
    margin-top: 0.15rem;
  }
  .home_services_ul li img {
    width: 0.65rem;
  }
  .home_services_bac{
    padding: 0.8rem 0;
  }
}
@media screen and (max-width:1200px){
  .home_services_dl dt {
    font-size: 0.26rem;
  }
  .home_services_ul li h3 {
    font-size: 0.16rem;
  }
  .home_services_ul li img {
    width: 0.6rem;
  }
  .home_services_bac{
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1024px){
  .home_services_dl dt {
    font-size: 0.2rem;
  }
  .home_services_dl {
    padding: 0.4rem 4%;
  }
  .home_services_ul li h3 {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
  .home_services_ul li img {
    width: 0.45rem;
  }
  .home_services_bac{
    padding: 0.4rem 0;
  }
}
@media screen and (max-width:960px){
  .home_services_dl dt{
    font-size: 0.18rem;
  }
}
@media screen and (max-width:767px){
  .home_services_dl dt{
    font-size: 0.16rem;
  }
  .home_services_ul li.current::after {
    height: 100%;
  }
  .home_services_ul li {
    width: 50%;
    padding: 0.2rem 2%;
  }
  .home_services_img img{
    height: 3.5rem;
  }
  .home_services_dl dt {
    font-size: 0.14rem;
  }
}
@media screen and (max-width:560px){
  .home_services_img img{
    height: 3rem;
  }
  .home_services_dl {
    padding: 0.2rem 4%;
    width: 90%;
  }
  .home_services_box{
    margin-top: 0.2rem;
  }
}
@media screen and (max-width:425px){

}






/* eject videos */
.vd_box{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .5);
	z-index: 999999;
}
.vd_box_area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2014;
	width: 60%;
	max-height: 90%;

}
.vd_box_area::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_area {
		width: 80%;
	}
	.close_v::before {
		font-size: 0.4rem;
	}
}
@media screen and (max-width:768px) {
	.vd_box_area {
		width: 88%;
	}
	.close_v {
		top: -.15rem;
		right: -.15rem;
		width: 0.3rem;
		height: 0.3rem;
	}
	.close_v::before {
		font-size: 0.3rem;
	}
}


/* home_env */
.home_env_bac{
  background-color: #F7F7F7;
  position: relative;
  z-index: 2;
  padding: 0.6rem 0;
  box-sizing: border-box;
  overflow: hidden;
}
.home_env_bacImg{
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.home_env{

}
.home_env_box{

}
.home_env_tit{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 0.4rem;
  box-sizing: border-box;
}
.home_env_titBox{
  width: 57%;
}
.home_env_btn{
  margin-top: 0.4rem;
}
.home_env_btn a{
  display: inline-block;
  box-sizing: border-box;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--i_color);
}
.home_env_flex{
  display: flex;
  gap: 0.15rem;
}
.home_env_flex p{
  font-size: 0.18rem;
  color: var(--i_color);
}
.home_env_flex iconify-icon{
  font-size: 0.2rem;
  color: var(--i_color);
}


/*  */
.env_partner_box{}

.env_partner{position:relative}
.env_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.env_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.env_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}
.env_partner_list li a{
  display: block;
  width: 100%;
  background-color: #fff;
}
.env_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.env_partner_list .img:before{content:""; display:block; padding-bottom:63.6%}
.env_partner_list .img img{ position:absolute;display: block; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}


.env_partner_list .img img{-webkit-transition:all .5s ease; -moz-transition:all .5s ease; -ms-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease}

.env_text{
  box-sizing: border-box;
  padding: 0.3rem 4%;
  overflow: hidden;

}
.env_text h3{
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.env_text h4{
  font-size: 0.18rem;
  color: #333;
  text-align: center;
  box-sizing: border-box;
  padding: 0.2rem 0;
  position: relative;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.env_text h5::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 1px;
  background-color: #E5E5E5;
}
.env_text h5{
  font-size: 0.18rem;
  color: #666;
  box-sizing: border-box;
  padding-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.env_text h5 iconify-icon{
  font-size: 0.25rem;
  color: #666;
  transition: all 0.3s ease;
}

.env_partner_list li a:hover h3{
  color: var(--i_color);
}
.env_partner_list li a:hover h5{
  color: var(--i_color);
}
.env_partner_list li a:hover h5 iconify-icon{
  color: var(--i_color);
}
/* 指示器 */
.env_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.env_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.env_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}




/* 左右箭头 */
.home_env_LR{
  display: flex;
  gap: 0.4rem;
}
.home_env_LR .env-button-prev, .home_env_LR .env-button-next{
	width:0.5rem;
	height:0.5rem;
	border: 1px solid #fff;
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0%;
	transition: all 0.3s ease;
}
.home_env_LR .env-button-prev iconify-icon, .home_env_LR .env-button-next iconify-icon{
	font-size: 0.24rem;
	color: #fff;
	transition: all 0.3s ease;
}

.home_env_LR .env-button-prev:hover, .home_env_LR .env-button-next:hover{
	background-color: #fff;
}
.home_env_LR .env-button-prev:hover iconify-icon, .home_env_LR .env-button-next:hover iconify-icon{
	color: var(--i_color);
}

@media screen and (max-width:1440px){
  .env_text h3 {
    font-size: 0.22rem;
  }
  .env_text h4 {
    font-size: 0.16rem;
  }

}
@media screen and (max-width:1200px){
  .env_text h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width:1024px){
  .home_env_LR{display:none}
	.env_partner .pt-pagination{display:block}
  .env_text h4 {
    font-size: 0.14rem;
    padding: 0.15rem 0;
  }
  .env_text h5{
    font-size: 0.14rem;
    padding-top: 0.15rem;
    gap: 0.1rem;
  }
  .env_text h5 iconify-icon{
    font-size: 0.18rem;
  }
  .env_text h3 {
    font-size: 0.16rem;
  }
  .env_text {
    padding: 0.2rem 4%;
  }
  .home_env_bacImg{
    display: none;
  }
  .home_env_titBox {
    width: 100%;
  }
  .home_env_btn{
    margin-top: 0.2rem;
  }
  .home_env_btn a{
    padding-bottom: 0.1rem;
  }
  .home_env_flex{
    gap: 0.1rem;
  }
  .home_env_flex p{
    font-size: 0.16rem;
  }
  .home_env_flex iconify-icon{
    font-size: 0.18rem;
  }
}
@media screen and (max-width:959px){
  .home_env_flex p{
    font-size: 0.14rem;
  }
  .home_env_flex iconify-icon{
    font-size: 0.16rem;
  }
}
@media screen and (max-width:767px){
  .home_env_bac {
    padding: 0.4rem 0;
  }
  .home_env_tit {
    padding-bottom: 0.2rem;
  }
}
@media screen and (max-width:560px){
  .env_text h4 {
    font-size: 0.12rem;
    padding: 0.1rem 0;
  }
  .env_text h3 {
    font-size: 0.14rem;
  }
  .env_text h5{
    font-size: 0.12rem;
    padding-top: 0.1rem;
  }
  .env_text h5 iconify-icon{
    font-size: 0.16rem;
  }
  .titleBox p{
    font-size: 12px;
    margin-top: 0.1rem;
  }
}

/* home_contact */
.home_contact_bac{
  box-sizing: border-box;
  padding: 1rem 0;
}
.home_contact{
  display: flex;
  flex-wrap: wrap;

}
.home_contact_left{
  width: 53.625%;
  box-sizing: border-box;
  padding-right: 4%;
}
.home_contact_right{
  width: 46.375%;
}
.home_contact_right img{
  width: 100%;
  height: auto;
}
.home_contact_left h3{
  font-size: 0.24rem;
  color: #333;
  font-weight: bold;

}
.home_contact_tit{
  display: flex;
  margin: 0.15rem 0;
}
.home_contact_tit h4{
  font-size: 0.4rem;
  color: var(--i_color);
  font-weight: bold;
  display: flex;
  align-items: flex-end;
}
.home_contact_tit h4 span{
  font-size: 0.2rem;
  color: var(--i_color);
}
.home_contact_tit h5{
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
}
.home_contact_left h6{
  font-size: 0.18rem;
  color: #333;
  line-height: 166%;
}
.home_contact_ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-top: 0.4rem;
}
.home_contact_ul li{
  width: calc((100% - 0.8rem) / 2);
}
.home_contact_ul li img{
  width: 0.7rem;
}
.home_contact_ul li p{
  font-size: 0.18rem;
  line-height: 166%;
  color: #3D3D3D;
  font-weight: bold;
  margin: 0.2rem 0;
}
.home_contact_ul li span{
  display: block;
  font-size: 0.18rem;
  color: #666;
  line-height: 166%;

}



@media screen and (max-width:1440px){
  .home_contact_bac{
    padding: 0.8rem 0;
  }
  .home_contact_tit h4{
    font-size: 0.35rem;
  }
  .home_contact_tit h4 span{
    font-size: 0.18rem;
  }
  .home_contact_tit h5{
    font-size: 0.35rem;
  }
  .home_contact_left h6 {
    font-size: 0.16rem;
  }
  .home_contact_ul {
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  .home_contact_ul li {
    width: calc((100% - 0.4rem) / 2);
  }
  .home_contact_ul li img {
    width: 0.6rem;
  }
  .home_contact_ul li p {
    font-size: 0.16rem;
    margin: 0.15rem 0;
  }
  .home_contact_ul li span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width:1200px){
  .home_contact_bac{
    padding: 0.6rem 0;
  }
  .home_contact_tit h4{
    font-size: 0.3rem;
  }
  .home_contact_tit h4 span{
    font-size: 0.16rem;
  }
  .home_contact_tit h5{
    font-size: 0.3rem;
  }
  .home_contact_ul li img {
    width: 0.5rem;
  }


}
@media screen and (max-width:1024px){
  .home_contact_left h3 {
    font-size: 0.2rem;
  }
  .home_contact_tit h4{
    font-size: 0.25rem;
  }
  .home_contact_tit h4 span{
    font-size: 0.14rem;
  }
  .home_contact_tit h5{
    font-size: 0.25rem;
  }
  .home_contact_left h6 {
    font-size: 0.14rem;
  }
  .home_contact_ul {
    gap: 0.2rem;
    margin-top: 0.2rem;
  }
  .home_contact_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .home_contact_ul li img {
    width: 0.4rem;
  }
  .home_contact_ul li p {
    font-size: 0.14rem;
    margin: 0.1rem 0;
  }
  .home_contact_ul li span {
    font-size: 0.14rem;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .home_contact_bac{
    padding: 0.4rem 0;
  }
  .home_contact_tit h4{
    font-size: 0.2rem;
  }
  .home_contact_tit h5{
    font-size: 0.2rem;
  }
  .home_contact_left h6 {
    font-size: 0.12rem;
  }
  .home_contact_left {
    width: 100%;
    padding-right: 0%;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width:560px){
  .home_contact_right {
    width: 100%;
  }
  .home_contact_ul li {
    width: 100%;
  }
}
@media screen and (max-width:425px){

}


/* home_form */
.home_form_bac{
  box-sizing: border-box;
  padding: 0.8rem 0;
  background-color: var(--i_color2);
}
.home_form{
  display: flex;
  flex-wrap: wrap;
}
.home_form_left{
  width: 53.75%;
}
.home_form_map{
  width: 100%;
  height: 5.8rem;
}

.home_form_map #simpleMap,
.home_form_map .fluid-width-video-wrapper,
.home_form_map iframe {
        width: 100%;
        height: 100% !important;
}
.home_form_ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  margin-top: 0.45rem;
}
.home_form_ul li{
  width: 50%;
}
.home_form_ul li:first-child{
  width: 100%;
}
.home_form_nr{
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.home_form_nr iconify-icon{
  font-size: 0.22rem;
  color: #fff;
}
.home_form_nr p{
  font-size: 0.2rem;
  color: #fff;

}
.home_form_ul li a{
  font-size: 0.2rem;
  line-height: 150%;
  color: #FFF;
  font-weight: 550;
  display: block;
  margin-top: 0.1rem;
}
.home_form_right{
  width: 46.25%;
  box-sizing: border-box;
  padding-left: 4%;
}
.home_form_right>h3{
  font-size: 0.24rem;
  color: #fff;
  line-height: 150%;
  font-weight: bold;
}
.home_form_right>h4{
  line-height: 155%;
  font-size: 0.18rem;
  color: #fff;
  margin: 0.4rem 0;
}




@media screen and (max-width:1440px){
  .home_form_ul li a {
    font-size: 0.18rem;
  }
  .home_form_ul {
    gap: 0.3rem 0;
    margin-top: 0.4rem;
  }
  .home_form_nr p {
    font-size: 0.18rem;
  }
  .home_form_nr iconify-icon {
    font-size: 0.2rem;
  }
  .home_form_right>h3 {
    font-size: 0.22rem;
  }
  .home_form_right>h4 {
    font-size: 0.16rem;
    margin: 0.3rem 0;
  }
  .home_form_map{
    height: 5rem;
  }
}
@media screen and (max-width:1200px){
  .home_form_ul li a {
    font-size: 0.16rem;
  }
  .home_form_right>h3 {
    font-size: 0.2rem;
  }
  .home_form_right>h4 {
    font-size: 0.14rem;
    margin: 0.2rem 0 ;
  }
  .home_form_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1024px){
  .home_form_ul li a {
    font-size: 0.14rem;
  }
  .home_form_ul {
    gap: 0.2rem 0;
    margin-top: 0.2rem;
  }
  .home_form_nr p {
    font-size: 0.16rem;
  }
  .home_form_right>h3 {
    font-size: 0.18rem;
  }
  .home_form_map{
    height: 4rem;
  }
}
@media screen and (max-width:960px){
  .home_form_left{
    width: 100%;
  }
  .home_form_right{
    width: 100%;
    margin-bottom: 0.4rem;
    padding-left: 0;
  }
  .home_form {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width:767px){
  .home_form_bac {
    padding: 0.4rem 0;
  }
}
@media screen and (max-width:560px){
  .home_form_map{
    height: 3rem;
  }
  .home_form_ul li{
    width: 100%;
  }
}
@media screen and (max-width:425px){

}






#wpforms-67{--input_font_size:0.16rem; --input_height:0.5rem}
#wpforms-67{width:100%; margin:0 auto; padding:0}
#wpforms-form-67{width:100%; overflow:hidden}


#wpforms-67 input, #wpforms-67 button{margin:0; padding:0; border:none; background:none}
#wpforms-67 .wpforms-field{padding:0; margin:0}
#wpforms-67 .wpforms-error-container{line-height:16px}
#wpforms-67 .wpforms-field-container{width:100%; display:-webkit-flex; display:flex; flex-wrap:wrap; overflow:hidden}
#wpforms-67 .wpforms-submit-container{


}
#wpforms-67 .wpforms-field-container{
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 0.2rem;
}

#wpforms-67-field_2-container,
#wpforms-67-field_3-container{
  width: calc((100% - 0.2rem) / 2) !important;
}


#wpforms-67 .wpforms-field{
	position: relative;
}
#wpforms-67 .wpforms-field-label{
	font-size: 0rem;
	color: #fff;
	display: block;
	padding-left: 0.1rem;
  font-weight: 300;
}
#wpforms-67 .wpforms-field-label span{
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	left: 0rem;
	font-size: 0.14rem;
  color: #fff;
}
#wpforms-67 .wpforms-error{
	color: #fff;
}
#wpforms-67 .wpforms-field{width:100%;margin-bottom: 0.3rem; background:transparent; overflow:hidden}

#wpforms-67-field_4-container .wpforms-field-label{
  font-size: 0.18rem !important;
  margin-bottom: 0.1rem;
}

#wpforms-67-field_4-container .wpforms-field-label span{
	top: 0.06rem;
  transform: unset !important;
}






#wpforms-67 input{height:var(--input_height)}
#wpforms-67 textarea{height:1.6rem}
#wpforms-67 input, #wpforms-67 textarea{
	width:100%;border: 0; max-width:100%!important; font-size:var(--input_font_size);
	color:#fff;
	box-sizing:border-box; line-height:var(--input_height); padding:0 10px;
	border-radius: 0rem;
	border-bottom: 1px solid #fff;
}
#wpforms-67 textarea{
	line-height: 160%;
	padding:10px;
}


#wpforms-67 input::-webkit-input-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 input::-moz-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 input::-moz-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 input::-ms-input-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 textarea::-webkit-input-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 textarea::-moz-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 textarea::-moz-placeholder{color:#fff; font-size:var(--input_font_size)}
#wpforms-67 textarea::-ms-input-placeholder{color:#fff; font-size:var(--input_font_size)}



#wpforms-67 .wpforms-submit-container button{
	overflow: hidden;width:100%; height:0.5rem;
	font-size:0.16rem; color:#FFF;
	font-weight: bold;
	display: block;
	cursor:pointer; text-transform:capitalize;
	position:relative; z-index:2;
	background-color: var(--i_color);
	border-radius: 0rem;
	transition: all 0.3s ease;
}
#wpforms-67 .wpforms-submit-container img{position:absolute; top:50%; transform:translate(0,-50%); right:4px}
#wpforms-67 .wpforms-submit-container button:hover{
	background-color: #333;
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1366px){

}
@media screen and (max-width:1200px){


}
@media screen and (max-width:1024px){
	#wpforms-67-field_2-container,
  #wpforms-67-field_3-container{
    width:100% !important;
  }
  #wpforms-67{--input_font_size:0.14rem; --input_height:0.4rem}
  #wpforms-67-field_4-container .wpforms-field-label {
    font-size: 0.14rem !important;
  }
  #wpforms-67 textarea{height:1rem}
  #wpforms-67 .wpforms-submit-container button {
    height: 0.4rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
	#wpforms-67{--input_height:0.5rem}
	#wpforms-67 .wpforms-field{margin-bottom:0.2rem; }
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* footer */
.footer_bac{
  background: url('static/imgs/zxy/footer_bac.webp') center no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
.footer{

}
.footer_top{
  box-sizing: border-box;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_top img{
  height: 0.6rem;
}
.footer_ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.footer_ul ul{
  display: none;
}
.footer_ul li{

}
.footer_ul li a{
  font-size: 0.2rem;
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
  position: relative;
}
.footer_ul li a::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.footer_ul li a:hover::after{
  width: 100%;
  right: auto;
  left: 0;
}

.footer_box{
  display: flex;
  box-sizing: border-box;
  padding: 0.6rem 0;
}
.footer_1{
  width: 28.75%;
  box-sizing: border-box;
  padding-right: 4%;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}
.footer_1 img{
  width: 100%;
  height: auto;
}
.footer_1 h3{
  font-size: 0.18rem;
  color: #fff;
  line-height: 166%;
  margin: 0.4rem 0;
}
.footer_share{
  display: flex;
  gap: 0.2rem;
}
.footer_share dt{

}
.footer_share dt a{
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.footer_share dt a iconify-icon{
  font-size: 0.22rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer_share dt a:hover{
  background-color: #fff;
  transform: translateY(-5px);
}
.footer_share dt a:hover iconify-icon{
  color: var(--i_color);
}
.footer_2{
  width: 25%;
  box-sizing: border-box;
  padding: 0 2% 0 4%;
}
.footer_h3{
  font-size: 0.26rem;
  color: var(--i_color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.footer_nn_ul{
  display: flex;
  overflow: hidden;
  gap: 0.2rem;
  flex-direction: column;
}
.footer_nn_ul li{

}
.footer_nn_ul li a{
  font-size: 0.18rem;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.footer_nn_ul li a::after{
  content: '';
  position: absolute;
  left: -0.22rem;
  top: 45%;
  transform: translateY(-50%);
  width: 0.16rem;
  height: 0.16rem;
  background: url('static/imgs/zxy/footer_s.png');
  opacity: 0;
  transition: all 0.3s ease;
}
.footer_nn_ul li a:hover{
  padding-left: 0.22rem;
  color: var(--i_color);
}
.footer_nn_ul li a:hover::after{
  opacity: 1;
  left: 0;
}
.footer_3{
  width: 22.5%;
  box-sizing: border-box;
  padding-right: 2%;
}
.footer_4{
  width: 23.75%;
}
.footer_contact{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer_contact li{
  display: flex;
  gap: 0.1rem;
}
.footer_contact li iconify-icon{
  font-size: 0.26rem;
  color: #FFF;
  flex-shrink: 0;
}
.footer_contact li a{
  font-size: 0.18rem;
  color: #fff;
  line-height: 155%;
  transition: all 0.3s ease;
}
.footer_contact li a:hover{
  color: var(--i_color);
}
.footer_down{
  box-sizing: border-box;
  padding: 0.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.footer_down p{
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer_down p a{
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.footer_down p a:hover{
  color: #fff;
}




@media screen and (max-width:1440px){
  .footer_h3 {
    font-size: 0.24rem;
    margin-bottom: 0.25rem;
  }
  .footer_ul {
    gap: 0.5rem;
  }
  .footer_ul li a {
    font-size: 0.2rem;
  }
  .footer_top img {
    height: 0.55rem;
  }
}
@media screen and (max-width:1200px){
  .footer_h3 {
    font-size: 0.22rem;
  }
  .footer_ul li a {
    font-size: 0.18rem;
  }
  .footer_top img {
    height: 0.5rem;
  }
}
@media screen and (max-width:1024px){
  .footer_2,.footer_3,.footer_4{
    display: none;
  }
  .footer_1{
    width: 100%;
    padding-right: 0;
    border-right: 1px solid transparent;
  }
  .footer_top img {
    height: 0.4rem;
  }
  .footer_ul{
    display: none;
  }
  .footer_1 img{
    max-width: 100%;
    width: 4rem;
  }
  .footer_top {
    padding: 0.3rem 0;
  }
  .footer_box {
    padding: 0.3rem 0;
  }
  .footer_1 h3 {
    font-size: 0.16rem;
    margin: 0.25rem 0;
  }
  .footer_down p,
  .footer_down p a {
    font-size: 0.14rem;
  }
  .footer_share dt a{
    width: 0.45rem;
    height: 0.45rem;
  }
  .footer_share dt a iconify-icon{
    font-size: 0.2rem;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .footer_down{
    padding: 0.25rem 0 0.55rem 0;
  }
  .footer_1 h3 {
    font-size: 0.14rem;
    margin: 0.2rem 0;
  }
  .footer_down p,
  .footer_down p a {
    font-size: 0.12rem;
  }
}
@media screen and (max-width:560px){
  .footer_share dt a{
    width: 0.4rem;
    height: 0.4rem;
  }
  .footer_share dt a iconify-icon{
    font-size: 0.18rem;
  }
}
@media screen and (max-width:425px){

}

/* project_core */
.project_core_bac{
  box-sizing: border-box;
  padding: 0.6rem 0 0.8rem 0;
  position: relative;
  z-index: 2;
}
.project_core_bac::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.29rem;
  background-color: #FCF8F5;
  z-index: -1;
}
.project_core{

}
.project_core_box{
  display: flex;
  flex-wrap: wrap;
  margin: 0.4rem 0 0.6rem 0;
  align-items: center;
}
.project_core_left{
  width: 54.75%;
  box-sizing: border-box;
  padding-right: 4%;
}
.project_core_left h3{
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
}
.project_core_left h3 span{
  font-size: 0.2rem;
  color: #666;
  font-weight: 300;
}
.project_core_left h4{
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 550;
  text-transform: capitalize;
  margin-top: 0.1rem;
}
.project_core_ul{
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.project_core_ul li{
  display: flex;
  gap: 0.15rem;
  width: 100%;
}
.project_core_ul li i{
  display: block;
  width: 0.5rem;
  height: 1px;
  background-color: #333;
  flex-shrink: 0;
  margin-top: 0.13rem;
}
.project_core_ul li p{
  font-size: 0.2rem;
  line-height: 150%;
  color: #333;
  font-weight: 550;
}
.project_core_right{
  width: 45.25%;
  position: relative;
}
.project_core_right img{
  width: 100%;
}
.project_core_dl{
  position: absolute;
  bottom: 0.4rem;
  width: calc(100% - 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
}
.project_core_dl dt{
  font-size: 0.16rem;
  line-height: 180%;
  color: #333;
  font-weight: 550;
  box-sizing: border-box;
  padding: 0 0.2rem;
  width: 50%;
  text-align: center;
}
.project_core_dl dt:first-child{
  border-right: 1px dashed var(--i_color);
}

.titleBox h3{
  text-transform: capitalize;
}


@media screen and (max-width:1440px){
  .project_core_ul {
    margin-top: 0.8rem;
    gap: 0.3rem;
  }
  .project_core_left h3 {
    font-size: 0.35rem;
  }
  .project_core_left h3 span {
    font-size: 0.18rem;
  }
  .project_core_ul li p {
    font-size: 0.18rem;
  }
  .project_core_ul li i {
    width: 0.4rem;
  }
}
@media screen and (max-width:1200px){
  .project_core_ul {
    margin-top: 0.6rem;
    gap: 0.2rem;
  }
  .project_core_left h3 {
    font-size: 0.3rem;
  }
  .project_core_left h3 span {
    font-size: 0.16rem;
  }
  .project_core_ul li p {
    font-size: 0.16rem;
  }
  .project_core_bac{
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1024px){
  .project_core_left h3 span {
    font-size: 0.14rem;
  }
  .project_core_ul li i {
    width: 0.25rem;
  }
  .project_core_ul {
    margin-top: 0.25rem;
    gap: 0.15rem;
  }
  .project_core_ul li p {
    font-size: 0.14rem;
  }
  .project_core_left h3 {
    font-size: 0.25rem;
  }
  .project_core_left h4 {
    font-size: 0.16rem;
  }
  .project_core_dl dt {
    font-size: 0.14rem;
    padding: 0 0.1rem;
    line-height: 150%;
  }
}
@media screen and (max-width:960px){
  .project_core_left {
    width: 100%;
    margin-bottom: 0.2rem;
    padding-right: 0%;
  }
  .project_core_right {
    width: 50%;
  }
  .project_core_left h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width:767px){
  .project_core_right {
    width: 100%;
  }
  .project_core_box {
    margin: 0.4rem 0;
  }
  .project_core_bac{
    padding: 0.4rem 0;
  }
}
@media screen and (max-width:560px){
  .project_core_dl {
      bottom: 0.2rem;
      width: calc(100% - 0.4rem);
  }
  .project_core_dl dt {
    font-size: 0.12rem;
  }
}
@media screen and (max-width:425px){

}


/* project_region */
.project_region_bac{

}
.project_region{

}
.project_region_box{
  background-color: #AE7138;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  align-items: center;
}
.project_region_left{
  width: 51.25%;
  box-sizing: border-box;
  padding-right: 4%;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project_region_left>h3{
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}
.project_region_left>h4{
  line-height: 150%;
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  padding: 0.2rem 0 0.3rem 0;
  margin-bottom: 0.3rem;
}
.project_region_right{
  width: 48.75%;
}
.project_region_right img{
  width: 100%;
  height: auto;
  display: block;
}



@media screen and (max-width:1440px){
  .project_region_left>h4 {
    font-size: 0.28rem;
    padding: 0.2rem 0;
    margin-bottom: 0.2rem;
  }
  .project_region_left>h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width:1200px){
  .project_region_left>h4 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width:1024px){
  .project_region_left>h4 {
    font-size: 0.2rem;
  }
  .project_region_left>h3 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .project_region_left>h3 {
    font-size: 0.14rem;
  }
  .project_region_left {
    width: 100%;
    padding-right: 4%;
  }
  .project_region_box {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width:560px){
  .project_region_right {
    width: 100%;
  }
}
@media screen and (max-width:425px){

}










/*  */
.region_partner_box{

}

.region_partner{position:relative}
.region_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.region_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1}
.region_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
}

.region_partner_list li h5{
  font-size: 0.24rem;
  color: #fff;
  font-weight: bold;

}
.region_partner_list li h6{
  font-size: 0.18rem;
  color: #fff;
  line-height: 166%;
  margin-top: 0.2rem;
}










/* 指示器 */
.region_partner .pt-pagination{
	display:none;
	text-align:center;
	margin:0.4rem auto 0
}
.region_partner .pt-pagination .swiper-pagination-bullet{
	width:0.12rem;
	height:0.12rem;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	cursor:pointer;
	display:inline-block;
	margin:0 0.05rem;
	background:var(--i_color);
	border-radius:2px;
	opacity: 1;
	outline:none
}
.region_partner .pt-pagination .swiper-pagination-bullet-active{
	position:relative;
	background:transparent;
}

/* 左右箭头 */
.region_LR{
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}
.region_partner .pt-button-prev, .region_partner .pt-button-next{
	width:0.5rem;
	height:0.5rem;
	border: 1px solid #fff;
	box-sizing: border-box;
	z-index:999;
	cursor:pointer;
	outline:none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0%;
	transition: all 0.3s ease;
}
.region_partner .pt-button-prev iconify-icon, .region_partner .pt-button-next iconify-icon{
	font-size: 0.25rem;
	color: #fff;
	transition: all 0.3s ease;
}

.region_partner .pt-button-prev:hover, .region_partner .pt-button-next:hover{
	background-color: #fff;
}
.region_partner .pt-button-prev:hover iconify-icon, .region_partner .pt-button-next:hover iconify-icon{
	color: var(--i_color2);
}

@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){
	.region_LR{display:none}
	.region_partner .pt-pagination{display:block}
}
@media screen and (max-width:1024px){
  .region_partner_list li h5 {
    font-size: 0.2rem;
  }
  .region_partner_list li h6 {
    font-size: 0.14rem;
    margin-top: 0.15rem;
  }
}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){
  .region_partner_list li h6 {
    font-size: 0.12rem;
    margin-top: 0.1rem;
  }
  .region_partner_list li h5 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width:560px){

}

/* project_ori */
.project_ori_bac{
  margin: 1rem 0;
  background: url('static/imgs/zxy/project_ori_bac.webp') center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 0.8rem 0;
}
.project_ori{
  position: relative;
  z-index: 2;
}
.project_ori_img{
  width: 46.5%;
  height: auto;
  display: block;
  object-fit: cover;
}
.project_ori_box{
  width: 63.1875%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 0%;
  right: 0;
  z-index: 2;
}
.project_ori_box>img{
  height: 0.84rem;
  max-width: 100%;
}
.project_ori_all{
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  background-color: #0C0500;

}
.project_ori_all h3{
  font-size: 0.2rem;
  color: #fff;
  font-weight: bold;
}
.project_ori_all h4{
  font-size: 0.3rem;
  color: #fff;
  font-weight: 550;
  margin: 0.2rem 0 0.4rem 0;
}
.project_ori_tit{
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.15rem;
  margin-bottom: 0.45rem;
}
.project_ori_tit li{
  width: calc((100% - 0.45rem) / 4);
  background-color: rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  padding: 0.15rem 2%;
  text-align: center;
  font-size: 0.18rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}
.project_ori_tit li::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.16rem;
  width: 0.15rem;
  height: 0.16rem;
  background: url('static/imgs/zxy/san.png') center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.3s ease;
}

.project_ori_tit li.current{
  background-color: var(--i_color);
}
.project_ori_tit li.current::after{
  opacity: 1;
}
.project_ori_dl{

}
.project_ori_dl dt{

}
.project_ori_dl dt h5{
  font-size: 0.18rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.project_ori_ul{
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 1.3rem;
}
.project_ori_ul li{
  display: flex;
  gap: 0.1rem;
}
.project_ori_ul li i{
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: url('static/imgs/zxy/yes.png') center no-repeat;
  background-size: contain;
}
.project_ori_ul li p{
  font-size: 0.2rem;
  color: #fff;
  font-weight: bold;
}




@media screen and (max-width:1440px){
  .project_ori_box>img {
    height: 0.8rem;
  }
  .project_ori_all h4 {
    font-size: 0.25rem;
    margin: 0.15rem 0 0.3rem 0;
  }
  .project_ori_tit li {
    padding: 0.12rem 2%;
    font-size: 0.16rem;
  }
  .project_ori_ul li i {
    width: 0.25rem;
    height: 0.25rem;
  }
  .project_ori_ul li p {
    font-size: 0.18rem;
  }
  .project_ori_all {
    padding: 0.4rem;
  }
  .project_ori_bac {
    margin: 0.8rem 0;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1200px){
  .project_ori_box>img {
    height: 0.7rem;
  }
  .project_ori_bac {
    margin: 0.6rem 0;
    padding: 0.4rem 0;
  }
}
@media screen and (max-width:1024px){
  .project_ori_box>img {
    height: 0.5rem;
  }
  .project_ori_all h4 {
    font-size: 0.2rem;
    margin: 0.1rem 0 0.2rem 0;
  }
  .project_ori_ul li i {
    width: 0.2rem;
    height: 0.2rem;
  }
  .project_ori_ul li p {
    font-size: 0.14rem;
  }
  .project_ori_box {
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){
  .project_ori_tit li {
    font-size: 0.12rem;
  }
  .project_ori_tit li::after{
    display: none;
  }
  .project_ori_img{
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .project_ori_all {
    padding: 0.4rem 2%;
  }
  .project_ori_all h4 {
    font-size: 0.16rem;
  }
  .project_ori_tit {
    margin-bottom: 0.25rem;
  }
  .project_ori_tit li {
    width: calc((100% - 0.15rem) / 2);
  }
  .project_ori_ul{
    min-height: unset;
  }
  .project_ori_bac {
    margin: 0.4rem 0;
  }
  .project_ori_tit {
    gap:0.15rem;
  }
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* project_safe */
.project_safe_bac{
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding-top: 0.6rem;
}
.project_safeImg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: -1;
}
.project_safe{

}
.project_safe .titleBox h3,
.project_safe .titleBox p{
  color: #fff !important;
}
.project_safe_box{
  display: flex;
  background-color: #fff;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.project_safe_left{
  width: 51%;
  box-sizing: border-box;
  padding: 0.4rem 4%;
}
.project_safe_left h3{
  font-size: 0.36rem;
  font-weight: 550;
  color: var(--i_color2);
  line-height: 144%;
  margin-bottom: 0.6rem;
}
.project_safe_tit{
  display: flex;
  gap: 0.5rem;
  box-sizing: border-box;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--i_color2);
}
.project_safe_tit li{
  font-size: 0.24rem;
  font-weight: bold;
  color: #666;
}
.project_safe_tit li.current{
  color: #333;
}
.project_safe_dl{

}
.project_safe_dl dt{

}
.project_safe_ul{
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
}
.project_safe_ul li{
  display: flex;
  gap: 0.1rem;
}
.project_safe_ul li i{
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: url('static/imgs/zxy/yes.png') center no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.project_safe_ul li p{
  font-size: 0.2rem;
  color: #333;
  font-weight: bold;
  line-height: 150%;
}
.project_safe_right{
  width: 49%;
}
.project_safe_right img{
  display: block;
  width: 100%;
  height: auto;
}



@media screen and (max-width:1440px){
  .project_safe_left h3 {
    font-size: 0.28rem;
    margin-bottom: 0.4rem;
  }
  .project_safe_tit li {
    font-size: 0.2rem;
  }
  .project_safe_ul li i {
    width: 0.25rem;
    height: 0.25rem;
  }
  .project_safe_ul li p {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:1200px){
  .project_safe_left h3 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width:1024px){
  .project_safe_left h3 {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .project_safe_tit li {
    font-size: 0.16rem;
  }
  .project_safe_ul li i {
    width: 0.2rem;
    height: 0.2rem;
  }
  .project_safe_ul li p {
    font-size: 0.14rem;
  }
  .project_safe_tit {
    gap: 0.4rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .project_safe_bac {
    padding-top: 0.4rem;
  }
  .project_safe_left {
    padding: 0.25rem 3%;
  }
  .project_safe_box {
    margin-top: 0.2rem;
  }
  .project_safeImg {
    height: 50%;
    object-fit: cover;
  }
}
@media screen and (max-width:960px){
  .project_safe_left h3 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width:767px){
  .project_safe_left {
    width: 100%;
  }
  .project_safe_right{
    width: 100%;
  }
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* project_rhin */
.project_rhin_bac{
  box-sizing: border-box;
  padding: 1rem 0;
}
.project_rhin{

}
.project_rhin_ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.project_rhin_ul li{
  width: calc((100% - 0.3rem) / 2);
}
.project_rhin_img{
  position: relative;
}
.project_rhin_img::after{
  content: '';
  display: block;
  padding-bottom: 75.67%;
}
.project_rhin_img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project_rhin_text{
  margin-top: 0.3rem;
  box-sizing: border-box;
  padding:  0 2%;
}
.project_rhin_text h3{
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
}
.project_rhin_text h4{
  font-size: 0.18rem;
  color: #666;
  line-height: 166%;
  margin-top: 0.2rem;
  text-align: center;
}


@media screen and (max-width:1440px){
  .project_rhin_bac {
    padding: 0.8rem 0;
  }
  .project_rhin_text h3 {
    font-size: 0.25rem;
  }
  .project_rhin_text h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width:1200px){
  .project_rhin_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width:1024px){
  .project_rhin_text h3 {
    font-size: 0.2rem;
  }
  .project_rhin_text h4 {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width:960px){
  .project_rhin_ul li{
    width: 100%;
  }
}
@media screen and (max-width:767px){
  .project_rhin_bac {
    padding: 0.4rem 0;
  }
  .project_rhin_text h3 {
    font-size: 0.16rem;
  }
  .project_rhin_ul {
    gap: 0.2rem;
    margin-top: 0.2rem;
  }
  .project_rhin_text h4 {
    font-size: 0.12rem;
  }
}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}


/* project_eastern */
.project_eastern_bac{

}
.project_eastern{

}
.project_eastern_h3{
  font-size: 0.44rem;
  color: #333;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0.4rem;
}
.project_eastern_h3 span{
  font-size: 0.3rem;
  color: var(--i_color);
  font-weight: bold;
}



@media screen and (max-width:1440px){
  .project_eastern_h3{
    font-size: 0.4rem;
  }
  .project_eastern_h3 span{
    font-size: 0.25rem;
  }
}
@media screen and (max-width:1200px){
  .project_eastern_h3{
    font-size: 0.3rem;
  }
  .project_eastern_h3 span{
    font-size: 0.22rem;
  }
}
@media screen and (max-width:1024px){
  .project_eastern_h3{
    font-size: 0.25rem;
    margin-bottom: 0.2rem;
  }
  .project_eastern_h3 span{
    font-size: 0.2rem;
  }
}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

}





.service{}

.serviceItem{}
.serviceItem dl{display:-webkit-flex; display:flex; flex-wrap:nowrap;}
.serviceItem dt{width: 100%;background: #FFF7F1; 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:.5rem; display:-webkit-flex; display:flex; flex-wrap:wrap;}
.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 h5{color: #FFF;}
	.serviceItem dt:nth-child(1) .serviceItem_t p{
    color: #fff;
  }

	.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:.4rem;}

}
@media screen and (max-width:1024px) {
	.serviceItem_t{padding: 10px 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;}
}



/* partner_all */


.pall_partner_box{}

.pall_partner{position:relative}
.pall_partner_list{width:100%; padding:0; margin:0 auto; position:relative; overflow:hidden; z-index:1}
.pall_partner_list .swiper-wrapper{display:flex; position:relative; width:100%; z-index:1;transition: all 1s linear;}
.pall_partner_list li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-shrink:0;
	position:relative;
	cursor:pointer;
	flex-direction: column;
  transition: all 1s linear;
}

.pall_partner_list .img{width:100%; box-sizing:border-box; position:relative; overflow:hidden}
.pall_partner_list .img:before{content:""; display:block; padding-bottom:100%}
.pall_partner_list .img img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; height:100%; object-fit:cover}



@media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){

}
@media screen and (max-width:1024px){

}
@media screen and (max-width:959px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}







/* 感谢页面 */
.thanks{padding-top: 1rem; margin:0px auto 1rem; text-align:center;box-sizing: border-box; }
.thanks h2{margin-bottom:20px; font-size:0.3rem; color:#222; font-weight:bold}
.thanks a{z-index: 2; display: flex;display: -webkit-flex;justify-content: center; position: relative; transition: all 1s ease;}



.btns {
	height: 4em;
	width: 12em;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0px solid black;
	cursor: pointer;
  }
  .btns:hover p{
	  color: var(--i_color);
  }
  .wrapperss {
	height: 2em;
	width: 8em;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
  }

.thanks  .text {
	font-size: 17px;
	z-index: 1;
	color: #000;
	padding: 4px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	transition: all 0.5s ease;
  }

  .flower {
	display: grid;
	grid-template-columns: 1em 1em;
	position: absolute;
	transition: grid-template-columns 0.8s ease;
  }

  .flower1 {
	top: -12px;
	left: -13px;
	transform: rotate(5deg);
  }

  .flower2 {
	bottom: -5px;
	left: 8px;
	transform: rotate(35deg);
  }

  .flower3 {
	bottom: -15px;
	transform: rotate(0deg);
  }

  .flower4 {
	top: -14px;
	transform: rotate(15deg);
  }

  .flower5 {
	right: 11px;
	top: -3px;
	transform: rotate(25deg);
  }

  .flower6 {
	right: -15px;
	bottom: -15px;
	transform: rotate(30deg);
  }

  .petal {
	height: 1em;
	width: 1em;
	border-radius: 40% 70% / 7% 90%;
	background: linear-gradient(var(--i_color), #e8ffb3);
	border: 0.5px solid #ffffff;

	z-index: 0;
	transition: width 0.8s ease, height 0.8s ease;
  }

  .two {
	transform: rotate(90deg);
  }

  .three {
	transform: rotate(270deg);
  }

  .four {
	transform: rotate(180deg);
  }

  .btns:hover .petal {
	background: linear-gradient(#E870A5, #FFEFF6);
	border: 0.5px solid #FFEFF6;

  }

  .btns:hover .flower {
	grid-template-columns: 1.5em 1.5em;
  }

  .btns:hover .flower .petal {
	width: 1.5em;
	height: 1.5em;
  }

  .btns:hover .text {
	background: rgba(255, 255, 255, 0.4);
  }

  .btns:hover div.flower1 {
	animation: 15s linear 0s normal none infinite running flower1;
  }

  @keyframes flower1 {
	0% {
	  transform: rotate(5deg);
	}

	100% {
	  transform: rotate(365deg);
	}
  }

  .btns:hover div.flower2 {
	animation: 13s linear 1s normal none infinite running flower2;
  }

  @keyframes flower2 {
	0% {
	  transform: rotate(35deg);
	}

	100% {
	  transform: rotate(-325deg);
	}
  }

  .btns:hover div.flower3 {
	animation: 16s linear 1s normal none infinite running flower3;
  }

  @keyframes flower3 {
	0% {
	  transform: rotate(0deg);
	}

	100% {
	  transform: rotate(360deg);
	}
  }

  .btns:hover div.flower4 {
	animation: 17s linear 1s normal none infinite running flower4;
  }

  @keyframes flower4 {
	0% {
	  transform: rotate(15deg);
	}

	100% {
	  transform: rotate(375deg);
	}
  }

  .btns:hover div.flower5 {
	animation: 20s linear 1s normal none infinite running flower5;
  }

  @keyframes flower5 {
	0% {
	  transform: rotate(25deg);
	}

	100% {
	  transform: rotate(-335deg);
	}
  }

  .btns:hover div.flower6 {
	animation: 15s linear 1s normal none infinite running flower6;
  }

  @keyframes flower6 {
	0% {
	  transform: rotate(30deg);
	}

	100% {
	  transform: rotate(390deg);
	}
  }



















@media screen and (max-width:1200px){
	.thanks{padding-top: 60px;}
  .thanks h2 {
    font-size: 0.25rem;
  }
}
@media screen and (max-width:767px){
	.thanks{padding-top: 40px;margin:0px auto 70px}
  .thanks h2 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width:560px){
  .thanks h2 {
    font-size: 0.18rem;
  }
}






/* 404 */
.in404{position:absolute; top:0; left:0; width:100%; height:100%; background:#FFF}
.in404_text{position:absolute; top:44%; left:50%; transform:translate(-50%,-50%); width:80%; text-align:center}
.in404_text h1{font-size:220px; color:#BBB}
.in404_text h6{margin:10px auto 30px; font-size:18px; color:#999}
.in404_text a{display:inline-block; padding:0 40px; line-height:32px; font-size:15px; color:#999; border:2px solid #DDD; -webkit-border-radius:100px; -moz-border-radius:100px; border-radius:100px}

@media screen and (max-width:959px){
.in404_text h1{font-size:180px}
}
@media screen and (max-width:767px){
	.in404_text h1{font-size:140px}
	.in404_text h6{font-size:16px}
	.in404_text a{font-size:14px}
}
@media screen and (max-width:560px){
	.in404_text h1{font-size:70px}
	.in404_text h6{margin:10px auto 18px; font-size:14px; line-height:20px}
	.in404_text a{font-size:13px}
}

/* 隐私政策 */
.privacy{margin-bottom: 100px;padding-top: 70px;}
#header{background-color: rgb(0 0 0 / 57%) !important;}
.privacy_cont{
  width: 93%;
  margin: 0 auto;
}
.privacy_cont .tit{margin-bottom:30px}
.privacy_cont .tit h2{font-size:24px; text-align:center; font-weight:bold}
.privacy_cont article, .privacy_cont article *{font-size:14px; color:#666; line-height:24px}
.foot {top: 130px;}
.privacy ol {padding: 0px;}
@media screen and (max-width:1200px){
	.privacy{margin-bottom: 50px;}
}
@media screen and (max-width:959px){
	.privacy{margin-bottom: 30px;}
}





/* ---------------------- Aside Form ---------------------- */
.contactMenu{--menuColor:#333}
.contactMenu{position: fixed;right: 0;bottom: 0;width: 340px;box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);z-index: 99999999999999999999;}
.contactMenuBtn{width: 100%;display:-webkit-flex; display:flex; flex-wrap:nowrap;position: relative;z-index: 3;}
.contactMenuBtn dt{width: 100%;text-align: center;cursor: pointer;}
.contactMenuBtn dt a,.contactMenuBtn dt p{display: block; padding: 8px 10px;color: #FFF;}
.contactMenuBtnWA{display: none;background: #0ABA28;}
.contactMenuBtnForms{background: var(--i_color);}

.contactMenu_Forms{
	display: none;
	position: absolute;
	right: 0;
	bottom: calc(100% - 1px);
	width: 100%;
	box-shadow: -6px -4px 10px rgb(0 0 0 / 10%);
	z-index: 999;
}
.contactMenu_FormsTit{padding: 8px 50px; text-align: center;background: var(--i_color); cursor: pointer;position: relative;}
.contactMenu_FormsTit p{color: #FFF;}
.contactMenu_FormsTit iconify-icon{opacity: 0; position:absolute; top:50%; transform:translate(0,-50%);right: -20px;font-size: 24px;color: #FFF;}
.contactMenu_FormsTit.active iconify-icon{opacity: 1; right: 10px; -webkit-transition:all .6s .5s; transition:all .6s .5s;}
.contactMenu_Forms>span{display: block; padding: 24px; background: #FFF;}

#wpforms-73{
	--wpforms-field-size-input-height:38px;
	--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-73{margin:0;padding:0;}
#wpforms-form-73{width:100%;position:relative;}

#wpforms-73 .wpforms-field-container{}
#wpforms-73 .wpforms-field-container>.wpforms-field{
	width: 100%;
	padding: 0 1px 5px;
	margin: 0 0 6px;
	overflow-x:initial !important;
	position: relative;
}

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

#wpforms-73 .wpforms-field-container .wpforms-field>input,
#wpforms-73 .wpforms-field-container textarea{
	border: 1px solid #CCC;
	-webkit-border-radius:4px;
	border-radius:4px;
	box-sizing: border-box;
	padding: 0.05rem 0;
}
#wpforms-73 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

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


#wpforms-73 .wpforms-submit-container{width: 100%; padding: 0;-webkit-border-radius:8px; border-radius:8px;overflow: hidden;}
#wpforms-73 .wpforms-submit-container button{
	width: 100%;
	background: #DDD;
	font-size: 15px;
	color: #333;
	font-weight: bold;
	padding: 0.1rem 0.2rem;
	transition: all 0.3s ease;
	cursor: pointer;
}
#wpforms-73 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-73 .wpforms-submit-container button:hover{background: var(--i_color); color: #FFF;}

@media screen and (max-width:1024px) {
	.contactMenu{width: 100%;}
	.contactMenuBtnWA{display: block;}
	.contactMenuBtnWA a{display: block;}
}





/* aside */
.aside_right {
	position: fixed;
	right: 30px;
	bottom: 16%;
	z-index: 999999
}
.aside_right ul {}
.aside_right li {
	margin: .1rem 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	cursor: pointer
}
.aside_right li>a {
	display: block;
	width: .5rem;
	height: .5rem;
	background: rgba(128, 128, 128, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	transition: all .3s ease;
}

.aside_right li:nth-child(1)>a {
	background: #389b0f
}
.aside_right li:nth-child(2)>a {
	background: var(--i_color);
}

.aside_right li img {
	display: block;
	margin: 0 auto;
	width: .22rem;
	height: .22rem;
	object-fit: contain
}

.aside_right li:hover>a {
	background-color: var(--i_color)
}

.side_tel_box,
.side_qr_box {
	position: absolute;
	box-shadow: -1px 2px 6px rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1
}
.side_tel_box {
	top: 0;
	right: -300px;
	width: 180px;
	min-height: 100%;
	background: #FFF
}
.side_qr_box {
	top: 50%;
	transform: translate(0, -50%);
	right: -180px;
	width: 120px;
	height: 120px;
	background: #FFF
}

.side_tel_box h6 {
	padding: 8px 0;
	font-size: 14px;
	color: #666
}
.side_tel_box h6 a {
	line-height: 20px
}
.side_tel_box a:hover {
	color: var(--i_color)
}
.side_qr_box img {
	width: 90%;
	height: 90%
}

.aside_right li:hover .side_tel_box,
.aside_right li:hover .side_qr_box {
	right: 48px
}

.side_tel_box,
.side_qr_box {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.aside_close {
	position: absolute;
	top: .3rem;
	right: .3rem;
	display: block;
	width: .3rem;
	height: .3rem;
	background: url(static/imgs/zxy/close_1_hei.svg) no-repeat center;
	background-size: 30px;
	cursor: pointer
}
.aside_close:hover {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.aside_close {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease
}

#aside_mask_bg {
	display: none;
	position: fixed;
	top: 50%;
	transform: translate(0, -50%);
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 70%);
	z-index: 9999999999998;
}
#aside_sc_from {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	box-sizing: border-box;
	padding: 30px 30px 40px;
	background: rgb(255 255 255 / 100%);
	z-index: 9999999999999;
	overflow: auto
}
#aside_sc_from .tit {
	margin-bottom: .4rem
}
#aside_sc_from .tit h1 {
	text-align: center;
	font-size: .26rem;
	color: var(--i_color);
	font-weight: bold;
	line-height: .3rem
}

#wpforms-76 {
	--input_font_color: rgb(0 0 0 / 50%);
	--input_font_size: 14px;
	--input_height: 42px
}
#wpforms-76 {
	width: 100%;
	margin: 0 auto;
	padding: 0
}
#wpforms-form-76 {
	width: 100%;
	overflow: hidden
}
#wpforms-76 input,
#wpforms-76 button {
	margin: 0;
	padding: 0;
	border: none;
	background: none
}
#wpforms-76 .wpforms-field {
	padding: 0;
	margin: 0
}
#wpforms-76 .wpforms-error-container {
	line-height: 16px
}
#wpforms-76 .wpforms-field-container {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden
}
#wpforms-76 .wpforms-submit-container {
	padding: 0 !important;
	margin: 0 auto;
	width: 170px;
	height: 38px;
	background: var(--i_color);
	box-sizing: border-box;
	border: 2px solid var(--i_color);
	position: relative
}
#wpforms-76 .wpforms-field-label {
	font-size: 0
}
#wpforms-76 .wpforms-required-label {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 16px;
	color: #F00
}
#wpforms-76 .wpforms-field {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 18px;
	background: transparent;
	position: relative;
	overflow: hidden
}
#wpforms-76 input {
	height: var(--input_height)
}
#wpforms-76 textarea {
	min-height: 100px
}
#wpforms-76 input,
#wpforms-76 textarea {
	width: 100%;
	max-width: 100% !important;
	font-size: var(--input_font_size);
	color: #333;
	box-sizing: border-box;
	border: 1px solid rgb(0 0 0 / 30%);
	line-height: var(--input_height);
	padding: 0 16px
}
#wpforms-76 input::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 input::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 input::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 textarea::-webkit-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 textarea::-moz-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 textarea::-ms-input-placeholder {
	color: var(--input_font_color);
	font-size: var(--input_font_size)
}
#wpforms-76 #wpforms-76-field_1-error,
#wpforms-76 #wpforms-76-field_2-error,
#wpforms-76 #wpforms-76-field_3-error,
#wpforms-76 #wpforms-76-field_5-error {
	position: absolute;
	font-size: 13px
}
#wpforms-76 .wpforms-submit-container button {
	width: 100%;
	height: 34px;
	font-size: 14px;
	color: #FFF;
	line-height: 34px;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
	z-index: 2
}
#wpforms-76 .wpforms-submit-container img {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 4px
}
#wpforms-76 .wpforms-submit-container:after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%
}
#wpforms-76 .wpforms-submit-container:hover:after {
	display: block
}
#wpforms-76 .wpforms-submit-container:hover {
	background: #FFF
}
#wpforms-76 .wpforms-submit-container:hover button {
	color: var(--i_color)
}

@media screen and (max-width:1366px) {
	.aside_right li>a {
		width: 0.4rem;
		height: 0.4rem;
	}
}

@media screen and (max-width:1024px) {
	#aside_sc_from {
		width: 94%;
	}
}
@media screen and (max-width:959px) {
	.aside_right {
		right: 22px;
		bottom: 160px;
	}
	.aside_right{
		display: none !important
	}
}
@media screen and (max-width:767px) {
	#aside_sc_from {
		padding: 20px 20px 30px
	}
	#aside_sc_from .tit {
		margin-bottom: 0.3rem;
	}
	#wpforms-76 .wpforms-submit-container {
		height: 34px;
	}
	#wpforms-76 .wpforms-submit-container button {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}
@media screen and (max-width:560px) {
	#aside_sc_from .tit h1 {
		font-size: 0.24rem;
	}

}




.form_hide{
  display: none !important;
}





/* @media screen and (max-width:1440px){

}
@media screen and (max-width:1200px){

}
@media screen and (max-width:1024px){

}
@media screen and (max-width:960px){

}
@media screen and (max-width:767px){

}
@media screen and (max-width:560px){

}
@media screen and (max-width:425px){

} */






