@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

ul,
li {
  list-style: none;
}

i,
em {
  font-style: normal;
}

/* 防止拖拽文本域 */
textarea {
  resize: none;
}

body {
  font-family: Helvetica Neue, Tahoma, Arial, PingFangSC-Regular, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  text-decoration: none;
}

button,
a {
  cursor: pointer;
}

button,
input {
  font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
}

.d-flex {
  display: flex;
}

.jc-sb {
  justify-content: space-between;
}

.jc-se {
  justify-content: space-evenly;
}

.jc-c {
  justify-content: center;
}

.ai-c {
  align-items: center;
}

.fd-c {
  flex-direction: column;
}

.p-c {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.i-fill {
  width: 100%;
  height: 100%;
}

.i-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.i-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.w-h {
  position: relative;
  width: 100%;
}

.w-h .box-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.shadow-b {
  transition: all .5s;
}

.shadow-b:hover {
  box-shadow: 0px 4px 12px rgba(0, 137, 156, 0.16);
  transform: translateY(-2%);
}

.line-1 {
  display: -webkit-flex;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  word-break: break-word !important;
  word-break: break-all;
  line-break: anywhere;
  -webkit-line-clamp: 1;
}

.line-2 {
  line-height: var(--line-height);
  max-height: calc(2 * var(--line-height));
  display: -webkit-flex;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  word-break: break-word !important;
  word-break: break-all;
  line-break: anywhere;
  -webkit-line-clamp: 2;
}

.line-3 {
  line-height: var(--line-height);
  max-height: calc(3 * var(--line-height));
  display: -webkit-flex;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  word-break: break-word !important;
  word-break: break-all;
  line-break: anywhere;
  -webkit-line-clamp: 3;
}

.line-10 {
  line-height: var(--line-height);
  max-height: calc(3 * var(--line-height));
  display: -webkit-flex;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  word-break: break-word !important;
  word-break: break-all;
  line-break: anywhere;
  -webkit-line-clamp: 12;
}

.row {
  display: flex;
  flex-wrap: wrap;
  --padd: 0;
  margin: 0 calc(-0.5*var(--padd));
  width: calc(100%+var(--padd));
}

.col {
  flex: 1 0 0%;
  padding: 0 calc(0.5*var(--padd));
}

.col-12 {
  width: 100%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-6 {
  width: 50%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-4 {
  width: 33.3333%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-3 {
  width: 25%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-2 {
  width: 16.6666%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-1 {
  width: 8.3333%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-1-5 {
  width: 20%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-1-9 {
  width: 20%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.col-1-10 {
  width: 10%;
  flex: none;
  padding: 0 calc(0.5*var(--padd));
}

.bsBox {
  box-sizing: content-box !important;
}

html {
  font-size: 62.5%;
}

a:hover {
  color: #00899c;
}

.bshareDiv {
  display: none !important;
}

option::-ms-expand {
  display: none;
}

option {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  appearance: none;
  outline: none;
  border: #eee 1px solid;
}

.layui-form-select .layui-edge {
  display: none;
}

.layui-form input[type=checkbox],
.layui-form input[type=radio] {
  display: unset;
}

.layui-form-radio {
  display: none;
}

.layui-input-block {
  margin-left: 0;
}

.layui-form-select dl dd.layui-this {
  background: #00899c;
}

.layui-input-inline {
  display: block;
}

/* --背景色字体颜色--*/
option:hover {
  color: #ffffff;
  background-color: #ffffff;
  outline: none;
  border: #eee 1px solid;
}

.max-w {
  width: 100%;
  max-width: 100%;
  min-width: 1200px;
  margin: 0 auto;
}

.w {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  height: 124px;
  background: url(../images/right.png) no-repeat right;
  background-size: auto 100%;
  border-bottom: 1px solid #E4E4E4;
}

.header .w {
  height: 100%;
}

.header .logo {
  height: 7.2rem;
}

.header .logo img {
  height: 100%;
  width: auto;
}

.header .header-tel {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #666666;
  margin-bottom: 10px;
}

.header .search-box {
  width: 32.8rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.39);
  border: 1px solid #02A3AD;
  opacity: 1;
  border-radius: 4px;
}

.header .search-box .search-text {
  width: 28rem;
  padding-left: 1.6rem;
  line-height: 4rem;
  color: #333;
  background: none;
}

.header .search-box .search-text::placeholder {
  color: #666;
}

.header .search-box .search-btn {
  width: 4.8rem;
  height: 100%;
  background: url(../images/ss.png) no-repeat center;
  background-size: 1.8rem 1.8rem;
}

.nav {
  width: 100%;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

.nav ul li {
  position: relative;
}

.nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 3px;
  background: #00899c;
  opacity: 1;
  transition: all .3s;
}

.nav ul li:hover::before {
  width: 100%;
}

.nav ul li a {
  display: block;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 60px;
  color: #222222;
  opacity: 1;
}

.nav ul li a:hover {
  color: #00899c;
}

.nav ul li .sub {
  background-color: red;
  padding: 14px 0;
  display: none;
  width: 200px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  position: absolute;
  background: #00899c;
  line-height: 44px !important;
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}

.nav ul li .sub li {
  display: block;
}

.nav ul li .sub li::before {
  display: none;
}

.nav ul li .sub li a {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 44px !important;
}

.nav ul li .sub li a:hover {
  background: #fff;
  color: #00899c;
}

.nav ul li.active::before {
  width: 100%;
}

.nav ul li.active a {
  color: #00899c;
}

.footer {
  background: url(../images/bottom.png) no-repeat center;
  background-size: cover;
}

.footer .link {
  position: relative;
  height: 6.6rem;
}

.footer .link li {
  cursor: pointer;
}

.footer .link .w {
  height: 100%;
}

.footer .link .w .left {
  height: inherit;
}

.footer .link .w .left li {
  position: relative;
  width: 20rem;
  height: inherit;
  line-height: 6.6rem;
  display: inline-block;
  padding: 0 0 0 2.4rem;
  margin-right: 5rem;
  color: #fff;
  background: url(../images/jia.png) no-repeat left center;
  background-size: 1.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
}

.footer .link .w .left li:hover {
  border-bottom: #fff 3px solid;
}

.footer .link .w .right {
  height: inherit;
}

.footer .link .w .right ul {
  height: inherit;
}

.footer .link .w .right li {
  position: relative;
  margin-left: 1.6rem;
}

.footer .link .w .right li .son-ewm {
  position: absolute;
  top: 3rem;
  right: 0;
  transform: translate(50%, -50%) scale(0);
  transition: all .3s;
  border: #fff 1rem solid;
  border-radius: 1rem;
}

.footer .link .w .right li > img {
  width: 3rem;
  height: 3rem;
}

.footer .link .w .right li:hover .son-ewm {
  transform: translate(0%, 0%) scale(1);
}

.footer .link .link-box {
  position: absolute;
  display: none;
  left: 0;
  top: 6.6rem;
  width: 100%;
  line-height: 6.6rem;
  background: #e8eef0;
}

.footer .link .link-box a {
  font-size: 1.4rem;
  margin-right: 1.5rem;
  color: #333;
}

.footer .link .link-box a:hover {
  color: #00899c;
}

.footer .c {
  border-top: 1px solid #006B79;
  border-bottom: 1px solid #006B79;
  padding: 6.6rem 0 9.6rem;
  color: #fff;
}

.footer .c a {
  color: #fff;
}

.footer .c a:hover {
  color: #26BF8C;
}

.footer .c .left .foot-logo {
  width: 33.7rem;
  margin-bottom: 2.7rem;
}

.footer .c .left .foot-logo img {
  width: 100%;
  height: auto;
}

.footer .c .left .beian .left {
  width: 8.6rem;
}

.footer .c .left .beian .left img {
  width: 100;
  height: auto;
}

.footer .c .left .beian .right {
  margin-left: 1.7rem;
}

.footer .c .left .beian .right p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: #CCCCCC;
}

.footer .c .left .beian .right a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: #CCCCCC;
}

.footer .c .left .beian .right a.pol img {
  width: 1.9rem;
  height: 2.0rem;
  margin-left: 0.8rem;
}

.footer .c .left .beian .right a:hover {
  color: #26BF8C;
}

.footer .c .foot-dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.9rem;
}

.footer .c .foot-dl dd {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
}

.footer .c .foot-dl dd a.fm {
  margin-left: 0.8em;
  display: block;
  width: 1.4rem;
  height: 3rem;
  background: url(../images/jiahao.png) no-repeat center;
  background-size: 1.4rem;
}

.footer .c .foot-ewm .ewm-box:first-child {
  margin-right: 2.5rem;
}

.footer .c .foot-ewm .ewm-box img {
  width: 11.9rem;
  height: auto;
}

.footer .c .foot-ewm .ewm-box p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.9rem;
}

.footer .b {
  height: 6.6rem;
  line-height: 6.6rem;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #CCCCCC;
}

.footer .b a {
  color: #CCCCCC;
}

.footer .b a:hover {
  color: #26BF8C;
}

.footer .b .left {
  height: inherit;
}

.footer .b .left a {
  position: relative;
  display: inline-block;
  margin: 0 1.6rem;
  height: inherit;
  font-size: 1.4rem;
  font-weight: 400;
}

.footer .b .left a::after {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
  height: 1.5rem;
  border: 1px solid #4D8389;
}

.footer .b .left a:first-child {
  margin-left: 0;
}

.footer .b .left a:first-child::after {
  display: none;
}

.fiexd-r {
  position: fixed;
  z-index: 9999;
  top: 8.4rem;
  right: 2rem;
  width: 13.6rem;
  overflow: hidden;
  height: auto;
  transition: all .3s;
}

.fiexd-r .r-jyzn {
  background: url(../images/jyzn_.png) no-repeat top center;
  background-size: auto 4.7rem;
  height: 4.7rem;
  cursor: pointer;
}

.fiexd-r ul li {
  margin-top: 0.6rem;
}

.fiexd-r ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
}

.fiexd-r ul li a p {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #333333;
}

.fiexd-r ul li a:hover p {
  color: #00899c;
}

.fiexd-r ul li a:hover img {
  animation: flipInY 1.5s;
}

@media screen and (max-width: 1600px) {
  .fiexd-r {
    right: 0;
  }
  .w {
    width: calc(100% - 27.2rem) !important;
  }
  .fiexd-r {
    width: 11.6rem;
    right: 0;
  }
  .fiexd-r .r-jyzn {
    height: 4.7rem;
    background-size: auto 4.7rem;
  }
  .fiexd-r ul li a {
    width: 7rem;
    height: 7rem;
  }
  .fiexd-r ul li a p {
    margin-top: 0;
    font-size: 12px;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 56.746%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .logo {
    float: left;
  }
  .logo form {
    float: right;
  }
  .header .search-box .search-text {
    float: right;
  }
  .nav li {
    display: inline-block;
    margin: 0 1.5%;
  }
  .doctors .b .swiper-slide {
    width: 18% !important;
    margin: 0 1% !important;
  }
  .special .b .swiper-slide {
    width: 18% !important;
    margin: 0 1% !important;
  }
  .footer .link .w .left li {
    width: auto;
  }
  .main-box .xkzj .c .r {
    width: 90%;
  }
  .main-box .xkzj .c .r ul li {
    display: inline-block;
  }
  .main-box .nurse-fc .swiper-slide {
    width: 23% !important;
    margin: 0 1% !important;
  }
  .main-box .nurse-t .r {
    width: 50%;
  }
  .main-box .nurse-tz .swiper-slide {
    width: 31% !important;
    overflow: hidden;
    margin: 0 1% !important;
  }
  .map {
    background: url(../images/map.png) no-repeat center;
    background-size: 100%;
  }
  .main-box .h-about .pic {
    margin-left: 5%;
  }
  .main-box .h-history .b .swiper-slide {
    width: 25%;
  }
  .doctors .b .swiper-button-prev,
  .doctors .b .swiper-button-next {
    top: 6.9rem !important;
  }
  .main-box .pb12c .t .r .tt {
    display: block;
    height: 7.3rem;
  }
  .main-box .pb12c .t .r .tt .xmzw {
    float: left;
  }
  .main-box .pb12c .t .r .tt .yj {
    display: block;
    float: right;
    text-align: right;
  }
  .main-box .jjfw-list2 li a {
    transition: all 0s !important;
  }
  .main-box .nurse-t .r .top-list li a p {
    height: 44px;
  }
  .main-box .nurse-more-news.row .new-box .b .ul1 li a h6 {
    line-height: 3rem !important;
    margin-bottom: 0 !important;
  }
  .main-box .nurse-more-news.row .new-box .b .ul2 li {
    margin-top: 1.5rem !important;
  }
  .main-box .nurse-more-news.row .new-box .b .ul2 li a h6 {
    line-height: 3rem !important;
    margin-bottom: 0 !important;
  }
  .h-intro .num li {
    width: 25%;
  }
  .h-leaders li {
    padding: 0 1.6rem;
  }
  .h-honor li {
    padding-left: 3.1rem;
    padding-right: 3.1rem;
  }
  .teams li {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .dept-all-lis .row {
    margin: 0 -1.75rem;
  }
  .dept-all-lis li {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .ksys-lis {
    margin: 0 -2.8rem;
  }
  .ksys-lis li {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
  .page-box li {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body {
    font-family: "\5FAE\8F6F\96C5\9ED1" !important;
  }
  .nav-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5.2rem;
    line-height: 5.2rem;
    border-top: 1px solid rgba(225, 225, 225, 0.39);
  }
  .nav-2 > ul {
    justify-content: space-between;
  }
  .nav-2 > ul > li {
    flex: 1 0 auto !important;
    position: relative;
    text-align: center;
    height: 5.2rem;
  }
  .nav-2 > ul > li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 1.6rem;
    border: 1px solid #FFFFFF;
    opacity: 0.4;
  }
  .nav-2 > ul > li:first-child {
    padding-left: 0;
  }
  .nav-2 > ul > li:first-child::after {
    content: "";
    display: none;
  }
  .nav-2 > ul > li > a {
    position: relative;
    display: inline-block;
    position: relative;
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
  }
  .nav-2 > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border-bottom: 0.8rem solid #fff;
    border-right: 0.8rem solid transparent;
    border-left: 0.8rem solid transparent;
    transition: all .3s;
  }
  .nav-2 > ul > li > a:hover {
    font-weight: 600;
  }
  .nav-2 > ul > li > a:hover::after {
    transform: translate(-50%, 0);
  }
  .nav-2 > ul > li.on a {
    font-weight: 600;
  }
  .nav-2 > ul > li.on a::after {
    transform: translate(-50%, 0);
  }
  .nav-2qb {
    display: block !important;
    position: relative;
    align-items: center;
    z-index: 9;
  }
  .nav-2qb.on1 {
    display: unset;
  }
  .nav-2qb .sylm {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    transform: translateY(100%);
    background: #fff;
    z-index: 999;
  }
  .nav-2qb .sylm a {
    text-align: center !important;
    display: block;
    line-height: 2.4;
    color: #333;
    font-size: 1.6rem;
  }
  .nav-2qb .sylm a:hover {
    color: #00899c;
  }
  .nav-2qb:hover .sylm {
    display: block;
  }
  .nav-2qb p img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .main-box .nurse-t .pic-news {
    overflow: hidden;
  }
  .main-box .nurse-t .pic-news .swiper-slide:nth-child(n + 2) {
    display: none;
  }
  .main-box .nurse-t .pic-news a img {
    transition: all 0s !important;
  }
  .main-box .nurse-t .r .top-list li a {
    transition: all 0s !important;
  }
  .main-box .row.nurse-more-news {
    margin: 0 -1.75rem !important;
  }
  .main-box .row.nurse-more-news .col-4 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
  .main-box .row.nurse-more-news .new-box {
    min-height: 46rem;
  }
  .main-box .xkzj .b .bb .row {
    margin: 0 -1.8rem;
  }
  .main-box .xkzj .b .bb .row li {
    padding: 0 1.8rem;
  }
  .fiexd-r {
    width: 11.6rem;
    right: 0;
  }
  .fiexd-r .r-jyzn {
    height: 4.7rem;
    background-size: auto 4.7rem;
  }
  .fiexd-r ul li a {
    width: 7rem;
    height: 7rem;
  }
  .fiexd-r ul li a p {
    margin-top: 0;
    font-size: 12px;
  }
  .main-box .single .teams .bb .row {
    margin: 0 -2rem;
  }
}
