.cfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clx {
  clear: both;
}

/* 一行否则出现省略号 */
.line-clamp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*弹性盒子*/
/*设置该类型为伸缩盒子布局*/
.display_flex {
  width: 100%;

  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -o-box;
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /*ie10*/
  display: box;
  /*09之前年版本（弹性盒子）*/
  display: flexbox;
  display: flex;
  /*2012年后写法 Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  /* 12版 */
  /* row（默认值）：主轴为水平方向，起点在左端。*/
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  /*伸缩项目从左到右水平排列。默认值*/
}

.display_flex>* {
  display: block;
}

/*设置该类型为伸缩盒子布局（行内）*/
.display_inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.display_inline-flex>* {
  display: block;
}

/***************定义项目在主轴上的对齐方式。*****************/
/*默认左对齐*/
.justify_start_default {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-pack: start;
  /*伸缩项目以起始点靠齐*/
  -moz-box-pack: start;
  -ms-box-pack: start;
  -o-box-pack: start;
  box-pack: start;
}

/*右对齐*/
.justify_flex_end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-pack: end;
  /*伸缩项目以结束点靠齐*/
  -moz-box-pack: end;
  -ms-box-pack: end;
  -o-box-pack: end;
  box-pack: end;
}

/*居中对齐*/
.justify_center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-pack: center;
  /*伸缩项目以中心点靠齐*/
  -moz-box-pack: center;
  -ms-box-pack: center;
  -o-box-pack: center;
  box-pack: center;
}

/*两端对齐，项目之间的间隔都相等*/
.justify_space_between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
  /*伸缩项目平均分布，也就是两边排列的意思。-webkit-支持，-moz-不支持*/
  -moz-box-pack: justify;
  -ms-box-pack: justify;
  -o-box-pack: justify;
  box-pack: justify;
}

/*每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍*/
.justify_space_around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}

/*换行，第一行在上方*/
.flex_wrap_wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*header start*/
.header-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  overflow: hidden;
}

.header-wrap .header-content {
  height: 1.48rem;
  padding: 0.22rem 0.5rem 0 0.5rem;
  background-color: #ffffff;
}

.header-wrap .header-content .header-logo {
  width: 2.67rem;
  height: 0.79rem;
  background: url(../images/public/logo.png) center no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}

.header-wrap .header-content .page-title {
  width: 100%;
  font-size: 0.36rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.32rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

.header-wrap .header-content .header-menus {
  width: 0.39rem;
  height: 0.39rem;
  margin-top: 0.3rem;
  background: url(../images/public/menus.png) center no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}

.header-wrap .header-menus-list {
  width: 3.61rem;
  height: 6.8rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 1.56rem;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 666;
}

.header-wrap .header-menus-list .header-menus-item {
  width: 100%;
  position: relative;
}

.header-wrap .header-menus-list .header-menus-item .header-menus-link {
  display: block;
  font-size: 0.32rem;
  line-height: 0.92rem;
  text-align: center;
  color: #333333;
}

.header-wrap .header-menus-list .header-menus-item::before {
  content: ">>";
  font-size: 0.32rem;
  line-height: 0.92rem;
  color: #333333;
  position: absolute;
  top: 0;
  left: 0.54rem;
  opacity: 0;
}

.header-wrap .header-menus-list .on::before {
  opacity: 1;
}

.header-wrap .header-menus-list #closeMenus {
  width: 0.39rem;
  height: 0.39rem;
  background: url(../images/public/menus.png);
  background-size: 100% 100%;
  position: absolute;
  top: 0.58rem;
  left: 2.7rem;
  z-index: 1;
}

.on-header .header-content .header-menus {
  background: url(../images/public/menus-b.png);
  background-size: 100% 100%;
}

.on-header .header-menus-list {
  right: 0rem;
}

.page-on .header-content .header-logo {
  width: 1.93rem;
  height: 0.57rem;
  background: url(../images/public/logo-b.png) center no-repeat;
  background-size: 100% 100%;
  margin-top: 0.14rem;
}

.page-on .header-content .page-title {
  display: block;
}

/*header end*/
/*footer start*/
.footer-warp {
  background: url(../images/public/footer-bg.jpg) center no-repeat;
  background-size: 100% 100%;
}

.footer-warp .footer-content {
  font-size: 0.18rem;
  line-height: 0.34rem;
  text-align: center;
  color: #ffffff;
  padding: 0.92rem 0.5rem 2rem 0.5rem;
}

.footer-warp .footer-content .footer-nav-ceode .footer-nav-list {
  width: 4.5rem;
  padding-top: 0.12rem;
}

.footer-warp .footer-content .footer-nav-ceode .footer-nav-list .footer-nav-item {
  margin-right: 0.38rem;
  float: left;
}

.footer-warp .footer-content .footer-nav-ceode .footer-nav-list .footer-nav-item .footer-nav-link {
  font-size: 0.3rem;
  line-height: 0.64rem;
  color: #ffffff;
}

.footer-warp .footer-content .footer-nav-ceode .footer-wxcode {
  width: 1.51rem;
  text-align: center;
  color: #ffffff;
}

.footer-warp .footer-content .footer-nav-ceode .footer-wxcode p {
  font-size: 0.16rem;
  line-height: 0.28rem;
}

.footer-warp .footer-content .footer-Hospital-info {
  padding: 0.15rem 0 0.15rem 0.3rem;
  margin-top: 0.3rem;
  color: #0042ff;
  text-align: left;
  background-color: #ffffff;
}

.footer-warp .footer-content .footer-Hospital-info h2 {
  font-size: 0.3rem;
  line-height: 0.6rem;
  font-weight: bold;
  color: #2d3032;
  margin-bottom: .2rem;
}

.footer-warp .footer-content .footer-Hospital-info p {
  font-size: 0.2rem;
  line-height: 0.42rem;
}

.footer-warp .footer-content .footer-Hospital-info p:nth-child(2) span {
  padding: 0 .3rem;
}

.footer-warp .footer-content .footer-certificate {
  margin-top: 0.4rem;
}

.footer-warp .footer-content .footer-certificate .icp-certificate {
  padding-right: .2rem;
}

.footer-warp .footer-content .footer-certificate a {
  color: #ffffff;
}

/*footer   end*/
/*固定底部 start*/

.display-flex {
  display: flex;
  justify-content: space-between;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.justify_space_between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fixed-bottom-wrap {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.fixed-bottom-wrap .fixed-bottom-message {
  width: 100%;
  text-align: center;
  color: #7f7f7f;
  background-color: #ffffff;
  padding: 0.1rem 0 0.05rem 0;
  box-shadow: 0 0px .1rem #c1c1c1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 666;
}

.fixed-bottom-wrap .fixed-bottom-message .fixed-bottom-order {
  padding: 0 0.4rem 0 0.3rem;
}

.fixed-bottom-wrap .fixed-bottom-message .fixed-bottom-order img {
  width: 0.55rem;
  height: 0.55rem;
}

.fixed-bottom-wrap .fixed-bottom-message .fixed-bottom-phone a {
  display: block;
  color: #7f7f7f;
  padding: 0 0.38rem 0 0.22rem;
}

.fixed-bottom-wrap .fixed-bottom-message .fixed-bottom-phone a img {
  width: 0.56rem;
  height: 0.56rem;
}

.fixed-bottom-wrap .fixed-bottom-message span {
  display: block;
  font-size: 0.3rem;
  line-height: 0.6rem;
}

.fixed-bottom-wrap .fixed-bottom-message .fixed-bottom-btn {
  height: .92rem;
  font-size: 0.52rem;
  line-height: 0.58rem;
  padding: 0.16rem 1rem 0.18rem 1rem;
  color: #ffffff;
  background-color: #1446b0;
  border: transparent;
  border-radius: 0.46rem;
  -webkit-border-radius: 0.46rem;
  margin-top: .1rem;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap {
  width: 7.5rem;
  margin: 0 auto;
  background-color: #ffffff;
  position: absolute;
  bottom: -6rem;
  left: 50%;
  margin-left: -3.75rem;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form-title {
  padding: 0.6rem 0.34rem 0.34rem 0.34rem;
  border-bottom: 1px solid #dcdcdc;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form-title span {
  font-size: 0.4rem;
  line-height: 0.5rem;
  font-weight: 400;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form-title span:nth-child(2) {
  font-size: 0.8rem;
  font-weight: 200;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form {
  padding: 0.34rem 0.34rem 0.7rem 0.34rem;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .fixed-bottom-form-input {
  margin-top: 0.2rem;
  position: relative;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .fixed-bottom-form-input .fixed-bottom-form-name,
.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .fixed-bottom-form-input .hudpc_buttomfixed1_phone {
  width: 100%;
  font-size: 0.34rem;
  line-height: 0.4rem;
  padding: 0.23rem 0 0.25rem 1.34rem;
  color: #606060;
  border: 1px solid #d3d3d3;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .fixed-bottom-form-input .bottom-form-input-name {
  font-size: 0.34rem;
  line-height: 0.4rem;
  color: #606060;
  position: absolute;
  top: 50%;
  margin-top: -0.24rem;
  left: 0.3rem;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .fixed-bottom-form-hint {
  font-size: 0.24rem;
  line-height: 0.92rem;
  color: #cdcdcd;
}

.fixed-bottom-wrap .fixed-bottom-form-wrap .fixed-bottom-form .hudpc_buttomfixed1_submit {
  width: 100%;
  font-size: 0.4rem;
  line-height: 0.5rem;
  padding: 0.17rem 0 0.2rem 0;
  color: #ffffff;
  background-color: #0066cc;
}

/*new*/

.fixed-bottom-wrap {
  width: 100%;
  max-width: 7.5rem;
  min-width: 3.2rem;
  height: 1.6rem;
  background-color: #ffffff;
  border-top-left-radius: 0.76rem;
  border-top-right-radius: 0.76rem;
  box-shadow: 0 0 1px #cacaca;
  position: fixed;
  bottom: 0;
  left: 50%;
  margin-left: -3.75rem;
  z-index: 999;
}

.fixed-bottom-wrap .fixed-bottom-box {
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-bottom-wrap .fixed-bottom-box .fixed-bottom-btn {
  width: 3.4rem;
  font-size: 0.42rem;
  font-weight: bold;
  line-height: 1rem;
  color: #ffffff;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #0142fe;
}

.fixed-bottom-wrap .fixed-bottom-box .asq {
  background-color: #e46600;
  margin-left: 0.18rem;
}



/*固定底部   end*/
/*footer start*/
/*footer   end*/
/*标题共用 start*/
.content-wrap {
  padding: 0.6rem 0.4rem;
}

.public-title {
  border-top: 0.64rem solid #0042ff;
  position: relative;
}

.public-title::before {
  content: "";
  width: 0.88rem;
  height: 0.3rem;
  background: url(../images/expert/noestop-icon.png) center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -0.45rem;
  left: -0.08rem;
  z-index: 3;
}

.titles {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.56rem;
  padding-top: 0.14rem;
  color: #ffffff;
  background-color: #0042ff;
  padding-left: 0.46rem;
  position: relative;
}

.titles::before {
  content: "";
  width: 1.59rem;
  height: 0.79rem;
  background: url(../images/public/icon-s.png) center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -0.62rem;
  right: 0;
  z-index: 4;
}

.digitization-title {
  font-size: 0.3rem;
  line-height: 0.4rem;
  color: #0042ff;
  padding: 0.6rem 0 0.24rem 0.84rem;
  position: relative;
}

.digitization-title::before {
  content: "";
  width: 0.17rem;
  height: 0.17rem;
  border: 0.04rem solid #606060;
  position: absolute;
  bottom: 0.32rem;
  left: 0.5rem;
}

#headers .header-content .return-prev {
  width: 0.2rem;
  height: 0.22rem;
  background: url(../images/public/return-prev.png) center no-repeat;
  background-size: 100% 100%;
  margin-top: 0.5rem;
}

/*短信验证 start*/
.validate-captcha-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.validate-captcha-wrapper .validate-dialog {
  text-align: center;
  padding: 24px 20px 16px 12px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  z-index: 1000;
  top: 164px;
  width: 280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.validate-captcha-wrapper .validate-close {
  position: absolute;
  top: 1px;
  right: 10px;
  color: #333333;
  font-size: 25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.validate-captcha-wrapper .validate-close span {
  color: #333333;
  font-size: 25px;
}

.validate-captcha-wrapper .validate-title {
  font-size: 17px;
  line-height: 24px;
  color: #161823;
  font-weight: 500;
}

.validate-captcha-wrapper .validate-sub-title {
  font-size: 12px;
  margin-top: 8px;
  line-height: 17px;
  color: rgba(22, 24, 35, 0.5);
}

.validate-captcha-wrapper .validate-sub-title .number {
  color: #222222;
}

.validate-captcha-wrapper .validate-form .validate-input-item-box {
  padding-top: 16px;
}

.validate-captcha-wrapper .validate-form .validate-input-item-box .validate-input-item {
  width: 40px;
  height: 40px;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  padding: 10px 6px;
  color: #000000;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  flex: none;
  outline: none;
  margin-left: 8px;
  opacity: 1;
  background: rgba(22, 24, 35, 0.05);
  border: 1px solid rgba(78, 144, 255, 0.1);
  border-radius: 2px;
}

.validate-captcha-wrapper .validate-form .validate-input-item-box .onfocus {
  background: rgba(22, 24, 35, 0.05);
  border: 1px solid #338AFF;
}

.validate-captcha-wrapper .validate-form .sms-msg-info {
  margin-top: 16px;
  font-size: 12px;
  color: #FF4444;
  line-height: 17px;
  height: 17px;
}

.validate-captcha-wrapper .validate-count-down {
  padding-top: 8px;
  font-size: 12px;
  line-height: 17px;
  color: #3b9aff;
}



/*短信验证 end*/




































/*标题共用   end*/
.Transition {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media (max-width: 321px) and (min-width: 320px) {
  .footer-warp .footer-content {
    padding: .5rem 0.4rem 0 0.4rem;
  }

  .footer-warp .footer-content .footer-certificate {
    line-height: 0.5rem;
  }

  .footer-warp .footer-content .footer-nav-ceode .footer-nav-list .footer-nav-item {
    margin-right: 0.26rem;
  }
}

.consultBtn {
  display: block;
  position: relative;
  overflow: hidden;
}

.consultBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 9em);
  -webkit-animation: btnSheen 6s linear infinite;
  animation: btnSheen 6s linear infinite;
}

.consultBtns::before {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 9em);
  -webkit-animation: btnSheen 4s linear infinite;
  animation: btnSheen 4s linear infinite;
}

/*闪光*/
@keyframes btnSheen {
  100% {
    display: block;
    transform: rotateZ(60deg) translate(1em, -16em);
  }
}

@-webkit-keyframes btnSheen {
  100% {
    display: block;
    transform: rotateZ(60deg) translate(1em, -16em);
  }
}