body,
h1,
h2,
h3,
h4,
h5,
p,
dl,
dt,
dd,
ul,
ol,
li,
form,
button,
input,
textarea,
th,
td,
a {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header,
section,
footer {
  display: block;
}
body {
  min-width: 1200px;
  font-family: '思源黑体', 'Microsoft YaHei', 'PingFang SC', '微软雅黑', Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-size: 14px;
  color: #666;
  background-color: #f5f5f5;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 滚动条样式 */
  /* 滚动条没有滑块的轨道部分 */
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  /* 滚动条整体样式 */
  width: 5px;
  height: 10px;
  /* 高宽分别对应横竖滚动条的尺寸 */
}
body::-webkit-scrollbar-thumb {
  /* 滚动条里面小方块 */
  border-radius: 2.5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.3);
}
img {
  vertical-align: bottom;
  border: 0;
}
h1,
h2,
h3,
h4,
dt {
  font-weight: normal;
}
ul,
ol,
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
a,
input,
button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 取消轻按时高亮 */
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  /* 去苹果圆角 */
}
a,
input,
textarea,
select,
option,
button {
  outline: 0;
  /* 点击时虚线边框 */
}
input,
textarea {
  font-family: inherit;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  box-shadow: inset 0 0 0 1000px #fff;
  /* 自动填充背景色 */
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #eee;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #eee;
}
input[type='number'] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
a {
  color: #666666;
  text-decoration: none;
}
hr {
  margin: 0;
  height: 1px;
  background: #f1f1f1;
  border: none;
}
.wrap {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  clear: both;
}
.link {
  color: #409eff;
  cursor: pointer;
}
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
.cb {
  clear: both;
}
.mt10 {
  margin-top: 10px;
}
.mt30 {
  margin-top: 30px;
}
.ml20 {
  margin-left: 20px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb50 {
  margin-bottom: 50px;
}
.iconfont,
.icon2 {
  display: inline-block;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.icon-on {
  color: #fe7171;
}
/**
 * 公共css
 */
/*
 * 头部
 */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.header .logo {
  width: auto;
  height: 40px;
}
.header .nav-con {
  margin-left: 150px;
  height: 60px;
  line-height: 60px;
}
.header .nav-con a {
  position: relative;
  margin-left: 20px;
  padding: 0 20px;
  min-width: 106px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  text-align: center;
  letter-spacing: 1px;
}
.header .nav-con a.active {
  color: #88d7dc;
  background-color: rgba(136, 215, 220, 0.1);
}
.header .nav-con a.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #88d7dc;
  opacity: 0.8;
}
.header .nav-con a:hover {
  color: #88d7dc;
}
.breadcrumb {
  padding: 15px 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 20px;
  overflow: hidden;
}
.breadcrumb a,
.breadcrumb span,
.breadcrumb i {
  display: inline-block;
  max-width: 300px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #999;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  vertical-align: top;
}
.breadcrumb a {
  color: #999;
}
.breadcrumb a:hover {
  color: #88d7dc;
}
.breadcrumb i {
  width: 20px;
  text-align: center;
}
/*
 * 底部
 */
.footer {
  margin-top: 30px;
  clear: both;
  font-size: 14px;
  color: #999999;
  background-color: #262626;
}
.footer a {
  color: #999999;
}
.footer .wrap {
  margin: 0 auto;
  padding-top: 40px;
  width: 1355px;
}
.footer .inner-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 400px;
}
.footer .inner-link .tit {
  margin-bottom: 6px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer .inner-link a {
  position: relative;
  margin-bottom: 10px;
  margin-right: 30px;
  line-height: 20px;
  font-size: 14px;
}
.footer .company {
  width: 530px;
}
.footer .company .text {
  margin-top: 12px;
  margin-right: 36px;
  height: 24px;
  line-height: 24px;
}
.footer .company .text i {
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  vertical-align: top;
}
.footer .company .icon2company {
  background: url(../img/icon/company.webp) center no-repeat;
}
.footer .company .icon2address {
  background: url(../img/icon/address.webp) center no-repeat;
}
.footer .company .icon2icp {
  background: url(../img/icon/icp.webp) center no-repeat;
}
.footer .friend-link {
  margin-top: 20px;
}
.footer .friend-link h3 {
  margin-bottom: 2px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer .friend-link .links a {
  margin: 5px 10px 0 0;
  display: inline-block;
  line-height: 20px;
}
.footer .statement-box {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.footer .statement-box .copyright {
  padding: 24px 0;
}
/**
 * 侧边的
 */
.side-customer-service {
  height: 236px;
  background: url('../img/side_customer_service.webp') center no-repeat;
}
/* .side-box {
  margin-bottom: 16px;
  padding-top: 28px;
  background-color: #fff;
  .hd {
    position: relative;
    margin-bottom: 8px;
    height: 34px;
    h2 {
      position: relative;
      margin-left: 17px;
      padding-left: 21px;
      line-height: 34px;
      font-size: 20px;
      color: #333;
      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 34px;
        background-color: @brandColor;
      }
      // &[highlight] {
      //   color: @brandColor;
      // }
      // &[c-3960cd] {
      //   color: #3960cd;
      //   &::before {
      //     background-color: #3960cd;
      //   }
      // }
    }
    .more {
      margin-left: auto;
      margin-right: 6px;
      padding-right: 28px;
      line-height: 34px;
      color: #383838;
      background: url('../img/icon/right.webp') right center no-repeat;
    }
  }
} */
.side-hot-hospital {
  padding: 15px 16px 5px;
  background: url('../img/hospital_hot_r.webp') 323px 5px no-repeat, linear-gradient(183.08deg, #ffe8e8 0%, #ffffff 100%);
  border: 1px solid #ededed;
}
.side-hot-hospital h2 {
  margin-bottom: 9px;
  height: 34px;
  background: url('../img/hospital_hot_tit.webp') 3px top no-repeat;
  font-size: 0;
}
.side-hot-hospital .hd-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 10px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.side-hot-hospital .hd-title::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: #88d7dc;
  border-radius: 2px;
}
.side-hot-hospital ul {
  padding: 20px 12px 11px 12px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.side-hot-hospital li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  height: 88px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.side-hot-hospital li:last-child {
  margin-bottom: 10px;
  border-bottom: none;
}
.side-hot-hospital .pic {
  position: relative;
  margin-right: 20px;
  width: 72px;
  height: 72px;
  overflow: hidden;
}
.side-hot-hospital .pic img {
  width: 100%;
  height: 100%;
}
.side-hot-hospital .name {
  display: block;
  margin-bottom: 5px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  color: #333;
  width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.side-hot-hospital .name:hover {
  color: #88d7dc;
}
.side-hot-hospital .type {
  display: block;
  width: 60px;
  height: 18px;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  color: #88d7dc;
  background: #ffebeb;
}
.side-hot-hospital .address {
  display: block;
  margin-top: 10px;
  padding-left: 15px;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  color: #666;
  background: url('../img/icon/address.png') left center no-repeat;
}
.side-hot-hospital .zxBtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 74px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #88d7dc;
  cursor: pointer;
  border-radius: 20px;
}
.side-hot-doctor {
  padding: 16px 16px 0;
  height: 290px;
  background: url('../img/doctor_hot_r.webp') 318px 10px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fef8e6), to(#ffffff));
  background: url('../img/doctor_hot_r.webp') 318px 10px no-repeat, linear-gradient(180deg, #fef8e6 0%, #ffffff 100%);
  border: 1px solid #ededed;
}
.side-hot-doctor h2 {
  margin-bottom: 9px;
  height: 34px;
  background: url('../img/doctor_hot_tit.webp') 2px top no-repeat;
  font-size: 0;
}
.side-hot-doctor .hd-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 10px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.side-hot-doctor .hd-title::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: #88d7dc;
  border-radius: 2px;
}
.side-hot-doctor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 30px 0;
  height: 215px;
  background-color: #fff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.side-hot-doctor li {
  width: 105px;
}
.side-hot-doctor a {
  display: block;
}
.side-hot-doctor .pic {
  position: relative;
  height: 105px;
}
.side-hot-doctor .pic img {
  width: 100%;
  height: 100%;
}
.side-hot-doctor .pic .title {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 72px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  color: #eb8100;
  text-align: center;
  background: #fff5d6;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.side-hot-doctor .name {
  margin-top: 14px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  color: #333;
  text-align: center;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.side-hot-doctor .name:hover {
  color: #88d7dc;
}
.side-hot-doctor .hospital {
  margin-top: 5px;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  color: #333;
  text-align: center;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.side-hot-doctor .num {
  margin-top: 9px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
}
.side-hot-doctor .num i {
  color: #88d7dc;
}
/* .side-rank-list {
  .title-news {
    height: 36px;
    background: url('../img/news_hot_tit.webp') left center no-repeat;
  }
  .title-ask-hot {
    height: 36px;
    background: url('../img/ask_hot_tit.webp') left center no-repeat;
  }
  ul {
    margin-top: 16px;
    padding-left: 85px;
    width: 423px;
    background: url('../img/news_hot_index.png') left 4px no-repeat;
    overflow: hidden;
  }
  li {
    margin-bottom: 19px;
    overflow: hidden;
    &:nth-child(3) {
      margin-bottom: 20px;
    }
    a {
      display: block;
      height: 30px;
      line-height: 30px;
      font-family: '思源黑体';
      font-size: 20px;
      color: #666;
      .ellipsis;
      &:hover {
        color: @linkOnColor;
      }
    }
  }
} */
/* .news-new-box {
  padding: 39px 0 20px 39px;
  background: url('../img/hospital_hot_bg.webp') 302px 26px no-repeat,
    linear-gradient(205.34deg, #cdd2fb 0%, #dde0fa 22.62%, #f7f7f7 100%);
  .title-news {
    height: 30px;
    background: url('../img/news_new_tit.webp') left center no-repeat;
  }
  ul {
    margin-left: 3px;
    margin-top: 37px;
    width: 380px;
  }
} */
/* .hospital-hot-box {
  padding: 20px 0 20px 20px;
  background: url('../img/hospital_hot_bg.webp') 302px 26px no-repeat,
    linear-gradient(205.34deg, #ffc1b3 0%, #ffc2c2 22.62%, #f7f7f7 100%);
  .title {
    height: 37px;
    background: url('../img/hospital_hot_tit.webp') left center no-repeat;
  }
  ul {
    margin-left: 24px;
    margin-top: 28px;
    width: 380px;
  }
} */
.side-hot-news {
  padding: 30px 16px 20px;
  background: url('../img/news_hot_r.webp') 312px 10px no-repeat, linear-gradient(135deg, #fff2e6, #fffcfc 60%, #ffffff);
}
.side-hot-news h2 {
  margin-bottom: 8px;
  height: 34px;
  background: url('../img/news_hot_tit.webp') left top no-repeat;
  font-size: 0;
}
.side-hot-news .hd-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 10px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.side-hot-news .hd-title::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: #88d7dc;
  border-radius: 2px;
}
.side-hot-news ul {
  padding: 17px 13px 4px;
  border-radius: 15px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.side-hot-news li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 35px;
}
.side-hot-news li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  line-height: 30px;
  font-size: 24px;
  color: #666;
  text-align: center;
}
.side-hot-news li:nth-child(1) {
  margin-bottom: 28px;
}
.side-hot-news li:nth-child(1) i {
  font-size: 0;
  background: url('../img/icon/top_1.webp') center no-repeat;
}
.side-hot-news li:nth-child(2) {
  margin-bottom: 28px;
}
.side-hot-news li:nth-child(2) i {
  font-size: 0;
  background: url('../img/icon/top_2.webp') center no-repeat;
}
.side-hot-news li:nth-child(3) i {
  font-size: 0;
  background: url('../img/icon/top_3.webp') center no-repeat;
}
.side-hot-news li a {
  display: block;
  height: 24px;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.side-hot-news li a:hover {
  color: #88d7dc;
}
.side-hot-news li p {
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  color: #666;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
/* .news-rank-list {
  li {
    position: relative;
    margin: 10px 12px 20px 20px;
    padding-left: 29px;
    height: 24px;
    line-height: 24px;
    color: #666;
    &::before {
      content: '';
      position: absolute;
      top: 7px;
      left: 0;
      width: 9px;
      height: 9px;
      border-radius: 100%;
      background-color: @brandColor;
    }
    a {
      font-size: 16px;
      .ellipsis(240px);
      transition: color 0.3s;
      &:hover {
        color: @brandColor;
      }
    }
    span {
      margin-left: auto;
      em {
        margin: 0 1px;
        font-weight: 700;
        color: @brandColor;
      }
    }
  }
} */
.contentBox {
  overflow: hidden;
  line-height: 1.8;
  font-size: 14px;
  color: #333333;
}
.contentBox table,
.contentBox img {
  max-width: 100%;
  height: auto;
}
.contentBox table {
  min-width: 60%;
  border: 1px solid #ededed;
  border-collapse: collapse;
}
.contentBox table th,
.contentBox table td {
  padding: 8px 15px;
  border: 1px solid #ededed;
}
.contentBox p {
  margin-bottom: 5px;
}
.contentBox a:hover {
  color: #ff6600;
}
/*消息提示*/
.bd-message {
  position: fixed;
  top: -100px;
  left: 50%;
  z-index: 1002;
  margin-left: -115px;
  padding: 8px 15px;
  min-width: 200px;
  max-width: 300px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.bd-message.show {
  top: 100px;
}
.bd-message.warning {
  background-color: #fdf6ec;
  color: #e6a23c;
  border-color: #faecd8;
}
.bd-message.success {
  background-color: #f0f9eb;
  color: #67c23a;
  border-color: #e1f3d8;
}
.columnBox {
  padding-bottom: 1px;
  background-color: #fff;
}
.column-hd {
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px solid #f2f2f2;
}
.column-hd .tit {
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  color: #333;
}
.pagination {
  margin: 20px 0;
  clear: both;
}
.pagination a {
  margin: 0 5px;
  min-width: 20px;
  height: 32px;
  line-height: 32px;
  color: #333;
  text-align: center;
}
.pagination a:hover {
  color: #88d7dc;
}
.pagination a.active {
  min-width: 32px;
  color: #fff;
  background-color: #88d7dc;
  border-radius: 50%;
}
.pagination a.next {
  margin-left: 10px;
}
.wh10 {
  width: 100%;
  height: 10px;
  clear: both;
}
.wh20 {
  width: 100%;
  height: 20px;
  clear: both;
}
/**
 * 弹性布局
 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.flex[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-sb-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/*
 * 左侧
 */
.page-l {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 840px;
  min-height: 300px;
}
/*
 * 右侧
 */
.page-r {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  width: 345px;
  min-height: 300px;
}
.zxBtn {
  cursor: pointer;
}
/**
 * CSS常用原子类
 */
/*文字排版*/
.lh1 {
  line-height: 1;
}
.f12 {
  font-size: 12px;
}
.f13 {
  font-size: 13px;
}
.f14 {
  font-size: 14px;
}
.f16 {
  font-size: 16px;
}
.fb {
  font-weight: bold;
}
.fn {
  font-weight: normal;
}
.unl {
  text-decoration: underline;
}
.no_unl {
  text-decoration: none;
}
.t2 {
  text-indent: 2em;
}
/*定位*/
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
/*位置布局*/
.tl {
  text-align: left;
}
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.vm {
  vertical-align: middle;
}
.bc {
  margin-left: auto;
  margin-right: auto;
}
.fl {
  float: left;
  display: inline;
}
.fr {
  float: right;
  display: inline;
}
.cb {
  clear: both;
}
.hidden {
  visibility: hidden;
}
.none {
  display: none;
}
/*长度高度*/
.nw230 {
  min-width: 230px;
}
.w {
  width: 100%;
}
.h50 {
  height: 50px;
}
.h100 {
  height: 100px;
}
.h200 {
  height: 200px;
}
.h {
  height: 100%;
}
/*边距*/
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.mt0 {
  margin-top: 0;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.ml-a {
  margin-left: auto;
}
.mr-a {
  margin-right: auto;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
/* 其他 */
.wh10,
.wh20,
.wh30 {
  clear: both;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.wh10 {
  height: 10px;
}
.wh20 {
  height: 20px;
}
.wh30 {
  height: 30px;
}
/**
 * 页面
 */
/**
 * 整形资讯
 */
.news-list li {
  padding: 15px;
  overflow: hidden;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.news-list li:hover {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}
.news-list .pic {
  display: block;
  float: left;
  width: 160px;
  height: 115px;
  overflow: hidden;
  border-radius: 4px;
}
.news-list .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}
.news-list .info {
  margin-left: 175px;
}
.news-list h3 {
  height: 26px;
}
.news-list h3 a {
  display: block;
  height: 26px;
  line-height: 26px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-list h3 a:hover {
  color: #88d7dc;
}
.news-list .desc {
  margin-top: 8px;
  height: 44px;
  line-height: 22px;
  font-size: 15px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  word-break: break-all;
}
.news-list .time-row {
  margin-top: 15px;
  height: 20px;
  line-height: 20px;
  color: #666;
}
.news-list .time-row .icon2views {
  display: inline-block;
  vertical-align: top;
  margin-right: 4px;
  width: 18px;
  height: 20px;
  background: url('../img/icon/yuedu.png?2') center no-repeat;
}
.side-news-box {
  padding-bottom: 1px;
  background-color: #fff;
}
.side-news-box .hd {
  position: relative;
  padding: 10px 15px;
  line-height: 32px;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}
.side-news-box li {
  padding: 10px 15px;
  overflow: hidden;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.side-news-box li:last-child {
  border-bottom: none;
}
.side-news-box .pic {
  display: block;
  float: left;
  width: 80px;
  height: 65px;
  overflow: hidden;
  border-radius: 2px;
}
.side-news-box .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}
.side-news-box .info {
  margin-left: 90px;
}
.side-news-box h3 {
  height: 42px;
}
.side-news-box h3 a {
  display: block;
  height: 42px;
  line-height: 21px;
  font-size: 15px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.side-news-box h3 a:hover {
  color: #88d7dc;
}
.side-news-box .time-row {
  margin-top: 7px;
  height: 16px;
  line-height: 16px;
  color: #666;
}
/**
 * 资讯详情
 */
.news-show {
  padding: 20px 15px 15px;
  background-color: #fff;
}
.news-show h1 {
  margin-bottom: 20px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  color: #555;
}
.news-show .source {
  line-height: 26px;
  font-size: 14px;
  color: #999;
}
.news-show .source a,
.news-show .source span {
  padding: 0 5px;
  color: #88d7dc;
}
.news-show .time-row {
  line-height: 26px;
  font-size: 14px;
  color: #999;
}
.news-show .time-row .icon2views {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 26px;
  background: url('../img/icon/yuedu.png') center no-repeat;
}
.news-show .time-row em {
  margin: 0 2px;
}
.news-show .time-row span + span {
  margin-left: 10px;
}
.news-show .news-zx-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 20px 0;
}
.news-show .news-zx-row li {
  border-radius: 7px;
  width: 30%;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.news-show .news-zx-row li:first-child {
  background-color: #629cff;
}
.news-show .news-zx-row li:nth-child(2) {
  background-color: #f93886;
}
.news-show .news-zx-row li:nth-child(3) {
  background-color: #2ea7e0;
}
.news-show .content {
  clear: both;
  font-size: 16px;
  color: #666;
  overflow: hidden;
}
.news-show .content * {
  font-size: 16px;
}
.news-show .content h2,
.news-show .content h3,
.news-show .content h4 {
  margin: 15px 0 5px;
  color: #333;
  font-weight: 600;
}
.news-show .content h2 {
  font-size: 20px;
}
.news-show .content h3 {
  font-size: 18px;
}
.news-show .btn-row {
  margin: 15px 0;
}
.news-show .btn-row .item {
  padding-top: 36px;
  padding-left: 156px;
  width: 50%;
  height: 109px;
  background: #faf2ff url('../img/news_l.png') 57px 28px no-repeat;
}
.news-show .btn-row .item:nth-child(2) {
  margin-left: 30px;
  padding-left: 163px;
  background: #e8eeff url('../img/news_r.png') 78px 35px no-repeat;
}
.news-show .btn-row .item:nth-child(2) h4 {
  color: #4b73e8;
}
.news-show .btn-row .item:nth-child(2) p {
  color: #7794ed;
}
.news-show .btn-row h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 26px;
  color: #9d46e0;
}
.news-show .btn-row p {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 20px;
  color: #bc85e6;
}
.news-show .next-box {
  margin: 10px 0;
}
.news-show .next-box a {
  display: block;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  color: #999;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.news-show .next-box a:hover {
  color: #88d7dc;
}
.shenming {
  margin: 10px 0;
  color: #666;
  padding: 20px 15px;
  line-height: 24px;
  font-size: 15px;
  text-align: center;
  background-color: #f5f5f5;
}
.shenming .tit {
  margin-bottom: 3px;
}
.news-recommend {
  margin-top: 20px;
  padding-bottom: 1px;
  background-color: #fff;
}
.news-recommend .hd {
  position: relative;
  padding: 10px 15px;
  line-height: 32px;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}
.news-recommend ul {
  padding: 10px 0;
}
.news-recommend li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 10px;
  width: 50%;
}
.news-recommend h3 {
  height: 26px;
}
.news-recommend h3 a {
  display: block;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  color: #666;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-recommend h3 a:hover {
  color: #88d7dc;
}
.index-banner {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.index-banner .bd {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  overflow: hidden;
}
.index-banner .bd ul {
  width: 100% !important;
}
.index-banner .bd li {
  width: 100% !important;
  height: 500px;
  overflow: hidden;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-banner .bd a {
  display: block;
  height: 500px;
}
.index-banner .hd {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  font-size: 0;
  text-align: center;
}
.index-banner .hd ul {
  text-align: center;
}
.index-banner .hd li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  cursor: pointer;
  background: rgba(51, 51, 51, 0.22);
  border-radius: 50%;
}
.index-banner .hd li.on {
  background-color: #88d7dc;
}
.index-banner .prev,
.index-banner .next {
  width: 70px;
  height: 70px;
  margin: -35px 0 0;
  display: none;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
}
.index-banner .prev {
  left: 60px;
  background: url('../img/prev.png') no-repeat center;
}
.index-banner .next {
  background: url('../img/next.png') no-repeat center;
  right: 60px;
}
.index-column {
  padding: 35px 0;
}
.index-title {
  margin: 0 auto 40px;
  height: 40px;
  line-height: 40px;
  font-size: 36px;
  color: #88d7dc;
  text-align: center;
  letter-spacing: 2px;
}
.index-title a {
  color: #88d7dc;
}
.news-card-list1 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-card-list1 li {
  width: 24%;
  height: 330px;
  margin-bottom: 18px;
  border: 1px solid #ebe6e6;
  background-color: #fefef8;
  border-radius: 6px;
}
.news-card-list1 .pic {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
}
.news-card-list1 .pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card-list1 .content {
  padding: 10px 15px 0;
}
.news-card-list1 h3 {
  position: relative;
  margin-bottom: 20px;
  height: 30px;
}
.news-card-list1 h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 45px;
  height: 2px;
  background-color: #88d7dc;
}
.news-card-list1 h3 a {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  color: #222;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-card-list1 h3 a:hover {
  color: #88d7dc;
}
.news-card-list1 .desc {
  height: 66px;
  line-height: 22px;
  font-size: 15px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-wrap: break-word;
  word-break: break-all;
  text-align: justify;
}
.news-card-list1 .basic {
  margin-top: 10px;
  line-height: 22px;
  font-size: 14px;
  color: #999;
}
.more-bottom {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.more-bottom a {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  padding: 0.6em 3em;
  text-align: center;
  color: #999;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.more-bottom a:hover {
  background-color: #88d7dc;
  border: 1px solid #88d7dc;
  color: #fff;
}
.news-card-list2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-card-list2 li {
  width: 23.5%;
  height: 305px;
  margin-bottom: 25px;
}
.news-card-list2 .pic {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
}
.news-card-list2 .pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card-list2 h3 {
  position: relative;
  margin: 12px 0 5px;
  height: 30px;
}
.news-card-list2 h3 a {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  color: #222;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-card-list2 h3 a:hover {
  color: #88d7dc;
}
.news-card-list2 .desc {
  height: 44px;
  line-height: 22px;
  font-size: 16px;
  color: #5e6068;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  word-break: break-all;
  text-align: justify;
}
.news-card-list2 .basic {
  margin-top: 15px;
  padding: 8px 10px;
  line-height: 22px;
  font-size: 14px;
  color: #666;
  background-color: #f5f5f5;
}
.news-text-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  overflow: hidden;
}
.news-text-list li {
  position: relative;
  padding: 22px 30px;
  width: 49%;
  overflow: initial;
  background-color: #f9f9f9;
}
.news-text-list li::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: -1px;
  height: 0;
  border-bottom: 1px dashed #c6c6c6;
}
.news-text-list h3 {
  height: 30px;
}
.news-text-list h3 a {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 17px;
  color: #222;
  letter-spacing: 1px;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-text-list h3 a:hover {
  color: #88d7dc;
}
.news-text-list .desc {
  margin-top: 4px;
  height: 40px;
  line-height: 20px;
  font-size: 15px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  word-break: break-all;
}
.news-text-list .time-row {
  margin-top: 6px;
  line-height: 20px;
  color: #3d3d3d;
}
.error-404 {
  margin: 10px auto;
}
.error-404 a {
  display: block;
  height: 540px;
  background: url(../img/error404.png) center no-repeat;
}
/*
 * 关于我们 模块
 */
/*
 * 关于我们 模块
 */
.about-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  margin-right: 30px;
  width: 260px;
}
.about-sidebar ul {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  min-height: 500px;
}
.about-sidebar li {
  padding: 18px 0;
  line-height: 30px;
  border-bottom: 1px solid #ededed;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about-sidebar li a {
  display: block;
  padding-left: 33px;
  color: #333333;
  border-left: 3px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about-sidebar li.on a,
.about-sidebar li:hover a {
  border-color: #88d7dc;
}
.about-sidebar li:hover {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.about-content {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 25px;
  min-height: 450px;
}
.about-content h1 {
  margin-bottom: 20px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.about-content .con {
  color: #333333;
}
.about-content h2 {
  margin: 30px 0 15px;
  line-height: 30px;
  font-size: 18px;
  color: #88d7dc;
  font-weight: 600;
}
.about-content p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 6px;
}
.about-content table,
.about-content img {
  max-width: 100%;
  height: auto;
}
.about-content table {
  min-width: 60%;
  border: 1px solid #ededed;
  border-collapse: collapse;
}
.about-content table th,
.about-content table td {
  padding: 8px 15px;
  border: 1px solid #ededed;
}
.about-content .pact-con h3 {
  margin: 15px 0 8px;
  line-height: 1.5;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.about-content .pact-con p {
  margin-bottom: 5px;
  line-height: 1.6;
  font-size: 12px;
  color: #333;
  text-indent: 2em;
}
.about-content .pact-con .fwb {
  font-weight: 700;
}
.about-content .pact-con .cr {
  color: red;
}
