@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
	background: #fff;
	font-size: 0.16rem;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
input,
select,
textarea {
	outline: 0;
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}
img {
	border: 0;
	display: block;
	max-width: 100%;
	width: auto;
}
ul,
li {
	list-style-type: none;
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: none;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.cl {
	clear: both;
}
.clear:after {
	content:"";
	display: block;
	clear:both;
}
.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bigimg img {
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.bigimg:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.to1{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.to2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.ov{
	overflow: hidden;
}
.content {
	width: 16rem;
	margin: 0 auto;
}
.con13 {
	width: 13rem;
	margin: 0 auto;
}
.con14 {
	width: 14.4rem;
	margin: 0 auto;
}
.con17 {
	width: 17rem;
	margin: 0 auto;
}
.phone {
	display: none;
}



/*首页*/
.header{
	width: 100%;
	position: fixed;
	top: 0.4rem;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all 0.6s;
}
.header.ton{
	top: 0;
	background: #fff;
	box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.header.ton .header_con{
	box-shadow: none;
}
.header_con{
	width: 17rem;
	height: 1.1rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 1rem;
	margin: 0 auto;
	box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
	padding: 0 0.5rem;
	position: relative;
}
.logo{
	float: left;
	width: 3.08rem;
	margin-top: 0.3rem;
}
.logo img{
	width: 100%;
}

.nav{
	float: right;
	width: 9.34rem;
	margin-right: 2.52rem;
}
.nav ul{
	display: flex;
	justify-content: space-between;
}
.nav li{
	position: relative;
	line-height: 1.1rem;
	font-size: 0.18rem;
}
.nav i{
	width: 100%;
	height: 0.02rem;
	display: block;
	background: #00712f;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0,0);
	transition: all 0.6s;
}
.nav li:hover i{
	transform: scale(1,1);
}
.nav li:hover{
	color: #00712f;
}
.nav li.on i{
	transform: scale(1,1);
}
.nav li.on{
	color: #00712f;
}
.nav li:hover .subnav{
	display: block;
}
.subnav{
	width: 1.2rem;
	background: #fff;
	box-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 1.1rem;
	left: -13%;
	transform: translateX(-13%);
	z-index: 10;
	display: none;
}
.subnav ul{
	display: block;
}
.subnav li{
	line-height: 0.5rem;
	text-align: center;
	color: #333;
}
.subnav li:hover{
	background: #f0f9f4;
}
.search_pic{
	width: 0.29rem;
	height: 0.29rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2.22rem;
	cursor: pointer;
}
.search_pic img{
	width: 100%;
	height: 100%;
}
.menu_txt{
	width: 0.85rem;
	color: #00712f;
	font-size: 0.24rem;
	line-height: 0.4rem;
	position: absolute;
	top: 0;
	left: -0.85rem;
}
.menu {
	position: absolute;
	top: 60%;
	transform: translateY(-60%);
	right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 0.5rem;
	height: 0.5rem;
	cursor: pointer;
	z-index: 200;
	display: block;
}
.menu span {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background: #00712f;
	border-radius: 10px;
	transition: all 0.6s;
	z-index: 200;
}
.menu span:nth-of-type(1) {
	transform: translateY(-4px);
	margin-top: 0.18rem;
}
.menu span:nth-of-type(2) {
	width: 0.36rem;
	transform: translateY(4px);
}
.menu:hover span:nth-of-type(2){
	width: 100%;
}
#menu {
	display: none;
}
#menu:checked ~ .menu {
	background-color: transparent;
	transition: transform 250ms ease;
}
#menu:checked ~ .menu span {
	background-color: #00712f;
	transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
	transform: translateY(1px) rotate(45deg);
	width: 100% !important;
}
#menu:checked ~ .menu span:nth-of-type(2) {
	transform: translateY(-1px) rotate(-45deg);
	width: 100% !important;
}
.nav_box{
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 90;
	display: none;
}
.nav02.ton{
	padding: 1.2rem 0 0.4rem;
}
.nav02 {
	position: fixed;
	top: 0;
	right: 0;
	width: 5rem;
	height: 100%;
	padding: 1.6rem 0 0.4rem;
	box-sizing: border-box;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	z-index: 99;
	transition: all 0.6s;
}
.nav02::-webkit-scrollbar{
	width: 0.04rem;
	height: 1px;
}
.nav02::-webkit-scrollbar-thumb{
  border-radius: 0.1rem;
	background: #9e9e9e;
}
.nav02::-webkit-scrollbar-track{
  border-radius: 0.1rem;
	background: #ededed;
  box-shadow: inset 0 0 5px rgba( 0, 0, 0, .1);
}
.nav02 li {
	position: relative;
	display: block;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
	font-size: 0.18rem;
	line-height: 0.8rem;
	text-indent: 0.5rem;
	color: #333;
	cursor: pointer;
}
.nav02 li a {
	position: relative;
	display: block;
	margin: 0;
	text-decoration: none;
	text-transform: uppercase;
}
.nav02 li a:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: width 250ms ease;
	z-index: -1;
}
.nav02 li h1{
	font-size: 0.18rem;
	line-height: 0.8rem;
	font-weight: normal;
	background: url(../images/arrow_01.png) no-repeat 95% center;
	background-size: 0.12rem 0.23rem;
}
.nav02 li.current h1 {
	background: url(../images/arrow_02.png) no-repeat 95% center;
	background-size: 0.23rem 0.12rem;
}
.nav03 {
	width: 100%;
	margin: -0.1rem 0 0.2rem 0;
	display: none;
}
.nav03 li {
	border: none;
	font-weight: normal !important;
	line-height: 0.6rem;
	font-size: 0.18rem;
	text-indent: 0.5rem;
	color: #999;
}

.banner_box{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.banner{
	width: 100%;
	height: 100vh;
	position: relative;
	animation: scale 2s;
}
.banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes scale {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.bn_menu{
	width:16rem;
	height: 0.8rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	right: auto;
	bottom: 0.5rem;
	z-index: 2;
}
.bn_menu li{
	float: left;
	width: 14.28%;
	text-align: center;
	height: 0.8rem;
	line-height: 0.8rem;
	background: rgba(255, 255, 255, 0.7);
	border-right: solid 0.01rem #eee;
	color: #333;
	font-size: 0.18rem;
	font-weight: lighter;
}
.bn_menu li:last-child{
	border: none;
}
.bn_menu a{
	display: block;
}
.bn_menu div{
	width: 0.29rem;
	height: 0.3rem;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.bn_menu img{
	position: absolute;
	top: 0;
	left: 0;
}
.img02{
	display: none;
}
.bn_menu li:hover{
	background: #00712f;
	color: #fff;
}
.bn_menu li:hover .img01{
	display: none;
}
.bn_menu li:hover .img02{
	display: block;
}

.search_box{
	padding-bottom: 0.3rem;
}
.search_line{
	padding: 0.11rem 0;
	border-bottom: solid 0.01rem #eee;
	margin-bottom: 0.3rem;
}
.ss_all{
	float: left;
	width: 2.28rem;
	height: 0.7rem;
	line-height: 0.7rem;
	text-align: center;
	border-right: solid 0.01rem #e5e5e5;
	color: #333;
	font-size: 0.2rem;
	margin: 0.04rem 0.5rem 0.04rem 0;
	cursor: pointer;
	position: relative;
}
.ss_all i{
	width: 0.16rem;
	height: 0.1rem;
	background: url(../images/ind_17.png) no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.25rem;
}
.ss_all.is-open i{
	transform: rotate(180deg);
}
.ss_all ul{
	display: none;
	position: absolute;
	overflow: hidden;
	width: 100%;
	background: #fff;
	top: 100%;
	left: 0;
	margin-top: 0.05rem;
	padding: 0;
	z-index: 10;
}
.ss_all.is-open ul {
	display: block;
}
.ss_inp{
	float: left;
	width: 9.9rem;
	height: 0.78rem;
	line-height: 0.78rem;
	background: url(../images/ind_18.png) no-repeat left center;
	background-size: 0.25rem 0.25rem;
	color: #999;
	font-size: 0.2rem;
	border: none;
	padding-left: 0.58rem;
}
.ss_inp::-webkit-input-placeholder {
	color: #999;
}
.ss_btn{
	float: right;
	width: 2rem;
	height: 0.78rem;
	cursor: pointer;
	background: #00712f;
	border: none;
	color: #fff;
	font-size: 0.18rem;
}
.hotss_tt{
	float: left;
	width: 2rem;
	line-height: 0.4rem;
	color: #00712f;
	font-size: 0.18rem;
	margin-left: 0.48rem;
}
.hotss_tt span{
	display: inline-block;
	width: 0.23rem;
	height: 0.24rem;
	background: url(../images/ind_19.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-right: 0.16rem;
	animation: bigger 2s linear infinite;
}
.hotss_tt i{
	display: inline-block;
	width: 0.12rem;
	height: 0.12rem;
	background: url(../images/ind_20.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-left: 0.16rem;
}
@keyframes bigger {
	0% {
			transform: scale(1);
	}
	50% {
			transform: scale(1.2);
	}
	100% {
			transform: scale(1);
	}
}
.hotss{
	float: right;
	width: 13.5rem;
}
.hotss ul{
	margin-right: -0.29rem;
}
.hotss li{
	float: left;
	background: #f0f9f4;
	color: #00712f;
	font-size: 0.18rem;
	line-height: 0.4rem;
	margin-right: 0.29rem;
}
.hotss a{
	display: inline-block;
	padding: 0 0.4rem;
}
.hotss li:hover{
	background: #00712f;
	color: #f0f9f4;
}

.disease_bg{
	width: 100%;
	height: 10.03rem;
	background: url(../images/ind_21.jpg) no-repeat center;
	background-size: cover;
	padding-top: 0.89rem;
	overflow: hidden;
}
.disease_tit{
	width: 100%;
	text-align: center;
	line-height: 0.62rem;
	color: #777;
	font-size: 0.24rem;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
}
.disease_tit div{
	font-weight: lighter;
}
.disease_tit h1{
	color: #00712f;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.25rem;
}
.disease_tit h2{
	width: 100%;
	color: #333;
	font-size: 0.48rem;
	line-height: 0.52rem;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.disease_tit h2 span{
	display: inline-block;
	background: #fcfcfc;
	padding: 0 0.05rem;
}
.disease_box{
	width: 15.14rem;
	margin: 0 auto;
	position: relative;
}
.disease{
	width: 100%;
	height: 6.35rem;
	background: url(../images/ind_22.png) no-repeat;
	background-size: 100% 100%;
}
.disease_box .swiper-button-next, .disease_box .swiper-button-prev{
	width: 1rem;
  height: 1rem;
	border-radius: 50%;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: 0.32rem;
}
.disease_box .swiper-button-next{
  right: 42%;
	background: url(../images/ind_36.png) no-repeat;
	background-size: 100% 100%;
	transform: rotateY(180deg);
}
.disease_box .swiper-button-next:hover{
	background: url(../images/ind_37.png) no-repeat;
	background-size: 100% 100%;
	transform: rotateY(0);
}
.disease_box .swiper-button-prev{
  left: 42%;
	background: url(../images/ind_36.png) no-repeat;
	background-size: 100% 100%;
}
.disease_box .swiper-button-prev:hover{
	background: url(../images/ind_37.png) no-repeat;
	background-size: 100% 100%;
	transform: rotateY(180deg);
}
.disease_box .swiper-button-next:after, .disease_box .swiper-button-prev:after{
  display: none;
}
.disease_box .swiper-button-lock{
	display: block;
}
.disease_box .swiper-button-next.swiper-button-disabled, .disease_box .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}
.ji_b{
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	padding: 0.15rem;
}
.ji_bg{
	width: 1.3rem;
	height: 1.3rem;
	background: #fff;
	box-shadow: 0 0 0.1rem rgba(0, 113, 47, 0.1);
	border-radius: 50%;
	position: relative;
	transition: all 0.6s;
}
.ji_tu{
	width: 0.63rem;
	height: 0.63rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
.ji_tu img{
	width: 100%;
	height: 100%;
}
.ji_txt{
	text-align: center;
	line-height: 0.28rem;
	color: #777;
	font-size: 0.18rem;
	font-weight: lighter;
}
.ji_txt h1{
	font-size: 0.22rem;
	color: #222;
	font-weight: lighter;
	line-height: 0.4rem;
}
.ji_arrow{
	width: 0.66rem;
	height: 0.67rem;
	background: url(../images/ind_35.png) no-repeat;
	background-size: 100%;
	position: absolute;
}
.disease .swiper-slide:hover .ji_b{
	background: rgba(0, 113, 47, 0.1);
}
.disease .swiper-slide:hover .ji_bg{
	box-shadow: none;
	background: #00712f;
}
.disease .swiper-slide:hover .img01{
	display: none;
}
.disease .swiper-slide:hover .img02{
	display: block;
}
.disease .swiper-slide:hover .ji_txt{
	color: #00712f;
}
.disease .swiper-slide:hover .ji_txt h1{
	color: #00712f;
}
.disease .swiper-slide:nth-child(6n+1){
	width: 3.48rem !important;
	height: 1.7rem !important;
	margin: 4rem 0 0 0.2rem;
}
.disease .swiper-slide:nth-child(6n+1) .ji_b{
	float: left;
}
.disease .swiper-slide:nth-child(6n+1) .ji_txt{
	width: 1.4rem;
	float: left;
	margin-top: 0.5rem;
}
.disease .swiper-slide:nth-child(6n+1) .ji_arrow{
	bottom: 0;
	right: 0;
	transform: rotate(-45deg);
}
.disease .swiper-slide:nth-child(6n+2){
	width: 2.74rem !important;
	height: 2.72rem;
	margin: 1.5rem 0 0 -1.6rem;
}
.disease .swiper-slide:nth-child(6n+2) .ji_txt{
	width: 2.24rem;
}
.disease .swiper-slide:nth-child(6n+2) .ji_arrow{
	bottom: 0;
	right: 0;
	transform: rotate(-30deg);
}
.disease .swiper-slide:nth-child(6n+3){
	width: 1.85rem !important;
	height: 3.32rem;
}
.disease .swiper-slide:nth-child(6n+3) .ji_txt{
	width: 2.24rem;
}
.disease .swiper-slide:nth-child(6n+3) .ji_arrow{
	bottom: 0;
	right: 0;
}
.disease .swiper-slide:nth-child(6n+4){
	width: 2rem !important;
	height: 3.32rem;
	margin-left: 1.64rem;
}
.disease .swiper-slide:nth-child(6n+4) .ji_b{
	margin: 0 auto;
}
.disease .swiper-slide:nth-child(6n+4) .ji_txt{
	width: 2.24rem;
}
.disease .swiper-slide:nth-child(6n+4) .ji_arrow{
	bottom: 0;
	left: 0.3rem;
	transform: rotate(35deg);
}
.disease .swiper-slide:nth-child(6n+5){
	width: 2.86rem !important;
	height: 2.72rem;
	margin: 1.5rem -1.6rem 0 0;
}
.disease .swiper-slide:nth-child(6n+5) .ji_b{
	margin-left: 1.37rem;
}
.disease .swiper-slide:nth-child(6n+5) .ji_txt{
	width: 2.24rem;
	margin-left: 1rem;
}
.disease .swiper-slide:nth-child(6n+5) .ji_arrow{
	bottom: 0;
	left: 0.3rem;
	transform: rotate(60deg);
}
.disease .swiper-slide:nth-child(6n+6){
	width: 3.48rem !important;
	height: 1.66rem !important;
	margin-top: 4rem;
}
.disease .swiper-slide:nth-child(6n+6) .ji_b{
	float: right;
}
.disease .swiper-slide:nth-child(6n+6) .ji_txt{
	width: 1.1rem;
	float: left;
	margin: 0.5rem 0 0 0.77rem;
}
.disease .swiper-slide:nth-child(6n+6) .ji_arrow{
	bottom: 0;
	left: 0;
	transform: rotate(90deg);
}


/* 专人全程服务 */
.service_bg{
	width: 100%;
	height: 7.77rem;
	padding: 0.36rem 0;
	background: url(../images/ind_38.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
.service_bg .content{
	position: relative;
}
.service_left{
	width: 6.8rem;
	position: absolute;
	top: 1.55rem;
	left: 0;
}
.service_tit{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.34rem;
	font-weight: lighter;
	margin-bottom: 0.5rem;
}
.service_tit h1{
	color: #00712f;
	font-size: 0.6rem;
	font-weight: normal;
	line-height: 0.7rem;
	font-family: Arial;
}
.service_tit h2{
	color: #333;
	font-size: 0.48rem;
	line-height: 0.7rem;
}
.service_tit h3{
	color: #666;
	font-size: 0.24rem;
	line-height: 0.46rem;
	font-weight: lighter;
	margin: 0.18rem 0;
}
.service_more{
	width: 1.93rem;
	height: 0.55rem;
	line-height: 0.55rem;
	text-align: center;
	color: #fff;
	font-size: 0.18rem;
	border-radius: 0.04rem;
	background: #00712f;
	position: relative;
	overflow:hidden;
}
.service_more a{
	display: block;
}
.service_more:before {
	content: "";
	width: 0;
	height: 100%;
	background: #005a25;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: 0.5s;
	z-index: -1;
}
.service_more:after {
	position: absolute;
	left:-10px;
	bottom: 0;
	z-index: -2;
	content: "";
	box-sizing: border-box;
	transition: 0.5s;
	width:110%;
	height: 100%;
}
.service_more:hover:before,
.service_more.active:before {
	width: 100%;
	right: auto;
	left: 0;
}
.service{
	float: right;
	width: 11.7rem;
}
.service ul{
	margin-right: -0.3rem;
}
.service li{
	float: left;
	width: 3.7rem;
	height: 2rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	color: #777;
	font-size: 0.18rem;
	line-height: 0.34rem;
	margin: 0 0.3rem 0.3rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.6s;
}
.service li:nth-child(1){
	margin: 0 0.3rem 0.3rem 8rem;
}
.service li:nth-child(2){
	margin: 0 0.3rem 0.3rem 4rem;
}
.service h1{
	color: #00712f;
	font-size: 0.34rem;
	line-height: 0.6rem;
	margin-bottom: 0.17rem;
}
.service i{
	width: 0.8rem;
	height: 0.01rem;
	background: #00712f;
	display: block;
	margin: 0 auto 0.15rem;
}
.service li:hover{
	background: url(../images/ind_39.jpg) no-repeat;
	background-size: 100% 100%;
	box-shadow: none;
	color: #fff;
	border-top-right-radius: 0.8rem;
	border-bottom-left-radius: 0.8rem;
}
.service li:hover h1{
	color: #fff;
}
.service li:hover i{
	background: #deff01;
}

.doc_box{
	padding: 0.86rem 0 0.46rem;
	overflow: hidden;
}
.doc_tit{
	width: 100%;
	text-align: center;
	line-height: 0.36rem;
	color: #777;
	font-size: 0.29rem;
	position: relative;
	text-transform: uppercase;
}
.doc_tit div{
	font-weight: lighter;
}
.doc_tit h1{
	color: #00712f;
	font-size: 0.74rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.7rem;
	margin-bottom: 0.5rem;
}
.doc_tit h2{
	width: 100%;
	color: #333;
	font-size: 0.59rem;
	line-height: 0.66rem;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.doc_tit h2 span{
	display: inline-block;
	background: #fff;
	padding: 0 0.1rem;
}
.doc_pic{
	width: 100%;
	margin-bottom: 0.3rem;
}
.doc_pic img{
	width: 100%;
}
.doc_list{
	width: 100%;
	text-align: center;
}
.doc_list ul{
	margin-right: -0.28rem;
}
.doc_list li{
	display: inline-block;
	width: 2.7rem;
	height: 1.04rem;
	padding: 0.12rem 0.17rem 0;
	line-height: 0.7rem;
	background: url(../images/ind_41.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.32rem;
	font-weight: bold;
	text-shadow: 0 0.02rem 0.03rem rgba(0, 55, 33, 0.5);
	margin-right: 0.28rem;
}

.experts_box{
	padding: 0.68rem 0 0.64rem;
	overflow: hidden;
}
.experts_tit{
	width: 100%;
	text-align: center;
	line-height: 0.4rem;
	color: #777;
	font-size: 0.24rem;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
}
.experts_tit div{
	font-weight: lighter;
}
.experts_tit h1{
	color: #00712f;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.35rem;
}
.experts_tit h2{
	width: 100%;
	color: #333;
	font-size: 0.48rem;
	line-height: 0.52rem;
	position: absolute;
	top: 0.28rem;
	left: 0;
}
.experts_tit h2 span{
	display: inline-block;
	background: #fff;
	padding: 0 0.1rem;
}
.experts{
	width: 100%;
}
/*.experts .swiper-slide{*/
/*	transition: all 0.6s;*/
/*}*/
/* .experts .swiper-slide-next{
	width: 4.69rem !important;
} */
.experts .swiper-slide-active .experts_tm{
	opacity: 1;
}
.experts .swiper-slide-active .experts_tt{
	opacity: 1;
}
.experts_pic{
	width: 100%;
	height: 5.19rem;
	position: relative;
	margin-bottom: 0.4rem;
}
.experts_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.experts_tm{
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	transition: all 0.6s;
}
.experts_txt{
	width: 94%;
	height: 1rem;
	text-align: center;
	line-height: 1rem;
	height: 1rem;
	color: #fff;
	font-size: 0.22rem;
	position: absolute;
	left: 3%;
	bottom: 0;
	font-weight: lighter;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.experts_line{
	width: 46%;
	height: 0.17rem;
	background: #21864d;
	position: absolute;
	left: 27%;
	bottom: -0.08rem;
}
.experts_tt{
	width: 100%;
	color: #333;
	font-size: 0.45rem;
	line-height: 0.62rem;
	height: 0.62rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
}
.experts_tt span{
	font-size: 0.24rem;
	font-weight: lighter;
	line-height: 0.42rem;
	padding-left: 0.2rem;
	vertical-align: bottom;
}
.experts_bot{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.experts_bot .content{
	position: relative;
	height: 0.62rem;
}
.experts_bot .swiper-pagination{
	width: 1.4rem;
	text-align: left;
	left: 0;
	bottom: 0;
}
.experts_bot .swiper-num{
	width: 1.4rem;
	line-height: 0.4rem;
	color: #656464;
	font-size: 0.2rem;
	position: absolute;
	left: 0;
	bottom: 0;
}
.experts_bot .active{
	font-size: 0.3rem;
}
.experts_bot .swiper-button-next, .experts_bot .swiper-button-prev{
	width: 0.9rem;
  height: 0.24rem;
	border-radius: 0;
  top: auto;
	left: auto;
  bottom: 0;
}
.experts_bot .swiper-button-next{
  right: 0;
	background: url(../images/ind_44.jpg) no-repeat;
	background-size: 100% 100%;
}
.experts_bot .swiper-button-prev{
  right: 1.3rem;
	background: url(../images/ind_43.jpg) no-repeat;
	background-size: 100% 100%;
}
.experts_bot .swiper-button-next:after, .experts_bot .swiper-button-prev:after{
	display: none;
}

.entry_box{
	padding: 0.75rem 0 1.2rem;
	overflow: hidden;
	position: relative;
}
.entry_box .experts_tit{
	padding-bottom: 0.7rem;
	margin: 0;
}
.entry_box .swiper-pagination{
	width: 100%;
	left: 0;
	bottom: 0.5rem;
}
.entry_box .swiper-pagination-bullet{
	width: 0.16rem;
	height: 0.16rem;
	border-radius: 50%;
	background: #dedede;
	margin: 0 0.12rem !important;
	opacity: 1;
}
.entry_box .swiper-pagination-bullet-active{
	background: #287042;
}
.entry_bg{
	width: 17.46rem;
	height: 8.68rem;
	background: #fff;
	padding: 0.1rem;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
	margin: 0 auto;
}
.entry{
	width: 100%;
}
.entry .swiper-slide{
	height: 8.48rem;
	background: url(../images/ind_128.jpg) no-repeat;
	background-size: cover;
}
.entry_pic{
	float: left;
	width: 8.62rem;
	height: 8.48rem;
}
.entry_pic img{
	width: 100%;
	height: 100%;
}
.entry_right{
	float: left;
	width: 8.26rem;
	padding-top: 0.45rem;
}
.entry_top{
	margin-bottom: 0.72rem;
}
.entry_tit{
	color: #333;
	font-size: 0.27rem;
	text-align: right;
	font-weight: bold;
}
.entry_tit span{
	padding-left: 0.05rem;
}
.entry_line i{
	width: 0.66rem;
	height: 0.03rem;
	display: block;
	float: right;
	background: #a6a5a6;
	margin: 0.06rem 0.2rem 0.08rem 0;
}
.entry_en{
	text-align: right;
	line-height: 0.18rem;
	text-transform: uppercase;
	color: rgba(51, 51, 51, 0.3);
	font-size: 0.12rem;
	transform: scale(0.8);
	margin-right: -0.75rem;
}
.entry_list{
	width: 100%;
}
.entry_list li{
	float: left;
	width: 25%;
	text-align: center;
	margin-bottom: 0.64rem;
}
.entry_head{
	width: 1.7rem;
	height: 1.7rem;
	background: #287041;
	border: solid 0.05rem #fff;
	box-sizing: border-box;
	box-shadow: 0 0 0.2rem rgba( 0, 0, 0, .1);
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 0.05rem;
}
.entry_head img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.entry_txt{
	width: 100%;
	line-height: 0.5rem;
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
}
.entry_txt div{
	display: inline-block;
	border-bottom: solid 0.01rem #8d8b8b;
}
.entry_txt span{
	color: #287041;
	font-size: 0.12rem;
	padding-left: 0.05rem;
}

.dep_bg{
	width: 100%;
	height: 10.31rem;
	background: url(../images/ind_46.jpg) no-repeat center;
	background-size: cover;
	padding: 0.88rem 0 0.48rem;
	overflow: hidden;
}
.dep_bg .experts_tit{
	margin-bottom: 0.58rem;
}
.dep_bg .experts_tit h2 span{
	background: #f2f2f4;
}
.dep_type{
	width: 15rem;
	margin: 0 auto 0.47rem;
}
.dep_type li{
	float: left;
	width: 50%;
	text-align: center;
	line-height: 1rem;
	height: 1rem;
	background: #fff;
	font-weight: lighter;
	font-size: 0.3rem;
	text-transform: uppercase;
	position: relative;
	cursor: pointer;
	transition: all 0.6s;
}
.dep_type span{
	font-size: 0.24rem;
	padding-left: 0.17rem;
}
.dep_type i{
	width: 0.18rem;
	height: 0.12rem;
	background: url(../images/ind_51.png) no-repeat;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.12rem;
	opacity: 0;
}
.dep_type li div{
	width: 0.48rem;
	height: 0.48rem;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.3rem;
}
.dep_type img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.dep_type li.on{
	background: #00712f;
	color: #fff;
}
.dep_type li.on i{
	opacity: 1;
}
.dep_type li.on .img01{
	display: none;
}
.dep_type li.on .img02{
	display: block;
}
.dep_box{
	width: 100%;
	background: rgba(255, 255, 255, 0.4);
	padding: 0.58rem 0.44rem 0.37rem;
}
.dep_list{
	width: 100%;
}
.dep_list ul{
	margin-right: -0.32rem;
}
.dep_list li{
	float: left;
	width: 1.61rem;
	height: 1.9rem;
	padding-top: 0.28rem;
	text-align: center;
	text-transform: uppercase;
	background: #fff;
	border-radius: 0.04rem;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
	margin: 0 0.32rem 0.33rem 0;
	transition: transform 0.3s ease;
}
.dep_list li div{
	width: 0.61rem;
	height: 0.61rem;
	margin: 0 auto 0.15rem;
	position: relative;
}
.dep_list img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.dep_list h1{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.32rem;
	font-weight: normal;
	margin-bottom: 0.05rem;
}
.dep_list h2{
	color: #999;
	font-size: 0.12rem;
	line-height: 0.14rem;
	font-weight: normal;
	word-wrap: break-word;
}
.dep_list li:hover{
	background: #00712f;
	transform: translateY(-0.12rem);
}
.dep_list li:hover .img01{
	display: none;
}
.dep_list li:hover .img02{
	display: block;
}
.dep_list li:hover h1{
	color: #fff;
}
.dep_list li:hover h2{
	color: #fff;
}

.spec_box{
	width: 100%;
	background: #edeef0;
	position: relative;
	overflow: hidden;
}
.spec_box .experts_tit{
	display: none;
}
.spec_box .experts_tit span{
	background: #edeef0;
}
.spec_tit{
	width: 100%;
	text-align: center;
	line-height: 0.4rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: lighter;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	position: absolute;
	top: 0.9rem;
	left: 0;
	z-index: 5;
}
.spec_tit div{
	font-weight: lighter;
}
.spec_tit h1{
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.35rem;
}
.spec_tit h2{
	width: 100%;
	color: #fff;
	font-size: 0.48rem;
	line-height: 0.54rem;
	position: absolute;
	top: 0.28rem;
	left: 0;
}
.spec_tit h2 span{
	color: #00712f;
}
.spec_list{
	width: 100%;
}
.spec_list li{
	float: left;
	width: 25%;
	height: 8.8rem;
	position: relative;
}
.spec_list img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.spec_tm{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all 0.6s;
}
.spec_list li:hover .spec_tm{
	opacity: 0;
}
.spec_list li:hover .spec_arrow{
	float: right;
}
.spec_con{
	width: 66%;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 17%;
	z-index: 2;
}
.spec_con h1{
	color: #fff;
	font-size: 0.4rem;
	line-height: 0.64rem;
	font-weight: normal;
}
.spec_con h2{
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.18rem;
	font-weight: normal;
	line-height: 0.36rem;
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.7);
	padding-bottom: 0.22rem;
	margin-bottom: 0.3rem;
}
.spec_arrow{
	width: 0.7rem;
	height: 0.34rem;
	border: solid 0.01rem rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.spec_arrow img{
	width: 0.23rem;
	height: 0.06rem;
}
.spec_bot{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0.74rem;
	z-index: 5;
}
.spec_bot .service_more{
	margin: 0 auto;
}

.tec_bg{
	width: 100%;
	background: url(../images/ind_89.jpg) no-repeat center;
	background-size: cover;
	padding: 2.02rem 0 1.25rem;
	overflow: hidden;
}
.tec_bg .content{
	position: relative;
}
.tec_left{
	width: 5.9rem;
}
.tec_left .service_tit{
	margin-bottom: 1.25rem;
}
.tec_more{
	width: 2.6rem;
	height: 2.05rem;
	position: relative;
}
.tec_more_txt{
	width: 100%;
	line-height: 0.6rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: lighter;
	position: absolute;
	top: 1.13rem;
	left: 0.08rem;
	z-index: 2;
}
.tec_more_txt img{
	width: 0.46rem;
	height: 0.22rem;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.12rem;
}
.tec_y1{
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: #00712f;
	position: absolute;
	top: 1.13rem;
	left: 0;
}
.tec_y2{
	width: 2.05rem;
	height: 2.05rem;
	background: #00712f;
	border-radius: 50%;
	padding: 0.3rem;
	margin-left: 0.54rem;
}
.tec_y3{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	transform: rotate(90deg);
	transition: all 0.6s;
}
.tec_y3 div{
	width: 0.77rem;
	height: 0.77rem;
	background: #deff01;
	border-radius: 50%;
}
.tec_more:hover .tec_y3{
	transform: rotate(320deg);
}
.tec_line{
	width: 8.49rem;
	height: 6.07rem;
	background: url(../images/ind_91.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -0.32rem;
	right: 1.66rem;
}
.tec_a{
	width: 2.65rem;
	color: #ad915a;
	position: absolute;
	top: -0.16rem;
	left: 3.54rem;
}
.tec_a .zimu{
	background: #ad915a;
}
.zimu{
	float: left;
	width: 0.4rem;
	height: 0.4rem;
	text-align: center;
	line-height: 0.4rem;
	border-radius: 50%;
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	margin-right: 0.1rem;
	transition: all 0.6s;
}
.tec_txt{
	float: left;
	width: 75%;
	line-height: 0.26rem;
	font-size: 0.22rem;
}
.tec_list:hover .zimu{
	transform: rotateY(360deg);
}
.tec_b{
	width: 2.36rem;
	color: #c66844;
	position: absolute;
	top: 0.32rem;
	right: -1.66rem;
}
.tec_b .zimu{
	background: #c66844;
}
.tec_c{
	width: 2.2rem;
	color: #00712f;
	position: absolute;
	top: 1.82rem;
	right: -1.96rem;
}
.tec_c .zimu{
	background: #00712f;
}
.tec_d{
	width: 2.26rem;
	color: #964f6b;
	position: absolute;
	top: 4.14rem;
	right: -1.66rem;
}
.tec_d .zimu{
	background: #964f6b;
}
.tec_e{
	width: 2.8rem;
	color: #ad915a;
	position: absolute;
	bottom: -0.24rem;
	right: -0.92rem;
}
.tec_e .zimu{
	background: #ad915a;
}
.tec_f{
	width: 2.6rem;
	color: #333;
	position: absolute;
	bottom: 0.1rem;
	left: 1.88rem;
}
.tec_f .zimu{
	background: #c66844;
}
.tec_g{
	width: 2.6rem;
	color: #964f6b;
	position: absolute;
	top: 3.9rem;
	left: -0.2rem;
}
.tec_g .zimu{
	background: #964f6b;
}
.tec_h{
	width: 2.6rem;
	color: #00712f;
	position: absolute;
	top: 1.02rem;
	left: 1.04rem;
}
.tec_h .zimu{
	background: #00712f;
}
.yuan_box{
	width: 3.23rem;
	height: 3.21rem;
	position: absolute;
	top: 1.02rem;
	left: 4rem;
}
.yuan01{
	width: 100%;
	height: 3.21rem;
	background: url(../images/ind_92.png) no-repeat;
	background-size: 100% 100%;
	animation: xuanzhuan 6s linear infinite;
}
@-webkit-keyframes xuanzhuan {
	0% {
		-webkit-transform: rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateZ(360deg);
	}
}
.yuan02{
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	background: url(../images/ind_93.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.2rem;
	left: 0.21rem;
	z-index: 1;
}
.yuan_con{
	width: 90%;
	text-align: center;
	position: absolute;
	top: 0.9rem;
	left: 5%;
	z-index: 3;
}
.yuan_con h1{
	line-height: 0.5rem;
	color: #fff;
	font-size: 0.34rem;
	margin-bottom: 0.1rem;
}
.yuan_con img{
	width: 0.36rem;
	height: 0.36rem;
	margin: 0 auto;
}

.news_di{
	width: 100%;
	background: #f8f8f8;
	padding-bottom: 1.12rem;
	overflow: hidden;
}
.news_bg{
	width: 100%;
	height: 9.38rem;
	background: url(../images/ind_95.jpg) no-repeat center;
	background-size: cover;
	padding-top: 0.87rem;
	position: relative;
}
.news_tit{
	width: 100%;
	text-align: center;
	line-height: 0.4rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: lighter;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 0.84rem;
}
.news_tit div{
	font-weight: lighter;
}
.news_tit h1{
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.35rem;
}
.news_tit h2{
	width: 100%;
	color: #fff;
	font-size: 0.48rem;
	line-height: 0.54rem;
	position: absolute;
	top: 0.28rem;
	left: 0;
}
.news_pos{
	width: 100%;
	position: absolute;
	top: 3.02rem;
	left: 0;
	z-index: 1;
}
.news .swiper-slide{
	background: rgba(255, 255, 255, 0.2);
	height: 5.41rem;
	padding: 0.35rem 0.35rem 0.12rem;
	color: #fff;
	margin: 0.56rem 0 1.03rem;
	transition: all 0.6s;
}
.news .swiper-slide:hover{
	background: rgba(101, 101, 101, 0.55);
	height: 7rem;
	padding: 0.19rem 0.35rem;
	margin: 0;
}
.news .swiper-slide:hover .news_t{
	display: block;
}
.news_t{
	margin-bottom: 0.23rem;
	position: relative;
	display: none;
}
.news_tl{
	font-size: 0.18rem;
	font-style: italic;
	text-transform: uppercase;
	margin-top: 0.05rem;
}
.news_tl h1{
	font-size: 0.28rem;
	line-height: 0.26rem;
	font-weight: normal;
}
.news_date{
	width: 2.07rem;
	border-bottom: solid 0.01rem #fff;
	text-align: right;
	line-height: 0.48rem;
	font-size: 0.36rem;
	font-weight: bold;
	position: absolute;
	right: 0;
	top: 0;
}
.news_date span{
	font-size: 0.24rem;
}
.news_pic{
	width: 100%;
	height: 4.24rem;
}
.news_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_tt{
	width: 100%;
	height: 0.7rem;
	line-height: 0.7rem;
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0);
	font-size: 0.24rem;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.13rem;
}
.news_txt{
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	display: none;
}
.news .swiper-slide:hover .news_tt{
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.36);
}
.news .swiper-slide:hover .news_txt{
	display: block;
}

.health_bg{
	background: url(../images/ind_97.jpg) no-repeat center top #f8f8f8;
	height: 10.21rem;
	padding-bottom: 0.57rem;
	overflow: hidden;
}
.health_bg .service_more{
	margin: 0 auto 0.74rem;
}
.health_bg .experts_tit{
	margin-bottom: 0.95rem;
}
.health_bg .experts_tit h2 span{
	background: #f8f8f8;
}
.health_bg .swiper{
	overflow: visible;
}
.health{
	position: relative;
}
.health .swiper-slide{
	height: 5.55rem;
	padding-right: 0.2rem;
}
.health_pic{
	width: 100%;
	height: 4.2rem;
	position: relative;
}
.health_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.health_h{
	width: 1.34rem;
	line-height: 1.06rem;
	text-align: center;
	color: #00712f;
	font-size: 1.2rem;
	font-family: Arial;
	position: absolute;
	top: -0.52rem;
	right: 0;
	z-index: 2;
	opacity: 0;
	transition: all 0.6s;
}
.health .swiper-slide:hover .health_h{
	opacity: 1;
}
.health_tm{
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	/* opacity: 0; */
	transition: all 0.6s;
}
.health_con{
	width: 86%;
	position: absolute;
	bottom: 0.14rem;
	left: 7%;
}
.health_con h1{
	color: #fff;
	font-size: 0.24rem;
	height: 0.76rem;
	line-height: 0.76rem;
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.5);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.13rem;
}
.health_txt{
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.3rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.health_line{
	width: 100%;
	height: 0.01rem;
	background: rgba(0, 113, 47, 0.2);
	position: absolute;
	left: 0;
	bottom: 0.6rem;
}
.health_yuan{
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	margin: 0.4rem 0 0 0.28rem;
	position: relative;
	z-index: 2;
	opacity: 0;
}
.health_y01{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(0, 113, 47, 0.1);
	position: absolute;
	top: 0;
	left: 0;
	animation: scaleAnimate 2s linear infinite;
}
.health_y02{
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 50%;
	background: rgba(0, 113, 47, 0.2);
	position: absolute;
	top: 0.2rem;
	left: 0.2rem;
	animation: scaleAnimate 1.7s linear infinite;
	z-index: 3;
}
.health_y03{
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	background: #00712f;
	position: absolute;
	top: 0.3rem;
	left: 0.3rem;
	z-index: 4;
}
@keyframes scaleAnimate {
  0% {
      transform: scale(1);
      opacity: 0;
  }

  50% {
      transform: scale(1.4);
      opacity: 0.8;
  }

  100% {
      transform: scale(1.8);
      opacity: 0;
  }
}
.health .swiper-slide:hover .health_tm{
	opacity: 1;
}
.health .swiper-slide:hover .health_yuan{
	opacity: 1;
}
.health .swiper-button-next, .health .swiper-button-prev{
	width: 1rem;
  height: 0.6rem;
  top: 1.8rem;
}
.health .swiper-button-next{
  right: 0;
	background: url(../images/ind_99.png) no-repeat;
	background-size: 100% 100%;
}
.health .swiper-button-prev{
  left: 0;
	background: url(../images/ind_99.png) no-repeat;
	background-size: 100% 100%;
	transform: rotateY(180deg);
}
.health .swiper-button-next:after, .health .swiper-button-prev:after{
  display: none;
}
.health .swiper-button-lock{
	display: block;
}
.health .swiper-button-next.swiper-button-disabled, .health .swiper-button-prev.swiper-button-disabled{
	opacity: 0;
}
.health_bot{
	height: 0.55rem;
	position: relative;
}
.health_bot .swiper-num{
	width: 2.7rem;
	line-height: 0.4rem;
	font-size: 0.4rem;
	position: absolute;
	left: 0;
	top: 0;
}
.health_bot .active{
	float: left;
}
.health_bot .total{
	float: right;
}
.health_bot .swiper-pagination{
	width: 1.6rem;
	height: 0.02rem;
	background: rgba(0, 113, 47, 0.2);
	left: 0.5rem;
	top: 0.2rem;
}
.health_bot .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: #00712f;
}
.health_bot .service_more{
	margin: 0 !important;
	float: right;
}

.dqyc_box{
	padding-top: 1.18rem;
	overflow: hidden;
}
.dqyc_box .experts_tit{
	margin-bottom: 1.06rem;
}
.dqyc_box .content{
	width: 17rem;
}
.dqyc_type{
	float: left;
	width: 6.1rem;
}
.dqyc_type ul{
	margin-right: -0.3rem;
}
.dqyc_type li{
	float: left;
	text-align: right;
	width: 2.9rem;
	height: 2.9rem;
	margin: 0 0.3rem 0.3rem 0;
	cursor: pointer;
}
.dqyc_type img{
	width: 2.6rem;
	height: 2.6rem;
	display: inline-block;
	transition: all 0.6s;
}
.dqyc_type li:hover img{
	width: 100%;
	height: 100%;
	margin: 0 !important;
}
.dqyc_type li:nth-child(even){
	text-align: left;
}
.dqyc_type li:nth-child(1) img{
	margin-top: 0.3rem;
}
.dqyc_type li:nth-child(2) img{
	margin-top: 0.3rem;
}
.dqyc_right{
	float: right;
	width: 10.9rem;
}
.dqyc_pic{
	width: 100%;
}
.dqyc_pic img{
	width: 100%;
}

.case_bg{
	width: 100%;
	height: 9.25rem;
	background: url(../images/ind_105.jpg) no-repeat left center;
	background-size: cover;
	overflow: hidden;
}
.case_left{
	float: left;
	width: 25%;
	margin-left: 5%;
	padding-top: 2.54rem;
}
.case_tit{
	width: 100%;
	text-align: center;
	line-height: 0.48rem;
	color: #666;
	font-size: 0.24rem;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}
.case_tit div{
	font-weight: lighter;
}
.case_tit h1{
	color: #00712f;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.6rem;
}
.case_tit h2{
	color: #333;
	font-size: 0.48rem;
	line-height: 0.8rem;
	margin-bottom: 0.12rem; 
}
.case_logo{
	width: 2.45rem;
	margin: 0 auto 0.37rem;
}
.case_logo img{
	width: 100%;
}
.case_left .service_more{
	margin: 0 auto;
}
.case_right{
	float: left;
	width: 62%;
	/* background: url(../images/ind_107.png) no-repeat;
	background-size: cover; */
	position: relative;
	margin-right: 8%;
}
.case_list{
	width: 100%;
	height: 9.11rem;
}
.case_list .swiper-slide{
	padding: 3.83rem 0 0 0.1rem;
	background: url(../images/ind_107.png) no-repeat;
	background-size: 100% 100%;
	transition: all 0.6s;
	overflow: hidden;
}
.case_list .swiper-slide-active{
	background: none;
}
.case_list .swiper-slide:nth-child(even){
	padding: 2.45rem 0 0 0.1rem;
}
.case_list .swiper-slide:nth-child(even) .case_date{
	margin-bottom: 0.1rem;
}
.case_pic{
	width: 100%;
	margin-bottom: 0.2rem;
	position: relative;
	z-index: 2;
}
.case_pic img{
	width: 100%;
	height: 1.6rem;
	object-fit: cover;
}
.case_con{
	width: 96%;
	position: relative;
	z-index: 2;
}
.case_tt{
	color: #333;
	font-size: 0.18rem;
	font-weight: bold;
	line-height: 0.26rem;
	height: 0.78rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.case_txt{
	color: #666;
	font-size: 0.14rem;
	font-weight: bold;
	line-height: 0.22rem;
	height: 0;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	white-space: normal;
	transition: all 0.6s;
}
.case_date{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.5rem;
}
.case_more{
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	margin: 1.5rem 0 0 0.22rem;
	display: none;
	position: relative;
	z-index: 2;
}
.case_more img{
	width: 100%;
	height: 100%;
}
.case_list .txt{
	width: 0.7rem;
	line-height: 0.98rem;
	color: #d7d7d7;
	font-size: 0.8rem;
	font-weight: bold;
	position: absolute;
	opacity: 0.45;
}
.txt01{
	right: 0;
	bottom: 0.4rem;
}
.txt02{
	top: 0.62rem;
	left: -0.05rem;
}
/* .case_list .swiper-slide-duplicate-prev .txt{
	right: 0;
	bottom: auto;
	top: 0.62rem;
	left: auto;
} */
/* .case_list .swiper-slide-duplicate-prev .case_pic,
.case_list .swiper-slide-duplicate-prev .case_con,
.case_list .swiper-slide-duplicate-prev .case_more{
	opacity: 0;
} */
.case_list .swiper-slide:hover{
	padding: 1.67rem 0 0 0.1rem;
}
.case_list .swiper-slide:hover .case_tt{
	color: #00712f;
	margin-bottom: 0.16rem;
}
.case_list .swiper-slide:hover .case_txt{
	height: 0.88rem;
}
.case_list .swiper-slide:hover .case_more{
	display: block;
}
.case_list .swiper-button-next{
	width: 0.7rem;
	height: 1.45rem;
	background: #00712f;
	border-radius: 0.04rem;
	right: 0.56rem;
	top: 50%;
	transform: translateY(-50%);
}
.case_list .swiper-button-next img{
	width: 0.32rem;
	height: 0.08rem;
}
.case_list .swiper-button-next:after{
	display: none;
}

.links_bg{
	background: url(../images/ind_110.jpg) no-repeat right top #f8f8f8;
	padding: 0.94rem 0 0.88rem;
	height: 3.02rem;
}
.links_bg .content{
	position: relative;
}
.links_en{
	width: 3.05rem;
	color: #333;
	opacity: 0.1;
	font-size: 0.96rem;
	line-height: 1.36rem;
	text-transform: uppercase;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: -0.55rem;
}
.links_tit{
	width: 1.6rem;
	text-align: center;
	height: 2rem;
	padding-top: 0.69rem;
	background: rgba(255, 255, 255, 0.7);
	border-top-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
	position: absolute;
	top: -0.4rem;
	left: 0.2rem;
	z-index: 1;
}
.links_tit h1{
	color: #00712f;
	font-size: 0.26rem;
	font-weight: normal;
	line-height: 0.58rem;
}
.links_tit i{
	width: 0.28rem;
	height: 0.02rem;
	background: #00712f;
	display: block;
	margin: 0 auto;
}
.link_box{
	float: right;
	width: 15.18rem;
	height: 1.2rem;
	background: #fff;
	border-radius: 0.06rem;
	padding-left: 1.55rem;
}
.link{
	width: 100%;
	height: 1.2rem;
	line-height: 1.2rem;
	font-size: 0.2rem;
	color: #444;
	font-weight: lighter;
}
.link .swiper-slide{
	padding: 0 0.44rem;
	display: inline-block;
	width: auto;
}
.link i{
	display: block;
	width: 0.01rem;
	height: 0.2rem;
	background: #d2d2d2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.foot_bg{
	width: 100%;
	height: 7.99rem;
	background: url(../images/ind_111.jpg) no-repeat center;
	background-size: cover;
	padding: 0.49rem 0;
	color: #fff;
}
.net_txt{
	width: 100%;
	text-align: center;
	line-height: 0.42rem;
	font-size: 0.16rem;
	margin-bottom: 0.38rem;
}
.net_txt span{
	font-size: 0.3rem;
	font-weight: bold;
	padding: 0 0.1rem;
}
.f_nav{
	width: 100%;
	text-align: center;
	line-height: 0.8rem;
	border-top: solid 0.01rem rgba(255, 255, 255, 0.5);
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.5);
	font-size: 0.18rem;
	color: rgba(255, 255, 255, 0.2);
	margin-bottom: 0.32rem;
}
.f_nav a{
	color: rgba(255, 255, 255, 0.8);
	padding: 0 0.72rem;
}
.f_nav span:last-child{
	display: none;
}
.f_conbox{
	margin-bottom: 0.2rem;
}
.f_con_left{
	float: left;
	width: 13rem;
	padding-top: 0.17rem;
}
.f_con{
	width: 100%;
	font-size: 0.24rem;
	line-height: 0.54rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.16rem;
}
.f_con img{
	width: 0.28rem;
	height: 0.28rem;
	float: left;
	margin: 0.14rem 0.14rem 0 0;
}
.f_add{
	width: 7.4rem;
}
.f_tel{
	width: 4.8rem;
}
.copyright{
	font-size: 0.18rem;
	line-height: 0.42rem;
}
.f_ba img{
    float: left;
    width: 0.2rem;
    height: 0.2rem;
    margin: 0.12rem 0.1rem 0 0;
}
.f_ba a{
    margin-right: 0.2rem;
}
.f_code{
	float: right;
	width: 1.9rem;
	text-align: center;
}
.f_code img{
	width: 1.29rem;
	height: 1.29rem;
	margin: 0 auto 0.12rem;
}
.f_code h1{
	font-size: 0.14rem;
	line-height: 0.3rem;
	font-weight: normal;
}
.map{
	width: 100%;
	height: 3rem;
}
.BMapLabel{
	display: none !important;
}
.BMap_bubble_title{
	font-size: 0.16rem;
	color: #222;
	margin-bottom: 0.06rem;
}
.BMap_bubble_content{
	color: #999;
	font-size: 0.14rem;
}
.BMap_shadow{
	display: none !important;
}


/* 医院概况 */
.bn_scale{
	animation: scale 2s;
}
.int_box{
	overflow: hidden;
	margin-top: -0.95rem;
	position: relative;
	z-index: 1;
}
.int_flex{
	display: flex;
	justify-content: space-between;
}
.int_w{
	width: 4rem;
}
.int_a{
	margin-top: 0.59rem;
}
.int_a_top{
	width: 100%;
	height: 2.5rem;
	border: solid 0.01rem #bfbfbf;
	border-bottom: none;
	padding: 0.8rem 0.3rem 0 0.3rem;
}
.int_a_tit{
	border-bottom: solid 0.01rem #d1ded7;
	padding-bottom: 0.37rem;
	position: relative;
}
.int_a_tit i{
	width: 0.8rem;
	height: 0.04rem;
	background: #00712f;
	display: block;
	position: absolute;
	left: 0;
	bottom: -0.01rem;
}
.int_a_titleft{
	float: left;
	width: 40%;
	line-height: 0.34rem;
	color: #00712f;
	font-size: 0.32rem;
	font-weight: bold;
	font-style: italic;
	margin-right: 0.14rem;
}
.int_a_titr{
	float: left;
	width: 1.4rem;
	line-height: 0.22rem;
	color: #00712f;
	opacity: 0.8;
	font-size: 0.14rem;
	font-family: Arial;
	font-weight: lighter;
	margin-top: 0.04rem;
}
.int_a_bot{
	width: 100%;
	height: 5rem;
	background: url(../images/about_01.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 0.85rem 0 0 0.8rem;
}
.int_a_txt{
	color: #fff;
	line-height: 0.48rem;
	font-size: 0.18rem;
	font-style: italic;
}
.int_a_txt span{
	font-size: 0.36rem;
	font-weight: bold;
}

.int_b{
	height: 6.19rem;
	padding: 0.4rem 0.35rem;
	background: url(../images/about_02.jpg) no-repeat;
	background-size: cover;
	margin-top: 1.29rem;
}
.int_b_tit{
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.2);
	padding-bottom: 0.37rem;
	position: relative;
	margin-bottom: 0.68rem;
}
.int_b_tit i{
	width: 0.8rem;
	height: 0.04rem;
	background: #fff;
	display: block;
	position: absolute;
	left: 0;
	bottom: -0.01rem;
}
.int_b_titleft{
	float: left;
	width: 40%;
	line-height: 0.34rem;
	color: #fff;
	font-size: 0.32rem;
	font-weight: bold;
	font-style: italic;
	margin-right: 0.14rem;
}
.int_b_titr{
	float: left;
	width: 1.4rem;
	line-height: 0.22rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.14rem;
	font-family: Arial;
	font-weight: lighter;
	margin-top: 0.04rem;
}
.int_b .int_a_txt{
	margin-left: 0.5rem;
}

.int_c_top{
	width: 100%;
	height: 5rem;
	background: url(../images/about_03.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 0.72rem 0.1rem 0 0.85rem;
}
.int_c_bot{
	width: 100%;
	height: 2.48rem;
	border: solid 0.01rem #bfbfbf;
	border-top: none;
	padding: 0.64rem 0.32rem 0 0.32rem;
}
.int_c_tit{
	border-bottom: solid 0.01rem rgba(27, 91, 54, 0.2);
	padding-bottom: 0.37rem;
	position: relative;
	margin-bottom: 0.68rem;
}
.int_c_tit i{
	width: 0.8rem;
	height: 0.04rem;
	background: #5f9230;
	display: block;
	position: absolute;
	left: 0;
	bottom: -0.01rem;
}
.int_c_titleft{
	float: left;
	width: 40%;
	line-height: 0.34rem;
	color: #5f9230;
	font-size: 0.32rem;
	font-weight: bold;
	font-style: italic;
	margin-right: 0.14rem;
}
.int_c_titr{
	float: left;
	width: 1.4rem;
	line-height: 0.22rem;
	color: #5f9230;
	opacity: 0.8;
	font-size: 0.14rem;
	font-family: Arial;
	font-weight: lighter;
	margin-top: 0.04rem;
}

.int_d{
	margin-top: 0.59rem;
}
.ind_d_bot{
	width: 100%;
	height: 5rem;
	background: url(../images/about_04.jpg) no-repeat;
	background-size: cover;
	padding: 0.7rem 0.1rem 0 0.8rem;
}

.jk_box{
	padding: 1.02rem 0 0.52rem;
	overflow: hidden;
	margin-bottom: 0.97rem;
}
.jk_box .team_tit{
	margin-bottom: 0.64rem;
}
.jk_box .team_tit h2 span{
	background: #fff;
}
.jk_txt{
	color: #444;
	font-size: 0.2rem;
	line-height: 0.5rem;
	text-align: justify;
}

.zk_bg{
	width: 100%;
	padding-bottom: 1.03rem;
	background: url(../images/about_05.jpg) no-repeat center;
	background-size: cover;
}
.zk_white{
	width: 95%;
	background: #fff;
	padding: 0 5% 0.82rem 0;
	margin: -0.23rem 0 0 5%;
	overflow: hidden;
}
.zk_bg .team_tit h2 span{
	background: #fff;
}
.zk_bg .team_tit{
	margin-bottom: 0.9rem;
}
.zk_bg .dep_type{
	margin: 0 auto 0.64rem;
}
.zk_bg .dep_type li{
	background: #f5f5f5;
}
.zk_bg .dep_type li.on{
	background: #00712f;
}
.zk_bg .dep_box{
	padding: 0 0.44rem;
}
.zk_bg .dep_list li{
	box-shadow: none;
	background: #f8f8f8;
}
.zk_bg .dep_list li:hover{
	background: #00712f;
}

.honor_bg{
	width: 100%;
	height: 9.21rem;
	background: url(../images/about_06.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
	padding-top: 1.2rem;
}
.honor_bg .team_tit{
	margin-bottom: 0.3rem;
}
.honor_bg .team_tit h2 span{
	background: #f6f7f7;
}
.honor{
	width: 100%;
}
.honor ul{
	margin-right: -3%;
}
.honor ul li{
	float: left;
	width: 13.66%;
	margin: 0.7rem 3% 0.72rem 0;
}
.honor ul li:nth-child(11n+7){
	margin-left: 8.5%;
}
.honor ul li:nth-child(11n+11){
	margin-right: 8.5%;
}
.honor_pic{
	width: 100%;
	height: 1.62rem;
	position: relative;
}
.honor_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.honor_k{
	width: 100%;
	height: 100%;
	background: url(../images/about_07.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.honor_phone{
	width: 100%;
	height: 5rem;
}
.honor_phone .swiper-slide{
	height: 2.2rem;
}


/* 医院概况-大事记 */
.dsj_bg{
	width: 100%;
	height: 10.57rem;
	background: url(../images/about_19.jpg) no-repeat center;
	background-size: cover;
	border-bottom: solid 0.23rem #f8fafc;
	overflow: hidden;
}
.dsj_tit{
	height: 1.5rem;
	line-height: 1.5rem;
	border-bottom: solid 0.01rem #e5e5e5;
	background: url(../images/about_20.png) no-repeat left center;
	background-size: 0.55rem 0.5rem;
	padding-left: 0.75rem;
	color: #00712f;
	font-size: 0.48rem;
	font-weight: bold;
	margin-bottom: 0.21rem;
}
.dsj_tit span{
	color: #cad0cd;
	font-size: 0.3rem;
	text-transform: uppercase;
	padding-left: 0.12rem;
	font-weight: normal;
}
.dsj_line{
	width: 100%;
	min-height: 6.6rem;
	background: url(../images/about_21.png) no-repeat left 0.91rem;
	background-size: 100% 4.58rem;
}
.dsj{
	width: 85%;
	padding-bottom: 1.4rem;
	margin: 0;
	position: relative;
}
.dsj_pic{
	width: 2.5rem;
	height: 1.4rem;
	background: linear-gradient(to right, #c3d0a3, #d6e7d7);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.15rem;
}
.dsj_pic img{
	width: 2.42rem;
	height: 1.32rem;
	object-fit: cover;
}
.dsj_tt{
	color: #333;
	font-size: 0.2rem;
	height: 0.54rem;
	line-height: 0.54rem;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dsj_tt span{
	font-size: 0.3rem;
	padding-right: 0.15rem;
}
.dsj_y{
	width: 0.22rem;
	height: 0.22rem;
	background: #00712f;
	border-radius: 50%;
	border: solid 0.04rem #fff;
	margin: 0.17rem auto;
}
.dsj_txt{
	color: #333;
	font-size: 0.15rem;
	line-height: 0.26rem;
	/* height: 0.78rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal; */
}
.dsj_txt div{
	padding-left: 0.15rem;
	position: relative;
}
.dsj_txt b{
	position: absolute;
	top: 0;
	left: 0;
}
.dsj .swiper-slide:hover .dsj_tt{
	color: #00712f;
}
.dsj .swiper-slide:nth-child(4n+1){
	margin-top: 2.99rem;
}
.dsj .swiper-slide:nth-child(4n+2){
	margin-top: 2.4rem;
}
.dsj .swiper-slide:nth-child(4n+3){
	margin-top: 1.38rem;
}
.dsj .swiper-slide:nth-child(4n+2) .dsj_y{
	margin: 0.2rem auto 0.36rem;
}
.dsj .swiper-slide:nth-child(4n+3) .dsj_y{
	margin: 0.25rem auto 0.34rem;
}
.dsj .swiper-slide:nth-child(4n+4) .dsj_y{
	margin: 0.3rem auto 0.62rem;
}
.dsj .swiper-button-next, .dsj .swiper-button-prev{
	width: 0.66rem;
	height: 0.66rem;
	border-radius: 50%;
	border: solid 0.01rem #999;
	top: auto;
	bottom: 0;
}
.dsj .swiper-button-prev{
	left: 0.52rem;
}
.dsj .swiper-button-next{
	left: 1.42rem;
}
.dsj .swiper-button-next:after, .dsj .swiper-button-prev:after{
	color: #999;
	font-size: 0.2rem;
	font-weight: bold;
}
.dsj .swiper-button-next:hover, .dsj .swiper-button-prev:hover{
	border: solid 0.01rem #00712f;
}
.dsj .swiper-button-next:hover:after, .dsj .swiper-button-prev:hover:after{
	color: #00712f;
}
.dsj .swiper-button-next.swiper-button-disabled, .dsj .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}


/* 医院概况-设备展示 */
.sbzs_box{
	padding: 0.54rem 0 0.8rem;
}
.sbzs_type{
	width: 100%;
}
.sbzs_type ul{
	margin-right: -0.33rem;
}
.sbzs_type li{
	float: left;
	width: 4rem;
	height: 1.58rem;
	margin-right: 0.33rem;
	position: relative;
}
.sbzs_type_pic{
	width: 100%;
	height: 1.2rem;
	border-radius: 0.2rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0.05rem 0.05rem 0.1rem rgba(0, 0, 0, 0.3);
}
.sbzs_type img{
	width: 100%;
	height: 1.58rem;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.sbzs_type_bg{
	width: 100%;
	height: 100%;
	background: rgba(27, 27, 27, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.sbzs_type_k{
	width: 4.16rem;
	height: 1.58rem;
	background: url(../images/about_30.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: none;
}
.sbzs_type_txt{
	width: 80%;
	height: 0.71rem;
	line-height: 0.71rem;
	text-align: center;
	background: url(../images/about_31.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.26rem;
	font-weight: bold;
	position: absolute;
	top: 0.24rem;
	left: 10%;
	z-index: 2;
}
.sbzs_type li:hover .sbzs_type_pic{
	height: 1.58rem;
	box-shadow: none;
}
.sbzs_type li:hover .sbzs_type_bg{
	background: rgba(0, 113, 47, 0.8);
}
.sbzs_type li:hover .sbzs_type_k{
	display: block;
}
.sbzs_type li.on .sbzs_type_pic{
	height: 1.58rem;
	box-shadow: none;
}
.sbzs_type li.on .sbzs_type_bg{
	background: rgba(0, 113, 47, 0.8);
}
.sbzs_type li.on .sbzs_type_k{
	display: block;
}
.sbzs_m{
	margin-bottom: 0.37rem;
}
.sbzs_list{
	float: left;
	color: #333;
	font-size: 0.2rem;
	line-height: 0.3rem;
}
.sbzs_en{
	float: left;
	text-transform: uppercase;
	color: rgba(0, 113, 47, 0.1);
	font-size: 0.3rem;
	font-weight: bold;
	line-height: 0.46rem;
	margin-left: 0.3rem;
}
.sbzs{
	width: 100%;
}
.sbzs ul{
	margin-right: -2.33%;
}
.sbzs li{
	float: left;
	width: 31%;
	margin: 0 2.33% 0.45rem 0;
}
.sbzs_pic{
	width: 100%;
	height: 4.2rem;
	overflow: hidden;
}
.sbzs_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.sbzs li:hover img {
	transform: scale(1.1);
}
.sbzs_txt{
	width: 100%;
	text-align: center;
	line-height: 0.3rem;
	height: 0.6rem;
	font-size: 0.18rem;
	margin-top: 0.2rem;
}


/* 新闻中心 */
.path_l{
	float: left;
}
.news_type{
	float: right;
}
.news_type ul{
	margin-right: -1.14rem;
}
.news_type li{
	float: left;
	line-height: 0.8rem;
	margin-right: 1.14rem;
	color: #333;
	font-size: 0.2rem;
}
.news_type i{
	display: inline-block;
	width: 0.2rem;
	height: 0.04rem;
	background: url(../images/news_01.jpg) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-right: 0.18rem;
	opacity: 0;
	transition: all 0.6s;
}
.news_type li:hover{
	color: #00712f;
}
.news_type li:hover i{
	opacity: 1;
}
.news_type li.on{
	color: #00712f;
}
.news_type li.on i{
	opacity: 1;
}

.dyn_box{
	padding: 0.72rem 0 0.85rem;
	overflow: hidden;
}
.dyn_box .team_tit{
	margin-bottom: 0.7rem;
}
.dyn_box .team_tit h2 span{
	background: #fff;
}
.dyn_p{
	padding-bottom: 0.84rem;
	overflow: hidden;
}
.dyn_left{
	float: left;
	width: 45%;
	height: 5.8rem;
	position: relative;
	overflow: hidden;
}
.dyn_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.dyn_left:hover img {
	transform: scale(1.1);
}
.dyn_left_tm{
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.dyn_left_txt{
	width: 90%;
	line-height: 1.14rem;
	height: 1.14rem;
	color: #fff;
	font-size: 0.26rem;
	font-weight: bold;
	border-top: solid 0.01rem rgba(255, 255, 255, 0.3);
	position: absolute;
	left: 5%;
	bottom: 0;
	z-index: 2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dyn_right{
	float: right;
	width: 52%;
}
.dyn_right .swiper-slide{
	height: 5.8rem;
	background: #f8f8f8;
	padding: 0.3rem;
	color: #666;
}
.dyn_right .swiper-slide:hover{
	background: #00712f;
	color: #fff;
}
.dyn_pic{
	width: 100%;
	height: 2.7rem;
}
.dyn_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dyn_tt{
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin: 0.25rem 0;
}
.dyn_txt{
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.26rem;
}
.dyn_date{
	float: left;
	position: relative;
	padding-left: 0.15rem;
}
.dyn_date i{
	width: 0.01rem;
	height: 0.46rem;
	display: block;
	background: #999;
	position: absolute;
	top: 0.16rem;
	left: 0;
}
.dyn_date h1{
	color: #666;
	font-size: 0.16rem;
	font-weight: normal;
	line-height: 0.34rem;
}
.dyn_date h1 span{
	font-size: 0.3rem;
	font-weight: bold;
	padding-left: 0.08rem;
}
.dyn_date h2{
	color: rgba(153, 153, 153, 0.3);
	font-size: 0.2rem;
	line-height: 0.3rem;
	text-transform: uppercase;
}
.dyn_arrow{
	float: right;
	width: 0.24rem;
	height: 0.15rem;
	position: relative;
	margin-top: 0.3rem;
}
.dyn_arrow img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.dyn_right .swiper-slide:hover .dyn_date i{
	background: #fff;
}
.dyn_right .swiper-slide:hover .dyn_date h1{
	color: #fff;
}
.dyn_right .swiper-slide:hover .dyn_date h2{
	color: rgba(255, 255, 255, 0.3);
}
.dyn_right .swiper-slide:hover .img01{
	display: none;
}
.dyn_right .swiper-slide:hover .img02{
	display: block;
}
.dyn_box .service_more{
	margin: 0 auto;
}

.dj_bg{
	width: 100%;
	background: url(../images/news_06.jpg) no-repeat center top;
	background-size: cover;
	padding: 1.06rem 0 0.74rem;
	overflow: hidden;
}
.dj_bg .team_tit h2 span{
	background: #ecf1ee;
}
.dj_bg .service_more{
	margin: 0 auto;
}
.djgz{
	width: 100%;
	margin-bottom: 0.54rem;
}
.djgz_pic{
	width: 100%;
	height: 3rem;
}
.djgz_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.djgz_bot{
	width: 80%;
	height: 2.3rem;
	padding: 0.32rem 0.36rem 0.22rem;
	background: #fff;
	margin: -0.58rem auto 0;
	position: relative;
	z-index: 1;
}
.djgz_bot h1{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.djgz_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin: 0.18rem 0 0.12rem;
}
.djgz_date{
	color: #666;
	font-size: 0.18rem;
}
.dj_list{
	width: 100%;
	margin-bottom: 0.65rem;
}
.dj_list ul{
	margin-right: -4%;
}
.dj_list li{
	float: left;
	width: 46%;
	margin-right: 4%;
	border-bottom: solid 0.01rem #e5e5e5;
}
.dj_date{
	float: left;
	width: 10%;
	text-align: center;
}
.dj_date h1{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.74rem;
	font-weight: normal;
}
.dj_date i{
	width: 0.26rem;
	height: 0.01rem;
	display: block;
	background: #cfcfcf;
	margin: 0 0 0.1rem 0.53rem;
	display: none;
}
.dj_date h2{
	color: #333;
	font-size: 0.56rem;
	font-weight: normal;
	line-height: 0.6rem;
	display: none;
}
.dj_r{
	float: right;
	width:85%;
}
.dj_r h1{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.74rem;
	height: 0.74rem;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dj_r h1 span{
	display: inline-block;
	border-radius: 0.03rem;
	color: #fff;
	font-size: 0.12rem;
	line-height: 0.24rem;
	padding: 0 0.03rem;
	background: #d81e06;
	margin-left: 0.05rem;
}
.dj_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	margin-top: 0.04rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	display: none;
}
.dj_list li:nth-child(1){
	padding-bottom: 0.35rem;
}
.dj_list li:nth-child(1) .dj_date h1{
	line-height: 0.54rem;
}
.dj_list li:nth-child(1) .dj_date i{
	display: block;
}
.dj_list li:nth-child(1) .dj_r h1{
	color: #333;
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.64rem;
	height: 0.64rem;
}
.dj_list li:nth-child(1) .dj_date h2{
	display: block;
}
.dj_list li:nth-child(1) .dj_txt{
	display: block;
}
.dj_list li:nth-child(2){
	padding-bottom: 0.35rem;
}
.dj_list li:nth-child(2) .dj_date h1{
	line-height: 0.54rem;
}
.dj_list li:nth-child(2) .dj_date i{
	display: block;
}
.dj_list li:nth-child(2) .dj_r h1{
	color: #333;
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.64rem;
	height: 0.64rem;
}
.dj_list li:nth-child(2) .dj_date h2{
	display: block;
}
.dj_list li:nth-child(2) .dj_txt{
	display: block;
}

.ann_box{
	padding: 1.03rem 0 0.81rem;
	overflow: hidden;
}
.ann_box .team_tit{
	margin-bottom: 0.72rem;
}
.ann_box .team_tit h2 span{
	background: #fff;
}
.ann_box .service_more{
	margin: 0 auto;
}
.ann_list{
	width: 100%;
	height: 4rem;
	margin-bottom: 0.58rem;
}
.ann_list .swiper-slide{
	height: 1.8rem;
	background: #f8f8f8;
	padding: 0.2rem;
}
.ann_list .swiper-slide:hover{
	background: #00682d;
}
.ann_pic{
	float: left;
	width: 34%;
	height: 1.4rem;
}
.ann_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ann_r{
	float: right;
	width: 62%;
}
.ann_r h1{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.46rem;
	height: 0.46rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ann_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin: 0.03rem 0 0.1rem;
}
.ann_date{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.3rem;
}
.ann_list .swiper-slide:hover .ann_r h1{
	color: #fff;
}
.ann_list .swiper-slide:hover .ann_txt{
	color: #fff;
}
.ann_list .swiper-slide:hover .ann_date{
	color: #fff;
}

.media_box{
	width: 100%;
	min-height: 13rem;
	position: relative;
	padding: 0.94rem 0 0.87rem;
	background: #f8f8f8;
	overflow: hidden;
}
.media_box .service_more{
	margin: 0 auto;
}
.media_bgtop{
	width: 100%;
	height: 6.25rem;
	background: url(../images/news_09.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.media_box .con17{
	position: relative;
	z-index: 1;
}
.media_tit{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 0.76rem;
}
.media_tit h1{
	color: #c9c9cd;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.76rem;
	white-space: nowrap;
	overflow: hidden;
}
.media_tit h2{
	width: 100%;
	color: #fff;
	font-size: 0.48rem;
	line-height: 0.64rem;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.media_tit h2 span{
	display: inline-block;
	background: linear-gradient(to right, #266a45, #3b7353);
	padding: 0 0.05rem;
}
.media_tit i{
	width: 5rem;
	height: 0.02rem;
	background: #e5e5e5;
	display: block;
	margin: 0 auto;
	position: relative;
}
.media_tit i span{
	width: 1.2rem;
	height: 0.04rem;
	display: block;
	background: #fff;
	position: absolute;
	top: -0.01rem;
	left: 1.9rem;
}
.media{
	width: 100%;
	margin-bottom: 0.5rem;
}
.media .swiper-slide{
	margin-top: 1rem;
	transition: transform 0.3s ease;
}
.media .swiper-slide:hover{
	transform: translateY(-1rem);
}
.media .swiper-slide:hover .media_pic i{
	left: 50%;
	transform: translateX(-50%);
}
.media_pic{
	width: 100%;
	height: 7.2rem;
	position: relative;
}
.media_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.media_pic i{
	width: 1rem;
	height: 0.1rem;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.6s;
}
.media_tm{
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(0,36,15,0), rgba(0,36,15,0.9));
	position: absolute;
	left: 0;
	bottom: 0;
}
.media_con{
	width: 90%;
	position: absolute;
	left: 5%;
	bottom: 0.23rem;
	z-index: 1;
}
.media_t{
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.2);
}
.media_tl{
	float: left;
	color: rgba(255, 255, 255, 0.2);
	font-size: 0.2rem;
	line-height: 0.56rem;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
}
.media_tr{
	float: right;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.16rem;
}
.media_tr span{
	font-size: 0.3rem;
	font-weight: bold;
	color: #fff;
	padding-left: 0.1rem;
}
.media_b{
	margin-top: 0.13rem;
}
.media_txt{
	float: left;
	width: 70%;
	line-height: 0.36rem;
	height: 0.72rem;
	color: #fff;
	font-size: 0.22rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.media_btn{
	float: right;
	width: 0.6rem;
	height: 0.6rem;
	position: relative;
	margin-top: 0.09rem;
}
.media_btn img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.media .swiper-slide:hover .img01{
	display: none;
}
.media .swiper-slide:hover .img02{
	display: block;
}

.rec_box{
	padding: 0.92rem 0 0.7rem;
	overflow: hidden;
}
.rec_box .service_more{
	margin: 0 auto 0.4rem;
}
.rec_box .team_tit{
	margin-bottom: 0.74rem;
}
.rec_box .team_tit h2 span{
	background: #fff;
}
.rec_top{
	width: 100%;
	height: 0.7rem;
	line-height: 0.7rem;
	background: #00712f;
	color: #fff;
	font-size: 0.18rem;
	font-weight: bold;
	margin-bottom: 0.1rem;
}
.rec01{
	float: left;
	width: 29%;
	padding-left: 4%;
}
.rec02{
	float: left;
	width: 20%;
}
.rec04{
	float: left;
	width: 22%;
}
.rec05{
	float: left;
}
.rec_list{
	width: 100%;
	margin-bottom: 0.6rem;
}
.rec_list li{
	margin-bottom: 0.1rem;
}
.rec_t{
	width: 100%;
	line-height: 0.7rem;
	background: #f7f8fc;
	color: #000033;
	font-size: 0.16rem;
	cursor: pointer;
}
.rec_icon{
	width: 0.38rem;
	height: 0.38rem;
	margin-top: 0.16rem;
	background: url(../images/news_13.png) no-repeat;
	background-size: 100% 100%;
}
.rec_list li.on .rec_icon{
	background: url(../images/news_14.png) no-repeat;
	background-size: 100% 100%;
}
.rec_b{
	width: 100%;
	background: #f7f8fc;
	margin-top: 0.02rem;
	padding: 0.25rem 4% 0.3rem;
	display: none;
}
.rec_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.34rem;
	text-align: justify;
}
.rec_txt h1{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.38rem;
}


/* 专家团队 */
.main_bn{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.main_bn img{
	width: 100%;
}
.mbn_txt{
	width: 100%;
	text-align: center;
	color: #333;
	font-size: 0.18rem;
	line-height: 0.4rem;
	position: absolute;
	top: 55%;
	transform: translateY(-55%);
	left: 0;
	z-index: 1;
}
.mbn_txt h1{
	color: #333;
	font-size: 0.5rem;
	line-height: 0.88rem;
	margin-bottom: 0.12rem;
}
.mbn_txt h1 span{
	display: inline-block;
	border-bottom: solid 0.01rem #fff;
}
.mbn_txt h1 span i{
	width: 0.5rem;
	height: 0.03rem;
	display: block;
	background: #00712f;
	margin: 0 auto -0.01rem;
}

.path_bg{
	width: 100%;
	background: #fff;
	box-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.path{
	height: 0.8rem;
	line-height: 0.8rem;
	background: url(../images/team_01.png) no-repeat left center;
	background-size: 0.22rem 0.2rem;
	padding-left: 0.35rem;
	color: #999;
	font-size: 0.18rem;
}
.path span{
	color: #333;
}
.path a:hover{
	color: #333;
}

.keshi_box{
	padding: 0.3rem 0 0.62rem;
	overflow: hidden;
}
.keshi_type{
	width: 100%;
	text-align: center;
	border-bottom: solid 0.01rem #f4f4f4;
	margin-bottom: 0.32rem;
}
.keshi_type li{
	line-height: 0.68rem;
	margin: 0 0.92rem;
	display: inline-block;
	color: #333;
	font-size: 0.24rem;
}
.keshi_type i{
	display: block;
	width: 1rem;
	height: 0.07rem;
	background: url(../images/team_02.png) no-repeat;
	background-size: 100% 100%;
	margin: 0 auto;
	transform: scale(0,0);
	transition: all 0.6s;
}
.keshi_type li.on{
	color: #00712f;
	font-weight: bold;
}
.keshi_type li.on i{
	transform: scale(1,1);
}
.keshi_type li:hover i{
	transform: scale(1,1);
}
.keshi_type li:hover{
	color: #00712f;
	font-weight: bold;
}
.keshi{
	width: 16.6rem;
	margin: 0 auto;
}
.keshi ul{
	margin-right: -1.2%;
}
.keshi li{
	float: left;
	width: 15.4%;
	height: 0.7rem;
	line-height: 0.7rem;
	text-align: center;
	border: solid 0.01rem #eee;
	color: #333;
	font-size: 0.18rem;
	margin: 0 1.2% 0.28rem 0;
}
.keshi div{
	width: 0.28rem;
	height: 0.28rem;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.keshi div img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.keshi li:hover{
	background: url(../images/team_03.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 0.06rem;
	color: #fff;
}
.keshi li:hover .img01{
	display: none;
}
.keshi li:hover .img02{
	display: block;
}
.keshi li.on{
	background: url(../images/team_03.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 0.06rem;
	color: #fff;
}
.keshi li.on .img01{
	display: none;
}
.keshi li.on .img02{
	display: block;
}

.team_bg{
	width: 100%;
	background: url(../images/team_35.jpg) no-repeat center top;
	background-size: cover;
	/* padding: 1.02rem 0 0.01rem; */
	padding: 1.02rem 0;
}
.team_tit{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 1rem;
	position: relative;
}
.team_tit h1{
	color: #c9c9cd;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.71rem;
	white-space: nowrap;
	overflow: hidden;
}
.team_tit h2{
	width: 100%;
	color: #333;
	font-size: 0.48rem;
	line-height: 0.64rem;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.team_tit h2 span{
	display: inline-block;
	background: #f9fbfa;
	padding: 0 0.05rem;
}
.team_tit i{
	width: 5rem;
	height: 0.02rem;
	background: #e5e5e5;
	display: block;
	margin: 0 auto;
	position: relative;
}
.team_tit i span{
	width: 1.2rem;
	height: 0.04rem;
	display: block;
	background: #00712f;
	position: absolute;
	top: -0.01rem;
	left: 1.9rem;
}
.team{
	width: 100%;
}
.team ul{
	margin-right: -2.5%;
}
.team li{
	float: left;
	width: 22.5%;
	margin: 0 2.5% 0.68rem 0;
}
.team_pic{
	width: 100%;
	height: 4.8rem;
	position: relative;
}
.team_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zhuanjia{
	width: 1.2rem;
	height: 0.4rem;
	line-height: 0.4rem;
	text-align: center;
	padding-left: 0.2rem;
	color: #fff;
	font-size: 0.17rem;
	background: url(../images/team_37.jpg) no-repeat;
	background-size: 100% 100%;
	border-bottom-left-radius: 0.4rem;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.team_bot{
	width: 100%;
	height: 0.8rem;
	text-align: center;
	padding: 0.1rem 0 0.08rem;
	background: #fff;
}
.team_tt{
	width: 100%;
	height: 0.34rem;
	line-height: 0.34rem;
	color: #333;
	font-size: 0.2rem;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.team_txt{
	width: 100%;
	height: 0.28rem;
	line-height: 0.28rem;
	color: #666;
	font-size: 0.16rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.team li:hover .team_bot{
	background: #00712f;
}
.team li:hover .team_tt{
	color: #fff;
}
.team li:hover .team_txt{
	color: #fff;
}


/* 专家详情 */
.top_h{
	height: 1.9rem;
}
.zjshow_box{
	padding: 0.53rem 0 0.64rem;
}
.fuke_top{
	height: 1.2rem;
	background: url(../images/fuke_01.png) no-repeat left bottom;
	position: relative;
	margin-bottom: 0.62rem;
}
.fuke_tl{
	width: 2.1rem;
	height: 0.3rem;
	background: linear-gradient(to right, #f0f0f0, #fcfcfc);
	position: absolute;
	top: 0.42rem;
	left: 0;
}
.fuke_tr01{
	width: 0.5rem;
	height: 0.18rem;
	position: absolute;
	top: 0.57rem;
	right: 0;
}
.fuke_tr01 div{
	float: right;
	width: 100%;
	height: 0.18rem;
	background: url(../images/fuke_02.png) no-repeat;
	background-size: 100% 100%;
	animation: showAnimate 3s linear infinite;
}
.fuke_tr02{
	width: 1rem;
	height: 0.18rem;
	position: absolute;
	top: 0.84rem;
	right: 0;
}
.fuke_tr02 div{
	float: right;
	width: 100%;
	height: 0.18rem;
	background: url(../images/fuke_02.png) no-repeat;
	background-size: 100% 100%;
	animation: showAnimate 3s linear infinite;
}
@keyframes showAnimate {
  0% {
      width: 0;
  }
	50% {
		width: 50%;
	}
  100% {
      width: 100%;
  }
}
.fuke_tit{
	line-height: 0.68rem;
	color: #333;
	font-size: 0.48rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-left: 0.2rem;
	position: relative;
	z-index: 2;
}
.fuke_tit span{
	color: #999;
	font-size: 0.4rem;
	padding-left: 0.32rem;
	opacity: 0.2;
}
.fuke_box{
	margin-bottom: 0.74rem;
}
.fuke_pic{
	float: left;
	width: 3.89rem;
	height: 4.8rem;
}
.fuke_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fuke_right{
	float: right;
	width: 12.25rem;
}
.fuke_btn{
	text-align: right;
}
.zxwz{
	width: 2rem;
	height: 0.68rem;
	line-height: 0.68rem;
	text-align: center;
	background: #eff5f1;
	border-radius: 0.03rem;
	display: inline-block;
	color: #444;
	font-size: 0.18rem;
}
.zxwz a{
	display: block;
}
.zxwz img{
	width: 0.38rem;
	height: 0.38rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.yygh{
	width: 2rem;
	height: 0.68rem;
	line-height: 0.68rem;
	text-align: center;
	background: url(../images/fuke_06.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 0.03rem;
	display: inline-block;
	margin-left: 0.3rem;
	color: #fff;
	font-size: 0.18rem;
}
.yygh a{
	display: block;
}
.yygh img{
	width: 0.38rem;
	height: 0.38rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.fuke_tt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.76rem;
}
.fuke_tt span{
	font-size: 0.32rem;
	font-weight: bold;
	padding-right: 0.3rem;
}
.fuke_bq{
	padding: 0.05rem 0 0.65rem;
}
.fuke_bq div{
	display: inline-block;
	color: #00712f;
	font-size: 0.2rem;
	line-height: 0.4rem;
	padding: 0 0.2rem 0 0.12rem;
	background: #f8f8f8;
	border-radius: 0.03rem;
	margin: 0 0.2rem 0.2rem 0;
}
.fuke_bq img{
	width: 0.28rem;
	height: 0.2rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.xsrz_bg{
	background: #f8fbf9;
	padding: 0.5rem 0.38rem 0.42rem 0.3rem;
	position: relative;
}
.xsrz_tit{
	width: 1.99rem;
	height: 0.54rem;
	line-height: 0.54rem;
	padding-left: 0.76rem;
	color: #fff;
	font-size: 0.2rem;
	font-weight: bold;
	position: absolute;
	top: -0.27rem;
	left: 0;
}
.tit01{
	background: url(../images/fuke_09.png) no-repeat;
	background-size: 100% 100%;
}
.tit02{
	background: url(../images/fuke_10.png) no-repeat;
	background-size: 100% 100%;
}
.tit03{
	background: url(../images/fuke_11.png) no-repeat;
	background-size: 100% 100%;
}
.xsrz_txt{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.36rem;
	text-align: justify;
}
.zysc{
	margin-bottom: 0.37rem;
}
.zysc_txt{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.46rem;
	text-align: justify;
	text-indent: 0.4rem;
}
.czsj_top{
	height: 0.54rem;
	position: relative;
	overflow: hidden;
	margin-bottom: 0.27rem;
}
.czsj_top .line{
	width: 100%;
	height: 0.01rem;
	background: rgba(0, 113, 47, 0.5);
	position: absolute;
	top: 0.26rem;
	left: 1.98rem;
}
.czsj_top .yuan{
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	display: block;
	background: #00712f;
	position: absolute;
	top: 0.21rem;
	right: 0;
	z-index: 1;
}
.czsj_tit{
	width: 1.99rem;
	height: 0.54rem;
	line-height: 0.54rem;
	padding-left: 0.76rem;
	color: #fff;
	font-size: 0.2rem;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.czsj{
	width: 100%;
	border-collapse: collapse;
	color: #333;
	font-size: 0.18rem;
	text-align: center;
	line-height: 0.76rem;
	margin-bottom: 0.44rem;
}
.czsj th{
	width: 14.28%;
	background: #00712f;
	border: solid 0.01rem #fff;
	color: #fff;
	font-size: 0.2rem;
	font-weight: normal;
}
.czsj td{
	border: solid 0.01rem #efefef;
}
.czsj tr:nth-child(even){
	background: #f8f8f8;
}
.mysc{
	width: 100%;
	margin-bottom: 0.4rem;
}
.mysc ul{
	margin-right: -3%;
}
.mysc li{
	float: left;
	width: 47%;
	margin: 0 3% 0.24rem 0;
}
.mysc_pic{
	float: left;
	width: 2.2rem;
	height: 1.4rem;
	border-radius: 0.06rem;
	overflow: hidden;
	position: relative;
	margin-right: 0.2rem;
}
.mysc_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mysc_img{
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.mysc_img img{
	width: 100%;
	height: 100%;
}
.mysc_r{
	float: left;
	width: 70%;
	padding-top: 0.1rem;
}
.mysc_tt{
	color: #333;
	font-size: 0.2rem;
	height: 0.44rem;
	line-height: 0.44rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mysc li:hover .mysc_tt{
	color: #00712f;
	font-weight: bold;
}
.mysc_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.1rem;
}
.mysc_date{
	color: #777;
	font-size: 0.16rem;
	line-height: 0.24rem;
}
.jiazai{
	width: 100%;
	text-align: center;
	line-height: 0.42rem;
	color: #666;
	font-size: 0.18rem;
}
.jiazai img{
	width: 0.18rem;
	height: 0.18rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.14rem;
}


/* 科室导航 */
.lcks_box{
	padding: 0.3rem 0 0.46rem;
	overflow: hidden;
}
.ks_tit{
	width: 100%;
	text-align: center;
	line-height: 1.18rem;
	color: #999;
	font-weight: lighter;
	font-size: 0.3rem;
	text-transform: uppercase;
	margin-bottom: 0.82rem;
}
.ks_tit span{
	color: #222;
	font-size: 0.5rem;
	font-weight: bold;
	padding-right: 0.22rem;
}
.ks_tit img{
	width: 0.5rem;
	height: 0.5rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.23rem 0.15rem 0;
}
.ks_tit i{
	width: 5rem;
	height: 0.02rem;
	background: #e5e5e5;
	display: block;
	margin: 0 auto;
	position: relative;
}
.ks_tit i span{
	width: 1.2rem;
	height: 0.04rem;
	display: block;
	background: #00712f;
	position: absolute;
	top: -0.01rem;
	left: 1.9rem;
}
.ks_list{
	width: 16.68rem;
	margin: 0 auto;
}
.ks_list ul{
	margin-right: -0.36rem;
}
.ks_list li{
	float: left;
	width: 1.77rem;
	height: 2.1rem;
	padding-top: 0.36rem;
	text-align: center;
	text-transform: uppercase;
	background: #fff;
	border-radius: 0.04rem;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
	margin: 0.15rem 0.36rem 0.2rem 0;
	transition: transform 0.3s ease;
}
.ks_list li div{
	width: 0.67rem;
	height: 0.67rem;
	margin: 0 auto 0.2rem;
	position: relative;
}
.ks_list img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ks_list h1{
	color: #333;
	font-size: 0.17rem;
	line-height: 0.32rem;
	font-weight: normal;
	margin-bottom: 0.08rem;
}
.ks_list h2{
	color: #999;
	font-size: 0.13rem;
	line-height: 0.16rem;
	font-weight: normal;
	word-wrap: break-word;
}
.ks_list li:hover{
	background: #00712f;
	transform: translateY(-0.15rem);
}
.ks_list li:hover .img01{
	display: none;
}
.ks_list li:hover .img02{
	display: block;
}
.ks_list li:hover h1{
	color: #fff;
}
.ks_list li:hover h2{
	color: #fff;
}
.yjks_bg{
	padding: 0.55rem 0 0.94rem;
	background: #f8f8f8;
	overflow: hidden;
}


/* 就医指南-门诊就医流程图 */
.jyzn_type{
	float: right;
}
.jyzn_type ul{
	margin-right: -0.4rem;
}
.jyzn_type li{
	float: left;
	line-height: 0.8rem;
	margin-right: 0.4rem;
	color: #333;
	font-size: 0.2rem;
}
.jyzn_type i{
	display: inline-block;
	width: 0.2rem;
	height: 0.04rem;
	background: url(../images/news_01.jpg) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-right: 0.18rem;
	opacity: 0;
	transition: all 0.6s;
}
.jyzn_type li:hover{
	color: #00712f;
}
.jyzn_type li:hover i{
	opacity: 1;
}
.jyzn_type li.on{
	color: #00712f;
}
.jyzn_type li.on i{
	opacity: 1;
}
.jyzn_box{
	padding: 0.68rem 0 1.2rem;
	overflow: hidden;
}
.lct_box{
	width: 100%;
	margin-bottom: 0.58rem;
}
.lct_left{
	float: left;
	width: 6%;
	height: 5rem;
	background: #00712f;
	padding-top: 0.42rem;
}
.lct_logo{
	width: 0.45rem;
	height: 0.33rem;
	margin: 0 auto 0.17rem;
}
.lct_logo img{
	width: 100% 100%;
}
.lct_tit{
	width: 0.3rem;
	text-align: center;
	line-height: 0.54rem;
	color: #fff;
	font-size: 0.3rem;
	font-weight: bold;
	margin: 0 auto;
}
.lct_right{
	float: left;
	width: 94%;
	height: 5rem;
	border: solid 0.02rem #eee;
	border-left: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lct_right img{
	width: 98%;
	height: auto;
}

.tel_bg{
	background: #f3f7e1;
	padding: 0.48rem 0 0.59rem;
	margin-bottom: 0.5rem;
}
.tel_tit{
	width: 100%;
	text-align: center;
	height: 1rem;
	line-height: 1rem;
	color: #222;
	font-size: 0.48rem;
	font-weight: bold;
	position: relative;
	margin-bottom: 0.37rem;
}
.tel_tit i{
	width: 100%;
	height: 0.01rem;
	display: block;
	background: rgba(0, 113, 47, 0.2);
	position: absolute;
	top: 0.64rem;
	left: 0;
}
.tel_tit div{
	display: inline-block;
	background: #f3f7e1;
	position: relative;
	z-index: 1;
}
.tel_tit div span{
	padding: 0 0.4rem;
}
.tel_tit img{
	width: 0.8rem;
	height: 0.38rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 -0.2rem;
}
.tel{
	width: 100%;
	text-align: center;
	line-height: 0.52rem;
	color: #333;
	font-size: 0.48rem;
	font-weight: bold;
}
.tel img{
	width: 0.6rem;
	height: 0.52rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.38rem 0.08rem 0;
}

.wechat_bg{
	padding: 0.5rem 0 1.2rem;
	background: #eaf5ef;
}
.wechat_bg .tel_tit{
	margin-bottom: 0.65rem;
}
.wechat_bg .tel_tit div{
	background: #eaf5ef;
}
.wechat_tit{
	width: 10.75rem;
	margin: 0 auto 0.52rem;
}
.wechat_tit img{
	width: 100%;
}
.wechat_line{
	text-align: center;
	line-height: 0.62rem;
	border-bottom: solid 0.02rem #fff;
	margin-bottom: 0.47rem;
}
.wechat_line h1{
	color: #096d38;
	font-size: 0.32rem;
	line-height: 0.64rem;
}
.wechat_code{
	width: 2.92rem;
	height: 2.92rem;
	border: solid 0.01rem #338857;
	background: #fff;
	border-radius: 0.03rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wechat_code img{
	width: 2.53rem;
	height: 2.53rem;
}
.wechat{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.wx01{
	width: 3.75rem;
}
.wx02{
	width: 4.14rem;
}
.wx03{
	width: 4.08rem;
}
.wx04{
	width: 3.93rem;
}
.wx img{
	width: 100%;
}
.wx_txt{
	color: #096d38;
	font-size: 0.24rem;
	line-height: 0.38rem;
	height: 0.76rem;
	padding-left: 0.28rem;
	font-weight: bold;
	margin-bottom: 0.1rem;
}

.jzxz_box{
	padding-top: 0.54rem;
}
.jzxz_tit{
	border-bottom: solid 0.01rem #00712f;
	border-bottom-left-radius: 0.03rem;
	margin-bottom: 0.33rem;
}
.jzxz_tit div{
	display: inline-block;
	line-height: 0.44rem;
	background: #00712f;
	border-radius: 0.03rem;
	border-bottom-right-radius: 0;
	color: #fff;
	font-size: 0.22rem;
	padding: 0 0.22rem 0 0.18rem;
}
.jzxz_tit div img{
	width: 0.2rem;
	height: 0.16rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.13rem;
}
.jzxz_txt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.5rem;
}


/* 病种病例 */
.bzbl_box{
	padding: 0.45rem 0 0.8rem;
}
.bl_scroll{
	width: 100%;
	margin-bottom: 0.3rem;
	position: relative;
}
.bl_left{
	float: left;
	width: 47%;
	height: 4.5rem;
	overflow: hidden;
}
.bl_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.bl_left:hover img {
	transform: scale(1.1);
}
.bl_right{
	float: left;
	width: 53%;
	height: 4.5rem;
	background: url(../images/bl_02.png) no-repeat #fff;
	background-size: 100% 100%;
	padding: 0.56rem 0 0 0.6rem;
}
.bl_date{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.6rem;
	background: url(../images/bl_03.png) no-repeat left center;
	background-size: 0.22rem 0.22rem;
	padding-left: 0.37rem;
}
.bl_tt{
	color: #222;
	font-size: 0.24rem;
	font-weight: bold;
	height: 0.46rem;
	line-height: 0.46rem;
	padding-left: 0.22rem;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.25rem;
}
.bl_tt i{
	width: 0.08rem;
	height: 0.24rem;
	display: block;
	background: #00712f;
	position: absolute;
	top: 0.12rem;
	left: 0;
}
.bl_tt img{
	width: 0.38rem;
	height: 0.22rem;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.1rem;
}
.bl_txt{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.34rem;
	height: 1.02rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.37rem;
}
.bl_more{
	width: 2rem;
	height: 0.5rem;
	line-height: 0.5rem;
	border-radius: 0.5rem;
	background: #00712f;
	text-align: center;
	color: #fff;
	font-size: 0.18rem;
}
.bl_more img{
	width: 0.07rem;
	height: 0.13rem;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.2rem;
}
.bl_bot{
	width: 47%;
	height: 0.6rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.bl_botbg{
	float: right;
	width: 1.6rem;
	height: 0.6rem;
	background: rgba(0, 0, 0, 0.5);
	position: relative;
}
.bl_scroll .swiper-button-next, .bl_scroll .swiper-button-prev{
	width: 0.25rem;
	height: 0.1rem;
	top: 0.25rem;
}
.bl_scroll .swiper-button-prev{
	background: url(../images/bl_06.png) no-repeat;
	background-size: 100% 100%;
	left: 0.4rem;
}
.bl_scroll .swiper-button-next{
	background: url(../images/bl_07.png) no-repeat;
	background-size: 100% 100%;
	right: 0.4rem;
}
.bl_scroll .swiper-button-lock{
	display: block;
}
.bl_scroll .swiper-button-next:after, .bl_scroll .swiper-button-prev:after{
	display: none;
}
.bl_list{
	width: 100%;
}
.bl_list li{
	background: #f8f8f8;
	padding: 0.24rem 0.54rem;
	position: relative;
	margin-bottom: 0.2rem;
}
.bl_list_date{
	float: left;
	width: 1.4rem;
	line-height: 0.66rem;
	color: #999;
	font-size: 0.32rem;
	font-weight: bold;
	padding-top: 0.37rem;
}
.bl_list_date h1{
	line-height: 0.58rem;
	font-size: 0.18rem;
}
.bl_list_date i{
	width: 0.4rem;
	height: 0.01rem;
	display: block;
	background: #e5e5e5;
}
.bl_list li:hover .bl_list_date{
	color: #666;
}
.bl_list_pic{
	float: left;
	width: 3.6rem;
	height: 2.2rem;
	margin-right: 0.47rem;
}
.bl_list_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bl_list_con{
	float: left;
	width: 8.7rem;
	padding-top: 0.21rem;
}
.bl_list_con h1{
	color: #333;
	font-size: 0.24rem;
	height: 0.78rem;
	line-height: 0.78rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bl_list li:hover .bl_list_con h1{
	color: #01712f;
}
.bl_text{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.36rem;
	height: 0.72rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.bl_list .icon{
	width: 0.6rem;
	height: 0.6rem;
	background: url(../images/bl_09.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.5rem;
}
.bl_list li:hover .icon{
	background: url(../images/bl_10.png) no-repeat;
	background-size: 100% 100%;
}
.page{
	width: 100%;
	text-align: center;
	padding-top: 0.52rem;
	color: #666;
	font-size: 0.16rem;
}
.page li{
	width: 0.44rem;
	height: 0.44rem;
	line-height: 0.44rem;
	border: solid 0.01rem #e6e6e6;
	border-radius: 0.03rem;
	margin: 0 0.02rem;
	display: inline-block;
}
.page li.active{
	background: #00712f;
	border: solid 0.01rem #00712f;
	color: #fff;
}
/* .page a{
	width: 0.44rem;
	height: 0.44rem;
	line-height: 0.44rem;
	border: solid 0.01rem #e6e6e6;
	border-radius: 0.03rem;
	margin: 0 0.02rem;
	display: inline-block;
}
.page a.on{
	background: #00712f;
	border: solid 0.01rem #00712f;
	color: #fff;
} */
.page li:hover{
	background: #00712f;
	border: solid 0.01rem #00712f;
	color: #fff;
}


/* 党建专栏 */
.djdt_bg{
	background: #f8f8f8;
	padding: 0.95rem 0 0.65rem;
	overflow: hidden;
}
.djdt_bg .team_tit{
	margin-bottom: 0.6rem;
}
.djdt_bg .team_tit h2 span{
	background: #f8f8f8;
}
.djdt_bg .service_more{
	margin: 0 auto;
}
.djdt_m{
	margin: 0 auto 0.62rem;
	overflow: hidden;
}
.djdt_left{
	float: left;
	width: 65%;
}
.djdt_left .swiper-slide{
	background: #fff;
}
.djdt_pic{
	width: 100%;
	height: 3.5rem;
}
.djdt_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.djdt_bot{
	padding: 0.3rem 0.22rem 0.35rem;
}
.djdt_bot h1{
	color: #333;
	font-size: 0.22rem;
	line-height: 0.36rem;
	height: 0.72rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.djdt_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin: 0.18rem 0 0.16rem;
}
.djdt_date{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
}
.djdt_right{
	float: right;
	width: 34%;
	height: 6.14rem;
}
.djdt_right .swiper-slide{
	height: 1.97rem;
}
.djdt_img{
	float: left;
	width: 41%;
	height: 1.8rem;
}
.djdt_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.djdt_r{
	float: right;
	width: 54%;
	height: 1.97rem;
	padding-top: 0.2rem;
	border-bottom: solid 0.01rem #e5e5e5;
}
.djdt_r h1{
	color: #333;
	font-size: 0.22rem;
	font-weight: normal;
	line-height: 0.36rem;
	height: 0.72rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.djdt_r .djdt_txt{
	line-height: 0.24rem;
	height: 0.48rem;
}

.sjsp_box{
	padding: 0.87rem 0 0.82rem;
}
.sjsp_box .team_tit{
	margin-bottom: 0.65rem;
}
.sjsp_box .team_tit h2 span{
	background: #fff;
}
.sjsp_box .service_more{
	margin: 0 auto;
}
.sjsp_m{
	margin: 0 auto 0.42rem;
	overflow: hidden;
}
.sjsp{
	width: 100%;
}
.sjsp_pic{
	width: 100%;
	height: 4rem;
	position: relative;
	margin-bottom: 0.22rem;
}
.sjsp_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sjsp_btn{
	width: 0.8rem;
	height: 0.8rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	cursor: pointer;
}
.sjsp_btn img{
	width: 100%;
	height: 100%;
}
.sjsp_txt{
	width: 100%;
	text-align: center;
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.54rem;
	height: 0.54rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.video_bg{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: none;
}
.video-a2{
  position:absolute;
  width:0.5rem;
  height:0.5rem;
  background:url(../images/close.png);
  background-size:100% 100%;
  right: calc(50% - 1000px / 2 - 100px );
  top: calc(1000px/16*2);
  cursor: pointer;
}
.video-a3{
  width: 10rem;
  height: calc(10rem/16*9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.video-a3 iframe,.video-a3 video{
  width: 100% !important;
  height: 100%;
}

.study_bg{
	width: 100%;
	background: url(../images/dang_05.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.97rem 0 0.7rem;
	overflow: hidden;
}
.study_bg .team_tit{
	margin-bottom: 0.76rem;
}
.study_bg .team_tit h2 span{
	background: #deeae2;
}
.study_bg .service_more{
	margin: 0 auto;
}
.study_m{
	margin: 0 auto 0.65rem;
	overflow: hidden;
}
.study_left{
	float: left;
	width: 48%;
	height: 5.3rem;
	position: relative;
}
.study_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.study_tm{
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(27,27,27,0), rgba(27,27,27,0.7));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.study_bot{
	width: 90%;
	position: absolute;
	left: 5%;
	bottom: 0.15rem;
	z-index: 2;
}
.study_bl{
	float: left;
	width: 70%;
}
.study_bq{
	width: 100%;
	margin-bottom: 0.12rem;
}
.study_bq div{
	display: inline-block;
	line-height: 0.3rem;
	background: #00712f;
	color: #fff;
	font-size: 0.16rem;
	padding: 0 0.11rem;
	margin-right: 0.1rem;
}
.study_bl_tit{
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.38rem;
	height: 0.76rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.study_br{
	float: right;
	display: inline-block;
	line-height: 0.42rem;
	border-top: solid 0.01rem #a0a597;
	border-bottom: solid 0.01rem #a0a597;
	margin-top: 0.62rem;
	color: #a4aa99;
	font-size: 0.2rem;
}
.study_right{
	float: right;
	width: 50%;
}
.study_pic{
	width: 100%;
	height: 3rem;
	position: relative;
}
.study_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.study_arrow{
	width: 0.77rem;
	height: 0.77rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	opacity: 0;
	transition: all 0.6s;
}
.study_right .swiper-slide:hover .study_arrow{
	opacity: 1;
}
.study_con{
	width: 100%;
	height: 2.3rem;
	background: #fff;
	padding: 0.2rem 0.25rem;
}
.study_con .study_bq{
	margin-bottom: 0.23rem;
}
.study_con .study_bq div{
	background: #f8f8f8;
	color: #666;
}
.study_tt{
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.35rem;
	height: 0.7rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.33rem;
}
.study_time{
	color: #666;
	font-size: 0.18rem;
	line-height: 0.26rem;
}

.photo_box{
	padding-top: 1.03rem;
	overflow: hidden;
}
.photo_box .team_tit{
	margin-bottom: 0.89rem;
}
.photo_box .team_tit h2 span{
	background: #fff;
}
.photo_dot{
	position: relative;
	padding-bottom: 1.5rem;
}
.photo_dot .swiper-pagination{
	bottom: 0.78rem;
}
.photo_dot .swiper-pagination-bullet{
	width: 0.16rem;
	height: 0.16rem;
	background: #00712f;
	border-radius: 50%;
	margin: 0 0.1rem !important;
}
.photo{
	width: 100%;
	height: 7.8rem;
}
.photo .swiper-slide{
	height: 3.64rem;
}
.photo_pic{
	width: 100%;
	height: 3rem;
}
.photo_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.photo_txt{
	width: 100%;
	height: 0.64rem;
	line-height: 0.64rem;
	color: #333;
	font-size: 0.2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* 放疗中心 */
.quanwei_box{
	padding-top: 0.68rem;
	overflow: hidden;
}
.quanwei_tit{
	width: 100%;
	text-align: center;
	line-height: 1.12rem;
	color: #00712f;
	font-size: 0.73rem;
	font-weight: bold;
	margin-bottom: 0.49rem;
}
.quanwei_tit img{
	width: 0.46rem;
	height: 0.3rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.3rem;
}
.quanwei_left{
	float: left;
	width: 57%;
	height: 8.16rem;
	background: url(../images/qw_03.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.62rem 0.66rem;
}
.quanwei_top{
	border-bottom: solid 0.01rem rgba(255, 255, 255, 0.2);
	margin-bottom: 0.18rem;
}
.quanwei_tt{
	float: left;
	background: #e0fd58;
	padding: 0 0.28rem;
	line-height: 0.6rem;
	color: #222;
	font-size: 0.3rem;
}
.quanwei_tt i{
	width: 0.1rem;
	height: 0.1rem;
	background: #00712f;
	display: inline-block;
	vertical-align: middle;
}
.quanwei_tt span{
	padding: 0 0.2rem;
}
.quanwei_en{
	float: left;
	color: rgba(224, 253, 88, 0.2);
	font-style: italic;
	font-size: 0.36rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-left: 0.25rem;
}
.quanwei_txt{
	color: #fff;
	line-height: 0.5rem;
	font-size: 0.24rem;
	text-align: justify;
}
.quanwei_txt span{
	font-weight: bold;
	color: #e0fd58;
}
.quanwei_right{
	float: left;
	width: 43%;
	height: 8.16rem;
	position: relative;
	overflow: hidden;
}
.qw_box{
	width: 100%;
	height: 8.16rem;
}
.quanwei_pic{
	width: 100%;
	height: 6.24rem;
	overflow: hidden;
	position: relative;
}
.quanwei_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.quanwei_pic:hover img {
	transform: scale(1.1);
}
.qw_01{
	width: 0.52rem;
	height: 0.5rem;
	background: url(../images/qw_05.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.27rem;
	left: 0.33rem;
	z-index: 1;
}
.qw_02{
	width: 0.52rem;
	height: 0.5rem;
	background: url(../images/qw_06.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0.27rem;
	bottom: 0.66rem;
	z-index: 1;
}
.qw_bot{
	width: 100%;
	height: 1.92rem;
	background: #00712f;
	padding: 0.15rem 0.22rem;
	position: relative;
}
.qw_bot i{
	width: 0.6rem;
	height: 0.14rem;
	background: #bbe905;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
.qw_txt{
	width: 100%;
	color: #fff;
	font-size: 0.2rem;
	line-height: 0.4rem;
	height: 1.6rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.qw_type{
	width: 100%;
	height: 0.56rem;
	position: absolute;
	left: -0.1rem;
	bottom: 1.92rem;
	z-index: 2;
}
.qw_type li{
	float: left;
	width: 1.52rem;
	text-align: center;
	line-height: 0.38rem;
	background: #e4feef;
	transform: skew(20deg);
	transform-origin: left;
	color: #00712f;
	font-size: 0.2rem;
	font-weight: bold;
	margin: 0.18rem 0.1rem 0 0;
	cursor: pointer;
}
.qw_type li div{
	transform: skew(-20deg);
}
.qw_type li.on{
	background: #bbe905;
	height: 0.56rem;
	line-height: 0.56rem;
	color: #fff;
	font-size: 0.24rem;
	text-shadow: 0 0.02rem 0.05rem rgba(17, 34, 25, 0.8);
	margin: 0 0.14rem 0 -0.04rem;
}
.qw_type li:first-child{
	padding-left: 0.1rem;
}

.gc_box{
	padding: 0.88rem 0 0.59rem;
	overflow: hidden;
}
.gc_tit{
	width: 100%;
	text-align: center;
	margin-bottom: 0.7rem;
}
.gc_tit h1{
	color: #333;
	font-size: 0.72rem;
	line-height: 0.96rem;
}
.gc_tit h1 span{
	color: #00712f;
}
.gc_tit h2{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.24rem;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0.08rem 0 0.24rem;
}
.gc_tit i{
	width: 4.5rem;
	height: 0.02rem;
	background: rgba(0, 113, 47, 0.4);
	display: block;
	margin: 0 auto;
	position: relative;
}
.gc_tit i span{
	width: 0.9rem;
	height: 0.1rem;
	display: block;
	background: #00712f;
	position: absolute;
	top: -0.04rem;
	left: 1.8rem;
}
.gc_con{
    display: flex;
}
.gc_left{
	float: left;
	width: 46%;
	min-height: 5.9rem;
	overflow: hidden;
}
.gc_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.gc_left:hover img {
	transform: scale(1.1);
}
.gc_right{
	float: left;
	width: 54%;
	min-height: 5.9rem;
	background: url(../images/qw_08.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.8rem 0 0.8rem 0.5rem;
}
.gc_txt{
	width: 82%;
	line-height: 0.5rem;
	color: #222;
	font-size: 0.24rem;
	text-align: justify;
	/*overflow: hidden;*/
	/*text-overflow: ellipsis;*/
	/*display: -webkit-box;*/
	/*-webkit-line-clamp: 8;*/
	/*-webkit-box-orient: vertical;*/
	/*white-space: normal;*/
}
.gc_txt span{
	color: #00712f;
	font-weight: bold;
}


.yiqi_bg{
	width: 100%;
	padding: 0.82rem 0 0.73rem;
	background: url(../images/qw_09.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}
.yiqi_left{
	float: left;
	width: 85%;
}
.yiqi_right{
	float: right;
	width: 13%;
}
.yiqi_right li{
	height: 0.9rem;
	border-radius: 0.1rem;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	margin-bottom: 0.12rem;
}
.yiqi_right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.yiqi_tm{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 0.18rem;
	font-weight: bold;
	line-height: 0.24rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.yiqi_right li:hover .yiqi_tm{
	background: rgba(0, 113, 47, 0.9);
}
.yiqi_right li.on .yiqi_tm{
	background: rgba(0, 113, 47, 0.9);
}
.yiqi_box{
	width: 100%;
	height: 6rem;
	position: relative;
}
.yiqi_pic{
	width: 44%;
	height: 5.4rem;
	border-radius: 0.2rem;
	overflow: hidden;
	position: absolute;
	top: 0.3rem;
	left: 0;
	z-index: 1;
}
.yiqi_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.yiqi_pic:hover img {
	transform: scale(1.1);
}
.yiqi_white{
	float: right;
	width: 74%;
	height: 6rem;
	background: #fff;
	position: relative;
	padding: 0.7rem 1.15rem 0.7rem 0;
}
.yiqi_line{
	width: 0.03rem;
	height: 0.9rem;
	background: #00712f;
	position: absolute;
	top: 0;
	right: -0.01rem;
}
.yiqi_con{
	float: right;
	width: 70%;
}
.yiqi_tt{
	color: #00712f;
	font-size: 0.32rem;
	font-weight: bold;
	line-height: 0.6rem;
	background: #fff;
	padding-bottom: 0.22rem;
	border-bottom: solid 0.01rem #00712f;
	margin-bottom: 0.3rem;
}
.yiqi_tt span{
	color: #fff;
	font-size: 0.18rem;
	font-weight: normal;
	padding: 0 0.1rem;
	line-height: 0.38rem;
	border-radius: 0.04rem;
	display: inline-block;
	background: #00712f;
	vertical-align: middle;
	margin-left: 0.34rem;
}
.yiqi_txt{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.36rem;
	height: 3.5rem;
	overflow-y: scroll;
	overflow-x: hidden;
}
.yiqi_txt h1{
	color: #ca631e;
	font-size: 0.2rem;
	line-height: 0.44rem;
	margin-bottom: 0.12rem;
}
.yiqi_txt::-webkit-scrollbar {
	display: none;
}

.xmu_box{
	padding: 0.58rem 0 0.7rem;
	overflow: hidden;
	display: flex;
}
.xmu_con{
	width: 48%;
	min-height: 4.7rem;
	background: #f5f5f5;
	border-radius: 0.2rem;
	padding-bottom: 0.34rem;
	overflow: hidden;
}
.xmu_con:first-child{
	margin-right: 4%;
}
.xmu_tit{
	width: 100%;
	height: 1rem;
	line-height: 1rem;
	background: url(../images/qw_17.jpg) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.4rem;
	font-weight: bold;
	padding-left: 0.48rem;
	margin-bottom: 0.4rem;
}
.xmu_tit02{
	width: 100%;
	height: 1rem;
	line-height: 1rem;
	background: url(../images/qw_18.jpg) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.4rem;
	font-weight: bold;
	padding-left: 0.48rem;
	margin-bottom: 0.4rem;
}
.xmu_txt{
	width: 92%;
	color: #333;
	font-size: 0.18rem;
	line-height: 0.36rem;
	text-align: justify;
	margin: 0 auto;
}
.xmu_txt h1{
	color: #5b980a;
	font-size: 0.3rem;
	line-height: 0.5rem;
	margin-bottom: 0.16rem;
}
.xmu_code_bg{
	float: right;
	width: 2rem;
	height: 0.93rem;
	padding: 0.06rem;
	background: url(../images/qw_19.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 0.1rem;
	margin-right: 4%;
}
.xmu_code{
	float: left;
	width: 0.81rem;
	height: 0.81rem;
	background: #fff;
	border-radius: 0.06rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.xmu_code img{
	width: 0.7rem;
	height: 0.7rem;
}
.xmu_code_txt{
	float: right;
	width: 1rem;
	line-height: 0.2rem;
	color: #fff;
	font-size: 0.12rem;
	margin-top: 0.36rem;
}

.yizi_box{
	margin-bottom: 0.77rem;
	overflow: hidden;
}
.yizi_box .gc_tit{
	margin-bottom: 0.52rem;
}
.yizi_type{
	width: 100%;
	text-align: center;
	margin-bottom: 0.46rem;
}
.yizi_type ul{
	display: flex;
	justify-content: center;
}
.yizi_type li{
	width: 2.38rem;
	height: 0.8rem;
	line-height: 0.8rem;
	text-align: center;
	cursor: pointer;
	background: #06542c;
	color: #fff;
	font-size: 0.24rem;
	display: inline-block;
}
.yizi_type li.on{
	color: #06542c;
	background: #98e260;
}
.yizi_con{
	position: relative;
	padding-bottom: 0.74rem;
}
.yizi_con .swiper-button-next, .yizi_con .swiper-button-prev{
	width: 1rem;
  height: 1rem;
	border-radius: 50%;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  top: 45%;
	transform: translateY(-45%);
}
.yizi_con .swiper-button-next{
  right: -0.35rem;
	background: url(../images/qw_25.png) no-repeat;
	background-size: 100% 100%;
}
.yizi_con .swiper-button-next:hover{
	background: url(../images/qw_26.png) no-repeat;
	background-size: 100% 100%;
}
.yizi_con .swiper-button-prev{
  left: -0.35rem;
	background: url(../images/qw_24.png) no-repeat;
	background-size: 100% 100%;
}
.yizi_con .swiper-button-prev:hover{
	background: url(../images/qw_27.png) no-repeat;
	background-size: 100% 100%;
}
.yizi_con .swiper-button-next:after, .yizi_con .swiper-button-prev:after{
  display: none;
}
.yizi_con .swiper-button-lock{
	display: block;
}
.yizi_con .swiper-button-next.swiper-button-disabled,
.yizi_con .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}
.yizi_con .swiper-pagination{
	width: 100%;
	left: 0;
	bottom: 0;
}
.yizi_con .swiper-pagination-bullet{
	width: 0.16rem;
	height: 0.16rem;
	border-radius: 50%;
	background: #dedede;
	margin: 0 0.12rem !important;
	opacity: 1;
}
.yizi_con .swiper-pagination-bullet-active{
	background: #287042;
}
.yizi{
	width: 100%;
}
.yizi .swiper-slide{
	width: 25%;
	height: 6.4rem;
}
.yizi .swiper-slide:hover{
	width: 50%;
}
.yizi .swiper-slide:hover .yizi_tm{
	display: none;
}
.yizi .swiper-slide:hover .yizi_pic{
	float: left;
	width: 50%;
}
.yizi .swiper-slide:hover .yizi_bg{
	display: block;
}
.yizi_pic{
	height: 6.4rem;
	position: relative;
}
.yizi_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.yizi_tm{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	position: absolute;
	top: 0;
	left: 0;
}
.yizi_name{
	width: 100%;
	text-align: center;
	position: absolute;
	top: 55%;
	transform: translateY(-55%);
	left: 0;
}
.yizi_name h1{
	color: #fff;
	font-size: 0.46rem;
	line-height: 1.06rem;
	font-weight: normal;
}
.yizi_name img{
	width: 0.48rem;
	height: 0.48rem;
	margin: 0 auto;
}
.yizi_bg{
	float: left;
	width: 50%;
	height: 6.4rem;
	background: url(../images/qw_22.jpg) no-repeat;
	background-size: cover;
	padding: 0.5rem 0.34rem;
	display: none;
}
.yizi_tt{
	border-bottom: solid 0.01rem #98e260;
	line-height: 0.78rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
}
.yizi_txt{
	color: #fff;
	font-size: 0.18rem;
	line-height: 0.4rem;
	height: 4.4rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 11;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.yizi_txt span{
	color: #c3cec8;
}

.env_bg{
	width: 100%;
	background: url(../images/qw_28.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.7rem 0 0.78rem;
	overflow: hidden;
}
.env_con{
	position: relative;
}
.env_con .swiper-button-next, .env_con .swiper-button-prev{
	width: 1rem;
  height: 1rem;
	border-radius: 50%;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  top: 45%;
	transform: translateY(-45%);
}
.env_con .swiper-button-next{
  right: -0.35rem;
	background: url(../images/qw_25.png) no-repeat;
	background-size: 100% 100%;
}
.env_con .swiper-button-next:hover{
	background: url(../images/qw_26.png) no-repeat;
	background-size: 100% 100%;
}
.env_con .swiper-button-prev{
  left: -0.35rem;
	background: url(../images/qw_24.png) no-repeat;
	background-size: 100% 100%;
}
.env_con .swiper-button-prev:hover{
	background: url(../images/qw_27.png) no-repeat;
	background-size: 100% 100%;
}
.env_con .swiper-button-next:after, .env_con .swiper-button-prev:after{
  display: none;
}
.env_con .swiper-button-lock{
	display: block;
}
.env_con .swiper-button-next.swiper-button-disabled,
.env_con .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}
.env{
	width: 100%;
}
.env_pic{
	width: 100%;
	height: 5.3rem;
	overflow: hidden;
}
.env_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.env_pic:hover img {
	transform: scale(1.1);
}

.policy_box{
	padding: 0.97rem 0 0.62rem;
	overflow: hidden;
}
.policy_box .clear{
	overflow: hidden;
	margin-bottom: 0.7rem;
}
.policy_left{
	float: left;
	width: 50%;
}
.policy_tit{
	color: #06542c;
	font-size: 0.6rem;
	font-weight: bold;
	line-height: 0.96rem;
	padding-bottom: 0.35rem;
	border-bottom: solid 0.02rem #84c255;
	position: relative;
	margin-bottom: 0.38rem;
}
.policy_tit i{
	width: 1rem;
	height: 0.06rem;
	background: #06542c;
	display: block;
	position: absolute;
	left: 0;
	bottom: -0.01rem;
}
.policy_txt{
	color: #333;
	line-height: 0.5rem;
	font-size: 0.2rem;
	font-weight: bold;
	text-align: justify;
}
.policy_r{
	float: right;
	width: 41%;
}
.policy_rt{
	width: 100%;
	height: 1rem;
	line-height: 1rem;
	text-align: center;
	color: #fff;
	font-size: 0.34rem;
	font-weight: bold;
	background: url(../images/qw_30.jpg) no-repeat;
	background-size: 100% 100%;
	position: relative;
	border-top-left-radius: 0.2rem;
	border-top-right-radius: 0.2rem;
}
.policy_arrow{
	width: 0.16rem;
	height: 0.25rem;
	background: url(../images/qw_31.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.28rem;
	left: -0.16rem;
}
.policy_bg{
	width: 100%;
	min-height: 2.46rem;
	border-bottom-left-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
	background: #ede8d4;
	padding: 0.42rem 0.35rem;
}
.policy_fon{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.4rem;
	text-align: justify;
}
.policy_tel{
	width: 5.34rem;
	height: 0.57rem;
	line-height: 0.57rem;
	background: url(../images/qw_32.png) no-repeat;
	background-size: 100% 100%;
	padding-left: 0.4rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	margin: 0 auto;
}
.policy_tel img{
	width: 0.32rem;
	height: 0.28rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.15rem 0.05rem 0;
}

.case_bg02{
	background: #fafafa;
	padding: 0.63rem 0 0.69rem;
	overflow: hidden;
}
.case_bg02 .gc_tit{
	margin-bottom: 0.78rem;
}
.case_w{
	position: relative;
}
.case_w .swiper-button-next, .case_w .swiper-button-prev{
	width: 1rem;
  height: 1rem;
	border-radius: 50%;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  top: 45%;
	transform: translateY(-45%);
}
.case_w .swiper-button-next{
  right: -0.35rem;
	background: url(../images/qw_25.png) no-repeat;
	background-size: 100% 100%;
}
.case_w .swiper-button-next:hover{
	background: url(../images/qw_26.png) no-repeat;
	background-size: 100% 100%;
}
.case_w .swiper-button-prev{
  left: -0.35rem;
	background: url(../images/qw_24.png) no-repeat;
	background-size: 100% 100%;
}
.case_w .swiper-button-prev:hover{
	background: url(../images/qw_27.png) no-repeat;
	background-size: 100% 100%;
}
.case_w .swiper-button-next:after, .case_w .swiper-button-prev:after{
  display: none;
}
.case_w .swiper-button-lock{
	display: block;
}
.case_w .swiper-button-next.swiper-button-disabled,
.case_w .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}
.case{
	width: 100%;
}
.case_img{
	width: 100%;
	height: 3.6rem;
	overflow: hidden;
}
.case_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.case_img:hover img {
	transform: scale(1.1);
}
.case h1{
	color: #333;
	font-size: 0.2rem;
	text-align: center;
	line-height: 0.84rem;
	height: 0.84rem;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* PET核磁 */
.video_box{
	padding-top: 1.01rem;
	overflow: hidden;
}
.video_box .team_tit{
	margin-bottom: 0.7rem;
}
.video_box .team_tit h2 span{
	background: #fff;
}
.video_pic{
	width: 100%;
	height: 6.07rem;
	border-radius: 0.2rem;
	overflow: hidden;
	position: relative;
}
.video_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video_pic video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video_bg02{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.video_btn{
	width: 0.99rem;
	height: 0.99rem;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%,-50%);
	cursor: pointer;
}
.video_btn img{
	width: 100%;
	height: 100%;
}

.pet_box{
	padding-top: 1.13rem;
	overflow: hidden;
	margin: 0 auto 1.06rem;
}
.pet_box .team_tit{
	margin-bottom: 0.46rem;
}
.pet_box .team_tit h2 span{
	background: #fff;
}
.pet_txt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.5rem;
	text-align: justify;
	margin: 0 auto 0.5rem;
}
.pet_pic{
	width: 100%;
	height: 8.82rem;
	overflow: hidden;
}
.pet_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.pet_pic:hover img {
	transform: scale(1.1);
}

.xmz_box{
	position: relative;
	padding-top: 0.55rem;
	overflow: hidden;
	margin: 0 auto 0.82rem;
}
.xmz_box .xmz_top{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.xmz_box .xmz_tdi{
	width: 9.32rem;
}
.xmz_pic{
	width: 100%;
}
.xmz_pic img{
	width: 100%;
}
.xmz_top{
	position: relative;
}
.xmz_tit{
	position: relative;
}
.xmz_tit i{
	width: 4.9rem;
	height: 0.3rem;
	background: linear-gradient(to right, #e9e9e9, #fdfdfd);
	display: block;
	position: absolute;
	bottom: 0.25rem;
	left: 0;
}
.xmz_tit h1{
	font-size: 0.5rem;
	line-height: 1.14rem;
	font-style: italic;
	position: relative;
	z-index: 1;
	margin-left: 0.24rem;
}
.xmz_tit h1 div{
	color: #00712f;
	display: inline-block;
}
.xmz_tit h1 div span{
	font-size: 0.9rem;
}
.xmz_tdi{
	width: 11.82rem;
	height: 0.2rem;
	background: url(../images/pet_04.png) no-repeat left center;
	background-size: cover;
}

.rtfb_box{
	overflow: hidden;
	margin: 0 auto 0.42rem;
}
.rtfb_txt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.7rem;
	padding: 0 0.25rem;
	font-style: italic;
	margin-bottom: 0.27rem;
}

.yy_bg{
	width: 100%;
	background: url(../images/pet_06.jpg) no-repeat center top;
	background-size: cover;
	padding: 1.13rem 0 1.48rem;
	overflow: hidden;
}
.yy_bg .team_tit{
	margin-bottom: 0.46rem;
}
.yy_bg .team_tit h2 span{
	background: #f6f9f6;
}
.yy_con{
	width: 15.12rem;
	height: 7.6rem;
	position: relative;
	margin: 0 auto;
}
.yy_hu{
	width: 100%;
	height: 5.53rem;
	background: url(../images/pet_07.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.yy_pic{
	width: 100%;
	height: 4.62rem;
	background: url(../images/pet_09.png) no-repeat center bottom;
	background-size: 8.24rem 1.61rem;
	position: relative;
	z-index: 1;
	margin-bottom: 0.23rem;
}
.yy_pic img{
	width: auto;
	height: 4.12rem;
	margin: 0 auto;
}
.yy_txt{
	width: 8.7rem;
	text-align: center;
	line-height: 0.4rem;
	color: #333;
	font-size: 0.24rem;
	margin: 0 auto;
}
.y_01{
	width: 2.08rem;
	height: 2.08rem;
	position: absolute;
	top: 2.3rem;
	left: 0.55rem;
}
.y_wai{
	width: 100%;
	height: 100%;
	background: rgba(209, 235, 220, 0.4);
	border-radius: 50%;
	animation: bigger 2s linear infinite;
	position: absolute;
	top: 0;
	left: 0;
}
.y_txt{
	width: 1.44rem;
	height: 1.44rem;
	border-radius: 50%;
	background: url(../images/pet_08.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.4rem;
	font-weight: bold;
	margin: 0.32rem;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.y_02{
	width: 2.28rem;
	height: 2.28rem;
	position: absolute;
	bottom: -0.65rem;
	left: 3.44rem;
}
.y_02 .y_txt{
	width: 1.6rem;
	height: 1.6rem;
	font-size: 0.44rem;
}
.y_03{
	width: 2.28rem;
	height: 2.28rem;
	position: absolute;
	bottom: -0.65rem;
	right: 3.44rem;
}
.y_03 .y_txt{
	width: 1.6rem;
	height: 1.6rem;
	font-size: 0.44rem;
}
.y_04{
	width: 2.08rem;
	height: 2.08rem;
	position: absolute;
	top: 2.3rem;
	right: 0.55rem;
}

.zy_box{
	padding: 1.25rem 0 1.1rem;
	background: url(../images/pet_11.jpg) no-repeat center bottom;
	overflow: hidden;
}
.zy_box .team_tit{
	margin-bottom: 0.7rem;
}
.zy_box .team_tit h2 span{
	background: #fff;
}
.zy_list{
	width: 15.4rem;
	margin: 0 auto;
}
.zy_list li{
	float: left;
	min-width: 4.6rem;
	text-align: center;
	padding: 0 0.47rem;
	line-height: 0.8rem;
	color: #fff;
	font-size: 0.24rem;
	background: #00712f;
	border-radius: 0.1rem;
	display: inline-block !important;
}
.zy_list li:nth-child(2){
	font-weight: bold;
	background: #b08f5c;
	margin: 0.3rem 0 0 3.5rem;
}
.zy_list li:nth-child(3){
	font-weight: bold;
	background: #049d44;
	margin: 0 0 0.3rem 2.7rem;
}
.zy_list li:nth-child(4){
	margin: 0.3rem 0 0 3.1rem;
}
.zy_list li:nth-child(5){
	background: #c76945;
	margin-left: 0.78rem;
}
.zy_list li:nth-child(6){
	background: #954f6b;
	margin: 0.3rem 0 0 2.12rem;
}
.zy_list li:nth-child(7){
	font-weight: bold;
	margin: 0.3rem 0 0 4.23rem;
}

.shaicha_bg{
	width: 100%;
	background: url(../images/pet_12.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.96rem 0 0.98rem;
	overflow: hidden;
}
.shaicha_bg .team_tit{
	margin-bottom: 0.33rem;
}
.shaicha_bg .team_tit h2 span{
	background: #f0f4f6;
}
.shaicha_top{
	width: 100%;
	text-align: center;
	line-height: 0.66rem;
	color: #333;
	font-size: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.48rem;
}
.shaicha_bg .white{
	background: #fff;
	padding: 0.62rem 0.3rem 0.17rem;
}
.shaicha_w{
	width: 100%;
	display: flex;
	margin-bottom: 0.47rem;
	overflow: hidden;
}
.shaicha_box{
	width: 49%;
	min-height: 3rem;
	border-radius: 0.3rem;
	padding: 0 0.48rem 0.25rem;
}
.shaicha_box:first-child{
	margin-right: 2%;
}
.sc_bg01{
	background: #008a41;
}
.sc_bg02{
	background: #00602d;
}
.shaicha_tit{
	width: 3.57rem;
	height: 0.76rem;
	line-height: 0.76rem;
	text-align: center;
	background: url(../images/pet_13.png) no-repeat;
	background-size: 100% 100%;
	color: #288b53;
	font-size: 0.26rem;
	font-weight: bold;
	margin: 0 auto 0.2rem;
}
.shaicha_txt{
	color: #fff;
	font-size: 0.18rem;
	line-height: 0.3rem;
	text-align: justify;
}

.youshi_bg{
	width: 100%;
	padding: 1.08rem 0 0.37rem;
	background: url(../images/pet_14.jpg) no-repeat center bottom;
	background-size: cover;
	overflow: hidden;
}
.youshi_bg .team_tit{
	margin-bottom: 0.42rem;
}
.youshi_bg .team_tit h2 span{
	background: #fff;
}
.youshi_t{
	width: 100%;
	text-align: center;
	line-height: 0.4rem;
	color: #222;
	font-size: 0.24rem;
	margin-bottom: 0.6rem;
}
.youshi_t span{
	color: #00712f;
	font-weight: bold;
}
.ys_type{
	width: 100%;
	background: #f3f8f5;
	border-top-left-radius: 0.2rem;
	border-top-right-radius: 0.2rem;
	overflow: hidden;
}
.ys_type ul{
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	display: flex;
	height: 0.9rem;
}
.ys_type ul::-webkit-scrollbar {
  display: none;
}
.ys_type li{
	float: left;
	line-height: 0.9rem;
	height: 0.9rem;
	cursor: pointer;
	color: #333;
	font-size: 0.2rem;
	margin-right: 1.3rem;
}
.ys_img01{
	display: inline-block;
	width: 0.45rem;
	height: 0.27rem;
	background: url(../images/pet_16.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 0.16rem;
	display: none;
}
.ys_img02{
	display: inline-block;
	width: 0.45rem;
	height: 0.27rem;
	background: url(../images/pet_17.png) no-repeat;
	background-size: 100% 100%;
	margin-left: 0.16rem;
	display: none;
}
.ys_type li.on{
	background: url(../images/pet_15.png) no-repeat;
	background-size: 100% 100%;
	padding: 0 0.72rem 0 0.19rem;
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-right: 0.18rem;
}
.ys_type li.on .ys_img01{
	display: block;
}
.ys_type li.on .ys_img02{
	display: block;
}
.ys_bg{
	width: 100%;
	background: #00712f;
	border-bottom-left-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
	padding: 0.38rem 0.5rem 0.52rem;
	margin-bottom: 0.37rem;
}
.ys_con{
	width: 100%;
	border-radius: 0.2rem;
	background: url(../images/pet_18.png) no-repeat right top #fff;
	background-size: 6.4rem;
	padding: 0.82rem 0.42rem 0.98rem;
	text-align: justify;
	line-height: 0.4rem;
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
}
.ys_arrow{
	width: 100%;
	text-align: right;
}
.ys_arrow img{
	display: inline-block;
	width: 3.24rem;
	height: 0.28rem;
	margin-right: 0.08rem;
}

.yitihua_box{
	padding: 0.93rem 0 0.9rem;
	overflow: hidden;
}
.yitihua_box .team_tit{
	margin-bottom: 0.6rem;
}
.yitihua_box .team_tit h2 span{
	background: #fff;
}
.yitihua img{
	width: 100%;
}

.dgxmz_bg{
	padding: 0.88rem 0 0.68rem;
	overflow: hidden;
	margin-bottom: 1.28rem;
}
.dgxmz_t{
	width: 100%;
	text-align: center;
	margin-bottom: 0.14rem;
}
.dgxmz_t img{
	width: 4rem;
	display: inline-block;
}
.dgxmz_con{
	width: 9rem;
	height: 5.23rem;
	background: url(../images/pet_22.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	padding-top: 1.45rem;
	text-align: center;
	margin: 0 auto 0.57rem;
}
.dgxmz_en{
	width: 100%;
	text-align: center;
	line-height: 0.9rem;
	font-family: Arial;
	text-transform: uppercase;
	color: #ededed;
	font-size: 0.75rem;
}
.dgxmz_en span{
	color: #b3d1b3;
}
.dgxmz_tt{
	width: 80%;
	line-height: 0.9rem;
	color: #333;
	font-size: 0.62rem;
	font-weight: bold;
	position: absolute;
	bottom: 0.58rem;
	left: 10%;
}
.dgxmz_tt span{
	color: #00712f;
}
.dgxmz_tt i{
	display: block;
	width: 1rem;
	height: 0.06rem;
	background: #00712f;
	margin: 0.28rem auto 0;
}
.fcc{
	color: #fff;
	font-size: 0.26rem;
	font-weight: bold;
	line-height: 0.36rem;
	border-radius: 50%;
	background: url(../images/pet_08.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dgxmz01{
	width: 1.6rem;
	height: 1.6rem;
	top: -1.11rem;
	left: 0.56rem;
	animation: updown 1.6s linear infinite;
}
.dgxmz02{
	width: 1.4rem;
	height: 1.4rem;
	top: 0.87rem;
	left: -1.57rem;
	animation: updown 1.9s linear infinite;
}
.dgxmz03{
	width: 1.6rem;
	height: 1.6rem;
	bottom: 0;
	left: -2.18rem;
	animation: updown 2.6s linear infinite;
}
.dgxmz04{
	width: 1.2rem;
	height: 1.2rem;
	bottom: 0.24rem;
	right: -2.09rem;
	animation: updown 2s linear infinite;
}
.dgxmz05{
	width: 1.6rem;
	height: 1.6rem;
	top: 1.1rem;
	right: -1.98rem;
	animation: updown 1.6s linear infinite;
}
.dgxmz06{
	width: 1.4rem;
	height: 1.4rem;
	top: -0.58rem;
	right: 0.1rem;
	animation: updown 1.9s linear infinite;
}
.xmzy{
	background: url(../images/pet_08.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
}
.xmzy01{
	width: 0.3rem;
	height: 0.3rem;
	top: -0.07rem;
	left: -0.47rem;
	opacity: 0.2;
	animation: bigger 2s linear infinite;
}
.xmzy02{
	width: 0.6rem;
	height: 0.6rem;
	top: 2.6rem;
	left: -2.92rem;
	opacity: 0.5;
	animation: bigger 3s linear infinite;
}
.xmzy03{
	width: 0.3rem;
	height: 0.3rem;
	bottom: -0.05rem;
	right: -0.73rem;
	opacity: 0.3;
	animation: bigger 1s linear infinite;
}
.xmzy04{
	width: 0.3rem;
	height: 0.3rem;
	bottom: 1.35rem;
	right: -2.26rem;
	opacity: 0.4;
	animation: bigger 3s linear infinite;
}
.xmzy05{
	width: 0.6rem;
	height: 0.6rem;
	top: -0.33rem;
	right: -1.22rem;
	opacity: 0.4;
	animation: bigger 2s linear infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.2rem);
  }
  100% {
    transform: translateY(0);
  }
}
.dgxmz_txt{
	color: #333;
	font-weight: bold;
	font-size: 0.26rem;
	text-align: center;
	line-height: 0.5rem;
}

.yuyue_bg{
	height: 2.57rem;
	padding-top: 0.9rem;
	background: url(../images/pet_23.jpg) no-repeat center top;
	background-size: cover;
	position: relative;
	margin: 0 auto 0.67rem;
}
.yuyue_tit{
	width: 5.6rem;
	height: 0.89rem;
	background: url(../images/pet_24.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.5rem;
	font-weight: bold;
	line-height: 0.89rem;
	text-align: center;
	position: absolute;
	top: -0.35rem;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 auto;
}
.yuyue_list{
	width: 13.1rem;
	margin: 0 auto;
}
.yuyue_list ul{
	margin-right: -4%;
}
.yuyue_list li{
	float: left;
	width: 46%;
	height: 1.21rem;
	background: #fff;
	padding: 0.09rem;
	border-radius: 1rem;
	margin-right: 4%;
}
.yuyue{
	width: 100%;
	height: 1.03rem;
	border-radius: 1rem;
	border: solid 0.01rem #00712f;
	color: #00712f;
	font-size: 0.36rem;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.yuyue img{
	width: 0.4rem;
	height: 0.4rem;
	margin-right: 0.26rem;
}


/* 多学科 */
.mbn_txt02{
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 0.18rem;
	line-height: 0.4rem;
	position: absolute;
	top: 55%;
	transform: translateY(-55%);
	left: 0;
	z-index: 1;
}
.mbn_txt02 h1{
	color: #fff;
	font-size: 0.5rem;
	line-height: 0.88rem;
	margin-bottom: 0.12rem;
}
.mbn_txt02 h1 span{
	display: inline-block;
	border-bottom: solid 0.01rem #fff;
}
.mbn_txt02 h1 span i{
	width: 0.5rem;
	height: 0.03rem;
	display: block;
	background: #fff;
	margin: 0 auto -0.01rem;
}

.huizhen_bg{
	width: 100%;
	/* background: url(../images/dxk_01.jpg) no-repeat center top;
	background-size: 100%; */
	padding: 0.74rem 0 0.95rem;
	overflow: hidden;
}
.huizhen_a{
	width: 100%;
	text-align: center;
	line-height: 1.7rem;
	background: #def183;
	color: #222;
	font-size: 1.2rem;
	font-weight: bold;
	font-style: italic;
	letter-spacing: 0.3rem;
	margin-bottom: 0.39rem;
}
.huizhen_b{
	width: 100%;
	text-align: center;
	line-height: 1.1rem;
	color: #009f00;
	font-size: 0.59rem;
	font-weight: bold;
	letter-spacing: 0.3rem;
}
.huizhen_c{
	width: 100%;
	text-align: center;
	line-height: 0.62rem;
	color: #7fb92d;
	font-size: 0.36rem;
	margin-bottom: 0.41rem;
}
.huizhen_d{
	width: 100%;
	position: relative;
}
.huizhen_d img{
	width: 100%;
}
.hz_a{
	width: 2.58rem;
	height: 2.58rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 0.4rem;
	padding: 0.19rem;
	position: absolute;
	bottom: 1.37rem;
	left: 51%;
	transform: translateX(-51%);
}
.hz_b{
	width: 2.2rem;
	height: 2.2rem;
	background: #fff;
	border-radius: 0.4rem;
	padding-top: 0.2rem;
}
.hz_c{
	width: 1.34rem;
	height: 1.27rem;
	background: url(../images/dxk_03.png) no-repeat;
	background-size: 100% 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.06rem;
}
.hz_c img{
	width: 1.18rem;
	height: 1.11rem;
}
.hz_d{
	width: 100%;
	text-align: center;
	line-height: 0.28rem;
	color: #00712f;
	font-size: 0.2rem;
	font-weight: bold;
}
.hz_more{
	width: 3.29rem;
	height: 0.68rem;
	line-height: 0.68rem;
	text-align: center;
	background: #abd600;
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
	color: #fff;
	font-size: 0.47rem;
	text-transform: uppercase;
	position: absolute;
	bottom: 0.34rem;
	left: 53%;
	transform: translateX(-53%);
}
.hz_more a{
	display: block;
}

.into_bg{
	width: 100%;
	background: url(../images/dxk_05.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 1.13rem 0 0.8rem;
	position: relative;
	overflow: hidden;
}
.into_en{
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 3.84rem;
	text-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	position: absolute;
	top: 0;
	left: 0;
}
.into_bg .con17{
	position: relative;
	z-index: 1;
}
.into_top{
	width: 100%;
	margin-bottom: 1.4rem;
}
.into_tit{
	float: left;
	width: 40%;
	line-height: 1.62rem;
	color: #333;
	font-size: 1rem;
	padding-left: 0.67rem;
	font-weight: bold;
}
.into_tit span{
	font-size: 1.2rem;
	vertical-align: middle;
	margin: 0 0 0.2rem 0.15rem;
	display: inline-block;
}
.into_tit i{
	width: 0.24rem;
	height: 1.11rem;
	background: url(../images/dxk_06.png) no-repeat left center;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.into_list{
	float: right;
	width: 45%;
}
.into_list ul{
	margin-right: -5%;
}
.into_list li{
	float: left;
	width: 45%;
	margin: 0 5% 0.69rem 0;
	position: relative;
}
.into_list li:nth-child(even) i{
	display: none;
}
.into_list img{
	float: left;
	width: 0.76rem;
	height: 0.68rem;
	margin: 0.1rem 0.44rem 0 0;
}
.into_list i{
	width: 0.03rem;
	height: 0.51rem;
	background: #e6e6e6;
	display: block;
	position: absolute;
	top: 0.16rem;
	right: 0;
}
.into_list_con{
	float: left;
	width: 60%;
	color: #999;
	font-size: 0.24rem;
	line-height: 0.36rem;
	text-transform: uppercase;
}
.into_list_con h1{
	color: #434243;
	font-size: 0.4rem;
	font-weight: normal;
	line-height: 0.54rem;
	font-weight: normal;
}
.into_box{
	position: relative;
	padding-left: 0.67rem;
}
.into_pic{
	width: 100%;
	overflow: hidden;
}
.into_pic ul{
	margin-right: -2%;
}
.into_pic li{
	float: left;
	width: 31.33%;
	height: 3.65rem;
	margin-right: 2%;
	position: relative;
	overflow: hidden;
}
.into_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.into_pic li:hover img {
	transform: scale(1.1);
}
.into_pic li:nth-child(1){
	height: 3.53rem;
	margin-top: 4.07rem;
}
.into_pic li:nth-child(2){
	height: 7.6rem;
}
.into_pic li:nth-child(3){
	margin-bottom: 0.3rem;
}
.into01{
	width: 0.41rem;
	height: 0.62rem;
	background: url(../images/dxk_16.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.2rem;
	left: 0.25rem;
	z-index: 1;
}
.into02{
	width: 0.15rem;
	height: 0.34rem;
	background: url(../images/dxk_17.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.3rem;
	right: 0.3rem;
	z-index: 1;
}
.into03{
	width: 1.48rem;
	height: 0.58rem;
	background: url(../images/dxk_18.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0.21rem;
	right: 0.04rem;
	z-index: 1;
}
.into_k{
	width: 8.1rem;
	height: 3.14rem;
	background: url(../images/dxk_19.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -1.2rem;
	left: 5.06rem;
}
.into_sz{
	width: 4.2rem;
	height: 7rem;
	padding: 0.8rem 0 0 0.8rem;
	background: url(../images/dxk_11.png) no-repeat 0.07rem top;
	background-size: 0.01rem 100%;
	position: absolute;
	top: -3.17rem;
	left: 0.59rem;
	z-index: 1;
}
.into_sz li{
	padding-bottom: 0.58rem;
	position: relative;
}
.into_sz i{
	width: 0.14rem;
	height: 0.14rem;
	background: #00712f;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.into_sz h1 b{
	font-size: 0.9rem;
	color: #00712f;
	line-height: 0.96rem;
}
.into_sz h1 span{
	color: #676767;
	font-size: 0.24rem;
	line-height: 0.48rem;
	vertical-align: bottom;
	padding-left: 0.2rem;
}
.into_sz h2{
	color: #999;
	font-size: 0.24rem;
	line-height: 0.54rem;
	font-weight: normal;
}
.into_bot{
	padding-top: 0.7rem;
}
.into_left{
	float: left;
	width: 58%;
	color: #999;
	font-size: 0.24rem;
	line-height: 0.42rem;
}
.into_left h1{
	color: #444;
	font-size: 0.4rem;
	line-height: 0.5rem;
}
.into_left div:nth-child(1){
	margin-bottom: 0.08rem;
}
.into_right{
	float: right;
	width: 37%;
}
.into_right h1{
	color: #999;
	font-size: 0.5rem;
	line-height: 0.6rem;
	font-weight: normal;
	position: relative;
}
.into_right h1 i{
	width: 3.61rem;
	height: 0.05rem;
	display: block;
	background: #999;
	position: absolute;
	left: 1.72rem;
	top: 0.47rem;
}
.into_right h2{
	color: #333;
	font-size: 1rem;
	line-height: 1.36rem;
}
.into_right h2 span{
	color: #00712f;
}

.zj_bg{
	width: 100%;
	background: url(../images/dxk_20.jpg) no-repeat center top;
	background-size: cover;
	padding: 1.05rem 0;
	overflow: hidden;
}
.zj_bg .gc_tit{
	margin-bottom: 0.78rem;
}
.zj_pic{
	width: 93%;
}
.zj_pic img{
	width: 100%;
}

.czxx_bg{
	width: 100%;
	background: url(../images/dxk_22.jpg) no-repeat center top;
	background-size: cover;
	padding: 1rem 0 0.77rem;
	overflow: hidden;
}
.czxx_bg .gc_tit{
	margin-bottom: 0.74rem;
}
.czxx_box{
	width: 14.8rem;
	margin: 0 auto;
}
.czxx{
	margin-bottom: 0.92rem;
}
.czxx table{
	width: 100%;
	border-collapse: collapse;
}
.czxx th{
  color: #fff;
	font-size: 0.22rem;
  font-weight: normal;
  line-height: 0.7rem;
	background: #00712f;
	border: solid 0.01rem #d4dbd7;
}
.czxx tr{
	background: #fff;
}
.czxx tr:nth-child(even){
	background: #f3f8f5;
}
.czxx td{
  color: #222;
	font-size: 0.18rem;
	border: solid 0.01rem #d4dbd7;
	line-height: 0.38rem;
  padding: 0.2rem 0.1rem;
}
.czxx_w{
	width: 20%;
}
.czxx_bg .yuyue_bg{
	margin: 0;
}

.hz_box{
	padding: 0.8rem 0 0.45rem;
	overflow: hidden;
}
.hz_box .gc_tit{
	margin-bottom: 0.57rem;
}
.hz_txt{
	width: 70%;
	text-align: center;
	line-height: 0.4rem;
	color: #333;
	font-size: 0.2rem;
	margin: 0 auto;
}

.zjz_box{
	padding-top: 0.65rem;
	overflow: hidden;
}
.zjz_tit{
	width: 6.52rem;
	height: 1.22rem;
	text-align: center;
	padding: 0.11rem 0;
	background: #fff;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
	margin: 0 auto 0.8rem;
}
.zjz_tit h1{
	color: #00712f;
	font-size: 0.5rem;
	line-height: 0.9rem;
}
.zjz_tit h1 span{
	width: 0.44rem;
	height: 0.16rem;
	background: url(../images/dxk_23.png) no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	margin: 0 0.27rem;
}
.zjz_tit h1 span:last-child{
	background: url(../images/dxk_24.png) no-repeat;
	background-size: 100% 100%;
}
.zjz_tit i{
	width: 3rem;
	height: 0.02rem;
	background: rgba(0, 113, 47, 0.4);
	display: block;
	margin: 0 auto;
	position: relative;
}
.zjz_tit i span{
	width: 1rem;
	height: 0.04rem;
	display: block;
	background: #00712f;
	position: absolute;
	top: -0.01rem;
	left: 1rem;
}
.zjz_list{
	width: 84%;
	margin: 0 auto;
}
.zjz_list ul{
	margin-right: -2%;
}
.zjz_list li{
	float: left;
	width: 48%;
	height: 2.52rem;
	border-radius: 0.28rem;
	padding: 0 0.15rem;
	background: #ddf5e7;
	margin: 0 2% 0.47rem 0;
	overflow: hidden;
	position: relative;
}
.zjz_list i{
	width: 0.15rem;
	height: 100%;
	background: #bbe905;
	position: absolute;
	top: 0;
	left: 0;
}
.zjz_pic{
	float: left;
	width: 32%;
	height: 2.52rem;
}
.zjz_pic img{
	width: 100%;
	height: 100%;
}
.zjz_right{
	float: right;
	width: 66%;
	padding-top: 0.12rem;
}
.zjz_rt{
	color: #333;
	font-size: 0.31rem;
	line-height: 0.5rem;
	padding-right: 1.1rem;
	font-weight: normal;
	position: relative;
}
.zjz_rt span{
	color: #666;
	font-size: 0.19rem;
	padding-left: 0.18rem;
}
.zjz_ks{
	min-width: 1.11rem;
	padding: 0 0.1rem;
	height: 0.34rem;
	line-height: 0.34rem;
	text-align: center;
	border-radius: 0.5rem;
	background: #00712f;
	color: #fff;
	font-size: 0.19rem;
	position: absolute;
	top: 0.05rem;
	right: 0;
}
.zjz_txt{
	color: #626262;
	font-size: 0.15rem;
	line-height: 0.19rem;
	height: 1.33rem;
	text-align: justify;
	overflow-y: scroll;
	padding-right: 0.1rem;
	/* overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	white-space: normal; */
}
.zjz_txt::-webkit-scrollbar{
	width: 0.08rem;
	height: 0.01rem;
}
.zjz_txt::-webkit-scrollbar-thumb{
	background: #00712f;
}
.zjz_txt::-webkit-scrollbar-track{
  border-radius: 0.1rem;
	/* background: rgba(255, 255, 255, 0.6); */
}

.hzxz_box{
	padding: 0.6rem 0 1.11rem;
	overflow: hidden;
}
.hzxz_box .zjz_tit{
	margin-bottom: 0.67rem;
}
.hzxz_green{
	background: #00712f;
	padding: 0.33rem 0.42rem 0.42rem 0.42rem;
}
.hzxz_white{
	background: #fff;
	padding: 0.66rem 0.32rem 0.54rem;
}
.hzxz_list{
	float: left;
	width: 50%;
}
.hzxz_list li{
	line-height: 0.7rem;
	margin-bottom: 0.17rem;
}
.hzxz_list li:last-child{
	margin: 0;
}
.hzxz_tt{
	float: left;
	width: 40%;
	height: 0.7rem;
	background: url(../images/dxk_26.png) no-repeat 0.18rem center #00712f;
	background-size: 0.06rem 0.39rem;
	padding-left: 0.48rem;
	color: #e0fd58;
	font-size: 0.36rem;
	font-weight: bold;
}
.hzxz_txt{
	float: right;
	width: 58%;
	color: #222;
	font-size: 0.36rem;
	font-weight: bold;
}
.hzxz_right{
	float: right;
	width: 48%;
	min-height: 3.46rem;
	padding: 0.3rem 0.5rem;
	background: #00712f;
}
.ziliao_tit{
	width: 100%;
	line-height: 0.96rem;
	background: url(../images/dxk_26.png) no-repeat left center;
	background-size: 0.06rem 0.39rem;
	border-bottom: solid 0.01rem #fff;
	padding-left: 0.24rem;
	color: #e0fd58;
	font-size: 0.36rem;
	font-weight: bold;
	margin-bottom: 0.17rem;
}
.ziliao_txt{
	color: #fff;
	font-size: 0.24rem;
	line-height: 0.5rem;
	text-align: justify;
}

.huigu_bg{
	background: #f8f8f8;
	padding: 0.8rem 0 0.96rem;
	overflow: hidden;
}
.huigu_bg .gc_tit{
	margin-bottom: 0.75rem;
}
.huigu{
	width: 100%;
}
.huigu ul{
	margin-right: -2%;
}
.huigu li{
	float: left;
	width: 48%;
	height: 2.2rem;
	background: #fff;
	border-bottom-right-radius: 0.2rem;
	padding: 0.1rem;
	margin: 0 2% 0.3rem 0;
	position: relative;
	transition: all 0.6s;
}
.huigu li:hover{
	border-radius: 0.2rem;
}
.huigu_arrow{
	width: 0.6rem;
	height: 0.5rem;
	background: url(../images/dxk_28.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 0.6s;
}
.huigu li:hover .huigu_arrow{
	background: url(../images/dxk_29.png) no-repeat;
	background-size: 100% 100%;
}
.huigu li:hover .huigu_right h1{
	color: #00712f;
}
.huigu_pic{
	float: left;
	width: 29%;
	height: 2rem;
	border-radius: 0.1rem;
	overflow: hidden;
}
.huigu_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.huigu_right{
	float: right;
	width: 68%;
	margin-top: 0.06rem;
}
.huigu_right h1{
	color: #333;
	font-size: 0.2rem;
	height: 0.58rem;
	line-height: 0.58rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.huigu_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.78rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.12rem;
}
.huigu_date{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.32rem;
}


/* GCP管理 */
.jigou_bg{
	background: url(../images/gcp_01.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.91rem 0 0.52rem;
	overflow: hidden;
}
.jigou_bg .team_tit{
	margin-bottom: 0.56rem;
}
.jigou_bg .team_tit h2 span{
	background: #fcfcfc;
}
.jigou_bg .service_more{
	margin: 0 auto;
}
.jigou{
	width: 100%;
	overflow: hidden;
	margin-bottom: 0.35rem;
}
.jigou ul{
	margin-right: -1%;
}
.jigou li{
	float: left;
	width: 32%;
	background: #fff;
	padding: 0.25rem 0.22rem;
	margin: 0 1% 0.22rem 0;
}
.jigou_pic{
	float: left;
	width: 1.8rem;
	height: 1.3rem;
}
.jigou_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jigou_right{
	float: right;
	width: calc(100% - 1.8rem);
	padding: 0.13rem 0 0 0.2rem;
}
.jigou_right h1{
	color: #333;
	font-size: 0.2rem;
	height: 0.5rem;
	line-height: 0.5rem;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.jigou li:hover .jigou_right h1{
	color: #00712f;
	font-weight: bold;
}
.jigou_txt{
	color: #666;
	font-size: 0.14rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.zxdt_box{
	padding: 0.6rem 0 0.38rem;
	overflow: hidden;
}
.zxdt_box .team_tit{
	margin-bottom: 0.56rem;
}
.zxdt_box .team_tit h2 span{
	background: #fff;
}
.zxdt_box .service_more{
	margin: 0 auto;
}
.zxdt_box .con17{
	overflow: hidden;
}
.zxdt{
	width: 100%;
	margin-bottom: 0.5rem;
}
.zxdt .swiper-slide{
	padding: 0.33rem 0.3rem 0.27rem;
	background: #f9f9f9;
}
.zxdt .swiper-slide:hover .zxdt_txt{
	color: #00712f;
	font-weight: bold;
}
.zxdt_pic{
	width: 100%;
	height: 2.49rem;
	margin-bottom: 0.23rem;
}
.zxdt_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zxdt_date{
	line-height: 0.38rem;
	background: url(../images/gcp_04.png) no-repeat left center;
	background-size: 0.22rem 0.22rem;
	padding-left: 0.32rem;
	margin-bottom: 0.1rem;
}
.zxdt_txt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.36rem;
	height: 0.72rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.16rem;
}
.zxdt_more{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.32rem;
}
.zxdt_more img{
	width: 0.42rem;
	height: 0.07rem;
	vertical-align: middle;
	display: inline-block;
	margin-left: 0.14rem;
}

.shiyan_bg{
	padding: 0.85rem 0 0.51rem;
	background: url(../images/gcp_06.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}
.shiyan_bg .team_tit{
	margin-bottom: 0.86rem;
}
.shiyan_bg .team_tit h2 span{
	background: #f2fafe;
}
.shiyan_bg .service_more{
	margin: 0 auto;
}
.shiyan_bg .con17{
	overflow: hidden;
}
.shiyan_list{
	width: 100%;
	margin-bottom: 0.94rem;
}
.shiyan_list .swiper-slide{
	height: 5.2rem;
	border-right: solid 0.01rem #e5e5e5;
}
.shiyan_list .swiper-slide:last-child{
	border: none;
}
.shiyan_list .swiper-slide:hover .shiyan{
	background: url(../images/gcp_07.jpg) no-repeat;
	background-size: 100% 100%;
	color: #fff;
}
.shiyan_list .swiper-slide:hover .shiyan_date{
	color: #fff;
}
.shiyan_list .swiper-slide:hover .shiyan_date h1{
	color: #fff;
}
.shiyan_list .swiper-slide:hover .shiyan_tt{
	color: #fff;
}
.shiyan{
	width: 89%;
	height: 5.2rem;
	border-radius: 0.1rem;
	padding: 0.39rem 10%;
	color: #666;
	font-size: 0.16rem;
}
.shiyan_date{
	font-size: 0.2rem;
	color: #666;
	line-height: 0.36rem;
}
.shiyan_date h1{
	color: #333;
	font-size: 0.44rem;
	line-height: 0.6rem;
	font-weight: normal;
}
.shiyan_tt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.6rem;
	height: 0.6rem;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.shiyan_pic{
	width: 100%;
	height: 1.6rem;
	margin-bottom: 0.15rem;
}
.shiyan_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shiyan_txt{
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.23rem;
}

.office_box{
	padding: 0.96rem 0 0.98rem;
	overflow: hidden;
}
.office_box .team_tit{
	margin-bottom: 0.72rem;
}
.office_box .team_tit h2 span{
	background: #fff;
}
.office ul{
	margin-right: -3%;
}
.office li{
	float: left;
	width: 30.33%;
	height: 2.4rem;
	background: #fff;
	box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
	margin-right: 3%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.office_pic{
	width: 0.96rem;
	height: 0.96rem;
	margin-right: 0.27rem;
}
.office_r{
	width: 2.8rem;
}
.office_r h1{
	color: #222;
	font-size: 0.26rem;
	line-height: 0.42rem;
}
.office_r h2{
	color: #999;
	font-size: 0.16rem;
	line-height: 0.3rem;
	font-weight: normal;
	margin-bottom: 0.2rem;
}
.office li:nth-child(1) .office_r{
	width: 3.46rem;
}
.office_txt{
	color: #00712f;
	font-size: 0.2rem;
	line-height: 0.3rem;
	padding-left: 0.3rem;
	position: relative;
}
.office_txt img{
	width: 0.22rem;
	height: 0.22rem;
	position: absolute;
	top: 0.05rem;
	left: 0;
}

.llwyh_bg{
	width: 100%;
	background: url(../images/gcp_15.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.93rem 0 0.63rem;
	overflow: hidden;
}
.llwyh_bg .team_tit{
	margin-bottom: 0.7rem;
}
.llwyh_bg .team_tit h2 span{
	background: #f5f6f7;
}
.llwyh_bg .service_more{
	margin: 0 auto;
}

.sqbg_box{
	padding: 0.9rem 0 0.56rem;
	overflow: hidden;
}
.sqbg_box .team_tit{
	margin-bottom: 0.56rem;
}
.sqbg_box .team_tit h2 span{
	background: #fff;
}
.sqbg_box .service_more{
	margin: 0 auto;
}
.sqbg_box .con17{
	overflow: hidden;
}
.sqbg{
	width: 100%;
	margin-bottom: 0.5rem;
}
.sqbg .swiper-slide{
	padding: 0.33rem 0.3rem 0.27rem;
	background: #f9f9f9;
}
.sqbg .swiper-slide:hover .zxdt_txt{
	color: #00712f;
	font-weight: bold;
}

.syzm_bg{
	width: 100%;
	background: url(../images/gcp_16.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.83rem 0 0.71rem;
	overflow: hidden;
}
.syzm_bg .con17{
	overflow: hidden;
}
.syzm_tit{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0.83rem;
	position: relative;
}
.syzm_tit h1{
	color: #fff;
	font-size: 0.6rem;
	font-family: Arial;
	font-weight: normal;
	line-height: 0.56rem;
	margin-bottom: 0.71rem;
	white-space: nowrap;
	overflow: hidden;
}
.syzm_tit h2{
	width: 100%;
	color: #fff;
	font-size: 0.48rem;
	line-height: 0.64rem;
	position: absolute;
	top: 0.3rem;
	left: 0;
}
.syzm_tit h2 span{
	display: inline-block;
	background: #006d2d;
	padding: 0 0.05rem;
}
.syzm_tit i{
	width: 5rem;
	height: 0.02rem;
	background: #fff;
	display: block;
	margin: 0 auto;
	position: relative;
}
.syzm_tit i span{
	width: 1.2rem;
	height: 0.04rem;
	display: block;
	background: #fff;
	position: absolute;
	top: -0.01rem;
	left: 1.9rem;
}
.syzm_more{
	width: 1.93rem;
	height: 0.55rem;
	line-height: 0.55rem;
	text-align: center;
	color: #00712f;
	font-size: 0.18rem;
	border-radius: 0.04rem;
	background: #fff;
	margin: 0 auto;
}
.syzm_more a{
	display: block;
}
.syzm{
	width: 100%;
	margin-bottom: 0.69rem;
}
.syzm .swiper-slide{
	background: #fff;
	height: 5rem;
	padding: 0.43rem 0.3rem;
	transition: all 0.6s;
}
.syzm .swiper-slide:hover{
	border-radius: 0.2rem;
}
.syzm .swiper-slide:hover .syzm_tt{
	color: #00712f;
}
.syzm_tt{
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	height: 0.5rem;
	line-height: 0.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.syzm_date{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.34rem;
	margin-bottom: 0.07rem;
}
.syzm_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.32rem;
}
.syzm_pic{
	width: 100%;
	height: 2.18rem;
	border: solid 0.01rem #eee;
}
.syzm_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cymd_box{
	padding: 0.96rem 0 0.46rem;
	overflow: hidden;
}
.cymd_box .team_tit{
	margin-bottom: 0.56rem;
}
.cymd_box .team_tit h2 span{
	background: #fff;
}
.cymd_box .service_more{
	margin: 0 auto;
}
.cymd_box .con17{
	overflow: hidden;
}
.cymd{
	margin: 0 auto 0.13rem;
	overflow: hidden;
}
.cymd ul{
	margin-right: -2%;
}
.cymd li{
	float: left;
	width: 48%;
	height: 1.6rem;
	background: #f5f5f5;
	margin: 0 2% 0.4rem 0;
	transition: all 0.6s;
}
.cymd li:hover{
	background: #00712f;
}
.cymd li:hover .cymd_r{
	color: #fff;
}
.cymd li:hover .cymd_r h1{
	color: #fff;
	font-weight: bold;
}
.cymd_pic{
	float: left;
	width: 29%;
	height: 1.6rem;
}
.cymd_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cymd_r{
	float: right;
	width: 68%;
	padding: 0.07rem 0.16rem 0 0;
	color: #666;
	font-size: 0.16rem;
}
.cymd_r h1{
	color: #222;
	font-size: 0.2rem;
	font-weight: normal;
	height: 0.48rem;
	line-height: 0.48rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cymd_txt{
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	/*margin-bottom: 0.12rem;*/
}
.cymd_date{
	line-height: 0.26rem;
}

.arti_box{
	padding: 0.56rem 0 0.91rem;
	overflow: hidden;
}
.arti_box .team_tit{
	margin-bottom: 0.56rem;
}
.arti_box .team_tit h2 span{
	background: #fff;
}
.arti_box .service_more{
	margin: 0 auto;
}
.arti_box .con17{
	overflow: hidden;
}
.arti{
	width: 100%;
	margin-bottom: 0.5rem;
}
.arti .swiper-slide{
	padding: 0.33rem 0.3rem 0.27rem;
	background: #f9f9f9;
}
.arti .swiper-slide:hover .zxdt_txt{
	color: #00712f;
	font-weight: bold;
}

.shencha_bg{
	width: 100%;
	background: url(../images/gcp_20.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
	padding: 0.87rem 0;
}
.shencha_bg .team_tit{
	margin-bottom: 0.68rem;
}
.shencha_bg .team_tit h2 span{
	background: #fafafa;
	background: linear-gradient(to right, #fbfbfb, #f6f6f8, #eaeaea);
}
.shencha_bg .service_more{
	margin: 0 auto;
}
.shencha_bg .con17{
	overflow: hidden;
	margin: 0 auto 0.56rem;
}
.shencha_left{
	float: left;
	width: 44%;
}
.shencha_pic{
	width: 100%;
	height: 2.8rem;
	overflow: hidden;
	margin-bottom: 0.1rem;
}
.shencha_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}
.shencha_left:hover .shencha_pic img {
	transform: scale(1.1);
}
.shencha_left:hover .shencha_left_tt{
	color: #00712f;
}
.shencha_left_tt{
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	height: 0.64rem;
	line-height: 0.64rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.shencha_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.24rem;
	height: 0.48rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.12rem;
}
.shencha_left_more{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.32rem;
}
.shencha_left_more img{
	width: 0.42rem;
	height: 0.07rem;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.16rem;
}
.shencha_right{
	float: right;
	width: 52%;
}
.shencha_right li{
	border-bottom: solid 0.01rem #dce7e2;
	padding-bottom: 0.32rem;
	margin-bottom: 0.22rem;
}
.shencha_right li:last-child{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.shencha_right li:hover .shencha_r_date{
	background: #00712f;
	color: #fff;
}
.shencha_right li:hover .shencha_r_date h1{
	color: #fff;
}
.shencha_right li:hover .shencha_rr_tt{
	color: #00712f;
}
.shencha_r_date{
	float: left;
	width: 10%;
	height: 1rem;
	text-align: center;
	line-height: 0.3rem;
	color: #999;
	font-size: 0.18rem;
	padding-top: 0.08rem;
}
.shencha_r_date h1{
	color: #777;
	font-size: 0.54rem;
	line-height: 0.56rem;
}
.shencha_rr{
	float: right;
	width: 88%;
}
.shencha_rr_tt{
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	height: 0.32rem;
	line-height: 0.32rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.13rem;
}

.major_box{
	padding: 0.86rem 0 0.37rem;
	overflow: hidden;
}
.major_box .team_tit{
	margin-bottom: 0.4rem;
}
.major_box .team_tit h2 span{
	background: #fff;
}
.major_box .service_more{
	margin: 0 auto;
}

.zhaomu_box{
	padding: 0.45rem 0 0.7rem;
	overflow: hidden;
}
.zhaomu_box .team_tit{
	margin-bottom: 0.56rem;
}
.zhaomu_box .team_tit h2 span{
	background: #fff;
}
.zhaomu_box .con17{
	overflow: hidden;
}
.zhaomu_pic{
	width: 100%;
	height: 2.6rem;
	border-top-left-radius: 0.1rem;
	border-top-right-radius: 0.1rem;
	overflow: hidden;
}
.zhaomu_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zhaomu_di{
	width: 100%;
	height: 4.1rem;
	padding: 0.24rem;
	background: #fafafa;
}
.zm_tt{
	color: #333;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.36rem;
	height: 0.72rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.14rem;
}
.zm_label div{
	display: inline-block;
	border: solid 0.01rem;
	border-radius: 0.03rem;
	border: solid 0.01rem #00712f;
	background: #f0f6f3;
	padding: 0 0.08rem;
	line-height: 0.28rem;
	color: #00712f;
	margin: 0 0.1rem 0.14rem 0;
}
.zm_txt{
	color: #777;
	font-size: 0.16rem;
	line-height: 0.36rem;
	height: 1.44rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.25rem;
}
.zm_more{
	width: 1.93rem;
	height: 0.55rem;
	line-height: 0.55rem;
	text-align: center;
	color: #00712f;
	font-size: 0.18rem;
	border-radius: 0.04rem;
	border: solid 0.01rem #00712f;
	overflow:hidden;
	margin: 0 auto;
	position: relative;
}
.zm_more a{
	display: block;
	position: relative;
	z-index: 1;
}
.zm_more:hover{
	color: #fff;
}
.zm_more:before {
	content: "";
	width: 0;
	height: 100%;
	background: #005a25;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: 0.5s;
}
.zm_more:after {
	position: absolute;
	left:-10px;
	bottom: 0;
	content: "";
	box-sizing: border-box;
	transition: 0.5s;
	width:110%;
	height: 100%;
}
.zm_more:hover:before,
.zm_more.active:before {
	width: 100%;
	right: auto;
	left: 0;
}


/* 疾病导航 */
.lung_box{
	padding: 0.53rem 0;
	overflow: hidden;
}
.lung_box .fuke_top{
	margin-bottom: 0.52rem;
}
.lung_pos{
	position: relative;
}
.lung_pic{
	float: left;
	width: 9.9rem;
	height: 5.84rem;
	position: relative;
}
.lung_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lung_pic .swiper-pagination{
	bottom: 0.36rem;
}
.lung_pic .swiper-pagination-bullet{
	width: 0.14rem;
	height: 0.14rem;
	border-radius: 50%;
	background: #fff;
	margin: 0 0.1rem !important;
}
.lung_right{
	width: 8.64rem;
	/* height: 4.6rem; */
	padding: 0.39rem 0.42rem;
	background: #fff;
	box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0.59rem;
	right: 0;
	z-index: 1;
}
.lung_en{
	color: #999;
	font-size: 0.14rem;
	line-height: 0.16rem;
	border-left: solid 0.03rem #999;
	padding-left: 0.09rem;
	text-transform: uppercase;
	margin-bottom: 0.12rem;
}
.lung_arrow{
	width: 0.88rem;
	height: 0.13rem;
	background: url(../images/dis_02.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.45rem;
	right: 0.44rem;
}
.lung_k{
	width: 100%;
	/* height: 3.31rem; */
	border: solid 0.01rem #c8d978;
	padding: 0.52rem 0.27rem 0.27rem;
	position: relative;
}
.lung_kbg{
	width: 4rem;
	height: 0.03rem;
	background: url(../images/dis_05.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	bottom: -0.01rem;
	z-index: 1;
}
.lung_tit{
	width: 100%;
	text-align: center;
	line-height: 0.7rem;
	position: absolute;
	top: -0.55rem;
	left: 0;
	z-index: 1;
}
.lung_tit i{
	width: 3.4rem;
	height: 0.3rem;
	background: #dee9a8;
	display: block;
	margin: 0.4rem auto 0;
	position: relative;
}
.lung_tit i span{
	width: 0.16rem;
	height: 0.14rem;
	position: absolute;
	top: 0.08rem;
}
.lung_tit i span:nth-child(1){
	background: url(../images/dis_03.png) no-repeat;
	background-size: 100% 100%;
	left: -0.7rem;
}
.lung_tit i span:nth-child(2){
	background: url(../images/dis_04.png) no-repeat;
	background-size: 100% 100%;
	right: -0.7rem;
}
.lung_tit h1{
	width: 100%;
	color: #00712f;
	font-size: 0.5rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.lung_more{
	width: 1.59rem;
	height: 0.53rem;
	line-height: 0.53rem;
	text-align: center;
	background: #00712f;
	border-radius: 0.03rem;
	color: #fff;
	font-size: 0.18rem;
	position: absolute;
	bottom: -0.29rem;
	left: -0.75rem;
}
.lung_more a{
	display: block;
}
.lung_more img{
	width: 0.28rem;
	height: 0.08rem;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.08rem;
}
.lung_list{
	width: 100%;
}
.lung_list li{
	margin-bottom: 0.3rem;
}
.lung_list li:last-child{
	margin: 0;
}
.lung_left{
	float: left;
	width: 1.04rem;
	height: 0.34rem;
	line-height: 0.34rem;
	text-align: center;
	border: solid 0.01rem #00712f;
	color: #00712f;
	font-size: 0.2rem;
	font-weight: bold;
	position: relative;
}
.lung_left i{
	width: 0.11rem;
	height: 0.23rem;
	background: url(../images/dis_06.png) no-repeat #fff;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	top: 0.05rem;
	left: -0.05rem;
}
.lung_r{
	float: right;
	width: 6rem;
	line-height: 0.34rem;
	/* height: 0.34rem; */
	color: #333;
	font-size: 0.18rem;
	text-align: justify;
	/* white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */
}

.zhiliao_box{
	padding: 0.36rem 0 0.75rem;
	overflow: hidden;
}
.zhiliao_top{
	height: 1.02rem;
	border-bottom: solid 0.01rem #e5e5e5;
	margin-bottom: 0.44rem;
}
.zl_img{
	float: left;
	margin-right: 0.11rem;
}
.zl_img img{
	width: 0.49rem;
	height: 0.51rem;
}
.zl_tit{
	float: left;
}
.zl_tit h1{
	font-size: 0.4rem;
	line-height: 0.6rem;
	position: relative;
	display: inline-block;
}
.zl_tit h1 i{
	width: 100%;
	height: 0.11rem;
	background: rgba(166, 203, 6, 0.2);
	border-radius: 0.2rem;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0.06rem;
}
.zl_tit h1 span{
	padding: 0 0.13rem;
	position: relative;
	z-index: 1;
}
.zl_fang{
	width: 0.1rem;
	height: 0.1rem;
	background: #00712f;
	display: inline-block;
	vertical-align: bottom;
	margin: 0 0.18rem 0.08rem 0.07rem;
}
.zl_en{
	display: inline-block;
	vertical-align: bottom;
	background: linear-gradient(to bottom, #00712f, #d6f450);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
	font-size: 0.28rem;
	text-transform: uppercase;
	margin-top: 0.12rem;
	line-height: 0.48rem;
}
.zhiliao{
	width: 100%;
}
.zhiliao .swiper-slide{
	background: #f8f8f8;
	padding: 0.2rem;
	height: 1.8rem;
}
.zhiliao .swiper-slide:hover{
	background: url(../images/dis_08.jpg) no-repeat;
	background-size: 100% 100%;
}
.zhiliao .swiper-slide:hover .zhiliao_r h1{
	color: #fff;
}
.zhiliao .swiper-slide:hover .zhiliao_date{
	color: #fff;
}
.zhiliao .swiper-slide img{
	float: left;
	width: 35%;
	height: 1.4rem;
}
.zhiliao_r{
	float: right;
	width: 62%;
	padding-top: 0.07rem;
}
.zhiliao_r h1{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.28rem;
	height: 0.84rem;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.17rem;
}
.zhiliao_date{
	color: #666;
	line-height: 0.18rem;
}

.focus_bg{
	background: #f8f8f8;
	padding: 0.7rem 0 0.76rem;
	overflow: hidden;
}
.focus_img{
	float: left;
	margin-right: 0.18rem;
}
.focus_img img{
	width: 0.42rem;
	height: 0.51rem;
}
.focus_bg .zhiliao_top{
	margin-bottom: 0.53rem;
	position: relative;
}
.focus_tel{
	width: 3.34rem;
	height: 0.57rem;
	line-height: 0.57rem;
	background: url(../images/dis_43.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.24rem;
	font-weight: bold;
	padding-left: 0.7rem;
	position: absolute;
	top: 0.05rem;
	right: 0;
}
.focus_m{
	width: 100%;
	margin-bottom: 0.5rem;
	overflow: hidden;
}
.focus .swiper-slide:hover .focus_tt{
	color: #00712f;
}
.focus_pic{
	width: 100%;
	height: 3rem;
}
.focus_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.focus_bot{
	background: #fff;
	padding: 0.04rem 0.3rem;
	height: 3.65rem;
	border-bottom-left-radius: 0.1rem;
	border-bottom-right-radius: 0.1rem;
}
.focus_line{
	height: 0.86rem;
	border-bottom: solid 0.01rem #e5e5e5;
	margin-bottom: 0.2rem;
}
.focus_tt{
	float: left;
	width: 60%;
	height: 0.86rem;
	line-height: 0.86rem;
	color: #222;
	font-size: 0.24rem;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.focus_num{
	float: right;
	line-height: 0.86rem;
	color: #666;
	font-size: 0.24rem;
}
.focus_num img{
	width: 0.26rem;
	height: 0.16rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.1rem;
}
.focus_txt{
	color: #777;
	font-size: 0.18rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.focus_gzd{
	color: #666;
	font-size: 0.2rem;
	line-height: 0.3rem;
	margin: 0.27rem 0;
}
.focus_gzd img{
	width: 0.21rem;
	height: 0.21rem;
	display: inline-block;
	vertical-align: middle;
}
.focus_bot .zxwz{
	width: 2.2rem;
}
.focus_bot .yygh{
	width: 2.2rem;
}
.focus_list{
	width: 100%;
	overflow: hidden;
}
.focus_list ul{
	margin-right: -2%;
}
.focus_list li{
	float: left;
	width: 48%;
	height: 1.6rem;
	background: #fff;
	font-size: 0.16rem;
	color: #666;
	line-height: 0.26rem;
	margin: 0 2% 0.4rem 0;
}
.focus_list li:hover{
	background: #00712f;
	color: #fff;
}
.focus_list li:hover .focus_list_r h1{
	color: #fff;
	font-weight: bold;
}
.focus_list img{
	float: left;
	width: 29%;
	height: 1.6rem;
}
.focus_list_r{
	float: right;
	width: 68%;
	padding: 0.07rem 0.28rem 0 0;
}
.focus_list_r h1{
	color: #222;
	font-size: 0.2rem;
	height: 0.48rem;
	line-height: 0.48rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: normal;
}
.focus_list_txt{
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0.12rem;
}

.xjie_bg{
	width: 100%;
	background: url(../images/dis_15.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.85rem 0 2.38rem;
	overflow: hidden;
}
.xjie_top{
	text-align: center;
	margin-bottom: 0.6rem;
}
.xjie_tit img{
	width: 0.48rem;
	height: 0.48rem;
	display: inline-block;
	vertical-align: top;
	margin: 0.06rem 0.08rem 0 0;
}
.xjie_tit h1{
	font-size: 0.4rem;
	line-height: 0.6rem;
	position: relative;
	display: inline-block;
}
.xjie_tit h1 i{
	width: 100%;
	height: 0.11rem;
	background: rgba(166, 203, 6, 0.2);
	border-radius: 0.2rem;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0.05rem;
}
.xjie_tit h1 span{
	padding: 0 0.13rem;
	position: relative;
	z-index: 1;
}
.xjie_pic{
	width: 6.5rem;
	height: 6.5rem;
	position: relative;
	margin: 0 auto;
}
.xjie_pic img{
	width: 100%;
	height: 100%;
}
.xjie_pic01{
	width: 5.5rem;
	height: 5.5rem;
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	animation: play 3s linear infinite;
}
.xjie_pic02{
	width: 4.5rem;
	height: 4.5rem;
	position: absolute;
	top: 1rem;
	left: 1rem;
	animation: play 8s linear infinite;
}
@keyframes play {
	0% {
			-webkit-transform: rotateZ(0deg);
	}
	100% {
			-webkit-transform: rotateZ(-360deg);
	}
}
.xjie{
	width: 3.6rem;
	position: absolute;
}
.xjie_01{
	top: 0.15rem;
	left: -3.21rem;
}
.xjie_02{
	top: 2.22rem;
	left: -3.8rem;
}
.xjie_03{
	top: 4.58rem;
	left: -3.4rem;
}
.xjie_04{
	width: 2.74rem !important;
	top: 6.4rem;
	left: 0;
}
.xjie_04 .xjie_img,.xjie_05 .xjie_img{
	float: none;
	margin: 0 auto 0.12rem;
}
.xjie_04 .xjie_txt,.xjie_05 .xjie_txt{
	float: none;
	width: 100%;
	margin: 0;
}
.xjie_04 .xjie_txt div,.xjie_05 .xjie_txt div{
	text-align: center;
}
.xjie_05{
	width: 2.74rem !important;
	top: 6.4rem;
	right: 0;
}
.xjie_06{
	top: 4.58rem;
	right: -3.4rem;
}
.xjie_07{
	top: 2.22rem;
	right: -3.8rem;
}
.xjie_08{
	top: 0.15rem;
	right: -3.21rem;
}
.xjie_06 .xjie_img,.xjie_07 .xjie_img,.xjie_08 .xjie_img{
	float: left;
}
.xjie_06 .xjie_txt,.xjie_07 .xjie_txt,.xjie_08 .xjie_txt{
	float: right;
}
.xjie_06 .xjie_txt div,.xjie_07 .xjie_txt div,.xjie_08 .xjie_txt div{
	text-align: left;
}
.xjie:hover .xjie_img{
	border: dashed 0.01rem rgba(0, 0, 0, 0);
	background: url(../images/dis_36.png) no-repeat;
	background-size: 100% 100%;
}
.xjie:hover .img01{
	display: none;
}
.xjie:hover .img02{
	display: block;
}
.xjie_img{
	float: right;
	width: 1.3rem;
	height: 1.3rem;
	border: dashed 0.01rem #d5e0e0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.xjie_img i{
	width: 0.2rem;
	height: 0.2rem;
	background: #fff;
	border: solid 0.04rem #00712f;
	display: block;
	border-radius: 50%;
	position: absolute;
	bottom: 0.1rem;
	right: -0.42rem;
}
.xjie_02 .xjie_img i{
	top: 0.58rem;
	right: -0.36rem;
}
.xjie_03 .xjie_img i{
	top: 0.24rem;
	right: -0.4rem;
}
.xjie_04 .xjie_img i{
	top: -0.4rem;
	right: 0.15rem;
}
.xjie_05 .xjie_img i{
	top: -0.4rem;
	left: 0.15rem;
	right: auto;
}
.xjie_06 .xjie_img i{
	top: 0.37rem;
	left: -0.5rem;
	right: auto;
}
.xjie_07 .xjie_img i{
	top: 0.58rem;
	left: -0.35rem;
	right: auto;
}
.xjie_08 .xjie_img i{
	bottom: 0.1rem;
	left: -0.44rem;
	right: auto;
}
.xjie_tu{
	width: 1.1rem;
	height: 1.1rem;
	position: relative;
}
.xjie_tu img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.xjie_txt{
	float: left;
	width: 2.1rem;
	height: 1.3rem;
	color: #333;
	font-size: 0.2rem;
	line-height: 0.22rem;
	display: flex;
	align-items: center;
}
.xjie_txt div{
	text-align: right;
	width: 100%;
}

.wenzhen_box{
	padding: 0.54rem 0 0.59rem;
	overflow: hidden;
}
.wenzhen_bg{
	height: 2rem;
	background: url(../images/dis_37.jpg) no-repeat center;
	background-size: cover;
	padding-top: 0.38rem;
}
.wenzhen_w{
	width: 10.12rem;
	margin: 0 auto;
}
.btn_zxwz{
	float: left;
	width: 4.4rem;
	height: 1.2rem;
	background: #dbe8df;
	border-radius: 0.03rem;
	color: #00712f;
	font-size: 0.36rem;
	font-weight: bold;
	padding: 0.1rem;
	position: relative;
}
.btn_zxwz a{
	width: 100%;
	height: 100%;
	border: solid 0.01rem #00712f;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn_zxwz img{
	width: 0.75rem;
	height: 0.75rem;
	margin-right: 0.17rem;
}
.btn_yygh{
	float: right;
	width: 4.4rem;
	height: 1.2rem;
	background: url(../images/dis_39.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 0.03rem;
	color: #fff;
	font-size: 0.36rem;
	font-weight: bold;
	padding: 0.1rem;
	position: relative;
}
.btn_yygh a{
	width: 100%;
	height: 100%;
	border: solid 0.01rem #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn_yygh img{
	width: 0.75rem;
	height: 0.75rem;
	margin-right: 0.17rem;
}

.team_bg02{
	padding: 0.62rem 0 0.3rem;
	background: url(../images/dis_41.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}


/* 科室详情 */
.gray{
	background: #f8f8f8;
}
.waike_box{
	padding: 0.57rem 0 0.7rem 0;
	position: relative;
	overflow: hidden;
}
.waike_en{
	color: #999;
	opacity: 0.1;
	font-size: 2.04rem;
	line-height: 1.54rem;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	top: 0.57rem;
	right: 0;
}
.waike_enbg{
	width: 100%;
	height: 1.54rem;
	background: linear-gradient(to bottom, rgba(248,248,248,0.4), #f8f8f8);
	position: absolute;
	left: 0;
	bottom: -0.1rem;
}
.waike_box .con17{
	position: relative;
	z-index: 2;
}
.waike_tit{
	color: #00712f;
	font-size: 0.6rem;
	font-weight: bold;
	line-height: 1.16rem;
	margin-bottom: 0.5rem;
}
.waike{
	width: 100%;
	overflow: hidden;
}
.waike ul{
	display: flex;
	justify-content: space-between;
}
.waike li{
	color: #999;
	font-size: 0.2rem;
	text-transform: uppercase;
	line-height: 0.36rem;
	text-align: center;
}
.waike img{
	width: 1.4rem;
	height: 1.4rem;
	margin: 0 auto 0.08rem;
}
.waike h1{
	color: #222;
	font-size: 0.3rem;
	line-height: 0.52rem;
	font-weight: normal;
}

.ksjj_box{
	padding: 0.48rem 0 0.62rem;
	overflow: hidden;
	position: relative;
}
.ksjj_lb{
	width: 0.68rem;
	height: 5.42rem;
	background: url(../images/ks_16.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.ksjj_left{
	float: left;
	width: 6.6rem;
	margin-top: 0.9rem;
}
.ksjj_top{
	width: 5.12rem;
	height: 2.1rem;
	margin-bottom: 0.52rem;
	position: relative;
}
.ksjj_tit{
	padding-top: 0.31rem;
	color: #00712f;
	font-size: 0.5rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.52rem;
	position: relative;
	z-index: 1;
}
.ksjj_tit h1{
	color: #222;
	font-size: 0.56rem;
	line-height: 0.8rem;
}
.ksjj_titbg{
	width: 10rem;
	height: 2.1rem;
	background: #f9f9f9;
	position: absolute;
	top: 0;
	right: 0;
}
.ksjj_txt{
	color: #222;
	font-size: 0.22rem;
	line-height: 0.42rem;
	text-align: justify;
	margin-bottom: 0.45rem;
}
.ksjj_txt p{
	text-indent: 0.46rem;
}
.ksjj_txt span{
	color: #00712f;
	font-weight: bold;
}
.ksjj_tu{
	width: 3.68rem;
	height: 1.06rem;
}
.ksjj_tu img{
	width: 100%;
}
.ks_line01{
	width: 1.22rem;
	height: 0.01rem;
	position: absolute;
	left: 0;
	bottom: 0.16rem;
}
.ks_line02{
	width: 2.03rem;
	height: 0.01rem;
	position: absolute;
	left: 0;
	bottom: 0;
}
.ksjj_tu div i{
	width: 100%;
	height: 0.01rem;
	background: #99c6ac;
	display: block;
	animation: showAnimate 3s linear infinite;
}
.ksjj_pic{
	float: right;
	width: 10.05rem;
}
.ksjj_pic img{
	width: 100%;
}

.zkts_bg{
	width: 100%;
	background: url(../images/ks_19.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}
.zkts_left{
	float: left;
	width: 54%;
	height: 8rem;
	position: relative;
}
.zkts_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zkts_entu{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.zkts_entu img{
	object-fit: fill;
}
.zkts_right{
	float: left;
	width: 46%;
	height: 8rem;
	padding: 0.58rem 0.3rem 0;
}
.zkts_tit{
	width: 100%;
	text-align: center;
	color: #00712f;
	line-height: 0.7rem;
	font-size: 0.5rem;
	text-transform: uppercase;
	margin-bottom: 0.03rem;
}
.zkts_tit h1{
	color: #222;
	font-size: 0.56rem;
	line-height: 0.88rem;
}
.zkts_tit div{
	margin-bottom: 0.15rem;
}
.zkts_tit img{
	width: 0.44rem;
	height: 0.4rem;
	margin: 0 auto;
}
.zkts{
	width: 84%;
	height: 3.96rem;
	margin-bottom: 0.44rem;
}
.zkts .swiper-slide{
	height: 1.32rem !important;
	border-bottom: solid 0.01rem #fff;
	display: flex;
	align-items: center;
}
.zkts_num{
	float: left;
	width: 13%;
	font-size: 0.76rem;
	line-height: 0.8rem;
	font-weight: bold;
	color: transparent;
	text-decoration: none;
	-webkit-text-stroke: 1px #00712f;
  text-stroke: 1px #00712f;
}
.zkts_txt{
	float: right;
	width: 85%;
	height: 0.8rem;
	line-height: 0.4rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.zkts_bot{
	width: 1.5rem;
	height: 0.44rem;
	background: #00712f;
	border-radius: 0.5rem;
	margin: 0 auto;
	position: relative;
}
.zkts_bot i{
	width: 0.01rem;
	height: 0.14rem;
	background: #229f56;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.zkts_l,.zkts_r{
	width: 0.44rem;
	height: 0.44rem;
	line-height: 0.44rem;
	text-align: center;
	top: 0;
}
.zkts_l{
	left: 0.18rem;
}
.zkts_r{
	right: 0.18rem;
}
.zkts_r:after, .zkts_l:after{
	font-size: 0.2rem;
	color: #fff;
}
.zkts_r:hover:after, .zkts_l:hover:after{
	color: #a5d305;
}

.leader_box{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.leader{
	width: 100%;
}
.leader_bg{
	width: 100%;
	height: 9.24rem;
	padding: 0.78rem 0 0.58rem;
	background: url(../images/ks_23.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}
.leader_left{
	float: left;
	width: 9rem;
	padding-top: 1rem;
}
.leader_tit{
	text-transform: uppercase;
	margin-bottom: 0.37rem;
}
.leader_tit h1{
	color: #00712f;
	font-size: 0.8rem;
	line-height: 1.12rem;
}
.leader_tit h1 span{
	color: #b8dd0a;
}
.leader_tit h2{
	color: #333;
	font-size: 0.56rem;
	line-height: 0.88rem;
	margin-bottom: 0.32rem;
}
.leader_tit i{
	width: 1rem;
	height: 0.01rem;
	display: block;
	background: #00712f;
}
.leader_txt{
	width: 7.1rem;
	color: #222;
	font-size: 0.2rem;
	line-height: 0.42rem;
	height: 2.1rem;
	text-align: justify;
	overflow-y: scroll;
	/* overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	white-space: normal; */
	margin-bottom: 0.2rem;
	text-indent: 0.44rem;
	padding-right: 0.1rem;
}
.leader_txt::-webkit-scrollbar{
	width: 0.08rem;
	height: 0.01rem;
}
.leader_txt::-webkit-scrollbar-thumb{
	background: #9e9e9e;
}
.leader_txt::-webkit-scrollbar-track{
  border-radius: 0.1rem;
	background: #ededed;
}
.leader_list{
	width: 7.1rem;
	margin-left: -0.1rem;
}
.leader_list li{
	line-height: 0.4rem;
	background: url(../images/ks_24.png) no-repeat left top;
	background-size: 0.4rem 0.4rem;
	padding-left: 0.46rem;
	color: #00712f;
	font-size: 0.2rem;
	font-weight: bold;
}
.leader_right{
	float: left;
	width: 6.29rem;
	position: relative;
}
.leader_pic{
	width: 100%;
	height: 7.88rem;
}
.leader_pic img{
	width: 100%;
	height: 100%;
}
.leader_a{
	padding: 0 0.26rem;
	line-height: 1rem;
	background: #fff;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	border-radius: 0.06rem;
	color: #00712f;
	font-size: 0.34rem;
	font-weight: bold;
	position: absolute;
	top: 2.75rem;
	right: -1.72rem;
	z-index: 1;
}
.leader_b{
	padding: 0 0.26rem;
	line-height: 0.56rem;
	border-radius: 0.06rem;
	background: #a3c408;
	color: #fff;
	font-size: 0.2rem;
	font-weight: bold;
	position: absolute;
	top: 4.2rem;
	right: -1.2rem;
	z-index: 1;
}
.leader_c{
	padding: 0 0.26rem;
	line-height: 0.56rem;
	border-radius: 0.06rem;
	background: #fff;
	color: #00712f;
	font-size: 0.2rem;
	font-weight: bold;
	position: absolute;
	z-index: 1;
}
.c01{
	bottom: 2.1rem;
	right: -1.48rem;
}
.c02{
	bottom: 1.3rem;
	right: -1rem;
}
.c03{
	bottom: 0.6rem;
	right: -0.5rem;
}
.c04{
	bottom: -0.2rem;
	right: 0;
}
.leader_bot{
	width: 40%;
	padding-left: 1.56rem;
	position: absolute;
	left: 30%;
	bottom: 0.78rem;
	z-index: 5;
}
.leader_di{
	width: 2.6rem;
	height: 1.3rem;
	background: #fff;
	border-radius: 0.1rem;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
	padding-top: 0.08rem;
	margin: 0 auto;
	position: relative;
}
.leader_dilist{
	width: 2.1rem;
	height: 1.1rem;
	margin-left: 0.32rem;
	position: relative;
	z-index: 5;
}
.leader_tu{
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: #aacd06;
	overflow: hidden;
	margin-left: 0.6rem;
	/* transform: scale(0.8); */
	position: relative;
}
.leader_dilist .swiper-slide{
	background: #fff;
}
.leader_dilist .swiper-slide h1{
	width: 100%;
	background: #fff;
	line-height: 0.32rem;
	height: 0.32rem;
	text-align: center;
	color: #222;
	font-size: 0.2rem;
	font-weight: normal;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.leader_dilist .swiper-slide-active .leader_tu{
	background: #b6bdc2;
	/* transform: scale(1); */
}
.leader_di .swiper-button-next{
	width: 0.56rem;
	height: 0.6rem;
	background: url(../images/ks_29s.png) no-repeat;
	background-size: 100% 100%;
	bottom: 0.19rem;
	top: auto;
	right: 0.46rem;
	z-index: 5;
}
.leader_di .swiper-button-next:after{
	display: none;
}

.team_bg03{
	width: 100%;
	background: url(../images/ks_30.jpg) no-repeat left top;
	background-size: cover;
	padding: 1.02rem 0 0.98rem;
	overflow: hidden;
}
.team_left{
	float: left;
	width: 34%;
	padding: 1rem 0 1.26rem;
	position: relative;
}
.team_right{
	float: left;
	width: 66%;
	position: relative;
}
.team_title{
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}
.team_title h1{
	color: #00712f;
	font-size: 0.5rem;
	line-height: 0.56rem;
	margin-bottom: 0.2rem;
}
.team_title h2{
	color: #333;
	font-size: 0.56rem;
	margin-bottom: 0.39rem;
}
.team_title i{
	width: 1rem;
	height: 0.01rem;
	background: #00712f;
	display: block;
}
.team_text{
	width: 4.7rem;
	color: #333;
	font-size: 0.18rem;
	line-height: 0.4rem;
}
.team_text p{
	text-indent: 0.4rem;
}
.team_en{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.team_en img{
	width: 100%;
}
.team_02{
	width: 100%;
	height: 6.5rem;
}
.team_02 .swiper-slide{
	width: auto;
	height: 5.5rem;
	margin-bottom: 1rem;
}
.team_02 .swiper-slide:hover{
	/* width: 39%; */
	height: 5.5rem;
	margin-bottom: 0;
}
.team_02 .swiper-slide:hover .team_img{
	/* width: 4.3rem; */
	height: 5.5rem;
	border-radius: 0.2rem;
}
.team_02 .swiper-slide:hover .team_di{
	display: none;
}
.team_02 .swiper-slide:hover .team_con{
	display: block;
}
.team_img{
	width: 100%;
	height: 4.4rem;
	border-top-left-radius: 0.2rem;
	border-top-right-radius: 0.2rem;
	overflow: hidden;
	position: relative;
	transition: all 0.6s;
}
.team_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team_zj{
	width: 0.8rem;
	height: 0.68rem;
	line-height: 0.68rem;
	text-align: center;
	background: url(../images/ks_33.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.17rem;
	position: absolute;
	top: 0;
	right: 0;
}
.team_di{
	width: 100%;
	border-bottom: solid 0.01rem #e5e5e5;
	padding: 0.14rem 0.5rem 0.16rem 0;
	position: relative;
	color: #666;
	font-size: 0.18rem;
	line-height: 0.3rem;
}
.team_di h1{
	color: #222;
	font-size: 0.24rem;
	line-height: 0.4rem;
}
.team_icon{
	width: 0.34rem;
	height: 0.4rem;
	background: url(../images/ks_34.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0.33rem;
	right: 0.07rem;
}
.team_con{
	width: 100%;
	height: 2.32rem;
	padding-top: 1.22rem;
	background: url(../images/ks_35.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 0.2rem;
	line-height: 0.36rem;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: none;
}
.team_con h1{
	font-size: 0.3rem;
	line-height: 0.48rem;
}
.team_l,.team_r{
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: #e5e5e5;
	top: auto;
	left: auto;
	bottom: 0;
}
.team_l{
	right: 0.84rem;
}
.team_r{
	right: 0;
}
.team_r:after, .team_l:after{
	font-size: 0.2rem;
	color: #fff;
}
.team_r:hover, .team_l:hover{
	background: #00712f;
}

.dtai_box{
	padding: 0.86rem 0 0.69rem;
	overflow: hidden;
}
.dtai_box .con17{
	overflow: hidden;
}
.dtai_box .service_more{
	margin: 0 auto;
}
.dtai_box .team_tit{
	margin-bottom: 0.78rem;
}
.dtai_box .team_tit h2 span{
	background: #fff;
}
.dtai{
	width: 100%;
	margin-bottom: 0.8rem;
}
.dtai_pic{
	width: 100%;
	height: 3.5rem;
	border-radius: 0.06rem;
	overflow: hidden;
}
.dtai_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dtai_dt{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.36rem;
	height: 0.36rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 0.18rem;
}
.dtai_tt{
	color: #222;
	font-size: 0.22rem;
	font-weight: bold;
	line-height: 0.56rem;
	height: 0.56rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dtai_txt{
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.13rem;
}
.dtai_more{
	color: #888;
	font-size: 0.18rem;
	line-height: 0.36rem;
}
.dtai .swiper-slide:hover .dtai_tt{
	color: #00712f;
}
.dtai .swiper-slide:hover .dtai_more{
	color: #00712f;
}

.jkxj_bg{
	width: 100%;
	background: url(../images/ks_37.jpg) no-repeat center top;
	background-size: cover;
	padding: 0.9rem 0 1.58rem;
	overflow: hidden;
}
.jkxj_bg .team_tit{
	margin-bottom: 0.65rem;
}
.jkxj_bg .team_tit h2 span{
	background: #eff2f1;
}
.jkxj_left{
	float: left;
	width: 40%;
}
.jkxj_left li{
	height: 2rem;
	border-radius: 0.1rem;
	background: #fff;
	overflow: hidden;
	margin-bottom: 0.19rem;
}
.jkxj_left li:last-child{
	margin: 0;
}
.jkxj_img{
	float: left;
	width: 35%;
	height: 2rem;
	overflow: hidden;
}
.jkxj_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.jkxj_r{
	float: right;
	width: 60%;
	padding: 0.28rem 0.25rem 0 0;
}
.jkxj_r h1{
	color: #222;
	font-size: 0.2rem;
	line-height: 0.48rem;
	height: 0.48rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.jkxj_rtxt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.17rem;
}
.jkxj_rm{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	text-align: right;
}
.jkxj_left li:hover{
	background: #006a2c;
}
.jkxj_left li:hover .jkxj_img img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.jkxj_left li:hover .jkxj_r h1{
	color: #fff;
}
.jkxj_left li:hover .jkxj_rtxt{
	color: #fff;
}
.jkxj_left li:hover .jkxj_rm{
	color: #fff;
}
.jkxj_right{
	float: right;
	width: 58%;
}
.jkxj_right ul{
	margin-right: -3%;
}
.jkxj_right li{
	float: left;
	width: 47%;
	margin-right: 3%;
}
.jkxj_pic{
	width: 100%;
	height: 2.6rem;
	border-radius: 0.1rem;
	overflow: hidden;
	margin-bottom: 0.15rem;
}
.jkxj_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.jkxj_right li:hover .jkxj_pic img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.jkxj_tt{
	color: #222;
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 0.52rem;
	height: 0.52rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.jkxj_right li:hover .jkxj_tt{
	color: #006a2c;
}
.jkxj_right li:hover .jkxj_rm{
	color: #006a2c;
}


/* 新闻详情 */
.xw_box{
	padding: 0.72rem 0 0.52rem;
}
.xw_top{
	border-bottom: solid 0.01rem #eee;
	padding-bottom: 0.5rem;
	margin-bottom: 0.6rem;
}
.xw_tit{
	width: 100%;
	text-align: center;
	color: #121212;
	font-size: 0.28rem;
	font-weight: bold;
	line-height: 0.46rem;
}
.xw_txt{
	color: #333;
	font-size: 0.16rem;
	line-height: 0.32rem;
	text-align: justify;
	text-indent: 0.34rem;
}
.xw_txt video{
    margin-left: -0.34rem;
}
/* .xw_txt p{
	text-indent: 0.46rem;
} */
.xw_txt img{
	display: inline-block;
	margin: 0.2rem auto !important;
}
.xw_video{
    width: 100%;
    margin-bottom: 0.4rem;
}
.xw_video video{
    width: 100%;
    height: auto;
}
.fanye{
	width: 100%;
	border-top: dashed 0.01rem #eee;
	padding-top: 0.26rem;
	margin-top: 0.5rem;
}
.fanye ul{
	margin-right: -4%;
}
.fanye li{
	float: left;
	width: 46%;
	color: #666;
	font-size: 0.16rem;
	line-height: 0.38rem;
	height: 0.38rem;
	margin-right: 4%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fanye li:last-child{
	text-align: right;
}
.fanye li:hover{
	color: #007231;
}


/* 列表 */
.sjsp_list{
	width: 100%;
}
.sjsp_list ul{
	margin-right: -2%;
}
.sjsp_list li{
	float: left;
	width: 31.33%;
	margin: 0 2% 0.4rem 0;
	padding-bottom: 0.22rem;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}


/* 首页漂浮 */
.side_box{
	width: 1.26rem;
	background: #f8f8f8;
	box-shadow: 0 0 0.2rem rgba( 0, 0, 0, .1);
	border-bottom: solid 0.05rem #b7d334;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	padding: 0.58rem 0 0.36rem;
	position: fixed;
	top: 60%;
	transform: translateY(-60%);
	right: 0;
	z-index: 50;
	display: none;
}
.side_logo{
	width: 100%;
	height: 0.92rem;
	position: absolute;
	top: -0.45rem;
	left: 0;
}
.side_logo img{
	width: 100%;
	height: 100%;
}
.side_list{
	width: 100%;
	height: 5.7rem;
}
.side_list li{
	width: 100%;
	height: 0.95rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.side_list i{
	width: 1rem;
	height: 0.01rem;
	background: #eee;
	display: block;
	position: absolute;
	left: 0.13rem;
	bottom: 0;
}
.side_list li:last-child i{
	opacity: 0;
}
.side_list li:hover{
	background: #00712f;
}
.side_list li:hover i{
	opacity: 0;
}
.side_list a{
	width: 100%;
	text-align: center;
	display: block;
	position: relative;
	z-index: 2;
}
.side_list h1{
	color: #666;
	font-size: 0.18rem;
	font-weight: normal;
	line-height: 0.28rem;
}
.side_list div{
	width: 0.3rem;
	height: 0.3rem;
	margin: 0 auto 0.06rem;
	position: relative;
}
.side_list img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.side_list li:hover .img01{
	display: none;
}
.side_list li:hover .img02{
	display: block;
}
.side_list li:hover h1{
	color: #fff;
}
.side_back div{
	width: 0.48rem;
	height: 0.27rem;
}
.side_tel{
	width: 2.5rem !important;
	height: 0.95rem !important;
	text-align: center;
	line-height: 0.95rem;
	background: #00712f;
	color: #fff;
	font-size: 0.2rem;
	font-weight: bold;
	border-top-left-radius: 0.1rem;
	border-bottom-left-radius: 0.1rem;
	position: absolute !important;
	top: 0;
	left: -2rem;
	transition: all 0.6s;
	opacity: 0;
	overflow: hidden;
	z-index: 1;
}
.side_list li:hover .side_tel{
	transform: translate(-20px, 0);
	opacity: 1;
	visibility: visible;
}


/* 就医指南-疑难案例 */
.yn_case{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.yn_case .line{
	width: 0.01rem;
	height: 100%;
	background: #eee;
	position: absolute;
	top: -0.55rem;
}
.yn_case .line01{
	left: 32.3%;
}
.yn_case .line02{
	right: 32.5%;
}
.yn_case ul{
	margin-right: -5.33%;
}
.yn_case li{
	float: left;
	width: 28%;
	margin: 0 5.33% 0.55rem 0;
}
.yn_case_pic{
	width: 100%;
	height: 3.34rem;
	border-radius: 0.1rem;
	overflow: hidden;
	margin-bottom: 0.37rem;
}
.yn_case_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.yn_case li:hover .yn_case_pic img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.yn_case_date{
	color: #333;
	font-size: 0.18rem;
	line-height: 0.3rem;
	margin-bottom: 0.16rem;
}
.yn_case_txt{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.3rem;
	height: 0.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.47rem;
}
.yn_case_more{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.3rem;
}
.yn_case li:hover .yn_case_date{
	color: #00712f;
}
.yn_case li:hover .yn_case_txt{
	color: #00712f;
	font-weight: bold;
}
.yn_case li:hover .yn_case_more{
	color: #00712f;
}


/* 就医指南-医保指南 */
.yibao{
	width: 100%;
	overflow: hidden;
}
.yibao ul{
	margin-right: -3%;
}
.yibao li{
	float: left;
	width: 47%;
	height: 2.2rem;
	background: #fafafa;
	border-bottom-right-radius: 0.2rem;
	padding: 0.1rem;
	margin: 0 3% 0.3rem 0;
	position: relative;
	transition: all 0.6s;
}
.yibao li:hover{
	border-radius: 0.2rem;
}
.yibao li:hover .huigu_arrow{
	background: url(../images/dxk_29.png) no-repeat;
	background-size: 100% 100%;
}
.yibao li:hover .yibao_right h1{
	color: #00712f;
}
.yibao_pic{
	float: left;
	width: 29%;
	height: 2rem;
	border-radius: 0.1rem;
	overflow: hidden;
}
.yibao_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.yibao_right{
	float: right;
	width: 68%;
	margin-top: 0.15rem;
}
.yibao_right h1{
	color: #333;
	font-size: 0.22rem;
	height: 0.64rem;
	line-height: 0.32rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.14rem;
}
.yibao_txt{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.26rem;
	height: 0.52rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 0.12rem;
}
.yibao_date{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.32rem;
}


/* 就医指南-来院路线 */
.route_left{
	float: left;
	width: 39%;
	min-height: 6.5rem;
	background: url(../images/jyzn_15.png) no-repeat center top;
	background-size: 100%;
	padding: 0.82rem 0.2rem 0.4rem 0.38rem;
}
.route_right{
	float: left;
	width: 61%;
	height: 6.5rem;
}
.route_left .logo{
	float: none;
	width: 3.08rem;
	margin-bottom: 0.46rem;
}
.route{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.32rem;
	margin-bottom: 0.24rem;
}
.route img{
	float: left;
	width: 0.26rem;
	height: 0.26rem;
	margin: 0.02rem 0.2rem 0 0;
}
.route_tt{
	float: left;
	width: 1.3rem;
}
.route_txt{
	float: left;
	width: calc(100% - 2rem);
}
.route_txt div{
	color: #666;
	font-size: 0.16rem;
	line-height: 0.24rem;
	margin-bottom: 0.2rem;
}
.route_txt div h1{
	color: #333;
	font-size: 0.2rem;
	line-height: 0.32rem;
	font-weight: normal;
}


/* 就医指南-门诊出诊表 */
.chuzhen_box{
	padding: 0.37rem 0 0.92rem;
}
.chuzhen_tit{
	width: 100%;
	height: 0.28rem;
	color: #00712f;
	font-size: 0.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.26rem;
}
.chuzhen_tit img{
	width: 0.2rem;
	height: 0.2rem;
	margin-right: 0.13rem;
}
.chuzhen{
	width: 100%;
	border-collapse: collapse;
	color: #222;
	font-size: 0.16rem;
	text-align: center;
	background: #fff;
}
.chuzhen th{
	background: #00712f;
	border: solid 0.01rem #fff;
	color: #fff;
	font-size: 0.2rem;
	font-weight: normal;
	height: 0.8rem;
}
.chuzhen td{
	padding: 0.14rem 0;
	line-height: 0.4rem;
	border: solid 0.01rem #e7e7e7;
	min-height: 1rem;
}
.chuzhen tr:nth-child(4n+1){
	background: #f8f8f8;
}
.chuzhen tr:nth-child(4n+2){
	background: #f8f8f8;
}
.cz01{
	width: 11.5%;
}
.cz02{
	width: 8%;
}


/* 专题推荐-体检中心 */
.tijian_box{
	padding: 0.86rem 0;
	overflow: hidden;
}
.tijian_box .team_tit{
	margin-bottom: 0.18rem;
}
.tijian_box .team_tit h2 span{
	background: #fff;
}
.tijian{
	float: left;
	width: 8.14rem;
	color: #333;
	font-size: 0.18rem;
	text-align: justify;
	line-height: 0.48rem;
	margin-top: 0.43rem;
}
.tijian_right{
	float: right;
	width: 7.57rem;
	height: 7.35rem;
	position: relative;
}
.tijian_right img{
	width: 100%;
	height: 100%;
}
.tijian_yuan{
	width: 6.8rem;
	height: 6.8rem;
	background: url(../images/tijian_02.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -0.14rem;
	right: 0;
	animation: xuanzhuan 6s linear infinite;
}
.tijian_pic{
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 0.3rem;
	right: 0.4rem;
	z-index: 2;
}
.tijian_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team03{
	width: 17rem;
	height: 12rem;
	margin: 0 auto;
}
.team03 .swiper-slide{
	height: 5.6rem;
}
.team03 .swiper-slide:hover .team_bot{
	background: #00712f;
}
.team03 .swiper-slide:hover .team_tt{
	color: #fff;
}
.team03 .swiper-slide:hover .team_txt{
	color: #fff;
}
.team_wc{
	width: 100%;
	position: relative;
	margin-bottom: 0.78rem;
}
.team_wc .swiper-button-next,.team_wc .swiper-button-prev{
	width: 0.5rem;
	height: 0.8rem;
	background: rgba(0, 113, 47, 0.05);
	border-radius: 0.1rem;
	color: #00712f;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
}
.team_wc .swiper-button-next{
	right: 0.2rem;
}
.team_wc .swiper-button-prev{
	left: 0.2rem;
}
.team_wc:hover .swiper-button-next,.team_wc:hover .swiper-button-prev{
	opacity: 1;
}
.team_wc .swiper-button-next.swiper-button-disabled, .team_wc swiper-button-prev.swiper-button-disabled{
	opacity: 0.35 !important;
}
.team_zhuanjia{
	width: 1.2rem;
	height: 0.4rem;
	line-height: 0.4rem;
	text-align: center;
	padding-left: 0.2rem;
	color: #fff;
	font-size: 0.17rem;
	border-bottom-left-radius: 0.4rem;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.zj_01{
	background: url(../images/team_37.jpg) no-repeat;
	background-size: 100% 100%;
}
.zj_02{
	background: url(../images/tijian_06.jpg) no-repeat;
	background-size: 100% 100%;
}
.zj_03{
	background: url(../images/tijian_07.jpg) no-repeat;
	background-size: 100% 100%;
}


.shebei_box{
	padding-top: 1.1rem;
	overflow: hidden;
}
.shebei_box .team_tit{
	margin-bottom: 0.6rem;
}
.shebei_box .team_tit h2 span{
	background: #fff;
}
.shebei{
	width: 100%;
	position: relative;
}
.shebei .swiper-slide{
	height: 6.36rem;
}
.shebei img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shebei_con{
	width: 7rem;
	height: 4.18rem;
	padding: 0.5rem 0.1rem 0.1rem;
	background: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	position: absolute;
	top: 1.1rem;
	left: 0.9rem;
	z-index: 2;
	transform:translateX(-200px);
	opacity:0;
	transition:all .6s;
}
.ani-slide .shebei_con{
	transform:translateX(0);
	opacity:1;
}
.shebei_tt{
	width: 100%;
	text-align: center;
	line-height: 0.54rem;
	color: #006d33;
	font-size: 0.36rem;
	font-weight: bold;
	margin-bottom: 0.16rem;
}
.shebei_txt{
	width: 100%;
	text-align: center;
	margin-bottom: 0.3rem;
}
.shebei_txt div{
	display: inline-block;
	padding: 0.12rem 0.4rem;
	background: #85c226;
	color: #fff;
	font-size: 0.3rem;
}
.shebei_list{
	width: 5.5rem;
	margin-left: 1.16rem;
}
.shebei_list li{
	float: left;
	width: 48%;
	line-height: 0.24rem;
	height: 0.48rem;
	background: url(../images/tijian_05.png) no-repeat left top;
	background-size: 0.24rem 0.24rem;
	padding-left: 0.35rem;
	color: #333;
	font-size: 0.2rem;
	margin: 0 2% 0.08rem 0;
}
.shebei .swiper-pagination{
	bottom: 0.3rem;
}
.shebei .swiper-pagination-bullet{
	width: 0.14rem;
	height: 0.14rem;
	background: #00712f;
	margin: 0 0.08rem !important;
}

.taocan_box{
	padding: 0.9rem 0 0.64rem;
	overflow: hidden;
}
.taocan_box .team_tit{
	margin-bottom: 0.67rem;
}
.taocan_box .team_tit h2 span{
	background: #fff;
}
.taocan{
	width: 100%;
	overflow: hidden;
}
.taocan ul{
	margin-right: -2%;
}
.taocan li{
	float: left;
	width: 31.33%;
	height: 4.84rem;
	padding: 0.33rem 0.3rem 0;
	background: #fafafa;
	margin: 0 2% 0.34rem 0;
}
.taocan_pic{
	width: 100%;
	height: 2.5rem;
	margin-bottom: 0.2rem;
}
.taocan_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.taocan_tt{
	color: #333;
	font-size: 0.22rem;
	line-height: 0.36rem;
	height: 0.72rem;
	margin-bottom: 0.12rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.taocan_label{
	width: 100%;
	color: #333;
	font-size: 0.16rem;
	line-height: 0.28rem;
}
.taocan_label div{
	min-width: 0.9rem;
	text-align: center;
	display: inline-block;
	background: #f8f8f8;
	border: solid 0.01rem #dcdcdc;
	border-radius: 0.06rem;
	padding: 0 0.14rem;
	margin: 0 0.15rem 0.16rem 0;
}
.taocan_bot{
	line-height: 0.34rem;
}
.taocan_txt{
	float: left;
	color: #ff6000;
	font-size: 0.18rem;
}
.taocan_txt span{
	padding-left: 0.34rem;
}
.taocan_xq{
	float: right;
	color: #666;
	font-size: 0.16rem;
}
.taocan_xq div{
	float: right;
	width: 0.25rem;
	height: 0.08rem;
	position: relative;
	margin: 0.14rem 0 0 0.14rem;
}
.taocan_xq img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.taocan li:hover .taocan_tt{
	color: #006d33;
	font-weight: bold;
}
.taocan li:hover .taocan_xq{
	color: #006d33;
}
.taocan li:hover .img01{
	display: none;
}
.taocan li:hover .img02{
	display: block;
}


/* 引导页 */
.ydy_bg{
	width: 100%;
	height: 100vh;
	background: url(../images/ydy_01.jpg) no-repeat left top;
	background-size: cover;
	padding-top: 0.56rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ydy_box{
	width: 86%;
}
.ydy_left{
	float: left;
	width: 74%;
}
.ydy_left ul{
	margin-right: -1%;
}
.ydy_left li{
	float: left;
	width: 24%;
	height: 6.13rem;
	padding-top: 2.12rem;
	margin-right: 1%;
	position: relative;
	transition: all 0.6s;
}
.ydy_gray{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.6s;
}
.ydy_green{
	width: 100%;
	height: 7.34rem;
	background: url(../images/ydy_02.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.6s;
	z-index: 1;
}
.ydy_left li.on .ydy_green{
	opacity: 1;
}
.ydy_left li.on .ydy_gray{
	display: none;
}
.ydy_left li.on .ydy_con img{
	display: block;
}
.ydy_left li:hover .ydy_green{
	opacity: 1;
}
.ydy_left li:hover .ydy_gray{
	height: 0;
}
.ydy_left li:nth-child(2):hover{
	padding-top: 1.5rem;
}
.ydy_left li:nth-child(2):hover .ydy_con img{
	display: none;
}
.ydy_left li:nth-child(2):hover .ydy_hz{
	display: block;
}
.ydy_left li:nth-child(3):hover{
	padding-top: 1.5rem;
}
.ydy_left li:nth-child(3):hover .ydy_con img{
	display: none;
}
.ydy_left li:nth-child(3):hover .ydy_hz{
	display: block;
}
.ydy_con{
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 0.16rem;
	line-height: 0.38rem;
	text-transform: uppercase;
	position: relative;
	z-index: 3;
	transition: all 0.6s;
}
.ydy_con img{
	width: 1.04rem;
	height: 1.04rem;
	margin: 0 auto 0.15rem;
}
.ydy_con h1{
	font-size: 0.28rem;
	line-height: 0.44rem;
	font-weight: normal;
}
.ydy_con div{
	font-weight: lighter;
}
.ydy_hz{
	width: 1.8rem;
	margin: 0.28rem 0 0 0.87rem;
	position: relative;
	z-index: 3;
	display: none;
}
.ydy_hz ul{
	margin: 0;
}
.ydy_hz li{
	float: none;
	width: 100%;
	height: auto;
	line-height: 0.38rem;
	padding: 0;
	margin: 0 0 0.21rem;
	color: #fff;
}
.ydy_hz img{
	width: 0.21rem;
	height: 0.21rem;
	margin: 0 0.14rem 0 0;
	display: inline-block;
	vertical-align: middle;
	transition: all 0.6s;
}
.ydy_hz li:nth-child(2):hover{
	padding-top: 0;
}
.ydy_hz li:nth-child(3):hover{
	padding-top: 0;
}
.ydy_hz li:hover img{
	margin: 0 0.05rem 0 0.09rem;
}

.ydy_right{
	float: right;
	width: 25.2%;
}
.ydy_rt{
	width: 100%;
	height: 3rem;
	background: rgba(0, 0, 0, 0.51);
	margin-bottom: 0.12rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ydy_rt img{
	width: 2.9rem;
}
.ydy_rb{
	width: 100%;
	height: 3.02rem;
	background: rgba(0, 0, 0, 0.4);
	padding-top: 0.3rem;
	color: #fff;
}
.ydy_rb_top{
	width: 2.84rem;
	margin: 0 auto 0.24rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ydy_rb_top img{
	width: 1.25rem;
	height: 1.25rem;
}
.ydy_tt{
	width: 100%;
	text-align: center;
	line-height: 0.22rem;
	font-size: 0.12rem;
	margin-bottom: 0.05rem;
}
.ydy_tt h1{
	font-size: 0.16rem;
}
.ydy_tt div{
	margin-bottom: 0.25rem
}
.ydy_tt i{
	width: 0.9rem;
	height: 0.01rem;
	background: #fff;
	display: block;
	margin: 0 auto;
}
.ydy_en{
	width: 140%;
	text-align: center;
	line-height: 0.2rem;
	font-size: 0.12rem;
	text-transform: uppercase;
	transform: scale(0.7);
	margin-left: -20%;
}


/* 搜索结果 */
.ss_title{
	width: 100%;
	text-align: center;
	font-size: 0.35rem;
	line-height: 0.6rem;
	margin-bottom: 0.3rem;
}
.ss_list{
	width: 98%;
	margin: 0 auto;
}
.ss_list li{
	border-bottom: solid 0.01rem rgba(0,0,0,.08);
	padding: 0.2rem 0;
}
.ss_list h1{
	font-size: 0.16rem;
	line-height: 0.3rem;
	margin-bottom: 0.1rem;
}
.ss_list h1 span{
	color: red;
}
.ss_txt{
	font-size: 0.14rem;
	line-height: 0.24rem;
	text-align: center;
	margin-bottom: 0.06rem;
}
.ss_net{
	color: #005aff;
	font-size: 0.14rem;
	line-height: 0.24rem;
}
.f_beian{
	width:100%;
	text-align: center;
	position: fixed;
	left:0;
	bottom:0.3rem;
}