@charset "utf-8";
html,body{
	font-family: arial,"微软雅黑";
}
*{
	font-family:"微软雅黑";
}
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td ,/* table elements 表格元素 */
div{
	font-family: "微软雅黑";
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
a:focus{
	outline: none;
}
/* 设置默认字体 */
body,
button, input, select, textarea {
    font: 12px/1 arial,verdana; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    /* font: 0.625vw/1 "Microsoft YaHei",Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; 用 ascii 字符表示，使得在任何编码下都无问题 */
}
body,a{
	color:#666;
}
h1{ font-size: 0.9375vw; /* 0.9375vw / 0.625vw = 1.5 */ }
h2{ font-size: 16px; }
h3{ font-size: 10.2083vw; }
h4, h5, h6 { font-size: 100%; }
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
i,em,b{
	font-style: normal;
}
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 0.625vw; } /* 小于 0.625vw 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul, ol {
	font-size: 0;
	list-style: none;
}
/* 重置浏览器默认样式 select */
select,option,option select{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}
/* 重置文本格式元素 */
a {
	text-decoration: none;
	outline:none;
	blur:expression(this.onFocus=this.blur());
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}
/*a:hover { text-decoration: underline;}*/
abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}
q:before, q:after {
	content: '';
}
/* 重置表单元素 */
legend {
 	color: #000;
 }
 /* for ie6 */
fieldset, img {
 	border: none; /* img 搭车：让链接里的 img 无边框  注：optgroup 无法扶正*/
 }
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}
/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table th,table td{
	border:1px solid #ddd;
}
/* 重置 hr */
hr {
    border: none;
    height: 1px;
}
/* 表单 在浏览器上的默认样式*/
input,input:focus,button,button:focus,textarea,textarea:focus{
	outline:none;
	border:none;
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow-y: scroll; }
/* ie7以下两个以上的 li浮动产生的空白间隙bug */
li{
	+vertical-align: top;
	_vertical-align: top;
}
/* ie下li元素的内联元素底部产生空白 */
li *{
	*zoom:1;
}
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/* ie下图片标签上有空白 */
img{
	vertical-align: middle;
	*vertical-align:top;
	max-width: 100%;
}
/* ie下input标签文本居中 */
input{
	vertical-align: middle;
}
/* 以下为自用公共样式 */
/* 浮动 */
.fl,.fl-li li,.fl-a{
	float: left;
	_display: inline;
}
.fr,.fr-li li,.fr-a{
	float: right;
	_display: inline;
}
.w1200{
	width: 1200px;
	margin: 0 auto;
}
.padd{
	padding: 0.1px;
}
.opacity{
	filter:alpha(opacity=80);       /* IE */
	-moz-opacity:0.8;              /* 老版Mozilla */
	-khtml-opacity:08;
}
/* 清除浮动 */
.cb:after{
	content: ".";
	display: block;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	clear: both;
}
/* 内联块级元素 */
.ib,.flexslider .hd ul li{
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
html{
	overflow-x: hidden;
}
body,html{
	width: 100%;
	/* min-width: 1340.2604vw; */
}
.transition{
    transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -webkit-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -moz-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -ms-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -o-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
}
.db{
	display: block;
}
.th{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.es{
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.wh{
	width: 100%;
	height: 100%;
}
.w{
	width: 100%;
}
.h{
	height: 100%;
}
.pr{
	position: relative;
}
.oh{
	overflow: hidden;
}
.br{
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000);
}
.bg{
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.container{
	padding-left: 9.38%;
	padding-right: 9.38%;
}
.df{
	display:box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.fz{
	font-size: 0;
}
.align-center{
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.df-column{
	display: flex;
	flex-direction: column;
}
.df-between{
	display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}

.mainW{
	width: 83.25%;
	margin: 0 auto;
}
/*公共样式结束*/

.animated {
	animation-duration: 1s;
}
/* header */
#header {
	padding: 1% 9.38%;
	background: url(../img/logo-bg.png) no-repeat center/cover;
	z-index: 9999;
	position: relative;
}

#header .logos {
	width: 48.47917vw;
	height: 7.44792vw;
}

#header .logos a {
	width: 3.59375vw;
	height: 3.59375vw;
	margin-bottom: 0.26042vw;
}

#header .logos a:last-child {
	margin-bottom: 0;
}

#header .logo-name {
	padding: 0.78125vw 0;
	font-size: 0.83333vw;
	color: #099566;
	letter-spacing: 0.83333vw;
	justify-content: space-between;
}

#header .logo-name a {
	font-size: 1.04167vw;
	color: #099566;
}

#header .versions li {
	width: 4.63542vw;
	height: 1.61458vw;
	line-height: 1.61458vw;
	text-align: center;
	border: 1px solid #AAAAAA;
	border-right: none;
	font-size: 0.72917vw;
	color: #4F4F4F;
}

#header .versions li a {
	font-size: 0.72917vw;
	color: #bfbfbf;
	/* font-weight: 600; */
}

#header .versions li:last-child {
	border-right: 1px solid #AAAAAA;
}

#header .versions li:hover {
	border-color: #099464;
}

#header .versions li:hover a {
	color: #099464;
}

#header .header-right {
	/*margin-left: 3.02083vw;
	margin-top: 45%;*/
	position: absolute;
    bottom: 22%;
    right: 9%;
    z-index: 100;
}

#header .contact li {
	width: 1.61458vw;
	height: 1.61458vw;
	line-height: 1.61458vw;
	text-align: center;
	font-size: 1.04167vw;
	border: 1px solid #AAAAAA;
	margin-left: 0.46875vw;
	transition: .4s;
	-webkit-transition: .4s;
	cursor: pointer;
}
#headerSearch{
    width: 140px;
    height: 1.61458vw;
    color: #000;
    font-size: 14px;
    position: absolute;
    top: -1px;
    right: 1.4vw;
    z-index: 200;
    background-color: #fff;
    border: 1px solid #aaa;
    text-indent: 10px;
    line-height: 22px;
    transition: .4s;
	-webkit-transition: .4s;
}
#headerSearch::-webkit-input-placeholder{
	font-size: 12px;
	color: #999;
	line-height: 1.2vw;
}
#header .contact li:hover {
	background-color: #099464;
}

#header .contact li:hover input{
	border-color: #099464;
}

#header .contact li:hover a {
	color: #fff;
}
.newLogo{
    position: absolute;
    top: 11%;
    right: 9%;
    z-index: 100;
}
.newLogo em{
    font-size: 1.4vw;
    color: #3AA984;
    vertical-align: middle;
    margin-left: 10px;
}

#nav{
	position: relative;
	z-index: 999;
	background: linear-gradient(90deg, rgba(9, 148, 102, .8) 0%, rgba(9, 148, 100, .8) 100%);
}
#nav li{
    position: relative;
}
#nav li span a{
	width: 100%;
	height: 100%;
	display: block;
    line-height: 3.125vw;
    font-size: 0.9375vw;
    color: #fff;
    position: relative;
    text-align: center;
}
#nav li span a::after{
	content: '';
    width: 0;
    height: 0.2083vw;
    background: #CAA66E;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .6s;
}
#nav li:hover span a::after{
	width: 100%;
}
#nav li .erji{
	width: 120px;
    position: absolute;
    left: 50%;
    top: 100%;
	background: linear-gradient(90deg, rgba(9, 148, 102, .8) 0%, rgba(9, 148, 100, .8) 100%);
    text-align: center;
    padding: 1.0416vw 0;
    opacity: 0;
    pointer-events: none;
	transition: all .6s;
	transform: translateX(-100px);
}
#nav li:hover .erji{
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%);
}
#nav li .erji li{
	width: 100%;
    margin: auto;
    padding: 0.2604vw 1.0416vw;
}
#nav li .erji a{
	display: inline-block;
    padding: 2px 0 0.2083vw 0.625vw;
    position: relative;
	font-size: 0.7812vw;
	color: #fff;
}
#nav li .erji a::before{
	content: '';
    width: 0;
    height: 1px;
    background: #CAA66E;
    position: absolute;
    left: 15%;
    bottom: 0;
    transition: all .6s;
}
#nav li .erji a::after{
	content: '';
    width: 0;
    height: 0;
    border-top: 0.2604vw solid transparent;
    border-bottom: 0.2604vw solid transparent;
    border-left: 0.2604vw solid #CAA66E;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.2604vw;
}
#nav li .erji a:hover::before{
	width: 87%;
}
/* mobile */
.mobile-logo{
	display: none;
}
.mobile-btn-all{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 28%;
	right: 2.7%;
	z-index: 99999999999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
}
.mobile-btn-all a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .3s;
}
.mobile-btn-all a svg{
	width: 100%;
	height: 100%;
	fill: #089f73;
}
.mobile-btn-all #btn-close{
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
}
.mobile-btn-all.on #btn-close{
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.mobile-btn-all.on #btn-close svg{
	fill: #fff;
}
.mobile-btn-all.on #btn-open{
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
}
.mobile-nav{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(51,51,51,.3);
	transition: all .5s ease-out;
}
.mobile-nav ul{
	width: 85%;
	height: 100%;
	padding: 5%;
	background-color: #fff;
	/* overflow-y:auto; */
	overflow-x: hidden;
}
.mobile-nav ul li{
	width: 100%;
	margin-bottom: 6%;
	padding-left: 10%;
}
.mobile-nav ul li > a{
	display: block;
	width: 100%;
	font-size: 17px;
	color: #333;
}
.mobile-nav.on{
	opacity: 1;
	left: 0;
	visibility: visible;
}
/* header */
/* footer */
.footer{
	background-color: #414141;
}
.footer .mainW{
	padding-top: 1.3%;
}
.footer-top{
	border-bottom: 1px solid #6d6d6d;
}
.footer-link{
	width: 80%;
}
.footer-link a{
	font-size: 16px;
	color: #fff;
	opacity: .6;
	margin-right: 2.5%;
	margin-bottom: 2%;
	line-height: 1.2;
	transition: all .3s;
}
.footer-link a:first-child{
	background: url(../img/f-link-icon.png) left center no-repeat;
	padding-left: 30px;
}
.footer-link a:first-child,
.footer-link a:last-child{
	margin-right: 0;
}
.footer-link a:hover,
.footer-bottom .f-nav a:hover{
	opacity: 1;
}
.footer-access{
	width: 20%;
}
.footer-access a{
	font-size: 16px;
	color: #fff;
	opacity: .6;
	line-height: 1.2;
	transition: all .3s;
}
/*.footer-access a:last-child{*/
/*	margin-right:13%;*/
/*}*/
.footer-access a:hover{
	opacity: 1;
}
.footer-info{
	overflow: hidden;
	margin-top: 2%;
}
.footer-info .item{
	width: 33.33333333%;
}
.footer-info .item.copyRight{
	border-left: 1px solid #6d6d6d;
	border-right: 1px solid #6d6d6d;
}
.footer-info .info p{
	font-size: 16px;
	color: #fff;
	opacity: .5;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	line-height: 1.5;
	margin-bottom: 2%;
}
.footer-info .info p em{
	font-family: arial;
	font-size: 1.25vw;
}
.footer-info .info p a{
	color: #fff;
}
.footer-info .info p.tel{
	background-image:url(../img/f-tel.png);
}
.footer-info .info p.address{
	background-image:url(../img/f-address.png);
}
.footer-info .info p.mail{
	background-image:url(../img/f-mail.png);
}
.footer-info .item.copyRight{
	padding-left: 6%;
	padding-top: 1%;
	padding-bottom: 1%;
}
.footer-info .item.copyRight p{
	font-size:16px;
	color: #fff;
	opacity: .5;
	margin-bottom: 4%;
}
.footer-info .item.copyRight p a{
	color: #fff;
}
.footer-info .item.code{
	text-align: center;
}
.footer-info .item.code span{
	width: 107px;
}
.footer-info .item.code span:last-child{
	margin-left: 60px;
}
.footer-info .item.code span img{
	width: 100%;
	height: 109px;
}
.footer-info .item.code span em{
	font-size: 16px;
	color: #fff;
	margin-top: 15px;
}
.footer-bottom{
	border-top: 1px solid #6d6d6d;
	padding-top: 1.1%;
	padding-bottom: 1.1%;
	margin-top: 2%;
}
.footer-bottom .f-nav{
	width: 85%;
}
.footer-bottom .f-nav a{
	font-size: 16px;
	color: #fff;
	opacity: .6;
	background:url(../img/f-line.png) right center no-repeat;
	padding-right: 5%;
	margin-left: 5%;
	transition: all .3s;
}
.footer-bottom .f-nav a:first-child{
	margin-left: 0;
}
.footer-bottom .f-nav a:last-child{
	padding-right: 0;
	background-image:none;
}
.footer-bottom .right{
	font-size: 16px;
	color: #fff;
	opacity: .6;
}
/* footer */
@media (max-width:1366px) {
	main .doctor .doctor-top .choice-select .select .select-value,
	main .doctor .doctor-top .choice-select .name,
	main .doctor .doctor-top .choice-select .name::-webkit-input-placeholder,
	main .doctor .doctor-top #doctor-search,
	.index-dynamic-right .list a,
	.index-special-column > .title a,
	.footer-link a,
	.footer-access a,
	.footer-info .info p,
	.footer-info .item.copyRight p,
	.footer-info .item.code span em,
	.footer-bottom .f-nav a,
	.footer-bottom .right,
	#nav li span a,
	.index-dynamic-left .list a .info .title{
		font-size: 14px;
	}
	main .news .yuan .yuan-list li .title,
	main .news .new-list .list-center li p,
	.index-dynamic-left .list a .info .desc{
		font-size: 13px;
	}
	#header .versions li a,
	#nav li .erji a,
	main .news .new-list .list-center li span,
	main .news .yuan .yuan-list li .yuan-nr,
	.index-dynamic-left .list a .info .time{
		font-size: 12px;
	}
	.doctor-list-wrap .doctor-list ul li .info .desc{
	    height: 45px;
		line-clamp: 2;
		-webkit-line-clamp: 2;
	}
	.index-special-column > .title a{
		width: 70px;
		height: 25px;
		line-height: 25px;
	}
	.footer-info .item.code span{
		width: 100px;
	}
	.footer-info .item.code span img{
		height: 100px;
	}
	.footer-info .item.code span:last-child {
	    margin-left: 30px;
	}
	
	/*.ny-ldtdtop .ny-ldtdimg {*/
 /*       height: 15vw !important;*/
 /*   }*/
 /*   .ny-content-bottom .ny-ldtdtop a .ny-ldtdimg {*/
 /*       height: 20vw !important;*/
 /*   }*/
	
	
}
@media (max-width:1200px){
	.mainW,
	#swiper2 .list-type{
		width: 90%;
	}
	main .news .new-list .list-btn li .time p:nth-child(2),
	main .news .new-list .list-top .more .iconfont,
	main .news .new-list .list-top .new-icon,
	main .news .yuan .yuan-list li .rili,
	main .office .office-top .office-icon,
	main .doctor .doctor-top .title i,
	.doctor-list-wrap .doctor-list ul li .info .desc,
	main .news .yuan .yuan-list li:nth-child(n+5),
	#header .contact{
		display: none;
	}
	main .office .office-top .all-office,
	main .office .office-btn .offices li,
	main .office .office-btn .office-msg .img-lf span,
	.doctor-list-wrap .doctor-list ul li .info .title,
	.footer-link a,
	.footer-access a,
	.footer-info .info p,
	.footer-info .item.copyRight p,
	.footer-bottom .f-nav a,
	.footer-bottom .right,
	main .news .new-list .list-btn li .msg .title{
		font-size: 13px;
	}
	main .news .new-list .list-btn li .msg .nr,
	main .office .office-top .indexes .office-A li a,
	main .office .office-btn .office-msg .ks-msg li .classify,
	.footer-info .item.code span em,
	#swiper2 .list-type li a,
	main .news .new-list .list-top .more{
		font-size: 12px;
	}
	#header .versions li{
		display: inline-block;
		width: auto;
		height: auto;
		flex-shrink: 0;
		padding: 0px 4%;
	}
	main .news .new-list .list-btn li .time .time-bg{
		border-bottom:none;
		padding-top: 24%;
	}
	main .news .new-list .list-top .more{
		width: 70px;
		height: 20px;
		line-height: 17px;
	}
	main .news .yuan .yuan-list li .title{
		width: 100%;
	}
	main .news{
		margin-top: 1%;
	}
	main .news .new-list .list-top{
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	main .office .office-top .indexes .ksdh{
		margin-left: 0;
	}
	main .doctor .doctor-top .choice-select .select,
	main .doctor .doctor-top .choice-select .name{
		width: 10vw;
		height: 2.2vw;
	}
	main .doctor .doctor-top .choice-select .select .select-value,
	main .doctor .doctor-top .choice-select .name{
		line-height: 2.2vw;
	}
	main .doctor .doctor-top #doctor-search{
		line-height: 2.3vw;
	}
	main .doctor .doctor-top .title{
		margin-top: .8%;
	}
	.doctor-list-wrap .doctor-list ul li .info .title{
		margin-top: 6%;
	}
	.index-dynamic-left .list a .info .title{
		line-clamp: 1;
		-webkit-line-clamp: 1;
	}
	.index-dynamic-right > .list{
		height: 26vw;
	}
	.footer-info .item.code span em{
		margin-top: 8px;
	}
	.footer-info .item.code span {
	    width: 80px;
	}
	.footer-info .item.code span img{
	    height: 80px;
	}
	.footer-bottom .f-nav a{
		padding-right: 3%;
		margin-left: 3%;
	}
	main .news .yuan .yuan-list li .yuan-nr{
		line-height: 2;
	}
	main .news .new-list .list-btn li .msg .nr{
		line-height: 1.5;
	}
	main .news .new-list .list-btn li{
		height: auto;
		margin-top: 4%;
	}
	main .news .new-list .list-btn li .time{
		margin-top: 2%;
	}
	.footer-info .item.copyRight{
		border: none;
	}
	
}
@media (max-width:1000px){
	#nav li span a{
		line-height: 2.5;
	}
}
@media (max-width:768px){
	main .office .office-top .all-office .arrows,
	main .doctor .doctor-top .choice-select .select .select-value i,
	.index-dynamic-left .list a .info .desc,
	.index-special-column,
	.footer-info .item.code,
	#nav li .erji{
		display: none;
	}
	#header .versions li{
		padding: 6px 4%;
	}
	main .news .new-list .list-btn li .msg .title{
		line-height: 1.3;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	main .news .new-list .list-btn li .time{
		margin-top: 0;
		width: 4vw;
		height: 6vw;
		display: flex;
		align-items: center;
	}
	main .news .new-list .list-btn li a{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	main .news .new-list .list-btn li .time .time-bg{
		padding-top: 0;
	}
	main .doctor .doctor-top .choice-select .select,
	main .doctor .doctor-top .choice-select .name {
	    width: 11vw;
	    height: 3.5vw;
	}
	main .doctor .doctor-top .choice-select .select .select-value,
	main .doctor .doctor-top .choice-select .name ,
	main .doctor .doctor-top #doctor-search{
	    line-height: 3.5vw;
	}
	main .doctor .doctor-top #doctor-search{
		width: 7vw;
	}
	.doctor-list-wrap .doctor-list ul li{
		height: 30vw;
	}
	.doctor-list-wrap .doctor-list ul li .info{
		height: 13vw;
	}
	.index-dynamic-left .list a .info .time{
		margin-top: 10%;
	}
	.dynamic-title a{
		font-size: 12px;
		background-image: none;
		padding-right: 0;
	}
	.dynamic-title span{
		font-size: 16px;
	}
	.index-dynamic{
		background-color: #05ac9c;
		background-size: auto;
		padding-top: 2%;
		padding-bottom: 3%;
	}
	.index-dynamic-left .list{
		margin-top: 6%;
	}
	.index-dynamic-left{
		margin-top: 2%;
	}
	.index-dynamic-right > .list{
		height: auto;
	}
	.footer-info .item{
		width: 50%;
	}
	.footer-link{
		white-space: nowrap;
		overflow-x: auto;
	}
	.footer-link a{
		display: inline-block;
		float: none;
	}
	.footer-bottom{
		padding-top: 2%;
		padding-bottom: 2%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.footer-bottom .f-nav{
		width: 70%;
	}
	
	.ny-ldtdtop.single .ny-ldtdimg {
        height: 40vw !important;
    }
	
}
@media (max-width:650px){
	.mainW{
	    width: 95%;
	}
	#header .logos,
	#nav,
	#swiper2 .list-type,
	main .news .new-list .list-btn li .time,
	main .office,
	main .doctor .doctor-top .choice-select,
	main .doctor .doctor-top .title,
	.doctor-list-wrap .swith-btn,
	.footer-bottom .f-nav,
	.footer-link,
	.header-right{
		display: none;
	}
	.footer-info .info p em,
	.footer-info .info p,
	main .news .yuan .yuan-list li .title,
	main .news .new-list .list-btn li .msg .title{
		font-size: 14px;
	}
	#header{
		position: fixed;
		padding:2% 2%;
		z-index: 99999999;
		left: 0;
		top: 0;
	}
	.ny-banner{ margin-top: 63px;}
	.mobile-logo{
		display: block;
	}
	.mobile-logo img{
		width: 80%;
	}
	.mobile-btn-all{
		opacity: 1;
		visibility: visible;
		top:50%;
	}
	#swiper2 {
	    height: 45vw;
	    margin-top: 63px;
	}
	#swiper2 .swiper-pagination{
		width: 100%;
		right: 0;
		bottom: 3vw;
	}
	#swiper2 .swiper-pagination-bullet{
		width: 8px;
		height: 8px;
		overflow: hidden;
		line-height: 10;
		margin-right: 5px;
		opacity: 1;
	}
	#swiper2 .swiper-pagination-bullet:last-child{
		margin-right: 0;
	}
	main .news .new-list{
		width: 100%;
		float: none;
		margin-bottom: 3%;
	}
	main .news .new-list .list-top{
		font-size: 15px;
		margin-bottom: 3%;
	}
	main .news .new-list .list-top .more {
	    height: 22px;
	    line-height: 21px;
	}
	main .news .new-list .list-center{
		display: flex;
		justify-content: space-between;
	}
	main .news .new-list .list-center li i{
		height: 30vw;
	}
	main .news .new-list .list-center li{
		width: 49%;
	}
	main .news .new-list .list-center li p{
		margin:4% 0%;
	}
	main .news .new-list .list-btn li .msg{
		width: 100%;
	}
	main .news .new-list .list-btn li .msg .nr {
	    line-height: 1.8;
	    margin-top: 2%;
	}
	main .news .yuan .yuan-list li{
		padding: 10px;
		margin-top: 0;
		margin-bottom: 2%;
	}
	main .news .yuan .yuan-list li .yuan-nr{
		line-clamp: 3;
		-webkit-line-clamp: 3;
	}
	.doctor-list-wrap .doctor-list ul li {
	    height: 60vw;
	}
	.doctor-list-wrap .doctor-list ul li .info {
	    height: 24vw;
	}
	.doctor-list-wrap .doctor-list ul li .info *{
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.doctor-list-wrap .doctor-list ul li .info .title{
		margin-top: 1%;
	}
	.index-dynamic{
		background-image: none;
	}
	.index-dynamic-left,
	.index-dynamic-right{
		width: 100%;
		float: none;
	}
	.index-dynamic-left .list{
		margin-top: 4%;
	}
	.index-dynamic-left .list a{
		height: 24vw;
	}
	.index-dynamic-left .list a .info .title {
	    line-clamp: 2;
	    -webkit-line-clamp: 2;
	}
	.index-dynamic-right{
		margin-top: 4%;
	}
	.dynamic-title span i{
		vertical-align: top;
	}
	.index-dynamic-right > .list{
		margin-top: 3%;
	}
	.footer-access{
		width: 100%;
	}
	.footer-top{
		padding-top: 2%;
		padding-bottom: 3%;
	}
	.footer-info .item,
	.footer-bottom .right{
		width: 100%;
		float: none;
	}
	.footer-info .info p{
		background-image: none !important;
		padding-left: 0;
	}
	.footer-info .item.copyRight{
		padding-left: 0;
	}
	.footer-access a{
		float: left;
		margin-right: 10%;
	}
	.footer-info .item.copyRight p:last-child{
		margin-bottom: 0;
	}
	.footer-bottom .right{
		margin-bottom: 2%;
	}
	.footer-bottom{
		margin-top: 0;
		border-top: none;
		margin-bottom: 2%;
	}
	.footer-access a,
	.footer-bottom .right,
	.footer-info .item.copyRight p,
	.footer-info .info p{
		opacity: .9;
	}
	.ny-ldtdtop a{
	    width: 50% !important;
	}
	.ny-ldtdtop .ny-ldtdimg,
	.ny-content-bottom .ny-ldtdtop a .ny-ldtdimg{
        height: 43vw !important;
    }
	
	.index-hospital .box-slide li{ height:32vw;}
	.index-hospital .index-hospital-tilte i{ display:none;}
	
	
}
/* 顶部微博 微信 */
.contact li{
	position: relative;
}
.contact li .cq-erweima {
	width: 80px;
	position: absolute;
	top: calc(100% + 20px);
	left: -27px;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}
.cq-erweima img {
	width: 100%;
}
.contact li:hover {
	overflow: visible;
}
.contact li:hover #headerSearch,
.contact li:hover .cq-erweima{
	z-index: 1;
	opacity: 1;
	visibility: visible;
}
@media screen and (min-width:1366px) and (max-width:1600px){
	.doctor-list-wrap .doctor-list ul li .info .desc{
		-webkit-line-clamp: 3;
	}
}


