/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-ita {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}
.page-ita .ita-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.page-ita .ita-content {
  position: relative;
  background: #fff;
}
.page-ita .ita-content .content-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  padding: 0.5rem 0 0;
  z-index: inherit;
}
.page-ita .ita-content .content-header .adm-footer {
  -ms-flex-align: end;
      align-items: flex-end;
}
.page-ita .ita-content .content-header .adm-footer .adm-footer-content {
  margin: 8px 10px;
}
.page-ita .ita-content .content-detail {
  padding: 0 10px 2rem;
}
.page-ita .ita-content .content-detail .none-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.page-ita .ita-content .content-detail .none-image .notice {
  color: #888;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-ita .ita-content .back-top {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
}
.page-ita .loading {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  --width: 70%;
  --border-radius: 8px;
}
.page-ita .loading-title {
  top: 0.5rem;
  --height: 1.5rem;
}
.page-ita .loading-notice {
  position: absolute;
  top: 2.5rem;
  --width: 70%;
  --height: 1rem;
  right: 1rem;
  --border-radius: 8px;
}
.page-ita .loading-content {
  top: 4rem;
  --width: 90%;
  --height: 20rem;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ita-tabBar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #0781fd;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  text-align: center;
}
.ita-tabBar .tabBar-item {
  width: 40%;
  border: 1px solid #0781fd;
  padding: 5px 0;
}
.ita-tabBar .tabBar-itemLeft {
  border-radius: 5px 0 0 5px;
}
.ita-tabBar .tabBar-itemRight {
  border-radius: 0 5px 5px 0;
}
.ita-tabBar .tabBar-itemActive {
  background: #0781fd;
  color: #F2F2F2;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ita-table {
  width: 100%;
}
.ita-table table,
.ita-table td,
.ita-table th {
  border: 1px solid #f0f0f0;
}
.ita-table table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.ita-table th {
  width: 25%;
  padding: 10px 0;
}
.ita-table td div {
  word-break: break-all;
  padding: 10px 0;
  text-align: center;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.component-list-tabs {
  border-bottom: 1PX solid #EBEBEB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  background: #fff;
}
.component-list-tabs .component-list-tabs-item,
.component-list-tabs .component-list-tabs-item-active {
  position: relative;
  white-space: nowrap;
  padding: 0 0.3rem;
  text-align: center;
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  height: 2.45rem;
  line-height: 2.45rem;
}
.component-list-tabs .component-list-tabs-item .bottom-border,
.component-list-tabs .component-list-tabs-item-active .bottom-border {
  width: 1rem;
  height: 0.2rem;
  background: #0580FC;
  border-radius: 0.1rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.component-list-tabs .component-list-tag-item,
.component-list-tabs .component-list-tag-item-active {
  white-space: nowrap;
  padding: 0 0.75rem;
  margin: 0.5rem 0.3rem;
  text-align: center;
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  height: 1.45rem;
  line-height: 1.45rem;
  border: 1PX solid #ccc;
  border-radius: 1.45rem;
}
.component-list-tabs .component-list-tag-item:first-child,
.component-list-tabs .component-list-tag-item-active:first-child {
  margin-left: 0.75rem;
}
.component-list-tabs .component-list-tabs-item:first-child,
.component-list-tabs .component-list-tabs-item-active:first-child {
  margin-left: 0.75rem;
  margin-right: 0.3rem;
  padding: 0;
}
.component-list-tabs .component-list-tag-item:last-child,
.component-list-tabs .component-list-tabs-item:last-child,
.component-list-tabs .component-list-tag-item-active:last-child,
.component-list-tabs .component-list-tabs-item-active:last-child {
  margin-right: 0.75rem;
}
.component-list-tabs .component-list-tag-item-active {
  color: #0580FC;
  border: 1PX solid #0580FC;
}
.component-list-tabs .component-list-tabs-item-active {
  color: #0580FC;
  font-weight: 700;
}
.component-list-tabs::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-list {
  width: 100%;
  height: 100%;
  padding-bottom: 2.5rem;
  background: #f3f4f6;
  overflow: auto;
}
.page-list .page-list-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 0.75rem;
  border-bottom: 1PX solid #EBEBEB;
  background: #fff;
}
.page-list .page-list-header .page-list-header-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
}
.page-list .page-list-blank {
  width: 100%;
  height: 0.5rem;
  background: #f3f4f6;
}
.page-list .list-empty {
  position: relative;
  text-align: center;
  padding-top: 2rem;
}
.page-list .list-empty .list-empty-img {
  width: 7.5rem;
  height: 6.8rem;
}
.page-list .list-empty .list-empty-text {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-list .page-product-list {
  background: #fff;
}
.page-list .page-product-list .page-product-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 1rem 0.75rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-img {
  margin-right: 0.75rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.4rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content {
  width: 75%;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #222;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 600;
  line-height: 1rem;
  padding-bottom: 0.15rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-title .product-list-item-icon {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0.15rem 0.25rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-remark {
  color: #f11f1f;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-dec {
  color: #999;
  font-size: 0.6rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
  padding: 0.1rem 0;
  line-height: 0.7rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-bottom {
  padding-top: 0.2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-bottom .product-list-item-price {
  color: #FF7F00;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 700;
  padding-top: 0.15rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-bottom .product-list-item-price .num {
  margin-right: 0.1rem;
  font-size: 1.15rem;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-bottom .product-list-item-price .text {
  color: #999;
  font-weight: 100;
}
.page-list .page-product-list .page-product-list-item .product-list-item-content .product-list-item-bottom .product-list-item-generalize {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #0580FC;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  margin-right: 0.2rem;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-mine {
  height: 100%;
  width: 100%;
  background-image: url(/marketing/m/v1.0.20250709183440/static/media/bg_mine.845c1546.png);
  background-size: 100% 9.25rem;
  background-repeat: no-repeat;
}
.page-mine .page-mine-header {
  padding: 1rem 0.75rem 0 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-mine .page-mine-header .page-mine-header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.page-mine .page-mine-header .page-mine-header-left .head-portrait {
  width: 3rem;
  height: 3rem;
  border: 2PX solid white;
  border-radius: 50%;
}
.page-mine .page-mine-header .page-mine-header-left .mine-info {
  margin-left: 0.5rem;
}
.page-mine .page-mine-header .page-mine-header-left .mine-info .mine-info-name {
  color: white;
  font-size: 0.85rem;
  line-height: 1.1rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  width: 5.4rem;
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.page-mine .page-mine-header .page-mine-header-left .mine-info .mine-info-branch {
  margin-top: 0.5rem;
  color: white;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  opacity: 0.6;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.page-mine .page-mine-header .page-mine-header-left .mine-info .mine-info-branch img {
  margin-right: 0.3rem;
  height: 0.8rem;
  width: 0.8rem;
}
.page-mine .page-mine-header .mine-info-detail {
  color: white;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  opacity: 0.7;
}
.page-mine .page-mine-header .mine-info-detail img {
  margin-left: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
}
.page-mine .page-mine-header .mine-authenticated {
  margin-top: 0.5rem;
  width: 2.5rem;
  height: 1rem;
  border: 1PX solid white;
  color: white;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  text-align: center;
  line-height: 1rem;
  opacity: 0.8;
}
.page-mine .mine-performance {
  margin: 1rem 0.75rem;
  height: 3.25rem;
  background: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 0.6rem;
  padding: 1rem 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(127, 127, 127, 0.2);
          box-shadow: 0px 0px 15px 0px rgba(127, 127, 127, 0.2);
}
.page-mine .mine-performance .mine-performance-order,
.page-mine .mine-performance .mine-performance-price {
  width: 100%;
  text-align: center;
}
.page-mine .mine-performance .mine-performance-order .num,
.page-mine .mine-performance .mine-performance-price .num {
  color: black;
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 700;
  padding-bottom: 0.3rem;
}
.page-mine .mine-performance .mine-performance-order .unit,
.page-mine .mine-performance .mine-performance-price .unit {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-mine .mine-performance .mine-performance-right {
  width: 0.45rem;
  height: 0.75rem;
  margin-right: 0.5rem;
}
.page-mine .mine-performance .mine-performance-border {
  width: 1PX;
  height: 100%;
  background: #EBEBEB;
}
.page-mine .mine-order {
  margin: 0 0.75rem;
  margin-top: 1.75rem;
  border-bottom: 1PX solid #ebebeb;
}
.page-mine .mine-order .mine-order-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  color: black;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-mine .mine-order .mine-order-title .mine-order-title-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.3rem;
}
.page-mine .mine-order .mine-order-status {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1rem 1.5rem;
}
.page-mine .mine-order .mine-order-status .mine-order-status-item {
  text-align: center;
}
.page-mine .mine-order .mine-order-status .mine-order-status-item .mine-order-status-item-img {
  width: 2rem;
  height: 2rem;
}
.page-mine .mine-order .mine-order-status .mine-order-status-item .mine-order-status-item-text {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-mine .mine-other {
  margin-top: 0.5rem;
}
.page-mine .mine-other .mine-other-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 0.75rem;
  height: 2.5rem;
}
.page-mine .mine-other .mine-other-item .mine-other-item-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  color: black;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-mine .mine-other .mine-other-item .mine-other-item-left .mine-other-item-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.3rem;
}
.page-mine .mine-other .mine-other-item .mine-other-item-right {
  width: 0.45rem;
  height: 0.75rem;
}
.page-mine .mine-sign-out {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  background: #F9F9F9;
  height: 3rem;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #999;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-mine .mine-sign-out img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.component-tabs {
  position: relative;
  width: 4.5rem;
  margin: 0;
}
.component-tabs .component-tabs-item,
.component-tabs .component-tabs-item-active {
  height: 2rem;
  padding-left: 0.5rem;
  line-height: 2rem;
  text-align: left;
}
.component-tabs .component-tabs-item-active {
  font-weight: 600;
  color: #0580FC;
  background: #e6f7ff;
}
.component-tabs .tabs-item-border {
  position: absolute;
  background: #0580FC;
  right: -0.05rem;
  width: 0.15rem;
  height: 2rem;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
  z-index: 601;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.component-product-card {
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 0.1rem;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
}
.component-product-card .product-card-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  border-bottom: 0.05rem solid #EEE;
  padding-bottom: 0.5rem;
}
.component-product-card .product-card-content .product-card-left {
  position: relative;
}
.component-product-card .product-card-content .product-card-left .product-card-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}
.component-product-card .product-card-content .product-card-left .product-card-tag {
  position: absolute;
  border-radius: 0.25rem 0 0 0;
  padding: 0 0.15rem;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ff964b), to(#ff834d));
  background: linear-gradient(90deg, #ff964b 0%, #ff834d 100%);
  height: 16px;
  max-width: 3.5rem;
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  line-height: 16px;
}
.component-product-card .product-card-content .product-card-detail {
  position: relative;
}
.component-product-card .product-card-content .product-card-detail .card-detail-title {
  color: #222;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-family: "Monospace Number", "Chinese Quote", -apple-system;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.component-product-card .product-card-content .product-card-detail .card-detail-remark {
  color: #f11f1f;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.component-product-card .product-card-content .product-card-detail .card-detail-desc {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-family: "Monospace Number", "Chinese Quote", -apple-system;
  line-height: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}
.component-product-card .product-card-footer {
  padding-top: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.component-product-card .product-card-footer .footer-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.component-product-card .product-card-footer .footer-card .footer-card-icon {
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.2rem;
}
.component-product-card .product-card-footer .footer-card .footer-card-text {
  color: #222;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-family: "Monospace Number", "Chinese Quote", -apple-system;
}
.detail-modal .header {
  line-height: 1.5rem;
}
.detail-modal .detail-modal-body {
  padding: 0 0.75rem 0.75rem 0.75rem;
  text-align: left;
  overflow: auto;
  height: 15rem;
}
.detail-modal .detail-modal-body .body-title {
  color: #222;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.detail-modal .detail-modal-body .body-desc {
  margin-bottom: 1rem;
}
.detail-modal .detail-modal-body .body-desc .body-desc-item .label {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  margin-right: 0.25rem;
}
.detail-modal .detail-modal-body .body-desc .body-desc-item .value {
  color: #222;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.detail-modal .detail-modal-body .table {
  width: 100%;
  border-collapse: collapse;
  color: #222;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.detail-modal .detail-modal-body .table td {
  border: 1px solid #ebebeb;
  padding: 0.5rem;
}
.detail-modal .detail-modal-body .table tr:first-child {
  background: #eef6ff;
  color: #0580FC;
  text-align: center;
}
.detail-modal .detail-modal-body .table td:first-child {
  background: #eef6ff;
  max-width: 5rem;
  color: #0580FC;
}
.detail-modal .detail-modal-body .list-empty {
  position: relative;
  text-align: center;
  padding-top: 1rem;
}
.detail-modal .detail-modal-body .list-empty .list-empty-img {
  width: 7.5rem;
  height: 6.8rem;
}
.detail-modal .detail-modal-body .list-empty .list-empty-text {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.feature-modal .header {
  line-height: 1.5rem;
}
.feature-modal .feature-modal-body {
  padding-top: 0 !important;
}
.indured-type-modal .header {
  line-height: 1.5rem;
  padding: 0 0.75rem;
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.indured-type-modal .indured-type-modal-body {
  padding: 0 0.75rem 0.75rem 0.75rem;
}
.indured-type-modal .indured-type-modal-body .modal-body-title {
  color: #222;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  text-align: left;
  padding: 0.5rem 0;
  font-weight: 600;
}
.indured-type-modal .indured-type-modal-body .checkout-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.indured-type-modal .indured-type-modal-body .checkout-item .checkout-item-icon .am-icon-md {
  width: 1rem;
  height: 1rem;
  margin-right: 0.2rem;
}
.indured-type-modal .indured-type-modal-body .checkout-item .checkout-item-icon .check-null {
  border: 0.05rem solid #ddd;
  border-radius: 50%;
  width: 0.9rem;
  height: 0.9rem;
  margin: 0 0.1rem 0.2rem 0.1rem;
}
.indured-type-modal .indured-type-modal-body .checkout-item .checkout-item-text {
  margin-left: 0.5rem;
  padding: 0.75rem 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-list {
  position: relative;
  height: 100%;
  width: 100%;
}
.page-insurance-list .insurance-list-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 600;
  padding: 0 0.75rem 0 0.5rem;
}
.page-insurance-list .insurance-list-header .header-icon {
  width: 1rem;
  height: 1.2rem;
  padding: 0.8rem 0.5rem 0.6rem 0;
  background: #fff;
  text-align: center;
}
.page-insurance-list .insurance-list-blank {
  background: #f3f4f6;
  position: fixed;
  top: 2.5rem;
  right: 0;
  left: 0;
  height: 0.5rem;
  width: 100%;
  z-index: 602;
}
.page-insurance-list .insurance-list-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: calc(100% - 0.8rem);
}
.page-insurance-list .insurance-list-content .insurance-list-left {
  position: fixed;
  top: 3rem;
  left: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  width: 4.5rem;
  height: 100%;
  background-color: #fff;
  border-right: 0.05rem solid #ddd;
}
.page-insurance-list .insurance-list-content .insurance-list-right {
  margin: 3rem 0 0 4rem;
  height: calc(100% - 2.2rem);
  z-index: 500;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-insurance-list .insurance-list-content .insurance-list-right .list-empty {
  position: relative;
  text-align: center;
  padding-top: 2rem;
}
.page-insurance-list .insurance-list-content .insurance-list-right .list-empty .list-empty-img {
  width: 7.5rem;
  height: 6.8rem;
}
.page-insurance-list .insurance-list-content .insurance-list-right .list-empty .list-empty-text {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-list .insurance-list-content .insurance-list-right #header {
  position: fixed;
  top: 3rem;
  right: 0;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 0.05rem solid #ddd;
  padding: 0.25rem 0.5rem;
  background: #fff;
  z-index: 600;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-header .right-header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-header .right-header-left .insurance-list-tag,
.page-insurance-list .insurance-list-content .insurance-list-right .right-header .right-header-left .insurance-list-tag-active {
  padding: 0.25rem 0.5rem;
  border: 0.05rem solid #ddd;
  border-radius: 0.1rem;
  margin: 0.25rem;
  color: #222;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-header .right-header-left .insurance-list-tag-active {
  background: #0580FC;
  color: #fff;
  border: 0.05rem solid #0580FC;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-header .right-header-right {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-insurance-list .insurance-list-content .insurance-list-right .mask {
  background: #f3f4f6;
}
.page-insurance-list .insurance-list-content .insurance-list-right .mask .right-header-left {
  background: #f3f4f6;
}
.page-insurance-list .insurance-list-content .insurance-list-right .mask .right-header-left .insurance-list-tag,
.page-insurance-list .insurance-list-content .insurance-list-right .mask .right-header-left .insurance-list-tag-active {
  background: #f3f4f6;
  color: #f3f4f6;
  border: 0.05rem solid #f3f4f6;
}
.page-insurance-list .insurance-list-content .insurance-list-right .mask .right-header-right {
  color: #f3f4f6;
}
.page-insurance-list .insurance-list-content .insurance-list-right .product-list {
  height: 100%;
  background: #fff;
}
.page-insurance-list .insurance-list-content .insurance-list-right .right-content {
  padding: 0.5rem 0.75rem;
  overflow: auto;
  background: #fff;
}
.right-content::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.feature-modal .feature-modal-body {
  padding: 0.75rem;
  text-align: left;
}
.feature-modal .feature-modal-body .body-title {
  color: #222;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-modal .feature-modal-body .body-desc {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
}
.feature-modal .feature-modal-body .body-desc .body-desc-item {
  margin-bottom: 0.5rem;
}
.feature-modal .feature-modal-body .body-btn {
  height: 2rem;
  width: 100%;
  margin-top: 1rem;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 2rem;
  background: #0580FC;
  text-align: center;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-product-share {
  background: linear-gradient(136deg, #47beff 0%, #62a7ff 100%);
  min-height: 30rem;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: auto;
}
.page-insurance-product-share .back-icon {
  background: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.page-insurance-product-share .page-insurance-product-share-body {
  min-height: 65%;
  width: calc(100% - 3rem);
  padding: 1.5rem;
  background: url(/marketing/m/v1.0.20250709183440/static/media/product-share-bc.e88d316e.png) no-repeat right bottom;
  background-size: 100% 9rem;
  z-index: 999;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info-touxiang {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info .user-info-name {
  position: relative;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  margin-bottom: 0.2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info .user-info-name .user-info-text {
  max-width: 5rem;
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info .user-info-family {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.25rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info .user-info-fid {
  position: absolute;
  bottom: 1rem;
  border-radius: 0.15rem;
  padding: 0.1rem 0.2rem;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  background: #fff;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-user-info .user-info .user-info-phone {
  color: #fff;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail {
  background: #fff;
  padding: 0.75rem;
  border-radius: 0.2rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-title .product-detail-logo {
  margin-right: 0.75rem;
  width: 4rem;
  height: 4rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-title .product-detail-name {
  font-size: 0.9rem;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-feature {
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-feature .banner-content-item {
  margin-bottom: 0.25rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-feature .banner-content-item .content-item-icon {
  width: 1.2rem;
  margin-right: 0.25rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-feature .banner-content-item .content-item-text {
  height: 1rem;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
  background-size: 5.5rem 1.7rem;
  padding: 0 0.1rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-btn {
  width: 100%;
  height: 2.4rem;
  background-color: #f5a623;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 2.4rem;
  text-align: center;
  border-radius: 2.4rem;
  margin-bottom: 1rem;
}
.page-insurance-product-share .page-insurance-product-share-body .product-detail .product-detail-back {
  text-align: center;
  color: #0580FC;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-product-share .page-insurance-product-share-body .product-share-bc {
  position: absolute;
  width: 100%;
  height: 9rem;
  bottom: 2.2rem;
  left: 0;
  right: 0;
}
.page-insurance-product-share .product-detail-footer {
  padding: 2.5rem 1.5rem;
  height: 2rem;
  width: calc(100% - 3rem);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-insurance-product-share .product-detail-footer .footer-botder {
  height: 0.05rem;
  width: 4rem;
  background: #fff;
}
.page-insurance-product-share .product-detail-footer .footer-financial-planner {
  text-align: center;
}
.page-insurance-product-share .product-detail-footer .footer-financial-planner .financial-planner-tx {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}
.page-insurance-product-share .product-detail-footer .footer-financial-planner .financial-planner-text {
  color: #DCEEFF;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
}
.page-insurance-product-share .product-detail-footer .footer-financial-planner .financial-planner-name {
  color: #DCEEFF;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-illness-list {
  width: 100%;
  height: 100%;
}
.page-insurance-illness-list .illness-list-header {
  background: #fff;
  padding: 0 0.75rem;
}
.page-insurance-illness-list .illness-list-common,
.page-insurance-illness-list .illness-list-search,
.page-insurance-illness-list .illness-list-all {
  margin-top: 0.5rem;
  background: #fff;
}
.page-insurance-illness-list .illness-list-common .all-illness-title,
.page-insurance-illness-list .illness-list-search .all-illness-title,
.page-insurance-illness-list .illness-list-all .all-illness-title {
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-illness-list .illness-list-common .common-illness-list,
.page-insurance-illness-list .illness-list-search .common-illness-list,
.page-insurance-illness-list .illness-list-all .common-illness-list,
.page-insurance-illness-list .illness-list-common .search-illness-list,
.page-insurance-illness-list .illness-list-search .search-illness-list,
.page-insurance-illness-list .illness-list-all .search-illness-list,
.page-insurance-illness-list .illness-list-common .all-illness-list,
.page-insurance-illness-list .illness-list-search .all-illness-list,
.page-insurance-illness-list .illness-list-all .all-illness-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0.75rem 0.75rem 0.75rem;
}
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item-active {
  padding: 0.3rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 0.5rem 0.5rem 0;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item-active {
  border: 1px solid #0580FC;
  color: #fff;
  background: #0580FC;
}
.page-insurance-illness-list .illness-list-all {
  margin-top: 0.5rem;
  padding-bottom: 5rem;
  background: #fff;
}
.page-insurance-illness-list .illness-list-all .all-illness-list {
  padding: 0.75rem 0.75rem 0.25rem 0.75rem;
}
.page-insurance-illness-list .illness-list-search {
  padding-bottom: 3rem;
}
.page-insurance-illness-list .illness-list-search .search-body .search-body-title {
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  padding: 0.75rem 0.75rem 0.25rem 0.75rem;
}
.page-insurance-illness-list .illness-list-search .search-illness-list {
  padding: 0.75rem 0.75rem 0 0.75rem;
}
.page-insurance-illness-list .illness-list-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected {
  width: 100%;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0.3rem 0;
  overflow-x: auto;
  border-top: 1px solid #ddd;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected .illness-list-selected-item {
  padding: 0.2rem 0.3rem;
  white-space: nowrap;
  border: 1px solid #0580FC;
  color: #fff;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  background: #0580FC;
  margin-left: 0.5rem;
  border-radius: 5px;
}
.page-insurance-illness-list .illness-list-footer .illness-list-btn,
.page-insurance-illness-list .illness-list-footer .illness-list-btn-disable {
  height: 2.5rem;
  width: 100%;
  background: #0580FC;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 2.5rem;
  text-align: center;
}
.page-insurance-illness-list .illness-list-footer .illness-list-btn-disable {
  background: #ccc;
  color: #fff;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.insurance-underwriting-detail {
  white-space: pre-wrap;
}
.insurance-underwriting-detail .underwriting-analyze-content {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #ddd;
  background: #fff;
  height: 100%;
  white-space: pre-wrap;
  overflow: hidden;
}
.insurance-underwriting-detail .underwriting-analyze-content .img-style {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 8rem;
  color: #999999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  background-color: #fff;
}
.insurance-underwriting-detail .underwriting-analyze-content .img-style img {
  width: 13rem;
  height: 5rem;
  vertical-align: middle;
}
.insurance-underwriting-detail .detail-insurance-analyze {
  margin-bottom: 0.5rem;
}
.insurance-underwriting-detail .detail-insurance-analyze .insurance-analyze-list {
  min-height: 19rem;
  max-height: 25rem;
  overflow: auto;
}
.insurance-underwriting-detail .detail-insurance-analyze .insurance-analyze-list .img-style {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 22rem;
  color: #999999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  background-color: #fff;
}
.insurance-underwriting-detail .detail-insurance-analyze .insurance-analyze-list .img-style img {
  width: 13rem;
  height: 5rem;
  vertical-align: middle;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.component-illness-container-condition .summary-status {
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  height: 0.8rem;
  line-height: 0.8rem;
  width: 2.8rem;
  border-radius: 0.3rem 0 0.5rem 0;
  background-image: linear-gradient(-265deg, #ffa71e, #ff6e0d);
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.component-illness-container-condition .summary-copy {
  width: 2rem;
  border-radius: 0.4rem;
  color: #ff6e0d;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  border: 1px solid #ff6e0d;
  text-align: center;
  position: absolute;
  right: 0.75rem;
  top: 0.3rem;
}
.component-illness-container-condition .summary-content {
  color: #222;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.component-illness-container-condition .summary-content .summary-content-main {
  margin-bottom: 1rem;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  color: #ff8e0d;
  border-radius: 6px;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-item .summary-content-item-name {
  color: #fff;
  padding: 0 0.2rem;
  border-radius: 0.2rem;
  background-image: linear-gradient(-265deg, #ffa71e, #ff6e0d);
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-item .summary-content-item-icon {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.25rem;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-item .summary-content-item-tips {
  color: #ff8e0d;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-itemcontent {
  margin-top: 0.266667rem;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-itemcontent .summary-content-item-list-tab {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-itemcontent .summary-content-item-list-tab .summary-content-item-list-tab-item {
  position: relative;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-itemcontent .summary-content-item-list-tab .summary-content-item-list-tab-item .summary-content-item-list-tab-border {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.35rem;
  height: 0.15rem;
  width: 70%;
  background: #ff8e0d;
}
.component-illness-container-condition .summary-content .summary-content-main .summary-content-itemcontent .summary-content-item-list-tab .summary-content-item-list-tab-content {
  word-wrap: break-word;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.component-product-item {
  background: #fff;
  margin: 0 0.5rem 0.75rem 0.5rem;
  border-radius: 0.25rem;
  padding: 0 0.75rem 0.5rem 0.75rem;
}
.component-product-item .product-item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 2.5rem;
}
.component-product-item .product-item-header .item-header-title {
  max-width: 80%;
  color: #222;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
  font-weight: 600;
}
.component-product-item .product-item-header .item-header-extra {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 0.5rem !important;
  width: 2.7rem;
  height: 1.1rem;
  color: #0580FC;
  border: 1px solid #0580FC;
  border-radius: 0.5rem;
}
.component-product-item .product-item-header .item-header-done,
.component-product-item .product-item-header .item-header-surrender5,
.component-product-item .product-item-header .item-header-surrender10 {
  color: #ccc;
}
.component-product-item .product-item-header .item-header-paied,
.component-product-item .product-item-header .item-header-trouble,
.component-product-item .product-item-header .item-header-surrendering {
  color: #f11f1f;
}
.component-product-item .product-item-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 3.5rem;
  padding-bottom: 0.5rem;
}
.component-product-item .product-item-center .item-center-text {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  display: inline-block;
  min-width: 50%;
}
.component-product-item .product-item-summary {
  margin-bottom: 0.5rem;
  background: #fff9f4;
  border-radius: 0.2rem;
  min-height: 2rem;
  position: relative;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
}
.component-product-item .product-item-summary .summary-status {
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  height: 0.8rem;
  line-height: 0.8rem;
  width: 2.8rem;
  border-radius: 0.3rem 0 0.5rem 0;
  background-image: linear-gradient(-265deg, #ffa71e, #ff6e0d);
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.component-product-item .product-item-summary .summary-copy {
  width: 2rem;
  border-radius: 0.4rem;
  color: #ff6e0d;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  border: 1px solid #ff6e0d;
  text-align: center;
  position: absolute;
  right: 0.75rem;
  top: 0.3rem;
}
.component-product-item .product-item-summary .summary-content {
  color: #222;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  word-wrap: break-word;
}
.component-product-item .product-item-summary .summary-content .summary-content-main {
  margin-bottom: 1rem;
}
.component-product-item .product-item-summary .summary-content .summary-content-main .summary-content-item {
  color: #ff8e0d;
  border-radius: 6px;
}
.component-product-item .product-item-summary .summary-content .summary-content-main .summary-content-itemcontent {
  margin-top: 0.266667rem;
}
.component-product-item .product-item-summary .summary-content .summary-content-newmain .summary-content-newmain-item {
  border-bottom: 1px solid #228ffc;
  color: #228ffc;
  margin-right: 15px;
  font-size: 17px;
}
.component-product-item .product-item-summary .summary-content .summary-content-newmain .summary-content-newmain-tabs {
  margin-top: 10px;
  margin-left: 10px;
}
.component-product-item .product-item-summary .summary-content .summary-content-newmain .summary-content-newmain-tabs .summary-content-newmain-tabs-item {
  color: #228ffc;
  margin-right: 15px;
}
.component-product-item .product-item-summary .summary-content .summary-content-newmain .summary-content-newmain-conditions {
  margin-top: 10px;
}
.component-product-item .product-item-summary .summary-content .summary-content-newmain .summary-content-newmain-conditions p {
  margin: 5px;
}
.component-product-item .summary-content-more {
  color: #0580FC;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  text-align: center;
  padding-top: 0.5rem;
}
.claim-order-madal .am-modal-body {
  background: #EBEBEB;
}
.claim-order-madal .am-modal-body .tips {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  padding-left: 0.75rem;
  line-height: 2.5rem;
  text-align: left;
}
.claim-order-madal .am-modal-body .confirm-btn {
  height: 2.5rem;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 2.5rem;
  background: #0580FC;
  text-align: center;
  margin-top: 0.5rem;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-underwriting .insurance-underwriting-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 0.75rem;
  height: 4rem;
  background: linear-gradient(135deg, #47a2ff 0%, #006ddc 100%);
}
.page-insurance-underwriting .insurance-underwriting-header .insurance-underwriting-header-title {
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-underwriting .insurance-underwriting-header .insurance-underwriting-header-title .header-img {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.3rem;
}
.page-insurance-underwriting .insurance-underwriting-header .insurance-underwriting-header-img {
  height: 4rem;
  width: 4.2rem;
}
.page-insurance-underwriting .tab {
  position: sticky;
  top: -1px;
  z-index: 2;
}
.page-insurance-underwriting .tab .am-tabs-tab-bar-wrap {
  height: 2.5rem;
}
.page-insurance-underwriting .tab .am-tabs-tab-bar-wrap .am-tabs-default-bar-top .am-tabs-default-bar-tab {
  height: 2.5rem;
}
.page-insurance-underwriting .tab .am-tabs-default-bar-tab-active {
  color: #0781fd;
}
.page-insurance-underwriting .insurance-underwriting-content {
  margin-bottom: 0.5rem;
  position: relative;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail {
  padding: 0.75rem 0.75rem 1rem 0.75rem;
  background: #fff;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail .illness-detail-content {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail .illness-loading-more {
  position: absolute;
  bottom: 0.25rem;
  right: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #0580FC;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-underwriting .goBack {
  position: fixed;
  z-index: 9;
  background: #0580FC;
  border-radius: 50%;
}
.page-insurance-underwriting .goBack .icon {
  padding: 0.2rem 0.3rem;
}
.illness-detail-modal {
  height: 60%;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-illness-list {
  width: 100%;
  height: 100%;
}
.page-insurance-illness-list .illness-list-header {
  background: #fff;
  padding: 0 0.75rem;
}
.page-insurance-illness-list .illness-list-common,
.page-insurance-illness-list .illness-list-search,
.page-insurance-illness-list .illness-list-all {
  margin-top: 0.5rem;
  background: #fff;
}
.page-insurance-illness-list .illness-list-common .all-illness-title,
.page-insurance-illness-list .illness-list-search .all-illness-title,
.page-insurance-illness-list .illness-list-all .all-illness-title {
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-illness-list .illness-list-common .common-illness-list,
.page-insurance-illness-list .illness-list-search .common-illness-list,
.page-insurance-illness-list .illness-list-all .common-illness-list,
.page-insurance-illness-list .illness-list-common .search-illness-list,
.page-insurance-illness-list .illness-list-search .search-illness-list,
.page-insurance-illness-list .illness-list-all .search-illness-list,
.page-insurance-illness-list .illness-list-common .all-illness-list,
.page-insurance-illness-list .illness-list-search .all-illness-list,
.page-insurance-illness-list .illness-list-all .all-illness-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0.75rem 0.75rem 0.75rem;
}
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item,
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item-active {
  padding: 0.3rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 0.5rem 0.5rem 0;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-illness-list .illness-list-common .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .common-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .search-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-common .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-search .all-illness-list .illness-list-item-active,
.page-insurance-illness-list .illness-list-all .all-illness-list .illness-list-item-active {
  border: 1px solid #0580FC;
  color: #fff;
  background: #0580FC;
}
.page-insurance-illness-list .illness-list-all {
  margin-top: 0.5rem;
  padding-bottom: 5rem;
  background: #fff;
}
.page-insurance-illness-list .illness-list-all .all-illness-list {
  padding: 0.75rem 0.75rem 0.25rem 0.75rem;
}
.page-insurance-illness-list .illness-list-search {
  padding-bottom: 3rem;
}
.page-insurance-illness-list .illness-list-search .search-body .search-body-title {
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  padding: 0.75rem 0.75rem 0.25rem 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-insurance-illness-list .illness-list-search .search-body .search-body-title .search-body-title-img {
  width: 1rem;
  height: 1rem;
}
.page-insurance-illness-list .illness-list-search .search-illness-list {
  padding: 0.75rem 0.75rem 0 0.75rem;
}
.page-insurance-illness-list .illness-list-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected {
  width: 100%;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  overflow-x: auto;
  border-top: 1px solid #ddd;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected .selected-label {
  white-space: nowrap;
  margin-left: 0.75rem;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected .illness-list-selected-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0.1rem 0.2rem 0.1rem 0.5rem;
  white-space: nowrap;
  border: 1px solid #0580FC;
  color: #fff;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  background: #0580FC;
  margin: 0.3rem 0 0.3rem 0.5rem;
  border-radius: 0.75rem;
}
.page-insurance-illness-list .illness-list-footer .illness-list-selected .illness-list-selected-item:last-child {
  margin-right: 0.5rem;
}
.page-insurance-illness-list .illness-list-footer .illness-list-btn,
.page-insurance-illness-list .illness-list-footer .illness-list-btn-disable {
  height: 2.5rem;
  width: 100%;
  background: #0580FC;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 2.5rem;
  text-align: center;
}
.page-insurance-illness-list .illness-list-footer .illness-list-btn-disable {
  background: #ccc;
  color: #fff;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-insurance-underwriting .detail-title {
  background: #fff;
  color: #222;
  font-size: 0.85rem;
  line-height: 1.1rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #ddd;
}
.page-insurance-underwriting .detail-title .detail-title-text {
  margin-left: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-insurance-underwriting .detail-title .detail-title-tips {
  color: #999;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-top: 0.5rem;
}
.page-insurance-underwriting .detail-title .detail-title-tips .detail-title-tips-icon {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.25rem;
}
.page-insurance-underwriting .detail-title::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 0.3rem;
  background: #0580FC;
}
.page-insurance-underwriting .insurance-underwriting-header-wrap {
  background: linear-gradient(135deg, #47a2ff 0%, #006ddc 100%);
}
.page-insurance-underwriting .insurance-underwriting-header-wrap .insurance-underwriting-back-btn {
  position: fixed;
  background: #fff;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0.5rem 0.5rem;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-underwriting .insurance-underwriting-header-wrap .insurance-underwriting-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 0.75rem;
  min-height: 4rem;
}
.page-insurance-underwriting .insurance-underwriting-header-wrap .insurance-underwriting-header .insurance-underwriting-header-title {
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.9rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1.2rem;
}
.page-insurance-underwriting .insurance-underwriting-header-wrap .insurance-underwriting-header .insurance-underwriting-header-title .header-img {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.3rem;
}
.page-insurance-underwriting .insurance-underwriting-header-wrap .insurance-underwriting-header .insurance-underwriting-header-img {
  height: 4rem;
  width: 4.2rem;
}
.page-insurance-underwriting .tab {
  position: sticky;
  top: 1px;
  z-index: 100;
  background: #F3F4F6;
}
.page-insurance-underwriting .tab .am-tabs-tab-bar-wrap {
  height: 2.5rem;
}
.page-insurance-underwriting .tab .am-tabs-tab-bar-wrap .am-tabs-default-bar-top .am-tabs-default-bar-tab {
  height: 2.5rem;
}
.page-insurance-underwriting .tab .am-tabs-default-bar-tab-active {
  color: #0781fd;
}
.page-insurance-underwriting .tab .insurance-underwriting-sub-tab {
  padding: 0.5rem 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-insurance-underwriting .tab .insurance-underwriting-sub-tab .insurance-underwriting-sub-tab-item,
.page-insurance-underwriting .tab .insurance-underwriting-sub-tab .insurance-underwriting-sub-tab-item-active {
  width: 4rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  color: #222;
  background: #fff;
  line-height: 1.5rem;
  text-align: center;
}
.page-insurance-underwriting .tab .insurance-underwriting-sub-tab .insurance-underwriting-sub-tab-item-active {
  background: #D5EAFF;
  color: #0781fd;
}
.page-insurance-underwriting .insurance-underwriting-content {
  margin-bottom: 0.5rem;
  position: relative;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-picker {
  background-color: #fff;
  padding: 0.5rem 0.75rem 0 0.75rem;
  color: #0580FC;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-underwriting .insurance-underwriting-content .header-top-time-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail {
  padding: 0.75rem 0.75rem 1rem 0.75rem;
  background: #fff;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail .illness-detail-content {
  color: #999;
  font-size: 0.7rem;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  line-height: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.page-insurance-underwriting .insurance-underwriting-content .illness-detail .illness-loading-more {
  position: absolute;
  bottom: 0.25rem;
  right: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #0580FC;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
}
.page-insurance-underwriting .goBack {
  position: fixed;
  left: 0.5rem;
  top: 0.5rem;
  -ms-touch-action: none;
      touch-action: none;
  z-index: 9;
  background: #0580FC;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: 'PingFangSC-Regular';
  font-weight: 400;
  text-align: center;
}
.page-insurance-underwriting .goBack .icon {
  padding: 0 0.3rem;
}
.illness-detail-modal {
  height: 60%;
}

/* 上部 */
.topLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.topCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}
.topRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.topBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 中部 */
.middleLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.middleCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.middleRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.middleBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.middleAround {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.middleEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 底部 */
.bottomLeft {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.bottomCenter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.bottomRight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.bottomBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.bottomEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
}
/* 靠左 */
.leftTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.leftEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 居中 */
.centerTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.centerEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* 底部 */
.rightTop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightMiddle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightBetween {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rightEvenly {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-direction: column;
      flex-direction: column;
}
.cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.text-ellipsis {
  /*postcss-pxtransform rn eject enable*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*postcss-pxtransform rn eject disable*/
}
.absolutecenter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolutect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.absolutecl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-health-notice .health-notice-header,
.page-health-notice .health-notice-concent {
  padding: 0.75rem 0.75rem 0 0.75rem;
  background: #fff;
}
.page-health-notice .health-notice-header {
  font-weight: bold;
  position: relative;
}
.page-health-notice .health-notice-concent {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
}


/*# sourceMappingURL=default~main~f8353f15.2aca31bd.chunk.css.map*/