@charset "utf-8";

/* 首页部分 */
/* 顶部灰色条 */
.top{
	height: 40px;
	z-index: 10;
	position: relative;
}
.top-link{}
.top-link ul{
	display: flex;
	display: -webkit-flex;
	
}
.top-link ul li{
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
	z-index: 0;
}
.top-link ul li dl{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	padding-left: 20px;
	padding-right: 20px;
	border-right: 1px solid #dcdcdc ;
}
.top-link ul li:last-child dl{
	border-right: none;
}
.top-link ul li dl dt{
	margin-right: 7px;
}
.top-link ul li dl dt img{}
.top-link ul li dl dd{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 20px;
	letter-spacing: 0px;
	color: #666666;
}
.top-scroll{
	position: absolute;
	width: 170px;
	height: 170px;
	top: -170px;
	left: 0;
	text-align: center;
	opacity: 0;
	z-index: 99999;
	filter: Alpha(opacity=0);
	transition: all 0.3s linear;
}
.top-scroll::before{
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	top: -15px;
	left: 75px;
	border-bottom: 15px solid #f5f5f5;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
}
.top-scroll img{
	display: inline-block;
	margin-top: 10px;
	vertical-align: middle;
}
a#top-ewm:hover .top-scroll{
	top: 55px;
	opacity: 1;
	
	filter: Alpha(opacity=100%);
}

/* 头部 */
.bd-1dc{
	border-bottom: 1px solid #dcdcdc;
}
.header{
	height: 150px;
	z-index: 0;
}
.header img{
	display: block;
	width: 100%;
}
.logo{
	/*width: 437px;*/
	width: 300px;
	height: 70px;
	margin-top: 39px;
	border-right: 1px solid #DCDCDC;
	padding-right: 15px;
    box-sizing: content-box;
}
.top-map{
	width: 208px;
	height: 102px;
	margin-top: 20px;
	margin-left: 20px;
}
.top-search{
	margin-left: 75px;
}
.search{
	position: relative;
	margin-top: 50px;
	z-index: 0;
}
.search form{
	position: relative;
	width: 385px;
	height: 45px;
	border-radius: 5px;
	border: solid 1px #ebebeb;
	padding-left: 28px;
	padding-right: 96px;
	line-height: 0;
	box-sizing: border-box;
	background-color: #ffffff;
	z-index: 0;
}
.search form input{}
.search form input[type='text']{
	width: 100%;
	font-size: 15px;
	line-height: 44px;
	background-color: transparent;
	font-weight: normal;
	color: #777;
}
.search form input[type='text']:focus{
	color: #333;
}
.search form input[type='submit']{
	position: absolute;
	z-index: 1;
	display: block;
	cursor: pointer;
	width: 96px;
	height: 45px;
	background-color: #0079dd;
	border-radius: 5px;
	top: 0px;
	right: 0px;
	font-size: 14px;
	color: #fff;
	line-height:  44px;
	/* background: url(../images/icon-search.png) center no-repeat; */
}
.search form button{
	position: absolute;
	z-index: 1;
	display: block;
	cursor: pointer;
	width: 96px;
	height: 44px;
	background-color: #0079dd;
	border-radius: 5px;
	top: 0px;
	right: 0px;
	font-size: 14px;
	color: #fff;
	line-height:  44px;
}
.search form button em{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 14px;
	height: 14px;
	background: url(../images/icon-search-1.png) center no-repeat;
}

/* =导航= */
.nav{
	height: 60px;
}
.nav-list{
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.nav ul.navul{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
}
.nav ul.navul li.navli{
	position: relative;
	width: 126px;
	text-align: center;
}
.nav ul.navul li.navli h5 a{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	/* padding-left: 55px;
	padding-right: 55px; */
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 58px;
	letter-spacing: 0px;
	color: #777777;
	border-top: 2px solid #fff;
}
.nav ul.navul li.navli,.nav ul.navul li.navli h5 a{
	
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.nav ul.navul li.navli.on h5 a,.nav ul.navul li.navli:hover h5 a{
	/* background-color: #0f69b8; */
	color: #1986e0;
	border-top: 2px solid #1986e0;
}
.nav .navul .navli .sub{
	line-height: 1.0;
	background-color: #ffffff;
	border: solid 1px #1986e0;
	width: 100%;
	visibility: hidden;
	position: absolute;
	top: 60px;
	left: 0;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 999;
}
.nav .navul .navli .sub li{
	position: relative;
	background: #fff;
}
.nav .navul .navli .sub li a{
	display: block;
	margin-left: 15px;
	margin-right: 15px;
	font-size: 14px;
	line-height: 41px;
	color: #666666;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: 1px dashed #e4e4e4;
}
.nav .navul .navli .sub li:last-child a{
	border-bottom: none;
}
.nav .navul .navli .sub li a:hover{
	color: #1986e0;
}
.nav .navul .navli:hover .sub{
	visibility: initial;
	opacity: 1;
	top: 40px;
}
.nav-tel{
	padding-top: 20px;
	padding-bottom: 20px;
	/* flex: 0 0 auto;
	-webkit-flex: 0 0 auto; */
	/* margin-right: 40px; */
}
.nav-tel dl{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
.nav-tel dl dt{
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-right: 15px;
}
.nav-tel dl dt img{
	display: block;
	width: 100%;
}
.nav-tel dl dd{
	flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 20px;
	color: #0079dd;
}

/* =公共底部= */
.footer{
	padding-top: 20px;
	border-top: 4px solid #c8d3e2;
	/* padding-top: 55px;
	padding-bottom: 50px; */
}
.footer-txt{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
}
.footer-txt dl{
	/* width: 96px; */
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	display: inline-block;
	vertical-align: middle;
	padding-right: 45px;
	padding-left: 35px;
	padding-bottom: 50px;
	position: relative;
	border-right: 1px solid #e0eeff;
}
.footer-txt dl:first-child,.footer-txt dl.footer-txt-fst{
	width: 160px;
	box-sizing: content-box;
}
.footer-txt dl:first-child dd,.footer-txt dl.footer-txt-fst dd{
	display: flex;
	display: -webkit-flex;
}
.footer-txt dl:first-child dd ul:last-child,.footer-txt dl.footer-txt-fst dd ul:last-child{
	margin-left: 30px;
}
.footer-txt dl:last-child,.footer-txt dl.footer-txt-msg{
	border: none;
}
.footer-txt dl dt{
	padding-top: 20px;
	margin-bottom: 20px;
}
.footer-txt dl dt h4{
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	line-height: 22px;
	letter-spacing: 0px;
	color: #333;
}
.footer-txt dl dd{}
.footer-txt dl dd p{
	/* margin-bottom: 15px; */
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #666;
}
.footer-txt dl dd p a{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #666;
}
.footer-txt dl dd p a:hover{
	color: #20A7F6;
}
.footer-wx{}
.footer-wx dl{}
.footer-wx dl dt{
	display: block;
	width: 157px;
	height: 157px;
	border: 1px solid #6fc2f2;
	/* margin-bottom: 10px; */
}
.footer-wx dl dt img{
	width: 100%;
	height: 100%;
}
.footer-wx dl dd{
	height: 28px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 28px;
	letter-spacing: 0px;
	color: #ffffff;
	text-align: center;
	background-color: #6fc2f2;
}
.footer-btm{
	text-align: center;
	padding-top: 20px;
	padding-bottom: 30px;
	/* border-top: 1px solid #008ce3; */
	background-color: #5c7496;
}
.footer-btm p{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 22px;
	letter-spacing: 0px;
	color: #fff;
}
.footer-btm p span{
	color: #fff;
	margin-left: 6px;
	margin-right: 6px;
}
.footer-btm p a{
	color: #fff;
}

/* =banner= */
.banner{
	position:relative; 
	z-index: 0;
}
.banner-slide{
	position:relative; 
	height:450px;
	overflow: hidden;
	z-index: 0;
}
.banner .bd{
	height:450px;
	position:relative; 
	z-index:0; 
	overflow:hidden;
}
.banner .bd ul{
	width:100% !important;
}
.banner .bd ul li{
	width:100% !important;  
	height:450px; 
	overflow:hidden; 
	text-align:center;
}
.banner .bd ul li a{
	display:block; 
	height:450px;
}
.banner .hd{
	width:1200px;
	position:absolute; 
	z-index:1; 
	left: 50%;
	margin-left: -600px;
	bottom:20px; 
	height:30px; 
	line-height:30px; 
	text-align:center;
}
.banner .hd ul{
	text-align: left;
}
.banner .hd ul li{
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	font-size: 0;
	border-radius: 6px;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
	background-color: #fff;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.banner .hd ul li.on,.banner .hd ul li:hover{
	background-color: #20a7f6;
	width: 40px;
}
.banner a.prev:hover,.banner a.next:hover{
	filter: grayscale(0);
}
.banner-btm{
	position: relative;
	height: 120px;
	z-index: 10;
}
.banner-btm img{
	width: 100%;
}
.baner-btm-link{
	height: 120px;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	/* width: 872px; */
}
.baner-btm-link:before{
	content: "";
	display: block;
	width: 305px;
	height: 140px;
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: 11;
	background-image: linear-gradient(
			#20a7f6, 
			#20a7f6), 
		linear-gradient(
			#1986e0, 
			#1986e0);
	background-blend-mode: normal, 
			normal;
	
}
.baner-btm-link ul{
	position: relative;
	padding-top: 22px;
	padding-bottom: 22px;
	background-color: #fff;
	display: flex;
	display: -webkit-flex;
	z-index: 20;
}
.baner-btm-link ul li{
	width: 144px;
	border-right: 1px solid #e5e5e5;
}
.baner-btm-link ul li dl{
	text-align: center;
}
.baner-btm-link ul li dl dt{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 40px;
	height: 36px;
	margin-bottom: 15px;
}
.baner-btm-link ul li dl dd{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #555555;
}
.baner-btm-link ul li:hover dl dd{
	color: #20a7f6;
}
.banner-btm-depart{
	margin-top: -65px;
}
.bbd-list{
	width: 280px;
	height: 406px;
	background-image: linear-gradient(
		#20a7f6, 
		#20a7f6), 
	linear-gradient(
		#1986e0, 
		#1986e0);
	background-blend-mode: normal, 
		normal;
}
.bbd-list h3{
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.0;
	color: #ffffff;
	text-align: center;
}
.bbd-list h3:before,.bbd-list h3:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
	background: url(../images/banner-star.png) center no-repeat;
}
.bbd-list h3:before{
	margin-right: 16px;
}
.bbd-list h3:after{
	margin-left: 16px;
}
.bbd-list ul{
	padding-left: 22px;
	padding-right: 22px;
}
.bbd-list ul li{
	line-height: 40px;
	border-bottom: 1px dashed #fff;
}
.bbd-list ul li a{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #ffffff;
}
.bbd-list ul li em{
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 3px;
	margin-right: 6px;
	background-color: #d8f1ff;
}
.bbd-list ul li b{
	font-weight: normal;
}
.bbd-list ul li span{
	font-size: 14px;
	color: #d8f1ff;
}
.bbd-info{
	padding-top: 30px;
	text-align: center;
}
.bbd-info h4{
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.0;
	padding-bottom: 15px;
	color: #555555;
	border-bottom: 1px solid #e5e5e5;
}
.bbd-info p{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #555555;
	margin-top: 19px;
	margin-bottom: 19px;
}
.bbd-info h6{
	display: inline-block;
	width: 275px;
	/*width: 253px;*/
	height: 43px;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 43px;
	color: #ffffff;
	background-image: linear-gradient(
		#20a7f6, 
		#20a7f6), 
	linear-gradient(
		#1986e0, 
		#1986e0);
	background-blend-mode: normal, 
		normal;
	border-radius: 22px;
}

/* =医院动态= */
.w870{
	width: 870px;
}
.news{
	padding-bottom: 40px;
}
.index-title{
	padding-bottom: 15px;
	margin-bottom: 24px;
	border-bottom: 1px solid #e5e5e5;
}
.intit-h{
	position: relative;
}
.intit-h:before{
	content: "";
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 20px;
	height: 2px;
	background: #199ed8;
}
.intit-h h2{
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.0;
	color: #555555;
}
.intit-more{
	
}
.intit-more a{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 22px;
	color: #666666;
}
.news-box{}
.news-box-slide{
	width: 407px;
	height: 280px;
	position: relative;
	z-index: 0;
	overflow: hidden;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.nbs-bd{
	width: 407px;
}
.nbs-bd ul{}
.nbs-bd ul li{
	/* float: left; */
	position: relative;
	z-index: 1;
	width: 407px;
	height: 280px;

}
.nbs-bd ul li:after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+88,000000+88,000000+100&0+1,0.65+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 1%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,1.0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 1%,rgba(0,0,0,0.5) 80%,rgba(0,0,0,1.0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 1%,rgba(0,0,0,0.5) 80%,rgba(0,0,0,1.0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.nbs-bd ul li img{
	width: 407px;
	height: 280px;
}
.nbs-bd ul li p{
	text-align: center;
	position: absolute;
	padding-left: 60px;
	padding-right: 60px;
	bottom: 30px;
	z-index: 10;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 18px;
	letter-spacing: 0px;
	color: #ffffff;
}
.nbs-hd{
	width: 100%;
	position: absolute;
	bottom: 7px;
	z-index: 5;
}
.nbs-hd ul{
	text-align: center;
}
.nbs-hd ul li{
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 3px;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	margin-left: 5px;
	margin-right: 5px;
	background-color: #ffffff;
}
.nbs-hd ul li:hover,.nbs-hd ul li.on{
	background-color: #0079dd;
}
.news-box-txt{
	width: 440px;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.news-box-txt a:hover{
	color: #20a7f6;
}
.news-box-top{}
.news-box-top h3{
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px dashed #e5e5e5;
}
.news-box-top h3 dl{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.news-box-top h3 dl dt{
	width: 60px;
	margin-right: 16px;
	text-align: center;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.news-box-top h3 dl dt h5{
	font-size: 22px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: -3px;
	line-height: 1.3;
	color: #20a7f6;
	border-bottom: 1px solid #e4e4e4;
}
.news-box-top h3 dl dt h6{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0;
	line-height: 1.3;
	color: #999999;
}
.news-box-top h3 dl dd{}
.news-box-top h3 dl dd a{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #555555;
}
.news-box-top p{
	min-height: 76px;
	text-indent: 2em;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #999999;
	padding-bottom: 14px;
	border-bottom: 1px dashed #e5e5e5;
}
.news-box-list{}
.news-box-list ul{}
.news-box-list ul li{
	margin-top: 18px;
	white-space: nowrap;
	
}
.news-box-list ul li b{
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 3px;
	margin-right: 5px;
	background-color: #0079dd;
}
.news-box-list ul li a{
	display: inline-block;
	vertical-align: middle;
	width: 355px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #555555;
	overflow: hidden;
	text-overflow: ellipsis;
	
}
.news-box-list ul li em{
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 11px;
	background : #ea5a54 url(../images/hot.png) center no-repeat;
}
.news-box-list ul li span{
	float: right;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #777777;
}

/* =首页专家= */
.doctor{
	padding-top: 35px;
	padding-bottom: 15px;
}
.doctor-slide{
	margin-top: 30px;
	margin-bottom: 20px;
	position: relative;
}
.doctor-slide a.doc-slide-btn{
	width: 40px;
	height: 24px;
	position: absolute;
	top: -70px;
}
.doctor-slide a.doc-prev{
	right: 120px;
	background: url(../images/icon-prev.png) center no-repeat;
}
.doctor-slide a.doc-next{
	right: 60px;
	background: url(../images/icon-next.png) center no-repeat;
}
.doctor-slide-bd{
	position: relative;
	z-index: 0;
	height: 470px;
}
.doctor-slide-bd ul{
	overflow: hidden;
	zoom: 1;
	z-index: 0;
}
.doctor-slide-bd ul li{
	width: 280px;
	height: 470px;
	background-color: #ffffff;
	/*margin-left: 13px;*/
	margin-right: 25px;
}
.doctor-slide-bd ul li dl{
	padding: 15px 17px;
}
.doctor-slide-bd ul li dl dt{
	width: 246px;
	height: 337px;
	display: block;
	margin: 0;
}
.doctor-slide-bd ul li dl dt img{
	width: 246px;
	height: 337px;
}
.doctor-slide-bd ul li dl dd{
	height: 95px;
	overflow: hidden;
	margin-top: 10px;
	text-align: center;
}
.doctor-slide-bd ul li dl dd h5{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #333333;
}
.doctor-slide-bd ul li dl dd h5 a{
	font-size: 22px;
	color: #20a7f6;
	font-weight: bold;
}
.doctor-slide-bd ul li dl dd h5 b{
	/*display: inline-block;*/
	font-weight: normal;
	margin-left: 15px;
}
.doctor-slide-bd ul li dl dd p{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 20px;
	letter-spacing: 0px;
	color: #777777;
}

.index-doctor{
	margin-top: 30px;
}
.index-doctor ul{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.index-doctor ul li{
	width: 170px;
	height: 296px;
	margin-right: 36px;
	margin-bottom: 27px;
	background-color: #ffffff;
}
.index-doctor ul li:nth-child(6),.index-doctor ul li:nth-child(12){
	margin-right: 0;
}
.index-doctor ul li dl{
	padding-top: 15px;
}
.index-doctor ul li dl dt{
	width: 140px;
	height: 190px;
	margin-left: auto;
	margin-right: auto;
	background-color: #e5e5e5;
}
.index-doctor ul li dl dt img{
	width: 100%;
	height: 100%;
}
.index-doctor ul li dl dd{
	padding-top: 12px;
	text-align: center;
}
.index-doctor ul li dl dd h6{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #199ed8;
	padding-bottom: 10px;
	position: relative;
}
.index-doctor ul li dl dd h6:after{
	content: "";
	position: absolute;
	width: 20px;
	height: 3px;
	bottom: 0;
	left: 50%;
	margin-left: -10px;
	background-color: #20a7f6;
}
.index-doctor ul li dl dd p{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #999999;
	margin-top: 10px;
}

/* =主页病种= */
.disease{
	padding-top: 40px;
	padding-bottom: 60px;
}
.disease img{
	width: 100%;
}
.disease-box{
	margin-top: 20px;
}
.disease-box ul{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.disease-box ul li{
	width: 10%;
	height: 88px;
	box-sizing: border-box;
	border-right: 1px solid #e5e5e5;
}
.disease-box ul li:last-child{
	border-right: none;
}
.disease-box ul li dl{
	text-align: center;
	padding-top: 20px;
}
.disease-box ul li dl dt{
	display: block;
	width: 50px;
	height: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 12px;
}
.disease-box ul li dl dd{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #666666;
}
.disease-box ul li:hover dl dd{
	color: #20a7f6;
}
.disease-img{
	margin-top: 65px;
	height: 260px;
}

/* =医院信息= */
.hospital{
	padding-bottom: 75px;
}
.hos-tab{
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.0;
	color: #555555;
}
.hos-tab ul{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
}
.hos-tab ul li{
	padding-left: 25px;
	padding-right: 25px;
	position: relative;
	border-right: 1px solid #e5e5e5;
}
.hos-tab ul li:first-child{
	padding-left: 0;
}
.hos-tab ul li a{
	position: relative;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.0;
	color: #777777;
}
.hos-tab ul li.on a,.hos-tab ul li:hover a{
	font-weight: bold;
	color: #555555;
}
.hos-tab ul li.on a::after,.hos-tab ul li:hover a::after{
	content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #199ed8;
}
.hos-slide{
	margin-top: 30px;
	
}
.hos-slide-box{
	/* overflow: hidden; */
	position: relative;
	z-index: 0;
}
.hos-slide-box a.sPrev,.hos-slide-box a.sNext{
	display: block;
	width: 40px;
	height: 24px;
	position: absolute;
	top: -68px;
}
.hos-slide-box a.sPrev{
	right: 110px;
	background: url(../images/icon-prev.png) center no-repeat;
}
.hos-slide-box a.sNext{
	right: 60px;
	background: url(../images/icon-next.png) center no-repeat;
}
.hos-slide-box ul{
	display: flex;
	display: -webkit-flex;
}
.hos-slide-box ul li{
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
}
.hos-slide-box ul li dl{
	text-align: center;
}
.hos-slide-box ul li dl dt{
	width: 276px;
	height: 189px;
}
.hos-slide-box ul li dl dt img{
	width: 100%;
	height: 100%;
}
.hos-slide-box ul li dl dd{
	margin-top: 12px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.2;
	color: #777777;
}

/* =主页推荐信息= */
.recommend{
	padding-bottom: 50px;
}
.w820{
	width: 820px;
}
.w320{
	width: 320px;
}
.rec-arclist{
	
}
.rec-arclist-mix{
	width: 418px;
}
.rec-arclist-img{
	margin-bottom: 25px;
}
.rec-arclist-img ul{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.rec-arclist-img ul li{
	width: 200px;
	height: 124px;
}
.rec-arclist-img ul li img{
	width: 100%;
	height: 100%;
}
.rec-arclist-list{}
.rec-arclist-list ul{}
.rec-arclist-list ul li{
	text-align: left;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px dashed #e4e4e4;
}
.rec-ala ul li{
	margin-bottom: 19px;
	padding-bottom: 0;
	border: 0;
}
.rec-arclist-list ul li em{
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 3px;
	margin-right: 5px;
	background-color: #0079dd;
}
.rec-arclist-list ul li a{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #777777;
	width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rec-arclist-list ul li span{
	float: right;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #777777;
}
.rec-arclist-box{
	width: 364px;
}
.rec-banner-list{}
.rec-banner-list ul{}
.rec-banner-list ul li{
	width: 340px;
	height: 75px;
	margin-bottom: 20px;
	background-color: #5c7496;
	box-shadow: 0px 2px 6px 0px rgba(158, 158, 158, 0.3);
}
.rec-banner-list ul li img{
	width: 100%;
	height: 100%;
}

/* 封面页 */

.banner-in{
	/* height: 200px; */
	height: 450px;
	/* background: url(../images/banner-in.jpg) center no-repeat; */
	background: url(../images/banner-small.png) center no-repeat;
	background-size: cover;
}
.banner-in-text{
	position: relative;
}
.banner-in-text h2{
	font-size: 38px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.2;
	letter-spacing: 0px;
	color: #ffffff;
	padding-top: 25px;
	/* padding-top: 70px; */
	position: relative;
}
.banner-in-text h2:after{
	content: "";
	display: block;
	position: absolute;
	width: 37px;
	height: 5px;
	background-color: #ffffff;
	bottom: -20px;
	left: 0;
}
.colomn{
	height: 56px;
}
.column-list{
	line-height: 56px;
}
.column-list ul{
	display: flex;
	display: -webkit-flex;
}
.column-list ul li{
	margin-right: 72px;
}
.column-list ul li a{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 55px;
	color: #777777;
}
.column-list ul li.active{
	border-bottom: 2px solid #20a7f6;
}
.column-list ul li.active a{
	color: #20a7f6;
}
.crumb{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 55px;
	letter-spacing: 0px;
	color: #999999;
	position: relative;
}
.crumb:after{
	content: "";
	display: block;
	position: absolute;
	width: 55px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #20a7f6;
}
.crumb em{
	width: 12px;
	height: 12px;
	margin-top: 22px;
	display: block;
	background: url(../images/home.jpg) center no-repeat;
}
.crumb a{
	margin-left: 14px;
	margin-right: 14px;
	color: #999999;
}
.content{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 30px;
	letter-spacing: 0px;
	color: #777777;
	padding-top: 40px;
	padding-bottom: 40px;
}
.about{
	
}
.about h2{
	ont-size: 26px;
	font-weight: bold;
	font-stretch: normal;
	line-height: 41px;
	letter-spacing: 0px;
	color: #555555;
	position: relative;
	padding-bottom: 32px;
	margin-bottom: 28px;
}
.about h2:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 55px;
	height: 2px;
	background: #20a7f6;
}
.about p{
	text-indent: 2em;
	margin-top: 12px;
	margin-bottom: 12px;
}
.about img{
	width: 100%;
}
.about-hos-img{
	width: 600px;
	height: 374px;
	margin-left: 38px;
}
.about-hos-info{
	height: 254px;
	margin-top: 12px;
	margin-bottom: 12px;
}

/* 图片列表 */
.list-img{
	
}
.list-img ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}
.list-img ul li{
	width: 357px;
	margin-right: 60px;
	margin-bottom: 40px;
	cursor: pointer;
}
.list-img ul li:nth-child(3n){
	margin-right: 0;
}
.list-img ul li img{
	width: 100%;
	height: 100%;
}
.list-img ul li dl{}
.list-img ul li dl dt{
	width: 357px;
	height: 237px;
}
.list-img ul li dl dd{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 40px;
	color: #20a7f6;
	border-bottom: 1px solid #d7d7d7;
}
.list-spec ul li dl dt{
	width: 357px;
	height: 120px;
}
.list-spec ul li img{
	display: inline-block;
	object-fit: cover;
	object-position: center;
	height: 100%;
}

/* 侧边栏 */
.sidebar{
	width: 252px;
}
.bd-1-e5{
	border: solid 1px #e5e5e5;
}
.sidebar-box{
	padding: 25px 25px 25px 18px;
}
.sidebar-in{}
.sidebar-list{}
.sidebar-list ul{
	
}
.sidebar-list ul li{
	
	margin-bottom: 18px;
	border-bottom: 1px solid #e6e6e6;
}
.sidebar-list ul li a{
	display: block;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.0;
	/* line-height: 36px; */
	padding-bottom: 18px;
	letter-spacing: 0px;
	color: #333333;
	
}
.sidebar-list ul li a:hover{
	color: #20A7F6;
}
.sidebar-list ul li em{
	display: block;
	float: right;
	margin-top: 3px;
	width: 6px;
	height: 6px;
	border-right: 2px solid #c2c2c2;
	border-top: 2px solid #c2c2c2;
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.sidebar-btn{
	text-align: center;
}
.sidebar-btn a{
	display: block;
	width: 208px;
	height: 37px;
	border-radius: 19px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 37px;
	color: #ffffff;
}
.sidebar-btn a.btn-red-s{
	margin-bottom: 12px;
}
.sidebar-title{}
.sidebar-title h6{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.0;
	letter-spacing: 0px;
	color: #333333;
}
.sidebar-doc{}
.sidebar-doc ul{}
.sidebar-doc ul li{
	margin-top: 18px;
}
.sidebar-doc ul li dl{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.sidebar-doc ul li dl dt{
	width: 70px;
	height: 96px;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.sidebar-doc ul li dl dt img{
	width: 100%;
}
.sidebar-doc ul li dl dd{
	width: 113px;
	height: 96px;
	display: block;
	position: relative;
	z-index: 0;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.sidebar-doc ul li dl dd h6{
	margin-bottom: 12px;
}
.sidebar-doc ul li dl dd h6 a{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #20a7f6;
}
.sidebar-doc ul li dl dd p{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.2;
	letter-spacing: 0px;
	color: #999999;
}
.sidebar-doc ul li dl dd p b{
	font-weight: normal;
	color: #555555;
}
.sidebar-doc-btn{
	position: absolute;
	bottom: 0;
	text-align: center;
}
.sidebar-doc-btn a{
	display: block;
	width: 113px;
	height: 28px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 28px;
	color: #feffff;
	
}
.sidebar-time{
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 18px;
	border-top: 1px solid #e6e6e6;
}
.sidebar-time p{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #555555;
}
.sidebar-time p b{
	font-family: Impact;
	font-weight: normal;
	font-size: 22px;
	color: #777777;
}


/* 列表页 */
.w930{
	width: 930px;
}
.list-arc{}
.list-arc ul{}
.list-arc ul li{
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: solid 1px #e5e5e5;
}
.list-arc ul li dl{
	display: flex;
	display: -webkit-flex;
}
.list-arc ul li dl dt{
	width: 162px;
	height: 118px;
	border-radius: 3px;
	overflow: hidden;
	margin-right: 22px;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.list-arc ul li dl dt img{
	width: 162px;
	height: 118px;
}
.list-arc ul li dl dd{
	 flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-webkit-flex: 1 1 auto; 
}
.list-arc ul li dl dd h5{
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 38px;
	letter-spacing: 0px;
	color: #555555;
	margin-bottom: 22px;
}
.list-arc ul li dl dd h5 a{
	display: inline-block;
	vertical-align: middle;
	/* max-width: 900px; */
	font-size: 24px;
	line-height: 38px;
	color: #555555;
}
.list-arc ul li dl dd h5 a:hover{
	color: #20A7F6;
}
.list-arc ul li dl dd h5 span{
	float: right;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 45px;
	letter-spacing: 0px;
	color: #999999;
}
.list-arc ul li dl dd p{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #999999;
}
.list-arc ul li dl dd p a{
	color: #20a7f6;
}

/* 列表翻页 */
.page-list{
	margin-top: 60px;

}
.page-list ul{
	text-align: center;
}
.page-list ul li{
	display: inline-block;
	vertical-align: top;
	height: 32px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.2s ease-in-out;
}
.page-list ul li a{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #333;
	display: block;
	line-height: 32px;
	padding-left: 11px;
	padding-right: 11px;
	background: #fff;
	border-radius: 16px;
	/* border: solid 1px #e6e6e6; */
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}
.page-list ul li a:hover,.page-list ul li.active a{
	color: #fff;
	background: #20a7f6;
	/* border: solid 1px #20a7f6; */
}
.doc-page-list ul{
	text-align: right;
}
/* 文章页 */
.article{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #555555;
}
.article-head{
	text-align: center;
	padding-top: 20px;
	padding-bottom: 30px;
	border-bottom: 3px solid #f3f2f5;
}
.article-head h1{
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 38px;
	letter-spacing: 0px;
	color: #333333;
	margin-bottom: 20px;
}
.article-head p{
	text-align: center;
	line-height: 1.0;
}
.article-head p span{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.0;
	letter-spacing: 0px;
	color: #999999;
	display: inline-block;
	vertical-align: middle;
	margin-left: 24px;
	margin-right: 24px;
}
.article-text{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #555555;
	margin-top: 25px;
	margin-bottom: 25px;
}
.article-text p,.article-text div,.article-text span,.article-text b,.article-text strong{
	font-size: 16px!important;
	/* line-height: 24px; */
	line-height: 32px;
	color: #333;
	/*color: #555555;*/
}
.article-text img{
	max-width: 100%;
	height: auto
}
.article-btn{
	justify-content: center;
	text-align: center;
	margin-top: 60px;
}
.article-btn a{
	display: inline-block;
	width: 170px;
	height: 36px;
	/* background-color: #43a0ef; */
	border-radius: 18px;
	margin-left: 20px;
	margin-right: 20px;
	overflow: hidden;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 36px;
	letter-spacing: 0px;
	color: #ffffff;
}
/* 上下篇文章 */
.chapters{}
.chapters ul{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.chapters ul li{
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	width: 400px;
	height: 47px;
	/* background-color: #e9eef8; */
	background-color: #f3f2f5;
	padding-left: 18px;
	padding-right: 14px;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 46px;
	letter-spacing: 0px;
	color: #333333;
	box-sizing: border-box;
	vertical-align: middle;
}
.chapters ul li span{
	display: inline-block;
	vertical-align: middle;
	
}
.chapters ul li a{
	display: inline-block;
	vertical-align: middle;
	width: 300px;
	line-height: 46px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #20a7f6;
	/* color: #257ecc; */
}
/* 文章推荐 */
.bb-e6{
	border-bottom: 1px solid #e6e6e6;
}
.recommend{}
.recommend-title{}
.recommend-title h3{
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 58px;
	letter-spacing: 0px;
	color: #333333;
}
.recommend-list{
	margin-top: 10px;
}
.recommend-list ul{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recommend-list ul li{
	position: relative;
	text-align: left;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	width: 400px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.recommend-list ul li:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #cccccc;
	margin-right: 15px;
}
.recommend-list ul li a{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 32px;
	letter-spacing: 0px;
	color: #666666;
}

/* 单页 */
.f-blue h2{
	color: #20a7f6;
}
.f-blue h2 span{
	font-size: 16px;
	color: #20a7f6;
}
.ti-2em{
	text-indent: 2em;
}

/* 专家列表 */
.outpatient{}
.outpatient ul{
	display: flex;
	display: -webkit-flex;
}
.outpatient ul li{
	margin-right: 16px;
}
.outpatient ul li dl{
	display: flex;
	display: -webkit-flex;
}
.outpatient ul li dl dt{
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-top: 12px;
	line-height: 34px;
	border-radius: 100%;
}
.outpatient ul li:nth-child(1) dl dt{
	background-color: #ea5a54;
}
.outpatient ul li:nth-child(2) dl dt{
	background-color: #54a0ea;
}
.outpatient ul li:nth-child(3) dl dt{
	background-color: #63b98c;
}
.outpatient ul li:nth-child(4) dl dt{
	background-color: #9e9e9e;
}
.outpatient ul li dl dd{
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 34px;
	color: #555555;
	margin-left: 8px;
}
.doctor-search{}
.doc-search{}
.doc-search form{
	position: relative;
	z-index: 0;
	width: 375px;
	height: 34px;
	line-height: 0;
	padding-left: 30px;
	padding-right: 58px;
	box-sizing: border-box;
	background-color: #ffffff;
	border: solid 1px #ebebeb;
}
.doc-search input[type='text']{
	width: 100%;
	font-size: 15px;
	line-height: 32px;
	font-weight: normal;
	color: #a9a9a9;
}
.doc-search input[type='text']:focus{
	color: #333;
}
.doc-search input[type='submit']{
	position: absolute;
	display: block;
	cursor: pointer;
	width: 14px;
	height: 14px;
	top: 10px;
	left: 10px;
	font-size: 0;
	line-height:  24px;
	background: url(../images/icon-search.png) center no-repeat;
	background-size: 100%;
}
.doc-search button{
	position: absolute;
	top: 0;
	right: 0;
	width: 58px;
	height: 32px;
	font-size: 14px;
	cursor: pointer;
	font-weight: normal;
	font-stretch: normal;
	line-height: 34px;
	letter-spacing: 0px;
	color: #ffffff;
	text-align: center;
	background-color: #0079dd;
	
}

.list-doc-item{
	width: 930px;
}
.list-doc-img{
	width: 180px;
	height: 247px;
	margin-right: 20px;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.list-doc-img img{
	/*width: 70px;
	height: 96px;*/
	width: 180px;
	height: 247px;
}
.list-doc-txt{
	position: relative;
	/*width: 440px;*/
	width: 720px;
	flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}
.list-doc-txt h3{
	font-size: 24px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 1.3;
	color: #20a7f6;
	margin-bottom: 13px;
}
.list-doc-txt h3 a{
	color: #20a7f6;
}
.list-doc-txt p{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 21px;
	letter-spacing: 0px;
	color: #777;
	/*white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;*/
	
}
.list-doc-txt p b{
	color: #333;
}
.list-doc-sch{
	width: 369px;
	height: 96px;
}
.list-doc-sch table{
	border-collapse: collapse;
	table-layout: fixed;
	width: 369px;
	height: 96px;
}
.list-doc-sch table tr{}
.list-doc-sch table tr td{
	border: 1px solid #EDEDED;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 32px;
	color: #999999;
	text-align: center;
}
.list-doc-sch table tr:first-child{
	background: #ededed;
}
.list-doc-sch table tr:first-child td{
	color: #555555;
}
.list-doc-sch table tr td b{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 100%;
	background-color: #ea5a54;
	color: #ffffff;
} 
.list-doc-sch table tr td span{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 100%;
	background-color: #54a0ea;
	color: #ffffff;
} 
.list-doc-sch table tr td em{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 100%;
	background-color: #63b98c;
	color: #ffffff;
}
.list-doc-sch table tr td a{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 100%;
	background-color: #9e9e9e;
	color: #ffffff;
}

/* 医生详情页 */
.doctor-rank{
	margin-bottom: 80px;
}
.doctor-img{
	width: 270px;
	height: 369px;
	/*width: 187px;
	height: 256px;*/
	margin-right: 30px;
}
.doctor-img img{
	width: 270px;
	height: 369px;
	/*width: 187px;
	height: 256px;*/
}
.doctor-txt{
	/*width: 250px;*/
	width: 610px;
	position: relative;
	z-index: 0;
	margin-right: 70px;
}
.doctor-txt h1{
	font-size: 32px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: 2px;
	line-height: 1.1;
	color: #20a7f6;
	margin-bottom: 20px;
}
.doctor-txt h6{
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 25px;
	letter-spacing: 0px;
	color: #555555;
	width: 80px;
	height: 28px;
	text-align:center;
	border: dashed 1px #999999;
	margin-top: 15px;
	margin-bottom: 15px;
}
.doctor-txt p{
	font-size: 18px;
	line-height: 32px;
	white-space: normal;
	text-overflow: initial;
	color: #999;
}
.doctor-txt  p b{
	font-weight: normal;
	color: #555;
}
.doctor-btn{
	position: absolute;
	text-align: center;
	bottom: 0;
}
.doctor-btn a{
	display: block;
	width: 113px;
	height: 28px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	line-height: 28px;
	color: #feffff;
	margin-right: 20px;
}

.doctor-btn a.btn-blue-b{
	color: #20a7f6;
}

.doctor-other{}
.doc-other-box{
	padding: 20px;
}
.doc-other-box ul li{
	width: 130px;
	height: 218px;
	background-color: #ffffff;
	border: solid 1px #e4e4e4;
	margin-left: 8px;
	margin-right: 8px;
	/* margin-right: 21px; */
}
.doc-other-box ul li:nth-child(6){
	margin-left: 8px;
	margin-right: 8px;
}
.doc-other-box ul li dl dt{
	width: 103px;
	height: 141px;
}
.doc-other-box ul li dl dt img{
	width: 103px;
	height: 141px;
}
.doc-other-box ul li dl dd{
	padding-top: 10px;
}
.doc-other-box ul li dl dd h6{
	font-size: 14px;
	/* margin-bottom: 6px; */
	line-height: 1.0;
}
.doc-other-box ul li dl dd p{
	font-size: 14px;
	line-height: 1.0;
	margin-top: 6px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}