@import url("font.css");

html {
  margin: 0 auto;
  max-width: 750px;
  font-size: 24px;
  background-color: #1c212a;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
li,
form,
button,
input,
textarea,
th,
td,
a {
  margin: 0;
  padding: 0;
}
header,
section {
  display: block;
}
body {
  padding-bottom: 1px;
  padding-bottom: calc(1px + constant(safe-area-inset-bottom));
  padding-bottom: calc(1px + env(safe-area-inset-bottom));
  font-family: 'PingFang SC', -apple-system-font, Helvetica, Arial, 'Microsoft YaHei';
  line-height: 1;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
}
body * {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
img {
  vertical-align: bottom;
  border: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
ul,
ol,
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
a {
  color: #666666;
  text-decoration: none;
}
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::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #eee;
}
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}
/*
 * 公共css
 */
/**
 * 弹性布局
 */
.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;
}
.top-bar {
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  padding: 0 0.32rem 0 0.24rem;
  width: 100%;
  height: 1.8rem;
  background-color: #fff;
}
.top-bar .bui-action-back {
  padding: 0 0.12rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  color: #008000;
  cursor: pointer;
}
.top-bar .bui-title {
  padding: 0 0.2rem;
  line-height: 0.8rem;
  font-size: 0.64rem;
  font-weight: 700;
  color: #333;
}
.top-bar .bui-tools {
  position: relative;
  width: 1.44rem;
  height: 1rem;
  border-radius: 0.5rem;
  background: #008000;
  cursor: pointer;
}
.top-bar .bui-tools i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.16rem;
  height: 0.16rem;
  font-size: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-bar .bui-tools i::before,
.top-bar .bui-tools i::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0.16rem;
  height: 0.16rem;
  background-color: #fff;
  border-radius: 100%;
}
.top-bar .bui-tools i::before {
  left: -0.12rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.top-bar .bui-tools i::after {
  left: 0.12rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.top-bar .logo {
  width: 3.72rem;
  height: 1.2rem;
}
.top-bar .logo img {
  width: 100%;
  height: 100%;
}
.top-bar .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 0.52rem;
  padding: 0 0.36rem;
  width: 7.96rem;
  height: 1.08rem;
  background: #fff;
  border: 0.04rem solid #008000;
  border-radius: 0.6rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.top-bar .search-form .icon2search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 0.4rem;
  width: 0.6rem;
  height: 100%;
  background: url() center no-repeat;
  background-size: 0.56rem;
}
.top-bar .search-form .search-bar__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  background: none;
  border: 0;
}
.top-bar .search-form .search-bar__input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.top-bar .search-form .search-bar__input:focus {
  outline: none;
}
.top-bar .btn {
  width: 1.4rem;
  height: 1.08rem;
  line-height: 1.08rem;
  font-size: 0.56rem;
  color: #008000;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  cursor: pointer;
}
.popup-tools .bg {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.35;
}
.popup-tools .nav-con {
  position: fixed;
  z-index: 121;
  top: 1.7rem;
  right: 0.2rem;
  width: 4rem;
}
.popup-tools .nav-con .menu-jianjiao {
  position: absolute;
  top: -0.24rem;
  right: 0.3rem;
  display: inline-block;
  width: 0.62rem;
  height: 0.28rem;
  background: center url('../image/menu_jianjiao.png') no-repeat;
  background-size: 0.62rem;
}
.popup-tools .nav-con .list {
  background: #fff;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.06rem 0.32rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.06rem 0.32rem 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.popup-tools .nav-con a {
  position: relative;
  display: block;
  padding: 0 0.6rem;
  height: 1.12rem;
  line-height: 1.12rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  overflow: hidden;
}
.popup-tools .nav-con a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: '';
  height: 1px;
  background-color: #ededed;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.breadcrumb {
  margin: 0.36rem 0;
  padding: 0 0.32rem;
  height: 0.88rem;
  overflow: hidden;
}
.breadcrumb a,
.breadcrumb span,
.breadcrumb i {
  display: inline-block;
  max-width: 6rem;
  height: 0.88rem;
  line-height: 0.88rem;
  font-size: 0.48rem;
  color: #808080;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  vertical-align: top;
}
.breadcrumb a {
  font-weight: 500;
  color: #808080;
}
.breadcrumb i {
  margin: 0 0.16rem;
  width: 0.48rem;
  font-size: 0.52rem;
  text-align: center;
  color: #008000;
}
.breadcrumb i + a {
  font-weight: 400;
  color: #008000;
}
.column-hd {
  margin: 0.48rem 0.32rem;
  height: 0.84rem;
}
.column-hd .tit {
  position: relative;
  padding-left: 0.52rem;
  height: 0.84rem;
  line-height: 0.84rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #333;
  border-left: 0.16rem solid #008000;
}
.column-hd .more {
  margin-left: auto;
  line-height: 0.84rem;
  font-size: 0.48rem;
  color: #008000;
}
.pagination {
  margin-top: 0.56rem;
  clear: both;
}
.pagination a {
  min-width: 0.96rem;
  height: 0.96rem;
  line-height: 0.96rem;
  font-size: 0.52rem;
  color: #404145;
  text-align: center;
}
.pagination a:hover {
  color: #008000;
}
.pagination a.active {
  color: #008000;
  background-color: #fff;
  border-radius: 0.16rem;
}
.pagination a.prev,
.pagination a.next {
  min-width: 0.6rem;
}
.pagination a.prev svg,
.pagination a.next svg {
  width: 0.2rem;
  height: 0.4rem;
}
.pagination a.prev path,
.pagination a.next path {
  fill: #008000;
}
.footer {
  margin-top: 0.6rem;
  padding: 0.2rem 0.4rem;
  line-height: 0.72rem;
  font-size: 0.48rem;
  color: #666;
  text-align: center;
}
.footer a {
  padding: 0 0.12rem;
  color: #666;
}
.footer p {
  margin-bottom: 0.3rem;
}
.footer .text-box {
  margin-bottom: 0.44rem;
}
.footer .link a {
  color: #008000;
}
.tab-bar {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  /* iPhone X 兼容，把可交互的部分渲染到安全区域内*/
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #fff;
}
.tab-bar .flex-sb-center {
  margin: 0 auto;
  width: 15rem;
  height: 3rem;
  letter-spacing: 0.04rem;
}
.tab-bar a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.tab-bar img {
  display: inline-block;
  width: 1.08rem;
  height: 1rem;
}
.tab-bar p {
  margin-top: 0.1rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #a6a6a6;
}
.tab-bar .active p {
  color: #008000;
}
.wh150 {
  height: 3rem;
}
/**
 * 底部弹窗 Popup
 */
.my-popup {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overscroll-behavior: contain;
}
.my-popup::-webkit-scrollbar {
  width: 0;
}
.my-popup .mask {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 0.02rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 100%;
  background: #585858;
  opacity: 0.5;
}
.my-popup .my-popup__wrapper-box {
  position: absolute;
  z-index: 3;
  bottom: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 5rem;
  background: #fff;
  border-radius: 0.6rem 0.6rem 0 0;
}
.my-popup .popup-close {
  position: absolute;
  z-index: 3;
  top: -1rem;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: url('../image/close@2x.png') center no-repeat;
  background-size: 0.72rem;
  cursor: pointer;
}
.my-popup .popup-title {
  padding: 0.8rem 0 0.6rem;
  line-height: 0.88rem;
  font-size: 0.64rem;
  font-weight: 700;
  text-align: center;
}
.my-popup .popup-content {
  max-height: calc(90vh - 2rem);
}
.my-dialog-animation,
.my-popup-animation {
  -webkit-animation: fadeIn 0.2s both;
          animation: fadeIn 0.2s both;
}
.my-dialog-animation .my-popup__wrapper-box,
.my-popup-animation .my-popup__wrapper-box {
  -webkit-animation: tinyDown 0.25s;
          animation: tinyDown 0.25s;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes tinyDown {
  0%,
  5% {
    opacity: 0;
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes tinyDown {
  0%,
  5% {
    opacity: 0;
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.popup-content {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popup-content::-webkit-scrollbar {
  width: 0;
}
.popup-content a {
  display: block;
  position: relative;
  height: 2.4rem;
  line-height: 2.4rem;
  font-size: 0.56rem;
  color: #333333;
  text-align: center;
  font-weight: 500;
  width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.popup-content a:nth-child(3n + 1):before,
.popup-content a:nth-child(3n + 2):before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  content: '';
  width: 1px;
  background: #ededed;
  -webkit-transform: scaleX(0.5);
          transform: scaleX(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.popup-content a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: '';
  height: 1px;
  background-color: #ededed;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.popup-content a.on {
  color: #008000;
  font-weight: 600;
}
.zxBtn {
  cursor: pointer;
}
.tab-box {
  margin-top: 0.3rem;
  margin-bottom: 0.64rem;
  height: 1.28rem;
  line-height: 1.32rem;
  font-size: 0.48rem;
  font-weight: 500;
  background-color: #fff;
}
.tab-box a {
  position: relative;
  margin-left: 0.48rem;
  padding: 0 0.16rem;
  color: #666;
}
.tab-box a.active {
  color: #008000;
}
.tab-box a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.08rem;
  background-color: #008000;
}
/**
 * 加载更多按钮
 */
.loading-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.6rem auto;
  width: 2.8rem;
  height: 1.08rem;
  border-radius: 0.64rem;
  font-size: 0.44rem;
  color: #333333;
  text-align: center;
  background: #f5f8fa;
  border-radius: 0.54rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.bui-load_icon {
  display: inline-block;
  margin-right: 0.12rem;
  width: 0.52rem;
  height: 0.52rem;
  vertical-align: middle;
  -webkit-animation: loading-rotate 1s steps(12, end) infinite;
  animation: loading-rotate 1s steps(12, end) infinite;
  background: transparent url() no-repeat;
  background-size: 100%;
}
.loading-more-tips {
  clear: both;
  margin: 0.4rem auto;
  height: 1.2rem;
  line-height: 1.2rem;
  font-size: 0.48rem;
  color: #666;
  text-align: center;
}
.more-link {
  margin: 0.6rem auto;
  display: inline-block;
  width: 3.32rem;
  height: 1.28rem;
  font-size: 0.52rem;
  color: #999999;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.02rem solid #ededed;
  border-width: 0.01rem;
  border-radius: 0.6rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
/*
 * 消息提示
 */
.bd-message {
  position: fixed;
  bottom: -2rem;
  z-index: 1000;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.1;
}
.bd-message span {
  display: inline-block;
  padding: 0.4rem;
  line-height: 0.56rem;
  font-size: 0.56rem;
  color: #f5f5f5;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.2rem;
}
.bd-message.show {
  bottom: 2.4rem;
  opacity: 1;
}
/*
 * 无数据提示
 */
.noData {
  margin: 0 auto;
  padding: 0.8rem 0;
  width: 100%;
  text-align: center;
  position: relative;
}
.noData .pic {
  height: 5rem;
  background: center center url(/statics/web/img/no_data@2x.png) no-repeat;
  background-size: 4.2rem;
}
.noData h3 {
  margin: 0.4rem 0 0.12rem;
  line-height: 0.8rem;
  font-size: 0.6rem;
  color: #333333;
  font-weight: 600;
}
.noData p {
  line-height: 0.8rem;
  font-size: 0.52rem;
  color: #b2b2b2;
}
.noData.noData-min .pic {
  height: 4rem;
  background-size: 3.4rem;
}
.noData.noData-min h3 {
  line-height: 0.6rem;
  font-size: 0.48rem;
}
.noData.noData-min p {
  line-height: 0.6rem;
  font-size: 0.4rem;
}
.c-hd2 {
  padding: 0.5rem 0.6rem;
  height: 0.92rem;
  line-height: 0.92rem;
  position: relative;
}
.c-hd2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: '';
  height: 1px;
  background-color: #ededed;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-hd2 h2 {
  padding-left: 0.48rem;
  position: relative;
  font-size: 0.72rem;
  color: #000;
  font-weight: 600;
}
.c-hd2 h2 em {
  padding-left: 0.4rem;
  font-size: 0.6rem;
  color: #bfc2c7;
}
.c-hd2 h2:before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: block;
  content: '';
  width: 0.16rem;
  height: 0.72rem;
  background: #008000;
  border-radius: 0.04rem;
}
.c-hd2 .more {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  display: block;
  height: 0.92rem;
  line-height: 0.92rem;
  font-size: 0.52rem;
  color: #999999;
  font-weight: 500;
}
.c-hd2 .more .icon2 {
  display: inline-block;
  margin-left: 0.12rem;
  width: 0.6rem;
  height: 0.6rem;
}
.c-hd3 {
  padding: 0.5rem 0.6rem 0.32rem;
  height: 0.92rem;
  line-height: 0.92rem;
}
.c-hd3 h2 {
  padding-left: 0.48rem;
  position: relative;
  font-size: 0.72rem;
  color: #000;
  font-weight: 600;
}
.c-hd3 h2:before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: block;
  content: '';
  width: 0.16rem;
  height: 0.72rem;
  background: #008000;
  border-radius: 0.04rem;
}
.c-tab2 {
  position: relative;
  overflow: hidden;
}
.c-tab2 .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
  border-bottom: 0.02rem solid #f2f2f2;
  overflow-x: scroll;
}
.c-tab2 .tab-wrap .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 0.5rem 0.2rem;
  position: relative;
  line-height: 1.4rem;
  font-size: 0.64rem;
  color: #b0b2b4;
  font-weight: 500;
}
.c-tab2 .tab-wrap .item.on {
  color: #333333;
  font-weight: 600;
}
.c-tab2 .tab-wrap .item.on:after {
  position: absolute;
  left: 50%;
  bottom: 0.06rem;
  margin-left: -0.34rem;
  content: '';
  width: 0.7rem;
  height: 0.12rem;
  border-radius: 0.06rem;
  background: #008000;
}
/**
 * 富文本盒子
 */
.contentBox {
  overflow: hidden;
  line-height: 1.6;
  font-size: 0.6rem;
  color: #333333;
  clear: both;
}
.contentBox table,
.contentBox img {
  max-width: 100%;
  height: auto;
}
.contentBox table {
  min-width: 80%;
  border: 0.02rem solid #ededed;
  border-collapse: collapse;
}
.contentBox table th,
.contentBox table td {
  padding: 0.16rem 0.3rem;
  border: 0.02rem solid #ededed;
}
.contentBox p {
  margin-bottom: 0.1rem;
}
.contentBox a:hover {
  color: #ff6600;
}
.w1h20 {
  width: 100%;
  height: 0.02rem;
  border-bottom: 0.4rem solid #f5f8fa;
  clear: both;
}
.wh100,
.w1h100 {
  clear: both;
  width: 100%;
  height: 2rem;
}
.wh20 {
  clear: both;
  width: 100%;
  height: 0.4rem;
}
/*
 * Swiper点击图片类相册预览
 */
#img-preview {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
#img-preview .swiper-container {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
#img-preview .swiper-slide img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
#img-preview .swiper-pagination {
  line-height: 0.8rem;
  font-size: 0.72rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0.3rem;
  z-index: 101;
}
#img-preview .swiper-pagination-current {
  color: #008000;
}
#img-preview .swiper-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  z-index: 101;
  width: 0.8rem;
  height: 0.8rem;
  color: #f5f5f5;
  text-align: center;
}
#img-preview .swiper-close .icon2 {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  font-size: 1.3rem;
}
.loading-page,
.loading-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  text-align: center;
  background: #fff;
}
.loading-page .circular,
.loading-box .circular {
  position: absolute;
  top: 50%;
  z-index: 1000;
  left: 50%;
  margin: -0.5rem 0 0 -0.5rem;
  height: 1rem;
  width: 1rem;
  -webkit-animation: loading-rotate 2s linear infinite;
          animation: loading-rotate 2s linear infinite;
}
.loading-page .path,
.loading-box .path {
  -webkit-animation: loading-dash 1.5s ease-in-out infinite;
          animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #008000;
  stroke-linecap: round;
}
@-webkit-keyframes loading-rotate {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes loading-rotate {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -0.8rem;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -2.4rem;
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -0.8rem;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -2.4rem;
  }
}
.loading-box {
  position: absolute;
}
/**
 * CSS常用原子类
 */
/*文字排版*/
.f24 {
  font-size: 0.48rem;
}
.f28 {
  font-size: 0.56rem;
}
.f30 {
  font-size: 0.6rem;
}
.f32 {
  font-size: 0.64rem;
}
.fb {
  font-weight: bold;
}
.fn {
  font-weight: normal;
}
.unl {
  text-decoration: underline;
}
.no_unl {
  text-decoration: none;
}
.t2 {
  text-indent: 2em;
}
.c-666 {
  color: #666;
}
.c-999 {
  color: #999;
}
/*定位*/
.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;
}
.oh {
  overflow: hidden;
}
.hidden {
  visibility: hidden;
}
.none {
  display: none;
}
/*长度高度*/
.w20 {
  width: 0.4rem;
}
.w40 {
  width: 0.8rem;
}
.w100 {
  width: 2rem;
}
.w {
  width: 100%;
}
.h50 {
  height: 1rem;
}
.h80 {
  height: 1.6rem;
}
.h100 {
  height: 2rem;
}
.h200 {
  height: 4rem;
}
.h {
  height: 100%;
}
/*边距*/
.m20 {
  margin: 0.4rem;
}
.m30 {
  margin: 0.6rem;
}
.mt0 {
  margin-top: 0;
}
.mt10 {
  margin-top: 0.2rem;
}
.mt20 {
  margin-top: 0.4rem;
}
.mt30 {
  margin-top: 0.6rem;
}
.mt40 {
  margin-top: 0.8rem;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 0.2rem;
}
.mb20 {
  margin-bottom: 0.4rem;
}
.mb30 {
  margin-bottom: 0.6rem;
}
.ml10 {
  margin-left: 0.2rem;
}
.ml20 {
  margin-left: 0.4rem;
}
.ml30 {
  margin-left: 0.6rem;
}
.ml40 {
  margin-left: 0.8rem;
}
.mr10 {
  margin-right: 0.2rem;
}
.mr20 {
  margin-right: 0.4rem;
}
.mr30 {
  margin-right: 0.6rem;
}
.p10 {
  padding: 0.2rem;
}
.p20 {
  padding: 0.4rem;
}
.pr30 {
  padding-right: 0.6rem;
}
.pl6 {
  padding-left: 0.12rem;
}
.pb20 {
  padding-bottom: 0.4rem;
}
/* 其他 */
.wh1,
.wh20,
.wh30,
.wh80 {
  clear: both;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.wh1 {
  height: 1px;
}
.wh20 {
  height: 0.4rem;
}
.wh30 {
  height: 0.6rem;
}
.wh80 {
  height: 1.6rem;
}
.wh47 {
  width: 100%;
  height: 0.94rem;
  clear: both;
}
.wh98 {
  width: 100%;
  height: 1.96rem;
  clear: both;
}
.wh100 {
  width: 100%;
  height: 2rem;
  clear: both;
}
.wh110 {
  width: 100%;
  height: 2.2rem;
  clear: both;
}
.wh180 {
  width: 100%;
  height: 3.6rem;
  clear: both;
}
/*
 * 医院栏目
 */
.hospital-list li {
  position: relative;
  margin: 0 0.32rem 0.6rem;
  overflow: hidden;
}
.hospital-list a {
  display: block;
  overflow: hidden;
}
.hospital-list .logo {
  float: left;
  width: 2.56rem;
  height: 2.56rem;
  overflow: hidden;
}
.hospital-list .logo img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.hospital-list .info {
  float: left;
  margin-left: 0.48rem;
  width: 9.34rem;
}
.hospital-list .title {
  margin-bottom: 0.12rem;
  height: 0.76rem;
  overflow: hidden;
  vertical-align: top;
}
.hospital-list .title span {
  display: inline-block;
  max-width: 6.72rem;
  height: 0.76rem;
  line-height: 0.76rem;
  font-size: 0.56rem;
  color: #333;
  font-weight: 500;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.hospital-list .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.24rem;
}
.hospital-list .tag span {
  margin-right: 0.22rem;
  padding: 0 0.2rem;
  height: 0.72rem;
  line-height: 0.72rem;
  font-size: 0.48rem;
  color: #4da3ff;
  background-color: #f2f9ff;
}
.hospital-list .tag .establish {
  color: #06bdb0;
  background-color: #ebfffe;
}
.hospital-list .project-row {
  position: relative;
  overflow: hidden;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.hospital-list .project-row label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.hospital-list .project-row span {
  margin-right: 0.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #666;
}
.hospital-list .zxBtn {
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 1rem;
  width: 2.16rem;
  height: 1.08rem;
  line-height: 1.12rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url(../image/chat@2x.webp) 0.12rem 0.2rem no-repeat;
  background-size: 0.68rem;
}
/**
 * 医院详情
 */
.hospital-info {
  position: relative;
  margin: 1.64rem 0.32rem 0.48rem;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  border-radius: 0.32rem;
  background: #ffffff;
}
.hospital-info .pic {
  position: absolute;
  left: 0.44rem;
  top: -1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  overflow: hidden;
  border-radius: 100%;
}
.hospital-info .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.hospital-info .name {
  margin-left: 4.24rem;
  margin-bottom: 0.32rem;
  height: 0.76rem;
  line-height: 0.76rem;
  font-size: 0.64rem;
  font-weight: 700;
  color: #333333;
}
.hospital-info .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4.24rem;
  margin-bottom: 0.32rem;
}
.hospital-info .tag span {
  position: relative;
  margin-right: 0.22rem;
  padding: 0 0.2rem;
  height: 0.64rem;
  line-height: 0.64rem;
  font-size: 0.48rem;
  color: #ff8b60;
  background: rgba(255, 139, 96, 0.1);
}
.hospital-info .tag span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #ff8b60;
  border-radius: 0.16rem;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.hospital-info .tag .establish {
  color: #0077fe;
  background: #f0f7ff;
}
.hospital-info .tag .establish::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #4d9efa;
  border-radius: 0.16rem;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.hospital-info .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.32rem;
  margin-left: 0.6rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.hospital-info .desc label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
}
.hospital-info .desc span,
.hospital-info .desc strong {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.hospital-info .source {
  margin: 0.48rem 0.48rem 0 0.24rem;
  padding: 0 0.52rem 0 0.24rem;
  line-height: 1.28rem;
  font-size: 0.48rem;
  color: #333;
  background: #fff5fb;
}
.hospital-info .source a,
.hospital-info .source span {
  padding: 0 0.1rem;
  color: #f893a5;
}
.hospital-info .source a {
  float: right;
}
.hospital-show {
  position: relative;
  margin: 0.48rem 0.32rem 0.56rem;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
  border-radius: 0.32rem;
  background: #ffffff;
}
.hospital-show .hd {
  position: relative;
  margin-bottom: 0.44rem;
  padding-left: 0.2rem;
  height: 0.96rem;
  line-height: 1.08rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04rem;
  border-left: 0.2rem solid #008000;
}
.hospital-show .project {
  position: relative;
  margin-bottom: 0.4rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.hospital-show .project label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.hospital-show .project span {
  margin-right: 0.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #666;
}
.hospital-show .introduction,
.hospital-show .address {
  margin-bottom: 0.48rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.hospital-show .introduction label,
.hospital-show .address label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.hospital-show .photo-list-wrap {
  margin-bottom: 0.4rem;
  padding-bottom: 0.24rem;
  overflow-x: auto;
}
.hospital-show .photo-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.3rem;
}
.hospital-show .photo-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 0.32rem;
  width: 4.56rem;
  height: 3.44rem;
}
.hospital-show .photo-list li img {
  width: 100%;
  height: 100%;
}
.hospital-show .contact p {
  line-height: 1.08rem;
  font-size: 0.52rem;
  color: #666;
}
.hospital-show .contact .zxBtn {
  margin-left: auto;
  padding-left: 1rem;
  width: 2.16rem;
  height: 1.08rem;
  line-height: 1.12rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url(../image/chat@2x.webp) 0.12rem 0.2rem no-repeat;
  background-size: 0.68rem;
}
.hospital-show .hospital-list li,
.hospital-show .doctor-list li {
  margin-left: 0;
}
.hospital-recommend {
  margin-top: 0.56rem;
}
/*
 * 医生栏目页
 */
.tabs-link {
  padding: 0.2rem 0 0.96rem;
  background-color: #fff;
}
.tabs-link .flex {
  margin: 0 auto;
  width: 10.72rem;
  border: 0.04rem solid #008000;
}
.tabs-link a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 5.2rem;
  line-height: 0.96rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #808080;
  text-align: center;
}
.tabs-link a.active {
  font-weight: 500;
  color: #fff;
  background-color: #008000;
}
.filter-hd {
  margin: 0.52rem 0.32rem 0.4rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
}
.filter-hd .area {
  padding-right: 0.68rem;
  background: url('../image/unfold@2x.png') right center no-repeat;
  background-size: 0.48rem;
  cursor: pointer;
}
.filter-hd .project {
  margin-left: auto;
  font-weight: 500;
  color: #ff647a;
  cursor: pointer;
}
.doctor-list li {
  position: relative;
  margin: 0 0.32rem 0.6rem;
  overflow: hidden;
}
.doctor-list a {
  display: block;
  overflow: hidden;
}
.doctor-list .pic {
  position: relative;
  float: left;
  width: 2.56rem;
  height: 2.56rem;
  overflow: hidden;
}
.doctor-list .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.doctor-list .info {
  float: left;
  margin-left: 0.48rem;
  width: 9.34rem;
}
.doctor-list .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.32rem;
}
.doctor-list .title .name {
  height: 0.72rem;
  line-height: 0.72rem;
  font-size: 0.56rem;
  color: #333333;
  font-weight: 500;
}
.doctor-list .title .job-title {
  margin-left: 0.24rem;
  padding: 0 0.16rem;
  height: 0.72rem;
  line-height: 0.72rem;
  font-size: 0.48rem;
  color: #ff461c;
  background: #ffece8;
}
.doctor-list .title .num {
  margin-left: 0.24rem;
  padding: 0 0.16rem;
  height: 0.72rem;
  line-height: 0.72rem;
  font-size: 0.48rem;
  color: #147dfc;
  background: #ebf4ff;
}
.doctor-list .hospital-name {
  margin-bottom: 0.08rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.doctor-list .tags {
  position: relative;
  overflow: hidden;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.doctor-list .tags label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.doctor-list .tags span {
  margin-right: 0.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #666;
}
.doctor-list .zxBtn {
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 1rem;
  width: 2.16rem;
  height: 1.08rem;
  line-height: 1.12rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url(../image/chat@2x.webp) 0.12rem 0.2rem no-repeat;
  background-size: 0.68rem;
}
/**
 * 医生详情
 */
.doctor-info {
  position: relative;
  margin: 1.64rem 0.32rem 0.48rem;
  padding-top: 0.4rem;
  height: 6.68rem;
  border-radius: 0.32rem;
  background: #ffffff;
}
.doctor-info .pic {
  position: absolute;
  left: 0.44rem;
  top: -1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  overflow: hidden;
  border-radius: 100%;
}
.doctor-info .pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.doctor-info .name {
  margin-left: 4.24rem;
  margin-bottom: 0.32rem;
  height: 0.76rem;
  line-height: 0.76rem;
  font-size: 0.64rem;
  font-weight: 700;
  color: #333333;
}
.doctor-info .job-title {
  position: relative;
  margin-left: 4.24rem;
  padding: 0 0.2rem;
  height: 0.64rem;
  line-height: 0.64rem;
  font-size: 0.48rem;
  color: #ff8b60;
  background: rgba(255, 139, 96, 0.1);
}
.doctor-info .job-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #ff8b60;
  border-radius: 0.16rem;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.doctor-info .num {
  position: relative;
  margin-left: 0.48rem;
  padding: 0 0.2rem;
  height: 0.64rem;
  line-height: 0.64rem;
  font-size: 0.48rem;
  color: #0077fe;
  background: #f0f7ff;
}
.doctor-info .num::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #4d9efa;
  border-radius: 0.16rem;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.doctor-info p {
  margin-top: 0.28rem;
  margin-left: 0.6rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #666;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.doctor-info .source {
  margin: 0.48rem 0.48rem 0 0.24rem;
  padding: 0 0.52rem 0 0.24rem;
  line-height: 1.28rem;
  font-size: 0.48rem;
  color: #333;
  background: #fff5fb;
}
.doctor-info .source a,
.doctor-info .source span {
  padding: 0 0.1rem;
  color: #008000;
}
.doctor-info .source a {
  float: right;
  font-weight: 700;
}
.doctor-show {
  position: relative;
  margin: 0.48rem 0.32rem 0.56rem;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
  border-radius: 0.32rem;
  background: #ffffff;
}
.doctor-show .hd {
  position: relative;
  margin-bottom: 0.44rem;
  padding-left: 0.2rem;
  height: 0.96rem;
  line-height: 1.08rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04rem;
  border-left: 0.2rem solid #008000;
}
.doctor-show .project {
  position: relative;
  margin-bottom: 0.4rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.doctor-show .project label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.doctor-show .project span {
  margin-right: 0.3rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #666;
}
.doctor-show .introduction {
  margin-bottom: 0.48rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.doctor-show .introduction label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.doctor-show .contact p {
  line-height: 1.08rem;
  font-size: 0.52rem;
  color: #666;
}
.doctor-show .contact .zxBtn {
  margin-left: auto;
  padding-left: 1rem;
  width: 2.16rem;
  height: 1.08rem;
  line-height: 1.12rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url(../image/chat@2x.webp) 0.12rem 0.2rem no-repeat;
  background-size: 0.68rem;
}
.doctor-show .hospital-list li,
.doctor-show .doctor-list li {
  margin-left: 0;
}
.doctor-recommend {
  margin-top: 0.56rem;
}
/**
 * 项目
 */
.project-column-box {
  margin: 0.48rem 0;
}
.project-column-box .nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.64rem;
          flex: 0 0 3.64rem;
  padding: 0.6rem 0;
  background-color: #fff;
}
.project-column-box .nav a {
  position: relative;
  display: block;
  margin-bottom: 0.38rem;
  padding-left: 0.96rem;
  height: 0.84rem;
  line-height: 0.84rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #333;
  border-left: 0.12rem solid transparent;
}
.project-column-box .nav a.active {
  color: #008000;
  border-left-color: #008000;
}
.project-column-box ul {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.44rem;
          flex: 0 0 10.44rem;
  margin-right: 0.32rem;
}
.project-column-box li {
  margin-bottom: 0.48rem;
  height: 2.76rem;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0.08rem 0.24rem rgba(0, 0, 0, 0.07);
          box-shadow: 0rem 0.08rem 0.24rem rgba(0, 0, 0, 0.07);
}
.project-column-box li a {
  display: block;
  padding: 0.4rem 0.72rem 0;
}
.project-column-box li h3 {
  margin-bottom: 0.12rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #333;
  font-weight: 700;
  background: url('../image/more@2x.png') right bottom no-repeat;
  background-size: 0.28rem;
}
.project-column-box li p {
  margin-right: 0.48rem;
  height: 1.2rem;
  line-height: 0.62rem;
  font-size: 0.44rem;
  font-weight: 500;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/**
 * 项目详情
 */
.project-top-box {
  position: relative;
  margin: 0.4rem 0.32rem 0.24rem;
  padding: 0.4rem 0 0.8rem;
  background-color: #fff;
}
.project-top-box h1 {
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  color: #333333;
}
.project-top-box .score {
  margin-left: auto;
  padding-left: 0.88rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  color: #333333;
  background: url('../image/stars@2x.png') left center no-repeat;
  background-size: 0.6rem;
}
.project-top-box .source {
  margin-top: 0.32rem;
  line-height: 0.64rem;
  font-size: 0.48rem;
  color: #333;
}
.project-top-box .source a,
.project-top-box .source span {
  padding: 0 0.2rem;
  color: #008000;
}
.project-top-box .stars-row {
  margin: 0.32rem 0 0.04rem;
  padding-left: 0.2rem;
  overflow: hidden;
}
.project-top-box .stars-row .stars-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.24rem;
  font-size: 0.48rem;
  color: #333;
}
.project-top-box .stars-row .stars-item span {
  display: inline-block;
  height: 0.72rem;
  line-height: 0.72rem;
  vertical-align: top;
}
.project-top-box .stars-row .stars-item .focus-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-top-box .stars-row .stars-item .iconfont,
.project-top-box .stars-row .stars-item .icon2 {
  margin: 0 0.02rem 0 0.36rem;
  width: 0.6rem;
  height: 0.72rem;
}
.project-top-box .stars-row .stars-item .icon-favorite_fill,
.project-top-box .stars-row .stars-item .icon2stars {
  background: url('../image/stars@2x.png') center no-repeat;
  background-size: 0.6rem;
}
.project-top-box .stars-row .stars-item .icon-favorite_fill.gray,
.project-top-box .stars-row .stars-item .icon2stars_gray {
  background: url('../image/stars_gray@2x.png') center no-repeat;
  background-size: 0.6rem;
}
.project-top-box p {
  margin-bottom: 0.16rem;
  padding-left: 0.2rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  vertical-align: top;
}
.project-top-box p label {
  color: #333;
}
.project-top-box p span {
  color: #666;
}
.project-top-box p em {
  display: inline-block;
  margin-bottom: 0.16rem;
  margin-right: 0.2rem;
  padding: 0 0.16rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
  color: #5c7090;
  background-color: #f2f7ff;
}
.project-top-box p:has(em) {
  margin-bottom: 0;
}
.project-show {
  padding: 0 0.32rem;
}
.project-show .box {
  margin-bottom: 0.28rem;
  padding-top: 0.4rem;
}
.project-show .box h2 {
  position: relative;
  margin-bottom: 0.36rem;
  padding-left: 0.28rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04rem;
}
.project-show .box h2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.12rem;
  height: 0.68rem;
  background-color: #008000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.project-show .box .desc {
  line-height: 0.8rem;
  font-size: 0.48rem;
  color: #666;
}
.project-show .box .desc li.p1 {
  margin-bottom: 0.1rem;
}
.project-show #operation {
  /* ul {
      margin-top: 20/ @rex;
      padding: 10/ @rex 0;
      overflow: hidden;
      border: 1/ @rex solid #d5d5d5;
    }
    li {
      margin-bottom: 7/ @rex;
      padding: 12/ @rex 0;
      line-height: 36/ @rex;
      font-size: 24/ @rex;
      color: #666;
      overflow: hidden;
      &:nth-child(even) {
        background-color: #f3f9ff;
      }
      .l,
      .r {
        width: 50%;
        flex: 1;
        display: flex;
      }
      span {
        display: inline-block;
        vertical-align: top;
      }
      .name {
        padding-left: 20/ @rex;
        // width: 210/ @rex;
      }
      .value {
        // width: 239/ @rex;
        font-weight: 500;
      }
      &.tips {
        margin-top: 10/ @rex;
        margin-bottom: 0;
        text-align: center;
      }
    } */
}
.project-show #operation ul {
  margin-top: 0.4rem;
  padding: 0.1rem 0;
  overflow: hidden;
  border: 0.02rem solid #d5d5d5;
}
.project-show #operation li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.project-show #operation li .l,
.project-show #operation li .r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.24rem 0;
  line-height: 0.72rem;
  font-size: 0.48rem;
}
.project-show #operation li .r {
  background-color: #f3f9ff;
}
.project-show #operation li span {
  display: inline-block;
}
.project-show #operation li .name,
.project-show #operation li .value {
  margin-left: 0.32rem;
  width: 4rem;
  color: #666666;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.project-show #operation li .value {
  margin-left: 0.4rem;
  width: 9.6rem;
  color: #333;
}
.project-show #operation li.tips {
  margin-left: 0.32rem;
  text-align: center;
}
.project-show #operation li .tip {
  margin-left: 0.32rem;
  font-size: 0.48rem;
  color: #b2b2b2;
}
.project-show #nurse ul {
  margin-top: 0.4rem;
}
.project-show #nurse li {
  padding: 0 0 0.4rem 0.8rem;
  position: relative;
}
.project-show #nurse li .spl {
  position: absolute;
  top: 0.16rem;
  bottom: -0.1rem;
  left: 0.2rem;
  z-index: 2;
  width: 0.02rem;
  border-left: 0.02rem dashed #ededed;
}
.project-show #nurse li i {
  position: absolute;
  top: 0.3rem;
  left: 0.14rem;
  z-index: 3;
  display: inline-block;
  width: 0.14rem;
  height: 0.14rem;
  font-size: 0;
  border: 0.02rem solid #ededed;
  background: #ededed;
  border-radius: 50%;
}
.project-show #nurse li.on i,
.project-show #nurse li:hover i {
  top: 0.26rem;
  left: 0.1rem;
  padding: 0.1rem;
  border: 0.02rem dashed #ededed;
  background: #fff;
}
.project-show #nurse li.on i:after,
.project-show #nurse li:hover i:after {
  display: block;
  content: '';
  width: 0.14rem;
  height: 0.14rem;
  font-size: 0;
  background: #ededed;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.project-show #nurse li:last-child {
  padding-bottom: 0;
}
.project-show #nurse li:first-child .spl {
  top: 0.36rem;
}
.project-show #nurse p {
  margin-bottom: 0.3rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
  color: #666;
}
.project-show #nurse p strong,
.project-show #nurse p em {
  color: #333333;
  font-weight: normal;
}
.project-show #nurse h3,
.project-show #nurse p.title {
  line-height: 0.8rem;
  font-size: 0.52rem;
  color: #008000;
  margin-bottom: 0.4rem;
}
.project-show #nurse h3 em,
.project-show #nurse p.title em {
  padding-left: 0.2rem;
  color: #008000;
}
.project-list li {
  position: relative;
  margin: 0.5rem 0.32rem 0;
  padding: 0.5rem 0.8rem 0;
  overflow: hidden;
  height: 4.52rem;
  background-color: #fff;
}
.project-list a {
  display: block;
}
.project-list h3 {
  margin-bottom: 0.56rem;
  height: 0.92rem;
  line-height: 0.92rem;
  font-size: 0.64rem;
  color: #333;
  font-weight: 500;
  width: 8.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.project-list p {
  height: 2.04rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.project-list .zxBtn {
  position: absolute;
  top: 0.4rem;
  right: 0;
  padding-left: 0.96rem;
  width: 3rem;
  height: 1.04rem;
  line-height: 1.04rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url('../image/chat@2x.webp') 0.12rem 0.24rem no-repeat;
  background-size: 0.68rem;
}
/*
 * 问答栏目
 */
.ask-list li {
  margin-bottom: 0.52rem;
  padding: 0 0.32rem;
}
.ask-list a {
  display: block;
}
.ask-list .question {
  margin-bottom: 0.36rem;
  padding-left: 1.88rem;
  height: 0.92rem;
  line-height: 0.92rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #333;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  background: url('../image/ask_question_1@2x.png') left center no-repeat;
  background-size: 0.92rem;
}
.ask-list .tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 2.4rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #008000;
}
.ask-list .answer {
  height: 2.04rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-wrap: break-word;
  word-break: break-all;
}
.ask-list .source {
  position: relative;
  margin-top: 0.12rem;
  padding-left: 0.34rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
  color: #999;
}
.ask-list .source::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.24rem;
  height: 0.24rem;
  background-color: #008000;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ask-list .source span + span {
  margin-left: 0.8rem;
}
.ask-list .source em {
  padding: 0 0.3rem;
  color: #008000;
}
.ask-list2 li {
  margin-bottom: 0.8rem;
  padding: 0 0.32rem;
}
.ask-list2 a {
  display: block;
}
.ask-list2 h3 {
  padding-left: 1.08rem;
  line-height: 0.72rem;
  font-size: 0.56rem;
  color: #333;
  font-weight: 500;
  background: url('../image/ask_question@2x.png') left top no-repeat;
  background-size: 0.84rem;
}
.ask-list2 .desc {
  margin-top: 0.4rem;
  padding-left: 1.08rem;
  height: 1.36rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  background: url('../image/ask_answer@2x.png') left top no-repeat;
  background-size: 0.84rem;
}
.ask-list2 .other {
  margin-top: 0.3rem;
  height: 0.76rem;
  line-height: 0.76rem;
  font-size: 0.48rem;
  color: #999;
}
.ask-list2 .other .avatar {
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 100%;
  margin-right: 0.26rem;
}
.ask-list2 .other .time,
.ask-list2 .other .views {
  margin-left: auto;
}
.ask-list2 .other span:last-child {
  margin-right: 0.4rem;
}
/*
 * 问答详情页
 */
.question-box {
  position: relative;
  margin-bottom: 0.52rem;
  padding: 0.38rem 0.36rem 0.44rem;
  background-color: #fff;
}
.question-box h1 {
  margin-bottom: 0.28rem;
  padding-left: 1.08rem;
  line-height: 0.72rem;
  font-size: 0.56rem;
  color: #333;
  font-weight: 500;
  background: url('../image/ask_question@2x.png') left top no-repeat;
  background-size: 0.84rem;
}
.question-box .desc {
  line-height: 0.68rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #999;
}
.question-box .other {
  margin-top: 0.28rem;
  height: 0.76rem;
  line-height: 0.76rem;
  font-size: 0.48rem;
  color: #999;
}
.question-box .other .avatar {
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 100%;
  margin-right: 0.26rem;
}
.question-box .other .name {
  margin-right: 0.8rem;
}
.question-box .other .views {
  margin-left: auto;
  margin-right: 0.4rem;
}
.answer-box .hd {
  margin-bottom: 0.28rem;
  padding-left: 0.36rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #666;
}
.answer-list li {
  position: relative;
  margin: 0 0.32rem 0.48rem;
  padding: 0.16rem 0.48rem 0.68rem 0.32rem;
  font-size: 0.48rem;
  color: #999;
  background: #fff;
}
.answer-list h3 {
  margin-left: -0.32rem;
  padding-left: 0.16rem;
  height: 0.84rem;
  line-height: 0.84rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04rem;
  border-left: 0.08rem solid #008000;
}
.answer-list .desc {
  margin-top: 0.24rem;
  margin-bottom: 0.48rem;
  line-height: 0.68rem;
  word-wrap: break-word;
  word-break: break-all;
}
.answer-list .avatar {
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 100%;
  margin-right: 0.26rem;
}
.answer-list .user-name {
  height: 0.76rem;
  line-height: 0.76rem;
}
.answer-list .time {
  margin-left: auto;
  height: 0.76rem;
  line-height: 0.76rem;
}
.ask-recommend {
  margin-top: 0.56rem;
}
/*
 * 资讯栏目页
 */
.news-list li {
  position: relative;
  margin-top: 0.6rem;
  padding: 0 0.32rem;
  overflow: hidden;
}
.news-list a {
  display: block;
  overflow: hidden;
}
.news-list .pic {
  display: block;
  float: right;
  margin-left: 0.4rem;
  width: 3.92rem;
  height: 3.24rem;
  overflow: hidden;
  background: #f2f2f2;
}
.news-list .info {
  padding-top: 0.08rem;
}
.news-list h3 {
  margin-bottom: 0.1rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.news-list .desc {
  margin-bottom: 0.2rem;
  height: 1.36rem;
  line-height: 0.7rem;
  font-size: 0.48rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-list .time-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-right: 0.04rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
}
.news-list .time-row .views {
  padding-left: 0.8rem;
  background: url(../image/views@2x.webp) left center no-repeat;
  background-size: 0.6rem;
}
.news-list .time-row em {
  color: #008000;
}
/*
 * 新闻详情
 */
.news-show .title-box {
  margin: 0 0.32rem 0.4rem;
  padding: 0.24rem 0.2rem 0.24rem;
  background-color: #fff;
}
.news-show h1 {
  line-height: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #333;
}
.news-show .time-row {
  height: 1.2rem;
  line-height: 1.2rem;
  font-size: 0.48rem;
  color: #999;
  /* .views {
      padding-left: 56 / @rex;
      color: @brandColor;
      background: url(../image/views@2x.webp) left center no-repeat;
      background-size: 48 / @rex;
    } */
}
.news-show .source {
  margin-bottom: 0.52rem;
  padding: 0 0.36rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #333;
}
.news-show .source a,
.news-show .source span {
  padding: 0 0.1rem;
  color: #008000;
}
.news-show .doctor-box {
  margin-bottom: 0.3rem;
  height: 4.76rem;
  background-color: #fff;
}
.news-show .doctor-box .tit {
  margin-bottom: 0.6rem;
  padding-left: 0.76rem;
  width: 3.16rem;
  height: 0.84rem;
  line-height: 0.84rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #008000;
  border-radius: 0 0 0.34rem 0;
  background: #ffedf5;
}
.news-show .btn-row {
  margin-bottom: 0.4rem;
}
.news-show .btn-row li {
  width: 4.36rem;
  height: 1.36rem;
  line-height: 1.36rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #2ea7e0;
}
.news-show .btn-row li:nth-child(2) {
  background-color: #629cff;
}
.news-show .btn-row li:nth-child(3) {
  background-color: #f93886;
}
.news-show .content {
  padding: 0.32rem;
  font-size: 0.56rem;
  color: #666;
}
.news-show .content * {
  font-size: 0.56rem;
}
.news-show .content h2,
.news-show .content h3,
.news-show .content h4 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  color: #333;
  font-weight: 600;
}
.news-show .content h2 {
  font-size: 0.68rem;
}
.news-show .content h3 {
  font-size: 0.64rem;
}
.news-show .content p,
.news-show .content div {
  margin-bottom: 0.4rem;
}
.news-show .content p:last-child,
.news-show .content div:last-child {
  margin-bottom: 0.1rem;
}

.news-show .content h2 {
    margin-bottom: 10px;
    line-height: 28px;
    color: #262626;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    word-break: break-all;
    position: relative;
    padding-left: 16px;
}
.news-show .content h2::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    margin-right: 10px;
    width: 6px;
    height: 18px;
    background: #008000;
    border-radius: 3px;
}
.news-show .content h3 {
    margin: 20px 0;
    line-height: 22px;
    color: #262626;
    font-size: 17px;
    font-weight: 700;
    overflow: hidden;
    word-break: break-all;
}


.news-show .link {
  margin-top: 0.2rem;
  padding: 0 0.32rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
}
.news-show .link span {
  margin-right: 0.6rem;
  color: #a6a6a6;
}
.news-show .link a {
  color: #008000;
}
.next-box {
  margin: 0.52rem 0.32rem;
}
.next-box a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 4.16rem;
  line-height: 1.04rem;
  font-size: 0.64rem;
  color: #008000;
  text-align: center;
  border: 0.04rem solid #008000;
  border-radius: 0.2rem;
}
.next-box a + a {
  margin-left: 1.1rem;
}
.shenming {
  margin: 0.48rem 0.32rem;
  padding: 0.6rem 0.5rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #666;
  text-align: center;
  background-color: #fff;
}
.shenming .tit {
  font-weight: 600;
}
.customer-service {
  margin: 0.48rem auto;
  padding-top: 8.24rem;
  width: 14.36rem;
  height: 9.76rem;
  background: url('../image/customer_service@2x.png') center no-repeat;
  background-size: 14.4rem;
}
.customer-service .desc {
  margin-left: 3.5rem;
  height: 0.64rem;
  line-height: 0.64rem;
  font-size: 0.44rem;
  color: #022d79;
}
.customer-service .desc span + span {
  margin-left: 0.72rem;
}
.news-recommend {
  margin-top: 0.48rem;
}
.top-bar:has(+ .index-top) {
  background-color: #f7dfea;
}
.index-top {
  padding-top: 0.28rem;
  height: 3.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7dfea), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #f7dfea 0%, rgba(255, 255, 255, 0) 100%);
}
.index-top .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.32rem;
  padding: 0 0.4rem;
  height: 1.28rem;
  background: #fff;
  border-radius: 0.64rem;
}
.index-top .search-form .icon2search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 0.4rem;
  width: 0.6rem;
  height: 100%;
  background: url('../image/search@2x.webp') center no-repeat;
  background-size: 0.56rem;
  border:none;
}
.index-top .search-form .search-bar__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  background: none;
  border: 0;
}
.index-top .search-form .search-bar__input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.index-top .search-form .search-bar__input:focus {
  outline: none;
}
.index-top ul {
  margin: 0.68rem 1.96rem 0;
}
.index-top ul li {
  padding-left: 0.6rem;
  line-height: 0.6rem;
  font-size: 0.44rem;
  font-weight: 500;
  color: #999;
}
.index-top ul li:nth-child(1) {
  background: url('../image/i1.png') left center no-repeat;
  background-size: 0.44rem;
}
.index-top ul li:nth-child(2) {
  background: url('../image/i2.png') left center no-repeat;
  background-size: 0.56rem;
}
.index-top ul li:nth-child(3) {
  background: url('../image/i3.png') left center no-repeat;
  background-size: 0.52rem;
}
.index-nav {
  margin: 0.16rem 0.32rem 0.48rem;
  padding: 0 1.12rem;
  height: 4.88rem;
  background-color: #fff;
  -webkit-box-shadow: 0rem 0.08rem 0.44rem rgba(161, 161, 161, 0.25);
          box-shadow: 0rem 0.08rem 0.44rem rgba(161, 161, 161, 0.25);
  text-align: center;
}
.index-nav a {
  display: block;
  width: 2.6rem;
  height: 3.72rem;
  font-weight: 500;
  color: #666;
}
.index-nav img {
  width: 1.92rem;
  height: 1.92rem;
}
.index-nav h3 {
  position: relative;
  margin-top: 0.2rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
}
.index-nav h3 .hot {
  position: absolute;
  top: -0.56rem;
  display: inline-block;
  width: 1.52rem;
  height: 0.72rem;
  background: url('../image/nav_hot@2x.png') center no-repeat;
  background-size: 1.52rem;
}
.index-nav p {
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
}
.index-project {
  -ms-flex-line-pack: justify;
      align-content: space-between;
  margin: 0.48rem 0.32rem;
  padding-top: 0.44rem;
  padding-bottom: 0.84rem;
  height: 6.48rem;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0.08rem 0.36rem rgba(204, 204, 204, 0.25);
          box-shadow: 0rem 0.08rem 0.36rem rgba(204, 204, 204, 0.25);
}
.index-project a {
  width: 20%;
  text-align: center;
}
.index-project img {
  display: inline-block;
  margin: 0 auto;
  width: 1.6rem;
  height: 1.6rem;
}
.index-project p {
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #333;
}
.bannerBox {
  position: relative;
  margin: 0.48rem auto 1rem;
  width: 14.36rem;
  height: 3.92rem;
  overflow: hidden;
  background-color: #fff;
}
.bannerBox .swiper-slide {
  width: 14.36rem;
  height: 3.92rem;
}
.bannerBox a {
  display: block;
  width: 100%;
  height: 100%;
}
.bannerBox img {
  width: 100%;
  height: 100%;
}
.bannerBox .swiper-pagination {
  font-size: 0;
  bottom: 0.32rem !important;
}
.bannerBox .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  font-size: 0;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}
.bannerBox .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #008000;
}
.mb25 {
  margin-bottom: 0.5rem;
}
.index-hd {
  margin-top: 0.48rem;
  padding: 0.52rem 0.32rem 0 0.32rem;
  height: 1.84rem;
  background-color: #fff;
}
.index-hd .tit {
  position: relative;
  padding-left: 0.36rem;
  height: 0.8rem;
  line-height: 0.8rem;
  border-left: 0.16rem solid #008000;
}
.index-hd .tit span {
  font-size: 0.56rem;
  font-weight: 700;
  color: #333;
}
.index-hd .tit em {
  margin-left: 0.32rem;
  font-size: 0.48rem;
  color: #666;
}
.index-hd .more {
  margin-left: auto;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.48rem;
  color: #666;
}
.hospital-card-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0.48rem 0.3rem 0 0.4rem;
  padding-top: 0.3rem;
  width: 6.74rem;
  height: 10rem;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.3rem;
}
.hospital-card-list .logo {
  margin: 0 auto;
  overflow: hidden;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 100%;
}
.hospital-card-list .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.hospital-card-list .info {
  padding-top: 0.28rem;
}
.hospital-card-list h3 {
  position: relative;
  margin-bottom: 0.52rem;
  padding: 0 0.2rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.hospital-card-list .address-type {
  position: relative;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.hospital-card-list .address-type span {
  position: relative;
  padding-left: 0.52rem;
  color: #008000;
}
.hospital-card-list .address-type span::before {
  content: '';
  position: absolute;
  top: 0.26rem;
  left: 0.18rem;
  width: 0.12rem;
  height: 0.12rem;
  background-color: #000;
  border-radius: 100%;
}
.hospital-card-list .address-type::after {
  content: '';
  position: absolute;
  top: -0.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.8rem;
  height: 0.06rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(30%, rgba(0, 128, 0, 0.1)), color-stop(50%, #008000), color-stop(70%, rgba(0, 128, 0, 0.1)), to(#ffffff));
  background: linear-gradient(90deg, #ffffff 0%, rgba(0, 128, 0, 0.1) 30%, #008000 50%, rgba(0, 128, 0, 0.1) 70%, #ffffff 100%);
}
.hospital-card-list .zxBtn {
  margin: 0.28rem auto 0;
  padding-left: 1.2rem;
  width: 3.44rem;
  height: 0.96rem;
  line-height: 0.96rem;
  font-size: 0.48rem;
  font-weight: 500;
  color: #fff;
  background: #008000 url(../image/chat2@2x.png) 0.28rem 0.12rem no-repeat;
  background-size: 0.76rem;
}
.doctor-card-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0.48rem 0.3rem 0 0.4rem;
  padding-top: 0.3rem;
  width: 6.74rem;
  height: 8.4rem;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.3rem;
}
.doctor-card-list img {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 100%;
}
.doctor-card-list .info {
  padding-top: 0.32rem;
}
.doctor-card-list .title {
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.doctor-card-list .title span {
  position: relative;
  display: inline-block;
  line-height: 0.8rem;
  vertical-align: top;
  margin-left: 0.32rem;
  padding-left: 0.3rem;
  color: #008000;
}
.doctor-card-list .title span::before {
  content: '';
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 0.04rem;
  height: 0.48rem;
  background-color: #ccc;
  border-radius: 100%;
}
.doctor-card-list .hospital {
  margin-top: 0.28rem;
  padding: 0 0.2rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  color: #333;
  text-align: center;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.ask-list3 li {
  margin: 0.48rem 0.32rem;
  padding: 0.44rem 0.36rem 0;
  height: 6.24rem;
  background-color: #fff;
}
.ask-list3 a {
  display: block;
}
.ask-list3 .question {
  margin-bottom: 0.76rem;
  padding-left: 1.44rem;
  height: 0.96rem;
  line-height: 1.12rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #333;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  background: url('../image/ask_question_2@2x.png') left center no-repeat;
  background-size: 1.16rem;
}
.ask-list3 .tit {
  margin-bottom: 0.12rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.04rem;
}
.ask-list3 .answer {
  height: 1.36rem;
  line-height: 0.68rem;
  font-size: 0.48rem;
  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;
}
.ask-list3 .source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.32rem;
  height: 1.04rem;
  line-height: 1.04rem;
  font-size: 0.48rem;
  color: #999;
}
.ask-list3 .source .avatar {
  margin-right: 0.36rem;
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 100%;
}
.ask-list3 .source em {
  margin-right: 0.44rem;
  color: #666;
}
.ask-list3 .source .time {
  margin-left: auto;
  margin-right: 0.1rem;
}
.news-list2 li {
  margin: 0.44rem 0.32rem;
  padding: 0.48rem 0.68rem 0 0.48rem;
  height: 5.12rem;
  background-color: #fff;
}
.news-list2 .pic {
  margin-top: 0.16rem;
  margin-left: 0.32rem;
  width: 3.9rem;
  height: 3.92rem;
}
.news-list2 .info {
  padding-top: 0;
}
.news-list2 h3 {
  font-weight: 700;
}
.news-list2 .desc {
  margin-bottom: 0;
  height: 2.04rem;
  line-height: 0.68rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.news-list2 .time-row {
  margin-bottom: 0.32rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.error-404 {
  margin: 0.2rem auto;
}
.error-404 a {
  display: block;
  height: 10.8rem;
  background: url() center no-repeat;
}
/*
 * 使用协议
 */
.pact {
  padding: 0.5rem;
}
.pact h1 {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 24px;
  color: #008000;
  text-align: center;
}
.pact h3 {
  margin: 15px 0 8px;
  line-height: 1.6;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.pact p {
  margin-bottom: 5px;
  line-height: 1.7;
  font-size: 12px;
  color: #333;
  text-indent: 2em;
}
.pact .fwb {
  font-weight: 700;
}
.pact .cr {
  color: red;
}

/*问答*/
.mt-53 {
    margin-top: .53rem;
}
.mb-53 {
    margin-bottom: .53rem;
}
.plf-43 {
    padding-left: .43rem;
    padding-right: .43rem;
}
.art-h1 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2.3rem;
}
.mt-33 {
    margin-top: .4rem;
}
.pb-33 {
    padding-bottom: .4rem;
}
.flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: box;
    display: flexbox;
}
.jc-sb {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.ai-c {
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
}
.other {
    color: #999999;
    font-size: .6rem;
}
.other span {
    color: #999999;
    font-size: .6rem;
}
.pt-33 {
    padding-top: .33rem;
}
.bt-f5 {
    border-top: 1px solid #f5f5f5;
}
.art-cont {
    margin: 0 0 16px;
    color: #262626;
    font-size: 16px;
    line-height: 26px;
}
.c-style {
    color: #4194e2;
}
.art-cont p {
    color: #262626;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 16px;
}
.my-line {
    height: .18rem;
    background-color: #F5F5F5;
}
.mt-53 {
    margin-top: .53rem;
}
.plf-43 {
    padding-left: .43rem;
    padding-right: .43rem;
}
.ask-replyNum {
    width: 3rem;
    font-size: .7rem;
}
.flex-1 {
    flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}
.bb-d4 {
    border-bottom: 1px solid #d4d4d4;
}
.mb-33 {
    margin-bottom: .33rem;
}
.b-f5 {
    border: 1px solid #f5f5f5;
}
.p-2 {
    padding: .2rem;
}
.bg-fa {
    background: #fafafa;
}
.ask-doctor .bg-fa {
    font-size: .6rem;
    font-weight: 700;
}
.pr {
    position: relative;
}
.ask-doctor .ask-doctor-state {
    color: #a9a9a9;
    font-size: .6rem;
    font-weight: 400;
}
.ask-doctor .doctor-stateZx {
    color: rgb(8, 217, 105);
}
.ask-doctor .ask-doctor-img {
    width: 3rem;
    height: 3.5rem;
}
.ask-doctor .ask-doctor-img img {
    width: 100%;
    height: 100%;
}
.pl-33 {
    padding-left: .2rem;
}
.t {
    font-size: .7rem;
    color: #333333;
}
.ask-doctor .ask-doctor-info p {
    line-height: .8rem;
}
.ml-33 {
    margin-left: .2rem;
}
.ask-doctor .ask-doctor-name span {
    font-size: .6rem;
    color: #999999;
}
.f {
    font-family: "f" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ask-doctor .ask-doctor-name .f {
    font-size: .6rem;
    color: rgb(252, 211, 7);
    padding-left: .2rem;
}
.line2 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 1.5rem;
    line-height: .6rem;
}
.ask-doctor .ask-doctor-btn {
    width: 2rem;
    margin-left: .11rem;
}
.ask-doctor .ask-doctor-btn a {
    background: #ff8401;
    color: #ffffff;
    font-size: .6rem;
    border-radius: .8rem;
    height: 1.2rem;
    width: 2rem;
    line-height: 1.2rem;
    text-align: center;
}
.ask-report {
    line-height: .6rem;
    font-size: .5rem;
    color: #999999;
}


/*医生医院内容新增*/
.swiper-container {
    height: 2rem;
    width: 100%;
}
.yy-dir-swiper ul{align-items:center;}
.mt-53 {
    margin-top: 1rem;
}
.plf-43 {
    padding-left: .3rem;
    padding-right: .3rem;
}
.flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: box;
    display: flexbox;
}
.jc-sb {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.mr-33 {
    margin-right: 1.3rem;
}
.flex-1 {
    flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}
.art-h1 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2rem;
}
.br-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.yy-img {
    width: 5rem;
    height: 3rem;
}
.pb-33 {
    padding-bottom: .5rem;
}
.ai-c {
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
}
.other {
    color: #999999;
    font-size: .6rem;
}
.other em {
    color: #999999;
    padding: 0 4px;
    vertical-align: middle;
}
.other span {
    color: #999999;
    font-size: .6rem;
}
.p-3 {
    padding: .3rem;
}
.bg-f5 {
    background: #f5f5f5;
}
.yy-dir {
    position: sticky;
    top: 0;
}
.yy-dir .t {
    width: 1.5rem;
    color: #999999;
    font-size: .6rem;
    line-height: .9rem;
}
.i-next:before {
    content: "\e601";
}
.f {
    font-family: "f" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.yy-dir .f {
    font-size: .7rem;
    color: #999999;
}
.yy-dir .yy-dir-swiper li {
    background: #fff;
    border-radius: .3rem;
    box-shadow: 0 0 0.13333rem rgb(0 0 0 / 10%);
    color: #333;
    font-size: .65rem;
    height: 1.2rem;
    line-height: 1.2rem;
    padding: 0 .5rem;
    width: auto;
    margin-left: .5rem;
}
.t-h2 {
    font-size: 1rem;
    font-weight: 700;
}
.t-h2 .i-y-xx {
    color: #4194e2;
    font-size: .8rem;
}
.t-h2 span {
    font-size: .8rem;
    padding-left: .4rem;
    line-height: 1rem;
}
.bb-de6 {
	padding: .3rem 0;
    border-bottom: 1px dashed #e6e6e6;
}
.yy-cont-table label {
    font-size: .6rem;
    color: #999999;
    width: 3rem;
}
.yy-cont-table p {
    font-size: .6rem;
    color: #333333;
}
.my-line {
    height: .5rem;
    background-color: #F5F5F5;
}
.col-3 {
    width: 32% !important;
}
.col-3 img{
    max-width: 100%;
    min-width: 50%;
    outline: none;
    -webkit-box-sizing: border-box;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 8px;
}


.related-doctor-item {
    display: flex;
    flex-direction: column;
    background: #F5F8FF;
    border-radius: 1.4rem;
    padding: 1.2rem;
    font-size: 1.6rem;
    color: #666666;
    position: relative;
}
.related-doctor-wraper .related-doctor-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.related-doctor-item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    flex: 1;
}
.related-doctor-item .info .doctor-img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 2rem;
}
.related-doctor-item .info .info-right {
    flex: 1;
    overflow: hidden;
}
.related-doctor-item .info .info-right {
    margin-right: 1.1rem;
}
.related-doctor-item .info .doctor-name {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.related-doctor-item .info .doctor-type {
    position: relative;
    font-size: 1.4rem;
    font-weight: normal;
    margin-left: .5rem;
    padding-left: .5rem;
}
.related-doctor-item .info .doctor-type::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 1.6rem;
    background-color: #D8D8D8;
    left: 0;
    top: 50%;
    margin-top: -8rem;
}
.related-doctor-item .info .hospital {
    display: flex;
    align-items: center;
    overflow: hidden;
	font-size:1.4rem;
}
.related-doctor-wraper{padding: 0 1.5rem;}
.related-doctor-item .info .hospital .hospital-tit {
    max-width: 60%;
}
.related-doctor-wraper .adept {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    margin-top: -2.2rem;
    width: 5.9rem;
    height: 2.4rem;
    line-height: 2.4rem;
    background: #0052FE;
    border-radius: 1.4rem;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}
.related-doctor-item .info .hospital-type {
    height: 1.4rem;
    background-color: #FFE1CE;
    padding: .3rem .5rem;
    color: #F3711C;
    border-radius: .4rem;
    font-size: 1.1rem;
    margin-left: 1rem;
    font-weight: normal;
    flex-shrink: 0;
}
.hospital-keshi{font-size:1.4rem;}
.art-cont {
    margin: 0 0 16px;
    color: #262626;
    font-size: 15px;
    line-height: 26px;
}
.art-cont p {
    color: #262626;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
}

/*新版底部*/
.bottom-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    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;
    padding: .1rem .1rem;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3
}

.bottom-btn a {
    width: 7.2rem;
    height: 1.5rem;
    font-size: .7rem;
    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;
    color: #fff
}

.bottom-btn>a:first-of-type,.bottom-btn>div:first-of-type a {
    border-radius: 1rem;
    background-color: #008000;
}

.bottom-btn>a:first-of-type:before,.bottom-btn>div:first-of-type a::before {
    display: inline-block;
    content: '';
    background: url(../picture/ask.png) no-repeat;
    background-position: 20% center;
    background-size: 100%;
    width: .7rem;
    height: .7rem;
    margin-right: .2rem
}

.bottom-btn>a:last-of-type:before,.bottom-btn>div:last-of-type a::before {
    display: inline-block;
    content: '';
    background: url(../picture/register.png) no-repeat;
    background-position: 20% center;
    background-size: 100%;
    width: .7rem;
    height: .7rem;
    margin-right: .2rem
}

.bottom-btn>a:last-of-type,.bottom-btn>div:last-of-type a {
    border-radius: 1rem;
    background-color: #FF9023
}