@charset "UTF-8";
/*+++++++++++    ++++++++++*/

body{
  font-size: 14px;
  font-family: '微软雅黑'
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
ul,li{
  margin: 0;
  padding: 0;
  list-style-type:none; 
}
a,a:link,a:visited,a:active,a:focus{
  text-decoration: none;
  color: #454545
}

@-webkit-keyframes yuanbox {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg)
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg)
}
}
@keyframes yuanbox {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg)
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg)
}
}
@-webkit-keyframes yuanbox1 {
 0% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg)
}
 100% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg)
}
}
@keyframes yuanbox1 {
 0% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg)
}
 100% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg)
}
}
.main,.main-n{
	width: 1560px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.main2{
	width: 1500px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.main3{
	width: 1200px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* 头部 */
.head{
	height: 160px;
	display: block;	
	margin-right: 20px;
}

.head .logo img{
	height: 96px;
	margin-top: 37px;
	float: left;
	display: block;
	
}

.hleft {
	display: block;
	height: 90px;
	width: 300px;
	margin-right: 250px;
	float: left;
}


.hleft .logo img{
	height: 96px;
	margin-top: 37px;
	float: left;
	display: block;
	
}

.h_center {
	display: block;
	float: left;
	height: 96px;
	width: 300px;
	margin-top: 37px;
	margin-right: 50px;
}
.h_center img {
	height: 96px;	
}

.hright{
	float: right;
	line-height: 48px;
	display: block;
	margin-top: 37px;
}
.hright img {
	height: 96px;
	
}

 /* 弹性盒布局样式 */
.row {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 /* 垂直居中 */
 justify-content: space-between;
 /* 水平均匀分布 */
 width: 100%;
}

.col {
 flex: 1;
 /* 平均分配空间 */
 min-width: 0;
 /* 防止内容溢出 */
 display: flex;
 align-items: center;
 /* 内部内容垂直居中 */
 justify-content: center;
 /* 内部内容水平居中 */
 padding: 0 10px;
 /* 添加一些内边距 */
}

/* 调整各列的弹性比例 */
.hleft {
 flex: 0 0 150px;
 /* 固定宽度 */
 justify-content: flex-start;
 /* 左对齐 */
}

.h_center {
 flex: 2;
 /* 占据更多空间 */
}

.hright {
 flex: 0 0 150px;
 /* 固定宽度 */
 justify-content: flex-end;
 /* 右对齐 */
}

.nav {
 flex: 0 0 300px;
 /* 搜索框固定宽度 */
 justify-content: flex-end;
 /* 右对齐 */
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
 .h_center {
  order: -1;
 /* 将中心内容移到最前面 */
 flex: 0 0 100%;
 /* 全宽度 */
 margin-bottom: 10px;
 }

 .hleft,
 .hright,
 .nav {
 flex: 1;
 }
}

@media screen and (max-width: 980px) {
 .nav {
 display: none;
 /* 移动端隐藏搜索框 */
 }

 .hleft,
 .hright {
  flex: 0 0 auto;
 }
}

/* 保持原有的搜索框样式 */
.search-container {
 display: flex;
 align-items: center;
 margin: 0;
 padding: 0;
 list-style: none;
 margin-top: 40px;
}

.search-box {
 display: flex;
 align-items: center;
 background: #fff;
 border-radius: 30px;
 padding: 4px 10px;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 border: 1px solid #e0e0e0;
}

#keyWord {
 border: none;
 outline: none;
 padding: 8px 10px;
 width: 120px;
 font-size: 14px;
 background: transparent;
}

#searchBtn {
 background: #098a90;
 color: white;
 border: none;
 border-radius: 20px;
 padding: 8px 15px;
 cursor: pointer;
 font-size: 14px;
 transition: all 0.3s ease;
 margin-left: 5px;
}

#searchBtn:hover {
 background: #1565c0;
}

#searchBtnIcon {
 display: none;
}

/* 轮播图 */
.mySwiper1{
  width: 100%;
  
}
.mySwiper1 .swiper-pagination-bullet{
  width: 100px;
  height:6px;
  border-radius: 0;
  background: rgba(255,255,255,.5);
  opacity: 1;
}
.mySwiper1 .swiper-pagination-bullet-active{
  background: rgba(255,255,255,1);
}
.swiper-slide{
  overflow: hidden;
}
.mySwiper1 .swiper-slide img{
  width: 100%;
}
.swiper-container{
  width: 100%;
  height: 100%;
}

.mySwiper1>.swiper-pagination{
  bottom: 40px!important
}
.mySwiper1 .swiper-button-prev{
  width: 80px!important;
  height: 80px!important;
  transform: translateY(-50%)!important;
  left: 40px;
  background: url(../2024img/banner-qh01.png)!important;
  border-radius: 120px!important;
  background-size: 100%!important;
}

.mySwiper1 .swiper-button-next{
  width: 80px!important;
  height: 80px!important;
  transform: translateY(-50%)!important;
  right: 40px;
  background: url(../2024img/banner-qh02.png)!important;
  border-radius: 120px!important;
  background-size: 100%!important;
}
.swiper-wrapper-dorctor .swiper-slide {
 margin: 0 8px;
}

.swiper-wrapper-dorctor .swiper-slide .mySwiper5-1 img {
 width: 100%;
 height: 430px;
 object-fit: cover;
}

/*专家风采*/

.con3{
  background: url(../2024img/c-bg3_24.jpg) center no-repeat;
  background-size: auto 100%;
  padding: 400px 0 122px 0;
  width: 100%;
  height: 1173px;
}
.con3tit{
  font-size: 32px;
  color: #333333;
}
.con3tit img {
  margin: 0 15px -10px 0;
}
.con3 .main{
  overflow: hidden;
}
.con3c{
 
  padding-top:40px;
  position: relative;
}

.mySwiper5 .swiper-slide a:hover{
  background: #005bac
}
.sw1{
  margin-top: 40px;
}
.sw2{
  margin-top: 105px;
}
.sw3{
  margin-top: 0px;
}
.sw4{
  margin-top: 80px;
}
.sw5{
  margin-top: 0px;
}

.mySwiper5-1{
  position: relative;
  overflow: hidden;
}
.mySwiper5-1b{
  position: absolute;
  bottom: 0;
  left:0;
  right: 0;
  background: rgba(0,0,0,0.5); 
  padding: 0 20px ;
  color: #fff;
  font-size: 14px;
}
.mySwiper5-1 img{
  display: block;
  width: 100%;
  transition: all .5s ease;
  }
.mySwiper5 .swiper-slide a:hover .mySwiper5-1 img{
    transform: scale(1.08);
  }
.mySwiper5-1b-1{
  font-size: 22px;
  text-align: center;
  line-height: 80px;
}

.mySwiper5-1b-2{
    font-size: 14px;
    display: none;
    margin-bottom: 22px;
    
}
.mySwiper5-1b-2 span{
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;   
}
.mySwiper5 .swiper-slide a{
  display: block;
}

.mySwiper5 .swiper-slide a:hover .mySwiper5-1b-2{
  display: block;
}
.mySwiper5-2{
  height: 90px;
  padding: 35px 15px 0 15px;
  background:#098a90;
  font-size: 16px;
  color: #fff;
}
.mo2,.mo1{
  float: right;
}
.mo2{
  display: none;
}
.mySwiper5 .swiper-slide a:hover .mySwiper5-2{
  background: #098a90 url(../2024img/bgon_27.jpg) no-repeat right bottom
}
.swiper-slide a:hover .mo2{
  display: block;
}
.mySwiper5 .swiper-slide a:hover .mo1{
  display: none;
}
.mySwiper5-2 span{ text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; width: 160px; white-space: nowrap; }

.swiper-button-prev5{
  width: 60px!important;
  height:60px!important;
  background: url(../2024img/left5.png)!important;
  background-size: 100% 100%;
  margin-top:0px!important;
  right:70px!important;
  top: -39px!important;
  left: initial!important;
}
.swiper-button-next5{
  width: 60px!important;
  height: 60px!important;
  background: url(../2024img/right5.png)!important;
  background-size: 100% 100%;
  margin-top:0px!important;
  right: 0px!important;
   top: -39px!important;
}
.swiper-button-prev5:hover{
  background: url(../2024img/left5on.png)!important;
  background-size: 100% 100%;
}
.swiper-button-next5:hover{
  background: url(../2024img/right5on.png)!important;
  background-size: 100% 100%;
}
.swiper-button-next5:after, .swiper-button-prev5:after{
  font-size: 0!important;
}

.more3{
  display:block;
  width: 200px;
  line-height: 48px;
  padding-left:55px;
  border:1px solid #098a90;
  border-radius: 120px;
 margin: 0 auto;
  color: #098a90!important;
  background: url(../2024img/more-04.png) right 55px center no-repeat;
  margin-top: 40px;
  font-size: 15px;
}
.more3:hover{
 background: #098a90 url(../2024img/more-05.png)  right 55px center no-repeat;
 color: #fff!important;
}


/*重点科室介绍*/
.ksnav{ height: 800px; padding-top: 84px; padding-bottom: 106px; background-image: url(../2024img/jsbg_46.jpg); background-repeat: no-repeat; background-position: center top; }
.ksnav .con3tit{ color: #fff; padding-bottom: 50px; display: block; }
.ksnav .main{
  position: relative;
  height: 100%;
}
.con3tit a.more{
  float: right;
  color: #333;
  font-size: 16px;
  padding-left: 35px;;
  background: url(../2024img/more-01.png) no-repeat left;
  line-height: 24px;
  margin-top: 10px;
}
.con3tit a.more:hover{
  background: url(../2024img/more-01.png) no-repeat left;
  color: #098a90;
}
.ksnav  .con3tit a.more{
  background: url(../2024img/more-03.png) no-repeat left;
  color: #fff;
}
.news-box{
  border-radius: 8px;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
  overflow: hidden;
  background: #fff;
}


.ksnav-c1{
  width: 1066px;
  height: 700px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
 
}
.ks-imghover{
  position: absolute;
  left:0;
  top: 0;
  right: 0;
  bottom: 0 ;
transition: ease .5s;
}
.ks-imghover:hover{ transform: scale(1.04,1.04);}
 .ksnav-c1 .ks-imghover{
  background: url(../2024img/tsimg5_15.jpg);
  background-size: 100% 100%;
 }

.ksnav-c2{
  width:570px;
  height: 700px;
  position: absolute;
  right: 0;
  top: 156px;
}
.ksnav-c2 a{
  color: #fff
}
.ksnav-c2 a .img{
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 75px;
  height: 75px;
}
.ksnav-c2 .text{
    font-size: 24px;
    writing-mode: tb-rl;
    margin: 36px 0 0 40px;
    position: relative;
    text-align: initial;
}
.ksnav-c2 .text span{
  font-size: 12px;
  display: block;
}
.ksnav-c2 .item {
    width:570px;
    height:350px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    float: left;
    position: relative;
}
.ksnav-c2 .item.i1 {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
        position: absolute;
    right: 100%;
    top: 350px;
}


.ksnav-c2 .box-left,.ksnav-c2 .box-right{
  width: 435px;
}
.ksnav-c2 .box-left{
  margin-top: 268px
}
.ksnav-c2 .i1 .ks-imghover{
  background: url(../2024img/tsimg7_15.jpg) no-repeat;
  background-size: 100% 100%
}
.ksnav-c2 .i2 .ks-imghover{
  background: url(../2024img/tsimg8_15.jpg) no-repeat;
  background-size: 100% 100%
}
.ksnav-c2 .i3 .ks-imghover{
  background: url(../2024img/tsimg9_15.jpg) no-repeat;
  background-size: 100% 100%
}

/*新闻一区风格表*/
.news{
  height: 1102px;
  background: url(../2024img/c5bg_09.jpg) no-repeat center;
  padding-top: 185px;
}

.news .main .news-left,.news .main .news-right{
	width: 750px;
	float: left;
}

.news .main .news-left .news-box .swiper-container.mySwiper2 .swiper-wrapper .swiper-slide a img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	
}
.news .main .news-right{
  float: right;
}
.news-box{
  margin-top: 36px;
}
.mySwiper2 .swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  display: inline-block;
  border:2px solid #fff!important;
  opacity:1!important;
  border-radius: 0!important;
  background: transparent!important;
}
.mySwiper2 .swiper-pagination-bullet-active{
  background: #fff!important;
}
.mySwiper2 .swiper-pagination{
  bottom: 22px!important;
}
.mySwiper2 img{
  display: block;
  width: 100%;;
}
.mySwiper2  .txt{
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
padding: 20px 0 50px 0;    
display: block;
background: rgba(0,0,0,.5);
position: absolute;
left: 0;
bottom: 0;
right: 0;
}
.news-list{
  padding: 30px 30px 2px 30px;
}
.news-list ul li{
  margin-bottom: 30px;
}
.news-list ul li a{
  color: #333;
  font-size: 18px;
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    display: block;
}
.news-list ul li span{
  display: block;
  margin-top: 15px;
  color: #888888;
  font-size: 14px;
  position: relative;
}
.news-list ul li span::before{
  content: "";
  position: absolute;
  border-bottom: #eee 1px solid;
  right: 0;
  bottom: 7px;
  left: 100px;;
}
.news-list ul li:hover a{
 color: #098a90;
}
.news-list ul li:hover span::before{
  border-bottom: #098a90 1px solid;
 }
 .newsr-box{
  margin-top: 0px;
  display: none;
}
.newsr-box>a>img{
  width: 100%;
}
.news-right .con3tit ul li{
  display: inline;
  margin-right: 40px;;
}
.news-right .con3tit ul li span{
  width: 48px;
  height: 48px;
  background: #AAAAAA;
  border-radius: 8px;
  display: inline-block;
  margin-right: 15px;
}
.news-right .con3tit ul li{
  color: #AAAAAA;
  cursor: pointer;
}
.news-right .con3tit ul li.on,.news-right .con3tit ul li:hover{
  color: #333;
}.news-right .con3tit ul li.on span,.news-right .con3tit ul li:hover span{
  background: #D9B23D;
 
}
.newsr-box ul li{
  height: 162px;
background: #FFFFFF;
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
border-radius: 8px;
  margin-bottom: 23px;
  overflow: hidden;
  
}

.newsr-box ul li a{
  display: flex;
  height: 100%;
}
.newsr-box ul li:hover .c1-right1,.newsr-box ul li:hover .c1-right1 span{
  color: #098a90;
}
.c1-right1{
  width: 137px;
  background: #f4f4f4;
  color: #fff;
  text-align: center;
  height: 100%;
  padding-top: 30px;
  font-weight: 500;
  font-size: 16px;
  color: #888888;
}
.c1-right1 span{
  display: block;
  font-size: 56px;
  text-align: center;
  display: block;
  color: #888888;
}
.c1-right2{
  color: #666666;
  flex: 1;
  padding: 37px 30px 0 30px;
}
.c1-right2tit{
  color: #333;
  font-size: 18px;
   display: block;
   line-height: 28px;
   text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
}
.newsr-box ul li:hover .c1-right2tit{
  color: #098a90
}
.c1-right2bd{
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    line-height: 24px;
}


/*信息公开*/
.new-tit{
  background-color: #faf5e6;
  line-height: 70px;
  color: #098a90;
  font-size: 16px;
}
.new-con{
  width: 100%;
  padding: 35px 0  65px 0;
}
.new-conlist{
  display: flex;
}
.new-conlistc{
  width: 33%;
  margin: 0 .9%;
}
.newc-tit{
  padding-bottom: 23px;
  border-bottom: 1px solid #dddddd;
  color: #333;
  font-size: 32px;
  position: relative;;
}
.newc-tit::before{
  position: absolute;
  content: '';
  width: 50px;
  height: 2px;
  background: #d9b23d;
  bottom: 0;
  left: 0;
}
.newc-tit img{
  margin: 0 10px -12px 0;
}
.newc-bd{
  margin-top: 20px;
}
.newc-bd a{
  display: block;
  line-height: 48px;
  text-align: center;
  margin-bottom: 12px;
  color: #098a90;
  font-size: 18px;
  background: #e6f3f4;
  border-radius: 8px;;
}
.newc-bd a:hover{
  background-color:  #098a90;
  color: #fff;
}
.new-cd a{
 width: 48%;
 display: inline-block;
 margin-right: 2%;
}
.new-cd a:nth-child(2n){
  margin-right: 0;
}
.new-conlistb{
  width: 100%;
  margin: 0;
}
.new-conlistb a{
  width: 205px;
  float: left; ;
  margin-right:16px;
}
.newh{
  background: url(../2024img/n-bg_02.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 80px 0;
}
.newh-tit{
  text-align: center;
  color: #333;
  font-size: 32px;
  margin-bottom: 40px;
}
.newh-bd ul{
  display: flex;
}
.newh-bd ul li{
  width: 250px;
  height: 240px;
  border:1px solid #b7dbde;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  margin-right: 12px;
  border-radius: 8px;
}
.newh-bd ul li:last-child{
  margin-right: 0;
}
.newh-bd ul li span{
  display: block;
  width: 80px;
  height: 80px;
margin-bottom: 8px;
}
.newh-bd ul li:hover{
  background: #098a90;
  border:1px solid #098a90;
  border-bottom: 6px solid #d9b23d;
}
.newh-bd ul li:hover a{
  color: #fff;
}
.newh-bd ul li:nth-child(1) span{
  background: url(../2024img/icon1.png);
}
.newh-bd ul li:nth-child(1):hover span{
  background: url(../2024img/icon1on.png);
}
.newh-bd ul li:nth-child(2) span{
  background: url(../2024img/icon2.png);
}
.newh-bd ul li:nth-child(2):hover span{
  background: url(../2024img/icon2on.png);
}
.newh-bd ul li:nth-child(3) span{
  background: url(../2024img/icon3.png);
}
.newh-bd ul li:nth-child(3):hover span{
  background: url(../2024img/icon3on.png);
}
.newh-bd ul li:nth-child(4) span{
  background: url(../2024img/icon4.png);
}
.newh-bd ul li:nth-child(4):hover span{
  background: url(../2024img/icon4on.png);
}
.newh-bd ul li:nth-child(5) span{
  background: url(../2024img/icon5.png);
}
.newh-bd ul li:nth-child(5):hover span{
  background: url(../2024img/icon5on.png);
}
.newh-bd ul li:nth-child(6) span{
  background: url(../2024img/icon6.png);
}
.newh-bd ul li:nth-child(6):hover span{
  background: url(../2024img/icon6on.png);
}

@media screen and (max-width: 1600px){
.main,.main-n{
  width: 1200px;
}
.nav-main>.main>ul li>a{
  font-size: 18px;
}
.container{
  background: url(../2024img/c1-bg.png) no-repeat center bottom;
  background-size: 100%;
}
.container .box{
  width: 600px;
}
.box-left,.box-right{
  width: 300px;
}
.container .item{
  width: 300px; 
}
/*.container .box1{
  background: url(../2024img/d-img1.jpg);
  background-size: 100%;
    width: 600px;
    height: 432px;
}*/

/*检索*/
input, textarea {  outline: none;  font-family: '微软雅黑';
  /*-webkit-appearance: none;*/   }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {  color: #666; }

input:-moz-placeholder, textarea:-moz-placeholder {  color: #666; }
input::-moz-placeholder, textarea::-moz-placeholder {  color: #666; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder {  color: #666; }

.nav{width: 110px;  float: right;}
.nav ul li { position: relative; width: 80%; text-align: center; font-size: 20px; list-style-type:none; float: right;margin-top:55px;margin-bottom:20px; border-right: 1px solid #e4e4e4;border-bottom: 1px solid #e4e4e4 }
.nav ul li:first-child { border-left: 1px solid #e4e4e4 }
.nav ul li a { color: #333; font-size: 20px; display: block; height: 71px; position: relative; z-index: 1 }
.nav ul li a .icon-nav { width: 87px;  margin: 10px 0 0 0; display: inline-block; }
.icon-9 { position: absolute; bottom: 0; left: 0; display: none; }
.newsearbtn{display:flex}
.nav-txt { display: block;font-size:16px }
.nav ul li .line { position: absolute; left: 0; top: 0; right: 0; height: 4px; background: #009994; -webkit-transition: all 0.4s ease; transition: all 0.4s ease; z-index: 0 }

.nav ul li:hover .line, .nav ul li.on .line { height: 71px; }
.nav ul li:hover a, .nav ul li.on a { color: #fff }
.nav ul li:hover .icon-9, .nav ul li.on .icon-9 { display: block; }
.nav ul li:nth-child(5) .icon-nav { background-image: url(../2024img/svg/home_nav_icon_search.svg); background-repeat: no-repeat; }
.nav ul li:hover:nth-child(5) .icon-nav, .nav ul li.on:nth-child(5) .icon-nav { background: url(../2024img/svg/home_nav_icon_search_on.svg) no-repeat; }
.newsearch{
  position: fixed;
  left: 0;
  margin-top:20px;  
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
 display: none;

}
.newssearchbg{
  background: #fff;
  padding: 25px 0;
}
.newsearch img{
  height: 23px;
  margin-bottom: -8px;
  display: inline-block;
}
.newsearch  .search-input{
  width: 80%;
  display: inline-block;
  line-height: 48px;
  border:0;
  margin-left: 10px;
   font-size: 18px
}
.newsearch  .btn{
  width: 160px;
  line-height: 48px;
  background: #009994;
  color: #fff;
  text-decoration: center;
  border:0;
  cursor: pointer;
     font-size: 18px
}
.newsearch  .btn:hover{
  background: #048c88
}
.newsearclose{
  float: right;
  margin-top: 10px;
}
.newsearphbtn{
  display: none;
}

@media screen and (max-width: 1280px){
   .main {
    /*width: 980px;*/
	/*width:100%;*/
  }
  .search .search-input{
    width: 680px
  }
}

.newsearch{
  position: fixed;
  left: 0;
  top: 218px;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
 display: none;

}
.newssearchbg{
  background: #fff;
  padding: 25px 0;
}
.newsearch img{
  height: 23px;
  margin-bottom: -8px;
  display: inline-block;
}
.newsearch  .search-input{
  width: 70%;
  display: inline-block;
  line-height: 48px;
  border:0;
  margin-left: 10px;
  font-size: 18px;
  background: #edf1f4;
}
.newsearch  .btn{
  width: 160px;
  line-height: 48px;
  background: #009994;
  color: #fff;
  text-decoration: center;
  border:0;
  cursor: pointer;
     font-size: 18px
}
.newsearch  .btn:hover{
  background: #048c88
}
.newsearclose{
  float: right;
  margin-top: 10px;
}
.newsearphbtn{
  display: none;
}

@media screen and (max-width: 1280px){
   .newsearch .search-input{
    width: 73%
  } 
  .main {
    /*width: 980px;*/
  }
  .search .search-input{
    width: 680px
  }
}

/*科室介绍*/
.ksnav{
  height: 736px;
}
.ksnav-c1{
  width: 823px;;
  height: 540px;;
}
.ksnav-c1 .ks-imghover {
  background: url(../2024img/b-img2.jpg);
  background-size: 100% 100%;
}
.ksnav-c2{
  width: 436px;
  height: 536px;
}
.ksnav-c2 .item.i1{
  top: 268px;
}
.ksnav-c2 .item{
  width: 436px;
  height: 268px;
}
.ksnav-c2 .text{
  margin-left: 35px;
}



.news-left, .news-right{
  width: 578px;
}
.news-right .con3tit ul li{
  margin-right: 20px;
}
.newsr-box{
  display: none;
}
.newsr-box ul li{
  height: 150px;;
}
.c1-right1{
  padding-top: 23px;
}
.c1-right2{
  padding-top: 30px;
}
.news{
  height: 1000px;
  padding-top: 170px;
}
/* .zk-con2left>img{
  height: 656px;
}
.zk-con2rightc ul li{
  height: 328px;
} */





.nav-showl{
  width: 344px;
}
.nav-showl a,.nav-showc span{
  font-size: 18px;
}
.nav-showc{
  width: 512px;
  padding: 0 64px;
}
.nav-showr{
  width: 290px;
}
.nav-showrc{
  margin-left: 55px;
  width: 75px;
  font-size: 18px;
}
.nav-showc .more3{
  margin-top: 25px;
}
.nav-list a{
  width: 268px;
}
.nav-list span{
  font-size: 14px;
}
.newh-bd ul li{
  width: 190px;
}
}

/*+++++++++++    ++++++++++*/
/*导航*/
.nav-main{
  width: 100%;
height: 80px;
background: #098A90;
position: relative;
z-index: 2;
}
.nav-main>.main>ul li{
  list-style-type: none;
}
.nav-main>.main>ul{
  display: flex;
  justify-content: space-between;
}
.nav-main>.main>ul li>a{
  line-height: 80px;
  color: #fff;
  font-size: 21px;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.nav-main>.main>ul li>a:hover,.nav-main>.main>ul li>a.on{
  font-weight: bold;
}
.nav-main>.main>ul li>a:hover::before,.nav-main>.main>ul li>a.on::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 83px;
height: 6px;
background: #D9B23D;
}
.nav-show{
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  right: 0;
  background:rgba(32,135,140,0.9);
  padding: 60px 0;
}

#li-xxgk .nav-show{
	visibility:visible;
}

.nav-main .main>ul li:hover .nav-show{
  display: block;
}
.nav-main>.main>ul li>a:hover .nav-show{
  display: block;
}
.nav-showl{
  width: 448px;
  float: left;;
}
.nav-showl a{
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 20px;
  width: 50%;
  padding-left: 13px;
  float: left;
  transition: all ease-in-out .5s;
  margin-bottom: 28px;
}
.nav-showl a::before{
  position: absolute;
  content: '';
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: #d9b23d;
  transition: all ease-in-out .5s;
}
.nav-showl a:hover{
  padding-left: 20px;
}
.nav-showl a:hover::before{
  width: 12px;
}
.nav-showc{
  width: 660px;
  padding:0 78px ;
  border-left: 1px solid #63abaf;
  border-right: 1px solid #63abaf;
  float: left;
  color: #fff;
  line-height: 27px;
}
.nav-showc span{
  display: block;
  font-size: 20px;
  display: block;
  margin-bottom: 25px;
}
.nav-showc .more3{
	border: 1px solid #d9b23d;
	color: #d9b23d!important;
	margin: 60px 0 0 0;
	background-image: url(../2024img/more-06.png);
	background-repeat: no-repeat;

}
.nav-showc .more3:hover{
	color: #FFF;
	font-size: 16px;
	background-color: #099;
	font-family: Verdana, Geneva, sans-serif;
}


.nav-showr{
 width: 370px;
  margin-right: 50px;
  float: right;
}
.nav-showrc{
  width: 95px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-left: 80px;
  margin-bottom: 35px;
}
.nav-showrc img{
  display: block;
  width: 50px;
  margin:0 auto;
  margin-bottom: 16px;;
}
.nav-showrc a{
  color: #fff;
}
.nav-list{
  color: #fff;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
.nav-list a{
  width: 380px;
  float: left;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    padding-left: 13px;
    transition: all ease-in-out .5s;
    position: relative;
  }
.nav-list a::before{
    position: absolute;
    content: '';
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: #d9b23d;
    transition: all ease-in-out .5s;
  }
  .nav-list a:hover{
    padding-left: 20px;
  }
  .nav-list a:hover::before{
    width: 12px;
  }
.nav-list span{
  float: right;
  font-size:14px;
  margin-bottom: 0;
  display: inline-block;
}
.da-list{
  margin-bottom: 20px;;
}
.da-listh{
  border-bottom: 1px solid #63abaf;
  font-size: 20px;
  color: #fff;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 18px;
}
.da-listh:before{
  content: '';
  position: absolute;
  width: 24px;
  height: 4px;
  background-color: #d9b23d;
  bottom: 0;
  left: 0;
}

.da-list a{
  color: #fff;
  margin: 0px 18px 18px 0;
  display: inline-block;
}




/*就诊指南*/


.container{
	background: url(../2024img/banner1_39.png) no-repeat center bottom;
	height: 1148px;
	top: -200px;
}
.container .main{
	position: relative;
	top: 10px;
	display: block;
}

/*.container-txt img{
  margin: 0 15px -10px 0;
}*/
.container-txt{
  font-size: 32px;
  color: #333;
  padding-top: 140px;
}
.container .bx1 {
    top: 566px;
    left: 0px;
}
.container .box {
	width:780px;
	position: absolute;
	z-index: 4;
	display: block;
	top: 500px;	
}


.container a{
  color: #fff
}
.container .item {
    width: 390px;
    height: 216px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    float: left;
}
.container .item .middle {
    width: 100%;
    height: 100%;
}
.middle-cont {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    letter-spacing: 0;
}
.container .item .img {
    width: 85px;
    height: 85px;
    margin: 0 auto;
}
.container .item .img img{
  width: 100%;
  transition: ease .5s;
 
}
.container .item:hover .img img{
  transform:rotate(-360deg);
  -webkit-transform:rotate(-360deg);
  -moz-transform:rotate(-360deg);
}

.container .item .text {
    margin-top: 10px;
}
.container .item .tit {
    font-size: 20px;
    font-weight: bold;
}
.container .item .tit1 {
    font-size: 14px;
    font-family: Arial;
    margin-top: 5px;
}
.middle {
    font-size: 0;
}
.middle:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.container .bx1 .item.i1 {
  background: url(../2024img/c-img1.jpg);
}
.container .bx1 .item.i2 {
    background: url(../2024img/c-img2.jpg);
}

.container .bx1 .item.i4 {
  background: #d9b23d;
}

.container .bx2 {
    top:716px;
    right: 0;
}

.container .bx2 .item.i1 {
    background: #0bbfad;
    margin-top: 216px;
}

.container .bx2 .item.i2 {
    background: url(../2024img/c-img6.jpg);

}

.container .bx2 .item.i3 {
     background: url(../2024img/c-img7.jpg);
}

.container .bx2 .item.i4 {
  background: url(../2024img/c-img8.jpg);
    float: right;
}
.box-left{
  width: 390px;
  float: left;
}
.box-right{
  width: 390px;
  float: left;
}
.container .box1{
	background: url(../2024img/icom_04.jpg);
	background-size: 100%;
	width: 780px;
	height: 432px;
	position: absolute;
	top: 932px;
	left: 0px;
	z-index: 4;
	color: #fff;
}


/*医院概况*/
.zk-con2{
	width: 100%;
	margin-bottom: 160px;
}
.zk-con2left{
   width: 50%;
   position: relative;
   float: left;
   height: 620px;
}
.zk-con2left>img{
  width: 100%;
  height: 620px;
  position: absolute;
  right:0;
  top: 0 ;
  display: block;
}
.zk-con2left .con3tit{
  position: absolute;
  right: 50%;
  top: 50%;
  writing-mode: initial;
  text-align: initial;
  height: 140px;
  color: #fff;
  transform: translate(-30%,-50%);
  width: 190px;
  font-size: 32px;
}
.zk-con2left .con3tit img{
  margin: 0 0 18px 20px;
  display: block;
  width: 80px;
  height: 80px;
}
.zk-con2left .con3tit a{color:#fff;}
.zk-con2left .con3tit a.more{
  background: url(../2024img/more-03.png) no-repeat top;
  padding-top: 35px;
  padding-left: 0;
  margin-right: 12px;
  color: #fff;
  display: none;
}

.zk-con2right{
   width: 50%;
   position: relative;
   float: right;
}

.zk-con2rightc{
  position: relative;
}
.zk-con2rightc ul li{
  width: 33.3%;
  float: left;
  height: 310px;
  text-align: center;
  position: relative;
}
.zk-con2rightc ul li a>img{
  width: 100%;
  height: 100%;
  display: block;
}
.ftxt{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 24px;
}
.ftxt img{
  display: block;
  transition: ease .5s;
  margin: 0 auto 22px auto;
}
.zk-con2rightc ul li:hover img, .zk-con2left .con3tit:hover img{
  transform:rotate(-360deg);
  -webkit-transform:rotate(-360deg);
  -moz-transform:rotate(-360deg);
}
.news-a{
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.foot{
  background:#098a90;
  padding-top: 80px;
  width: 100%;
}
.foot-left{
	width: 400px;
	float: left;	
}
.foot-left img{width: 80%;}
.foot-center{
	width: 430px;
	border-left:1px solid #3aa1a6;
	border-right:1px solid #3aa1a6;
	padding-left: 30px;
	color:#fff;
	float: left;
	height: 200px;
	line-height: 35px;
}
.foot-right{
  float: right;
  width: 660px;

}
.foot-right ul li{
	width: 130px;
	float: left;
	text-align: center;
	color: #fff;
	margin-left: 30px;
	display: block;
}
.foot-right ul li img{
	margin-bottom: 20px;
	display: block;
	height: 130px;
	width: 130px;
}
.fbottom{
	margin-top: 70px;
	border-top:1px solid #3aa1a6;
	display: block;
	padding-top: 36px;
	padding-right: 0;
	padding-bottom: 36px;
	padding-left: 0;
}
.fbottoml{
  float: left;
}
.fbottoml>img{
  float: left;
}
.fbottomlc{
  width: 500px;
  margin-left: 20px;
  float: left;
  margin-top: 6px;
}
.fbottomlc a{
  color: #fff;
  display: inline-block;
  border-right:1px solid #3aa1a6;
  padding: 0 20px;
}
.fbottomlc a:nth-child(1){
  padding-left: 0;
}
.fbottomlc a:nth-child(4){
  border: 0;
}
.fbottomlc span{
  display: block;
  margin: 15px 0 0 0;
  color: #fff;
}
.fbottomlc span img{
  margin: 0 10px -5px 10px;
}
.fbottomr{
  float: right;
  width: 240px;
  margin-top: 20px;
  position: relative;
}
.sj-show{
  display: none;
}
.choose {
  width:100%;
  height: 40px;
  border: 1px solid #53adb2;
  border-radius: 5px;
  background:#1f959a url(../2024img/cret_69.jpg) no-repeat right center;
  appearance: none;
  font-size: 16px;
  padding-left: 20px;
  color: #fff;
  cursor: pointer;
}
.choose:-moz-placeholder{   
  color: #fff;   
}   

.choose:-ms-input-placeholder{   
  color: #fff;   
}   

.choose::-webkit-input-placeholder{   
  color: #fff;   
}  
.option {
  position: absolute;
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  bottom: 42px;
}
.option li{
  line-height: 40px;
  color: #333;
  padding-left: 20px;
  cursor: pointer;
}
.option li:hover{
  background-color: #098a90;
  color: #fff;
}
.newsphone-show{
  display: none;
}
.clearfix{
  content: '';
  clear: both;
  display: table;
}



/*百度地图*/
#bdmap{
  height: 100%;
}

.map{
	position: relative;
	height: 400px;
	margin-bottom: 100px;
	display: block;
	width: 100%;
	margin-top: 0px;
}
.map .bdmap {
  height: 100%;
}
.map-img{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.map-con{
	position: absolute;
	right: 50%;
	margin-right: -600px;
	top: -70px;
}
.map-img img{
  width: 120%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0s ease;
    transition: all 0s ease;
    position: absolute;
    left: 0;
    top: 0
}
.map-img img.on{
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.map-conlist{
	background:url(../2024img/map-bg.jpg);
	width: 465px;
	height: 540px;
}
.map-conlist .tit {
    font-size: 32px;
    text-align: center;
    padding-top: 65px;
    color: #fff;
}
.map-conlist .bdmaplist {
    margin-top: 40px;
    border-top: 1px solid #0bb0b3;
}
.map-conlist li{
  list-style-type: none;
  color: #fff;
  border-bottom: 1px solid #0bb0b3;
}
.map-conlist li.on .tit1 {
    background: #0bb0b3;
    position: relative;
}
.map-conlist .on .tit1:after {
    content: "";
    display: block;
    background: url(../2024img/san.png) no-repeat 0 0;
    width: 21px;
    height: 60px;
    position: absolute;
    top: 0;
    left: -21px;
}
.map-conlist .tit1 {
    font-size: 20px;
    text-align: center;
    cursor: pointer;
     height: 60px;
    line-height: 60px;
}
.map-conlist .on .list {
    display: block;
}
.map-conlist .list {
    padding:30px 30px 30px 50px;
    display: none;
    font-size: 14px;
    line-height: 35px
}

.svgimg{
  width: 30px;
  margin:0 10px -3px 0
}
.container-txt .svgimg{
	top: 5px;
}

/*就诊指南（新）*/

.container-txt{
  position: relative;
}
.container-txt img{
	position: absolute;
	left: 0;
	top: 40px;
}

/*检索*/
.search {
	display: block;
	float: right;
	height: 96px;
	width: 100px;
	margin-top: 54px;	
	margin-left:20px;	
}

.search img {
	height: 70px;	
}
.search img:hover{ transform: scale(1.1);}
/*科室介绍（新）*/

.guide-banner{
  width: 100%;
}
.guide-banner img{
  width: 100%
}
.guide-banner .main{ position: relative; height: 100%; left: 300px; margin-right: auto; margin-left: auto; width: 1080px; display: block; float: left; }
.guide-banner strong{
  font-size: 36px;
  color: #fff;
  position: absolute;
  bottom: 90px;
  left: 0
}

.guide-banner span{ font-size: 36px; color: #C00; position: absolute; bottom: 110px; left: 0; font-weight: bold; }
.guide-banner span2{ font-size: 24px; color: #F1F1F1; position: absolute; bottom: 70px; left: 0; font-weight: bold; }
.guide-banner span3{
	font-size: 36px;
	color: #FFF;
	position: absolute;
	bottom: 110px;
	left: 0;
	font-weight: bold;
}
/*.guide-con1{
	background-size: 100% 100%;
	background-image: url(../2024img/guide-img2_06.jpg);
	background-repeat: no-repeat;
}
.guide-con1 .main{
  position: relative;
}
.guide-con1head{
  border-bottom: 1px solid #c0dede;
  line-height: 80px;
  color: #666666;
  font-size: 16px;
  margin-bottom: 90px
}*/


/*新闻二区风格表*/
.newsbox{
	width: 100%;
	position: relative;
	padding-top: 100px;
	z-index: 1;
	background-color: #e6f2f2;
	background-image: url(../2024img/bg6_03.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.mewsbg{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0
}
.newsbox-head{
  height: 90px;
}
.newsbox-head ul{
  display: inline-block;
}
.newsbox-head ul li{
  list-style-type: none;
  margin-right: 80px;
  font-weight: bold;
  font-size: 30px;
  padding-bottom: 14px;
  display: inline-block;
  cursor: pointer;
}
.newsbox-head ul li:hover,.newsbox-head ul li.on{
  border-bottom: 4px solid #029b9e;
  color: #029b9e;
}
.newsbox-head .more{
  float: right;
  width: 130px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #000;
  border-radius: 120px;
  border:1px solid #999999;
}
.newsbox-head .more img{
  margin-left: 5px;
  width: 13px;
}
.newsbox-head .more:hover{
  border:1px solid #029b9e;
  /*color: #029b9e*/
}
.newsbox-con{
	position: relative;
	margin-bottom: 100px;
}


.newsbox-conlist{
  display: none;
}
.newsbox-conlist ul li{
  width: 480px;
  background: #fff;
  list-style-type: none;
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 12px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: default;
  position: inherit;
  
}
.newsbox-conlist1 ul{
  -webkit-transition: all 4s cubic-bezier(.08, .82, .17, 1);
    transition: all 4s cubic-bezier(.08, .82, .17, 1);
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
}



.newsbox-con.animate .newsbox-conlist1 ul{
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;

}
.newsbox-conlist ul li{
	color: #000;
	width: 700px;
	background-color: #FFF;
}
.newsbox-conlist ul li.on{
	background: #0aa3a6;
	color: #fff;
	width: 700px;
}
.newsbox-conlist ul li .left-img{
  width: 140px;
  height: 90px;
  display: inline-block;
}
.newsbox-conlist-txt{
	width: 480px;
	float: right;
}
.newsbox-conlist-txt strong{
  width: 100%;
      text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.newsbox-conlist-txt span{
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 10px
}

.newsbox-right{
	width: 818px;
	height: 600px;
	position: absolute;
	right: 0;
	top: 0px;
	color: #fff;
	display: none;
	overflow: hidden;

}
.newsbox-conlist ul li.on .newsbox-right{
  display: block;
}

.newsbox .news-left, .newsbox.news-right{
  width: 650px;
}

.newsbox-right img{
  width: 818px;
  
}


.newsbox-rightc{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	font-size: 14px;
	background: rgba(0,0,0,0.6);
	padding: 35px;
}
.newsbox-right a{
  color: #fff
}
.newsbox-rightc strong{
  color: #fff;
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
   text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newsbox-rightc span{
  color: #ccc;
   text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
}
.newsbox-right a:hover strong{
    color: #0bd6da
}
.newsbox-head1{
	height: 90px
}
.newsbox-head1 ul{
  display: inline-block;
}
.newsbox-head1 ul li{
  list-style-type: none;
  margin-right: 80px;
  font-weight: bold;
  font-size: 30px;
  padding-bottom: 14px;
  display: inline-block;
  cursor: pointer;
}
.newsbox-head1 ul li:hover,.newsbox-head1 ul li.on{
  border-bottom: 4px solid #029b9e;
  color: #029b9e;
}
.newsbox-head1 .more{
  float: right;
  width: 130px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #000;
  border-radius: 120px;
  border:1px solid #999999;
}
.newsbox-head1 .more img{
  margin-left: 5px;
  width: 13px;
}
.newsbox-head1 .more:hover{
  border:1px solid #029b9e;

}
.newsbox-conlist4{
	display: none;
}
.newsbox-conlist4 ul li{
	width: 750px;
	display: inline-block;
	margin-bottom: 17px;
	float: left;
	height: 57px;	

}
.newsbox-conlist4 ul li:nth-child(1n){
  padding-right: 50px
}
.newsbox-conlist4 ul li a{
	color: #000;
	font-size: 18px;
	display: block;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	width: 650px;
}
.newsbox-conlist4 ul li a:hover{
  color: #029b9e
}
.newsbox-conlist4 ul li span{
	display: block;
	font-size: 13px;
	color: #888888;
	padding-top: 10px;
	padding-bottom: 10px;  
}

1111


/*11111*/

.newsbox .main{
	position: relative;
	display: block;
/*	width: 1560px;*/
	width:1560px;
	margin-right: auto;
	margin-left: auto;
}
.lineimg{
	margin-top: 40px;
	width: 1560px;
}



.staff-con5 .main{
  position: relative;
  height: 252px;
}
.staf-con5c1{
  width: 369px;
  height: 252px;
  float: left;
   background: url(../2024img/stb-bg6_23.jpg);
   background-size: 100% 100%;
   padding-top: 90px;
}
.staf-con5c1 img{
  width: 67px;
  display: inline-block;
}
.staf-con5c1 span{
  display: inline-block;
  width: 210px;
  margin-left: 12px;
  background: url(../2024img/rightmore.png) no-repeat right center;
  background-size: 48px;
  font-size: 24px;
  color: #fff;
  padding-right: 62px
}
.staf-con5c2{
  width: 469px;
  height: 252px;
  float: left;
   background: #097975;
   background-size: 100% 100%;
   padding-top: 90px;
   text-align: center;
}
.staf-con5c2 img{
  width: 67px;
  display: inline-block;
  margin-bottom: -22px
}
.staf-con5c2 span{
  display: inline-block;
  width: 210px;
  margin-left: 12px;
  background: url(../2024img/rightmore.png) no-repeat right center;
  background-size: 48px;
  font-size: 24px;
  color: #fff;
  padding-right: 62px
}
.staf-con5c3{
  width: 722px;
  height: 860px;
  position: absolute;
  bottom: 0;
  left: 835px
}
.staf-con5c3 img{
  width: 722px;
  height: 860px;
}

/*新闻二区over*/




.ks-conbg1{
	background-size: 100% 100%;
	padding: 90px 0;
	margin-top: -90px;
	background-image: url(../2024img/de-img5_02.jpg);
}
.ks-conbg1tit{
  text-align: center;
  font-size: 36px;
  color: #009994
}
.ks-conbg1bd{
	margin-top: 60px;
	position: relative;
	left: 200px;
}
.ks-conbg1c{
	position: absolute;
	right: 380px;
	top: 80px;
	width: 620px;
	font-size: 16px;
	color: #454545
}
.ks-conbg1ctit{
  background:url(../2024img/ks-img2_03.jpg);
  line-height: 100px;
  color: #fff;
  font-size: 24px;
  padding-left: 65px;
}
.ks-conbg1cbd{
  padding: 50px 60px;
  background: #fff;
  line-height: 30px
}

.ks-conbg1c .sta-more{
  width: 100%;
  display: block;
  border-top: 1px solid #dddddd;
  padding: 55px 0 55px 60px;
  background: #fff;
  margin-top: 0
}
.ks-conbg2{
  padding: 100px 0
}
.ks-conbg2tit{
  color: #666666;
  font-size: 30px;
  margin-bottom: 35px;
}
.ks-conbg2tit a{
  float: right;
  color: #666;
  font-size: 15px;
}
.ks-bd {
    /* display: inline-block; */
}
.mySwiper7{
  width: 100%;
  height: 590px;
    overflow: hidden;
    position: relative;
}
.ks-bd a {
    display: block;
    color: #454545;
}
.ks-bd .intro-img {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ks-bd .intro-img img {
    transition: ease .5s;
}
.ks-bd .intro-img img {
    width: 100%;
    height: 360px;
}


.ks-bd:hover .intro-img img{
 transform: scale(1.04,1.04);
}
.ks-bd:hover .intro-txt1{
 display: block;
}
.ks-bd:hover a{
  background: #009994;
  color: #fff
}
.ks-bd:hover span{
  color: #fff
}
.ks-bd:hover span:before{
  background:#fff;
}
.mySwiper7 .swiper-button-prev{
   left: 45%!important;
    bottom: 0!important;
    top: inherit!important;
  width: 45px!important;
    height: 45px!important;
    background: url(../2024img/left.jpg)!important;
    border-radius: 120px!important;
    background-size: 100%!important;
    border:1px solid #999;
}
.mySwiper7 .swiper-button-next{
   right: 45%!important;
    bottom: 0!important;
    top: inherit!important;
  width: 45px!important;
    height: 45px!important;
    background: url(../2024img/right.jpg)!important;
    border-radius: 120px!important;
    background-size: 100%!important;
    border:1px solid #999;
}
.mySwiper7 .swiper-button-prev:hover {
    background: url(../2024img/lefton.jpg)!important;
}
.mySwiper7 .swiper-button-next:hover {
    background: url(../2024img/righton.jpg)!important;
}

.ks-conbg3{
  background: url(../2024img/ks-bg_02.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 230px 0 140px 0;
  height: 1074px;
  margin-top: -125px;
}
.ks-conbg3left{
  width: 914px;
  height: 705px;
  background: #fff;
  float: left;

}
.ks-conbg3left1{
  width: 263px;
  background: url(../2024img/ks-img3_03.jpg);
  float: left;
  padding-top: 85px;
  height: 100%
}
.ks-conbg3left2{
  width: 550px;
  float: right;
  color: #333;
  margin: 60px 50px 60px 0;
  font-size: 16px;
  color: #454545;
  line-height: 30px;
  padding-right: 30px;
  overflow: auto;
  -webkit-overflow-scrolling:touch;
  height: 580px;
  display: none;
}

.ks-conbg3left2::-webkit-scrollbar{
  width:6px;
  height: 6px;
}
.ks-conbg3left2::-webkit-scrollbar-thumb{
  background-color: #009792;
  border-radius: 6px
}
.ks-conbg3left2::-webkit-scrollbar-track{
   background-color: #ccc;
  border-radius: 6px
}
.ks-conbg3left1c{
  width: 180px;
  float: right;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 50px;
  opacity: .5;
  cursor: pointer;
}
.ks-conbg3left1c strong{
  display: block;
  font-size: 35px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.ks-conbg3left1c strong:before{
  content: "";
  position: absolute;
  left:-8px;
  bottom: -8px;
  width: 22px;
  height: 16px;
  background: url(../2024img/ks-img1.png);
}
.ks-conbg3left1c  span{
  display: block;
  padding-left: 30px;
}
.ks-conbg3left1c.on{
  opacity: 1
}
.ks-conbg3left2 strong{
  display: block;
  color: #009994;
  font-size: 18px;
  margin-bottom: 10px;
}
.ks-conbg3right{
  float: right;
  width: 262px;
}
.ks-conbg3right img{
 width: 100%;
 margin-bottom: 12px
}



/*专家介绍*/

.de-con{ background: url(../2024img/de-img2_03.jpg) no-repeat right top; height: 100%; margin-bottom:300px; display: block; margin-right: auto; margin-left: auto; }
.de-con1{ background: url(../2024img/de-bg.png); background-size: 100% 100%; margin-top: -90px; display: block; padding-top: 100px; padding-right: 0; padding-bottom: 100px; padding-left: 0; height: 100%; margin-right: auto; margin-left: auto; }
.de-con1right2 .dc-ArticleExtend p{ text-indent: 2em; font-size: 16px!important; line-height: 35px!important; white-space: normal; display: block; margin-right: auto; margin-left: auto; word-wrap:break-word;}
.de-bgimg{
	position: absolute;
	left: -160px;
	bottom: 0px;
	z-index: 0
}


.de-con1left{
  width: 33%;
  display: inline-block;
 position: relative;
 background: #009994;
 min-height: 440px;

}
.de-con1left .de-con1leftimg{
width:88%;
position: relative;
z-index: 1;
float: right;
}
.de-con1right{
width: 61%;
float: right;;
font-size: 18px;
color: #454545
}
.de-con1right1{
  padding: 25px 0 55px 75px;
  position: relative;
  border-bottom: 1px solid  #009994;
  line-height: 40px;
}
.de-con1right1:before{
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #009994;
  border-radius: 120px;
}
.de-con1right1txt{
  color: #009994;
  font-size: 30px;
}
.de-con1right1txt span{
  display: inline-block;
  padding:0 10px;
  background: #e5f5f4;
  border-radius: 5px;
  font-size: 16px;
  margin-left: 15px;
}
.lookmore{
  position: absolute;
  right: 0;
  top: 20px;
  color: #666666;
  font-size: 15px;
}
.lookmore img{
  margin: 0 10px -5px 0
}
.lookmore:hover{
  color: #009994;
}




.de-con1right2{
	color: #454545;
	font-size: 15px;
	line-height: 30px;
	max-height: 220px;
	overflow: visible;
	margin-top: 35px;
	-webkit-overflow-scrolling: touch;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 75px;
	text-align: justify;
}
.de-con1right2::-webkit-scrollbar{
  width:6px;
  height: 6px;
}
.de-con1right2::-webkit-scrollbar-thumb{
  background-color: #009994;
  border-radius: 6px
}
.de-con1right2::-webkit-scrollbar-track{
   background-color: #dcdcdc;
  border-radius: 6px
}
.de-con1right2 span{
 color: #009994;
  font-size:24px; 
  display: block;
  margin-bottom: 10px;
}
.de-con2{
  background: url(../2024img/de-img5_02.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 100px 0
}
.de-con2bd{
  padding: 75px 70px 0 75px;
  color: #454545;
  font-size: 15px;
  background:#fff url(../2024img/de-img7_03.jpg) no-repeat bottom center;
  box-shadow: 0px 0px 24px 0px rgba(2, 2, 2, 0.22);
}
.de-con2bdline{
  border-left:1px solid #009994;
  padding-left: 58px;
  padding-bottom: 180px;
}
.de-con2bd1{
  color:#009994;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
}
.de-con2bd1:before{
 content: "";
 position: absolute;
 left: -58px;
 top: 18px;
 width: 32px;
 border-bottom: 1px solid #009994;
}
.de-con2bd1:after{
 content: "";
 position: absolute;
 left: -26px;
 top: 15px;
 width: 8px;
 height:8px;
 border-radius: 120px;
 background:#009994;
}
.de-con2bd2{
  margin-bottom:60px;
  line-height: 30px; 
}
.de-con3{
  padding: 100px 0 140px 0;
  background: url(../2024img/guibg_12.jpg) no-repeat bottom center;
}
.de-con3tit{
  color: #009994;
  font-size: 30px;
  margin-bottom: 35px;
}
.de-con3c table{
  border-collapse: collapse;
 border:1px solid #ebebeb;
 width: 100%;
}
.de-con3c table thead{
  background: url(../2024img/gui-bg2_06.jpg);
  color: #fff;
}
.de-con3c table thead th{
  padding: 15px 0;
  font-weight: normal;
}
.de-con3c table td{
   border:1px solid #ebebeb;
   line-height: 60px;
   color: #454545;
   font-size: 14px;
   text-align: center;
}
.de-con3c table img{
  margin: 0 10px -2px 0
}


/*特色科室*/

.tsbox{
	height: 738px;
	background: url(../2024img/bg8.jpg) no-repeat top center;
	padding-top: 57px;
}

.tit-top{
  height: 85px;
  
}
.tit-top strong{
  font-size: 36px;
}
.tit-top .more{
  float: right;
  width: 130px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #000;
  border-radius: 120px;
  border:1px solid #999999;
}
.tit-top .more img{
  margin-left: 5px;
  width: 13px;
}
.tit-top .more:hover{
  border:1px solid #029b9e;
  /*color: #029b9e*/
}
.tsbox-con ul li{
 width: 31%;
 list-style-type: none;
 display: inline-block;
 background: #fff;
 text-align: center; 
 -webkit-transition: all 4s cubic-bezier(.08, .82, .17, 1);
    transition: all 4s cubic-bezier(.08, .82, .17, 1);
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
}

.tsbox-con ul li a{
  color: #000;
  font-size: 24px;
  display: block;
  height: 100%;
  padding-bottom: 30px;
}
.tsbox-con ul li a:hover{
  background: #029b9e;
  color: #fff
}

.tsbox-con ul li:nth-child(2){
  margin: 0 3%
}
.tsbox-con ul li span{
  display: block;
  margin:40px 0 30px 0;
}
.tsbox-con.animate ul li{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;

}
.tsbox-con.animate ul li:nth-child(1){
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.tsbox-con.animate ul li:nth-child(2){
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.tsbox-con.animate ul li:nth-child(3){
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.ts-more{
  background: url(../2024img/svg/home_tsyl_icon_more.svg);
  width: 95px;
  height: 54px;
  background-size: 100% 100%;
  display: inline-block;
  margin: 0 auto
}
.tsbox-con ul li a:hover .ts-more{
	background-image: url(../2024img/svg/home_tsyl_icon_more_on.svg);
}
.tsbox-conimg,.ztbox-conimg{
  width: 100%;
  display: block;
  height: 294px;
  overflow: hidden;
}
.ztbox-conimg{
  height: 160px;
}
.tsbox-conimg img,.ztbox-conimg img{
  transition: ease .5s;
  width: 100%
}
.tsbox-conimg img:hover,.ztbox-conimg img:hover{ transform: scale(1.04,1.04);}
.ztbox{
  height: 598px;
  background: url(../2024img/bg9.jpg) no-repeat top center;
  padding-top: 100px;
}
.ztbox .main{ width:1560px; }
.ztbox .tit-top{
  color: #000
}
.ztbox-con ul li{
	width: 23%;
	list-style-type: none;
	display: inline-block;
	background: #fff;
	text-align: center;
	border-bottom:1px solid #ccc;
	-webkit-transition: all 4s cubic-bezier(.08, .82, .17, 1);
	transition: all 4s cubic-bezier(.08, .82, .17, 1);
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
}
.ztbox-con ul .li1.last {
	margin-left: 30px;
}
.ztbox-conimg img {
	height: 200px;
	width: 379px;
}
.ztbox-conimg {
	height: 200px;
}



.ztbox-con ul li a{
  color: #000;
  font-size: 16px;
  display: block;
}
.ztbox-con ul li:hover{
  border-bottom:2px solid #029b9e
}
.ztbox-con.animate ul li{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;

}
.ztbox-con.animate ul li:nth-child(1){
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.ztbox-con.animate ul li:nth-child(2){
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.ztbox-con.animate ul li:nth-child(3){
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.ztbox-con ul li:nth-child(2){
  margin: 0 2%
}
.ztbox-con ul li span{
  display: block;
  line-height: 58px;
}

/*就诊指南 内页*/
.guide-con1{
  background:url(../2024img/guide-img2_06.jpg);
  background-size: 100% 100%
}
.guide-con1 .main{
  position: relative;
}
.guide-con1head{
  border-bottom: 1px solid #c0dede;
  line-height: 80px;
  color: #666666;
  font-size: 16px;
  margin-bottom: 90px
}
.guide-con1 .mySwiper5{
	width:1200px;
	height: 290px;
	overflow: hidden;
	position: relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.guide-con1box{
 width: 190px;
 height: 190px;
 border-radius: 120px;
 background: url(../2024img/gui-img.jpg);
 background-size: 100% 100%;
 text-align: center;
 color: #fff;
 font-size: 24px;
 padding-top: 30px;
 position: relative;
 cursor: default;
}
.guide-con1box img{
  width: 70px;
   height: 64px;
   display: inline-block;
   margin: 0 auto
}
.guide-con1boxtxt{
  margin-top: 6px
}
.guide-con1box.on{
  background: url(../2024img/gui-on.jpg);
 background-size: 100% 100%;
}
.guide-con1box.on:before{
  content: '';
  position: absolute;
  left:0;
  bottom: -99px;
  width: 190px;
  height: 14px;
  background: url(../2024img/gui-online.png);
 background-size: 100% 100%;
}
.guide-con2{
  background: url(../2024img/guibg_12.jpg) no-repeat bottom center;
  padding:95px 0  130px 0
}
.guide-con2box4 ul li{
  padding: 40px 20px 40px 15px;
  border-bottom:  4px solid #009994;
  width: 48.5%;
  display: inline-block;
      box-shadow: 0px 0px 24px 0px rgba(2, 2, 2, 0.22);
      margin-bottom: 20px;

}
.guide-con2box4 ul li:nth-child(2n){
  margin-left: 2%
}
.guide-con2box4 ul li:hover{
  background:#13b8b2 url(../2024img/guide-img3_09.jpg ) no-repeat right;
  background-size: auto 100%;
}
.guide-con2box4 ul li a{
  display: inline-block;
  font-size: 16px;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 60px;
}
.guide-con2box4 ul li:hover a{
  color: #fff
}
.guide-con2box4 ul li:hover .time{
  color: #fff
}
.guide-con2box4 .time {
    color: #009994;
    font-size: 12px;
    text-align: center;
    float: left;
    width: 94px;
}
.guide-con2box4 .time strong {
    font-weight: normal;
    font-size: 36px;
}
 .page{
  margin-top: 40px;
  color: #666;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
   margin-bottom: 40px;
}
 .page a{
  border: 1px solid #ebebeb;
    color: #666;
    display: inline-block;
    min-width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    padding: 0 10px;
}
.page select{
      border: 1px solid #ebebeb;
    padding: 0 13px;
    height: 40px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 5px;
}
 .page a:nth-child(1),.page a:nth-child(8),.page a:nth-child(10){
}
.page a.current,.page a:hover{
  background: #0aa3a6;
  color: #fff
}

.guide-con1 .swiper-button-prev{
   left: 0%!important;
    bottom: 62%!important;
    top: inherit!important;
  width: 45px!important;
    height: 45px!important;
    background: url(../2024img/left.jpg)!important;
    border-radius: 120px!important;
    background-size: 100%!important;
    border:1px solid #999;
    outline: none;
}
.guide-con1 .swiper-button-next{
   right: 0%!important;
    bottom:62%!important;
    top: inherit!important;
  width: 45px!important;
    height: 45px!important;
    background: url(../2024img/right.jpg)!important;
    border-radius: 120px!important;
    background-size: 100%!important;
    border:1px solid #999;
     outline: none;
}
.guide-con1 .swiper-button-prev:hover {
    background: url(../2024img/lefton.jpg)!important;
}
.guide-con1 .swiper-button-next:hover {
    background: url(../2024img/righton.jpg)!important;
}

.guide-con2box3head{
  text-align: center;
  margin-bottom: 50px;
}
.guide-con2box3head ul li{
  display: inline-block;
  margin:0 20px;
  color: #333;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 14px;
  cursor: pointer;
}
.guide-con2box3head ul li.on,.guide-con2box3head ul li:hover{
  color: #029b9e;
  border-bottom: 6px solid #029b9e
}
.guide-con2box3list{
  display: none;
}
.guide-con2box3list img{
  width: 100%
}
.guide-list{
  display: none;
}
.guide-txtde{
  font-size: 16px;
  color: #333;
  line-height: 30px;
}
.guide-txtde strong{
  font-size: 20px;
  display: block;
  margin-top: 40px;
}
.guide-con1head img{
  margin:0 5px -2px 0;
}



.guide-con2box1txt{
  font-size: 30px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.guide-con2box1c{
  margin-top: 45px;
}
.guide-con2box1c ul li{
  width: 33%;
  display: inline-block;
  height: 240px;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding-top: 65px;
  cursor: pointer;
}
.guide-con2box1c ul li:nth-child(1){
  background: url(../2024img/gui-bg1_06.jpg);
}
.guide-con2box1c ul li:nth-child(2){
  background: url(../2024img/gui-bg2_06.jpg);
}
.guide-con2box1c ul li:nth-child(3){
  background: url(../2024img/gui-bg3_06.jpg);
}
.guide-con2box1c ul li>img{
  width: 85px;
}
.guide-con2box1ctit{
 display: block;
 margin-top: 15px;
}
.guide-erweima{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
}
.guide-con2box1c ul li:hover .guide-erweima{
  display: block
}
.guide-erweima img{
  width: 160px;
  margin-top: 25px;
}
.guide-erweima .guide-con2box1ctit{
  margin-top:5px
}
.guide-map{
  position: relative;
  height: 600px;
  margin-top: 80px;
}
.guide-mapr{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 436px;
  height: 660px;
  background: url(../2024img/map-bg.jpg);
  padding: 58px 0px 0 50px;
  color: #fff
}
.guide-maprtit{
  margin-bottom:15px;
}
.guide-maprtit ul li{
  cursor: pointer;
  line-height: 32px;
  border-bottom: 3px solid transparent;
  font-size: 22px;
  display: inline-block;
  margin-right: 35px;
  margin-bottom: 15px;
}
.guide-maprtit ul li:hover,.guide-maprtit ul li.on{
  border-bottom: 3px solid #fff;
}
.guide-maprtb{
  margin-bottom: 30px;
}
.guide-maprtb .list{
  line-height: 35px;
  display: none;
  padding-right: 20px;
}
.guide-maprtbox1{
  margin-top: 30px;
  color: #fff;
  font-size: 22px;
  border-bottom: 1px solid #53a4a0;
  padding-bottom: 23px;
  margin-right: 50px;
}
.guide-maprtbox2{
   border-bottom: 1px solid #53a4a0;
   line-height: 58px;
   color: #fff;
   font-size: 14px;
   margin-right: 50px;
}
.guide-maprtbox2 img{
  margin: 0 10px -5px 0
}
.guide-maprtbox2 a{
  color: #fff;
  display: block;
  cursor: pointer;
}
.guide-maprtbox2 span{
    float: right;
    font-size: 20px;
    color: #fff;
}
.gui-map{
  width: 1200px;
  height: 600px;
    position: absolute;
    left: -764px;
    bottom: 0;
    z-index: -1;
}
.gui-map img{
  width: 100%
}







/*foot */
.foot2{
	height: 305px;
	padding-top: 50px;
	background-image: url(../2024img/foot-bg_09.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.foot-left{
  width: 48%;
  display: inline-block;
}
.foot-left a{
  color: #333;
  font-size: 22px;
  margin: 0 0 18px 0;
  display: inline-block;
  width: 155px;
}
.foot-left a:hover{
  color: #009994
}
.foot-right{
  float: right;
  width: 52%

}
.foot-right img{
  display: inline-block;
  margin-left: 45px;
}
.fbottom2{
  background: #0c9397;
}
.bottom1{
  border-bottom: 1px solid #3da9ac;
  font-size: 16px;
  height: 70px;
  color: #fff;
  line-height: 70px;
}
.bottom1 a{
  color: #fff;
  display: inline-block;
}

.bottom1 span{
  color: #66bbbd;
  margin:0 30px;
  display: inline-block;
 
}
.bottom2{
  padding: 40px 0 0 0;
  color: #fff;
  height: 320px
}
.bottom2left{
	display: inline-block;
	float: left;
	width: 290px;
	padding-top: 30px;
}
.bottom2c{
  width: 490px;
  display: inline-block;
  margin: 10px 0 0 55px;
  font-size: 16px;
  line-height: 35px
}
.bottom2r{
  width: 415px;
  float: right;
  font-size: 16px;
  line-height: 35px;
  margin-top: 10px
}

.bottom2r a{color:#Fff;}
.bottom2r img{
  margin: 0 5px -5px 0
}
.m-show{
  display: none;
}
.list-icon{
    height: 20px;
    margin: 0 10px -4px 0;
}

.newsphone-show{
  display: none;
}

/*医院简介*/
.over-con1{
  background: #fff;
  padding: 80px 0;
  position: relative;
}
.over-con1 .main {
	width: 1280px;
	padding-right: 60px;
	padding-left: 60px;
	position: relative;
	display: block;
	clear: both;
	overflow: hidden;
}

.over-con2 .main {
	width: 1480px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	z-index: 1;
}

.over-logo{
  display: inline-block;
  position: relative;
  z-index: 1;
    border-radius: 120px;
}
.over-con1r{
  width: 840px;
  float: right;
  margin-top: 40px;
}
.over-con1r ul li{
  width: 15%;
  display: inline-block;
  color: #333;
  font-size: 18px;
  padding: 36px 0 0 28px;
  border-left:4px solid #009994;
  margin-left: 8px;
  height: 200px;
  position: relative; 
  box-shadow: 0px 0px 24px 0px rgba(2, 2, 2, 0.22);
  cursor: pointer;
}
.over-con1r ul li span{
   display: block;
   writing-mode: tb-rl;
   position: relative;
   z-index: 1
}
.over-con1r ul li:hover:before,.over-con1r ul li.on:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 240px;
  left: -4px;
  top: -15px;
  background: url(../2024img/over-img3_06.jpg);
  background-size: 100% 100%;
  border-left:4px solid #009994;
}
.over-con1r ul li:hover,.over-con1r ul li.on{
  color: #fff;
  padding-top: 10px;
}
.over-img{
  position: absolute;
  left: -270px;
  bottom: -500px;

}
.over-con2{
	background: url(../2024img/over-img3_02.jpg) no-repeat center top;
	background-size: 100% 100%;
	padding-top: 160px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 560px;
}
.over-con2-1{
  border-bottom: 1px solid #009994;
  position: relative;
}
.over-con2-1:before{
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #009994;
  bottom: -5px;
  left: 0;
  border-radius: 120px;
}
.over-con2-1:after{
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #009994;
  bottom: -5px;
  right: 0;
  border-radius: 120px;
}
.over-con2-1left{
  width: 210px;
  float: left;;
}
.over-con2-1right{
	width: 1080px;
	display: inline-block;
	border-left: 1px solid #009994;
	position: relative;
	color: #333;
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 50px;
	padding-left: 60px;
	margin-bottom: 50px;
}
.over-con2-1right2{
	width: 1080px;
	display: inline-block;
	position: relative;
	color: #333;
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 50px;
	padding-right: 60px;
	float: right;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
}

.over-con2-1right p{
	text-indent:2em;
	text-align: justify;
}
.over-con2-1right:before{
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: #009994;
  top: -4px;
  left: -5px;
  border-radius: 120px;
}
.over-con2-2{
	color: #333;
	font-size: 16px;
	line-height: 30px;
	padding-top: 50px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 200;
}
.over-con2-2right {
	padding-left: 260px;

	display: block;
	float: left;
}
.over-con2-2right .over-time {
	background-image: url(../2024img/time.png);
	background-repeat: no-repeat;
	background-position: left top;
	width: 150px;
	z-index: 1;
	left: 0px;
	float: left;
	height: 3600px;
	position: relative;
	top: 0px;
}



.over-con2-2 p{text-indent:2em;}
.over-time{
	position: absolute;
	top: 1740px;
	left: 340px;
}

.over-con3{
	padding: 120px 0;
	min-height: 300px;
	background-color: #e6f2f2;
	background-image: url(../2024img/over-img4_13.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.over-con3bd{
  background: #fff;
  padding: 88px 80px;
  color: #333;
  font-size: 18px;
  position: relative;
  line-height: 50px
}

.over-con3bd strong{
  display: inline-block;
  font-size: 30px;
  color: #009994;
  text-align: center;
  margin: 48px 0 30px 0;
}

.over-con3bd img{
  max-width: 100%;
  margin:0 auto;
  display: block;
}
.over-list{
  display: none;
}
.over-con4 .over-con3bd{
  padding-top: 40px;
}
.guide-con1head a{
  color: #333
}
.trea-con{
	background-image: url(../2024img/trea-img2_02.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.trea-conbd{
	padding: 80px 0 60px 0;
	background-image: url(../2024img/guibg_12.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}

/*领导list*/
.ld-list{
	width: 48%;
	display: inline-block;
	padding: 40px 40px 40px 90px;
	background-size: 45px 100%;
	min-height: 550px;
	vertical-align: top;
	min-height: 606px;
	background-color: #fff;
	background-image: url(../2024img/ld_03.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.ld-list:last-child{
  margin-left: 3%
}
.ld-list ul li{
  display: block;
   border-bottom: 1px solid #dddddd;
   padding: 22px 0;
   color:#454545;
  font-size: 16px;
}
.ld-list ul li span{
 display: inline-block;
 width: 50%
}
.ld-list ul li a{
  color: #333
}
.ld-list ul li a:hover{
  color: #009994;
}
.ld-list ul li span.yz{
  color: #009994
}
.ld-list:last-child ul li span:nth-child(1){
  /* width: 100px; */
  /* border-right: 1px solid #999; */
  /* margin-right: 30px; */
}
.culture-con{
  background: #fff;
  padding: 30px 40px 30px 50px;
  margin-top: 30px;
}  
.culture-con strong{
  display: block;
    font-size: 30px;
    color: #009994;
    margin-bottom: 30px
} 
.culture-con ul li{
  width: 49%;
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin-bottom:20px;
  position: relative;
  padding-left: 20px
}

.culture-con ul li a{
  font-size: 18px;
  color: #333;
  display: block;
  margin-bottom: 10px;
  
  text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-right: 30px
}
.culture-con ul li:before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
      left:2px;
    top: 6px;
  border-radius: 120px;
  border:2px solid #009994;
}
.culture-con ul li a:hover{
  color: #009994;
}
.newsbox-conlist.news-left {
	width: 900px;
}
.black10 {
	line-height: 10px;
	height: 10px;
	width: 100%;
}
.black20 {
	height: 20px;
	width: 100%;
}
.black30 {
	line-height: 30px;
	height: 30px;
	width: 100%;
}
.black40 {
	line-height: 40px;
	height: 40px;
	width: 100%;
}
/*主要领导样式*/
.denew-con{
  background: url(../2024img/ovde-img2_03.jpg) no-repeat;
  background-size: 100% 100%;
  box-shadow: 0px 0px 20px 0px rgb(2 2 2 / 22%);
  width: 100%;
}
.denew-con1{
  width: 40%;
  background: url(../2024img/ovde-bg1_13.jpg) no-repeat center;
  background-size: auto 100%;
  min-height: 600px;
  margin-top: -75px;
  padding: 75px 0 50px 0 ;
  float: left;
}
.denew-con1a{
  padding: 0 0 100px 130px;
  color: #fff;
  font-size: 16px;
}
.denew-con1a strong{
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
}
.denew-con1b{
  width:90%;
  border-top: 1px solid #fff;
  position: relative;
}
.denew-con1b:before{
  content: '';
  position: absolute;
  background-size: 100% 100%;
  width:25px;
  height: 10px;
  right: -1px;
  top: -5px;
}
.denew-con1bc{
  margin-left: 130px;
  border-left: 1px solid #fff;
  padding: 40px 0 0 35px;
}
.denew-con1bc span{
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}
.denew-con1bc span.on:before{
  position: absolute;
  content: '';
  width:  20px;
  border-top: 1px solid #fff;
  left: -35px;
  top: 10px;
}
.denew-con1bc span.on:after{
  position: absolute;
  content: '';
  width:  6px;
  height: 6px;
  background: #fff;
  left:-15px;
  top: 8px;
  border-radius: 120px;
}
.newdetail-con{
  background: url(../2024img/ovde-bg_02.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 30px 0 120px 0;
}
.newdetail-con .guide-con1head{
 height: 140px;
 border:0;
 line-height: 140px;
 margin-bottom: 150px
}
.denew-con2{
  width: 52%;
  float: right;
  height: 600px;
  margin: 90px 50px 90px 0;
  padding: 0 40px 0 0;
  font-size: 18px;
  line-height: 30px;
  overflow: auto;
  -webkit-overflow-scrolling:touch;
}
.denew-con2::-webkit-scrollbar{
  width:6px;
  height: 6px;
}
.denew-con2::-webkit-scrollbar-thumb{
  background-color: #009792;
  border-radius: 6px
}
.denew-con2::-webkit-scrollbar-track{
   background-colo