.am-drawer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.am-drawer-sidebar {
  z-index: 4;
  position: absolute;
  transition: transform 0.3s ease-out;
  will-change: transform;
  overflow-y: auto;
}
.am-drawer-draghandle {
  z-index: 1;
  position: absolute;
  background-color: rgba(50, 50, 50, 0.1);
}
.am-drawer-overlay {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
  background-color: rgba(0, 0, 0, 0.4);
}
.am-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  transition: left 0.3s ease-out, right 0.3s ease-out;
}
.am-drawer.am-drawer-left .am-drawer-sidebar,
.am-drawer.am-drawer-right .am-drawer-sidebar,
.am-drawer.am-drawer-left .am-drawer-draghandle,
.am-drawer.am-drawer-right .am-drawer-draghandle {
  top: 0;
  bottom: 0;
}
.am-drawer.am-drawer-left .am-drawer-draghandle,
.am-drawer.am-drawer-right .am-drawer-draghandle {
  width: 10px;
  height: 100%;
}
.am-drawer.am-drawer-top .am-drawer-sidebar,
.am-drawer.am-drawer-bottom .am-drawer-sidebar,
.am-drawer.am-drawer-top .am-drawer-draghandle,
.am-drawer.am-drawer-bottom .am-drawer-draghandle {
  left: 0;
  right: 0;
}
.am-drawer.am-drawer-top .am-drawer-draghandle,
.am-drawer.am-drawer-bottom .am-drawer-draghandle {
  width: 100%;
  height: 10px;
}
.am-drawer.am-drawer-left .am-drawer-sidebar {
  left: 0;
  transform: translateX(-100%);
}
.am-drawer-open.am-drawer.am-drawer-left .am-drawer-sidebar {
  box-shadow: 1PX 1PX 2px rgba(0, 0, 0, 0.15);
}
.am-drawer.am-drawer-left .am-drawer-draghandle {
  left: 0;
}
.am-drawer.am-drawer-right .am-drawer-sidebar {
  right: 0;
  transform: translateX(100%);
}
.am-drawer-open.am-drawer.am-drawer-right .am-drawer-sidebar {
  box-shadow: -1PX 1PX 2px rgba(0, 0, 0, 0.15);
}
.am-drawer.am-drawer-right .am-drawer-draghandle {
  right: 0;
}
.am-drawer.am-drawer-top .am-drawer-sidebar {
  top: 0;
  transform: translateY(-100%);
}
.am-drawer-open.am-drawer.am-drawer-top .am-drawer-sidebar {
  box-shadow: 1PX 1PX 2px rgba(0, 0, 0, 0.15);
}
.am-drawer.am-drawer-top .am-drawer-draghandle {
  top: 0;
}
.am-drawer.am-drawer-bottom .am-drawer-sidebar {
  bottom: 0;
  transform: translateY(100%);
}
.am-drawer-open.am-drawer.am-drawer-bottom .am-drawer-sidebar {
  box-shadow: 1PX -1PX 2px rgba(0, 0, 0, 0.15);
}
.am-drawer.am-drawer-bottom .am-drawer-draghandle {
  bottom: 0;
}

.am-button {
  display: block;
  outline: 0 none;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  font-size: 18px;
  height: 47px;
  line-height: 47px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: nowrap;
  color: #000;
  background-color: #fff;
  border: 1PX solid #ddd;
  border-radius: 5px;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-button {
    position: relative;
    border: none;
  }
  html:not([data-scale]) .am-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    border: 1PX solid #ddd;
    border-radius: 0.1rem;
    transform-origin: 0 0;
    transform: scale(0.5);
    box-sizing: border-box;
    pointer-events: none;
  }
}
.am-button-borderfix:before {
  transform: scale(0.49) !important;
}
.am-button.am-button-active {
  background-color: #ddd;
}
.am-button.am-button-disabled {
  color: rgba(0, 0, 0, 0.3);
  opacity: 0.6;
}
.am-button-primary {
  color: #fff;
  background-color: #108ee9;
  border: 1PX solid #108ee9;
  border-radius: 5px;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-button-primary {
    position: relative;
    border: none;
  }
  html:not([data-scale]) .am-button-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    border: 1PX solid #108ee9;
    border-radius: 0.1rem;
    transform-origin: 0 0;
    transform: scale(0.5);
    box-sizing: border-box;
    pointer-events: none;
  }
}
.am-button-primary.am-button-active {
  color: rgba(255, 255, 255, 0.3);
  background-color: #0e80d2;
}
.am-button-primary.am-button-disabled {
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.4;
}
.am-button-ghost {
  color: #108ee9;
  background-color: transparent;
  border: 1PX solid #108ee9;
  border-radius: 5px;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-button-ghost {
    position: relative;
    border: none;
  }
  html:not([data-scale]) .am-button-ghost::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    border: 1PX solid #108ee9;
    border-radius: 0.1rem;
    transform-origin: 0 0;
    transform: scale(0.5);
    box-sizing: border-box;
    pointer-events: none;
  }
}
.am-button-ghost.am-button-active {
  color: rgba(16, 142, 233, 0.6);
  background-color: transparent;
  border: 1PX solid rgba(16, 142, 233, 0.6);
  border-radius: 5px;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-button-ghost.am-button-active {
    position: relative;
    border: none;
  }
  html:not([data-scale]) .am-button-ghost.am-button-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    border: 1PX solid rgba(16, 142, 233, 0.6);
    border-radius: 0.1rem;
    transform-origin: 0 0;
    transform: scale(0.5);
    box-sizing: border-box;
    pointer-events: none;
  }
}
.am-button-ghost.am-button-disabled {
  color: rgba(0, 0, 0, 0.1);
  border: 1PX solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 1;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-button-ghost.am-button-disabled {
    position: relative;
    border: none;
  }
  html:not([data-scale]) .am-button-ghost.am-button-disabled::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 200%;
    border: 1PX solid rgba(0, 0, 0, 0.1);
    border-radius: 0.1rem;
    transform-origin: 0 0;
    transform: scale(0.5);
    box-sizing: border-box;
    pointer-events: none;
  }
}
.am-button-warning {
  color: #fff;
  background-color: #e94f4f;
}
.am-button-warning.am-button-active {
  color: rgba(255, 255, 255, 0.3);
  background-color: #d24747;
}
.am-button-warning.am-button-disabled {
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.4;
}
.am-button-inline {
  display: inline-block;
  padding: 0 15px;
}
.am-button-inline.am-button-icon {
  display: inline-flex;
}
.am-button-small {
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
}
.am-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-button > .am-button-icon {
  margin-right: 0.5em;
}

.am-list-header {
  padding: 15px 15px 9px 15px;
  font-size: 14px;
  color: #888;
  width: 100%;
  box-sizing: border-box;
}
.am-list-footer {
  padding: 9px 15px 15px 15px;
  font-size: 14px;
  color: #888;
}
.am-list-body {
  position: relative;
  background-color: #fff;
  border-top: 1PX solid #ddd;
  border-bottom: 1PX solid #ddd;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-list-body {
    border-top: none;
  }
  html:not([data-scale]) .am-list-body::before {
    content: '';
    position: absolute;
    background-color: #ddd;
    display: block;
    z-index: 1;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1PX;
    transform-origin: 50% 50%;
    transform: scaleY(0.5);
  }
}
@media (min-resolution: 2dppx) and (min-resolution: 3dppx) {
  html:not([data-scale]) .am-list-body::before {
    transform: scaleY(0.33);
  }
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-list-body {
    border-bottom: none;
  }
  html:not([data-scale]) .am-list-body::after {
    content: '';
    position: absolute;
    background-color: #ddd;
    display: block;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1PX;
    transform-origin: 50% 100%;
    transform: scaleY(0.5);
  }
}
@media (min-resolution: 2dppx) and (min-resolution: 3dppx) {
  html:not([data-scale]) .am-list-body::after {
    transform: scaleY(0.33);
  }
}
.am-list-body div:not(:last-child) .am-list-line {
  border-bottom: 1PX solid #ddd;
}
@media (min-resolution: 2dppx) {
  html:not([data-scale]) .am-list-body div:not(:last-child) .am-list-line {
    border-bottom: none;
  }
  html:not([data-scale]) .am-list-body div:not(:last-child) .am-list-line::after {
    content: '';
    position: absolute;
    background-color: #ddd;
    display: block;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1PX;
    transform-origin: 50% 100%;
    transform: scaleY(0.5);
  }
}
@media (min-resolution: 2dppx) and (min-resolution: 3dppx) {
  html:not([data-scale]) .am-list-body div:not(:last-child) .am-list-line::after {
    transform: scaleY(0.33);
  }
}
.am-list-item {
  position: relative;
  display: flex;
  padding-left: 15px;
  min-height: 44px;
  background-color: #fff;
  vertical-align: middle;
  overflow: hidden;
  transition: background-color 200ms;
  align-items: center;
  /* list左图片显示*/
}
.am-list-item .am-list-ripple {
  position: absolute;
  background: transparent;
  display: inline-block;
  overflow: hidden;
  will-change: box-shadow, transform;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  border-radius: 100%;
  transform: scale(0);
}
.am-list-item .am-list-ripple.am-list-ripple-animate {
  background-color: hsla(0, 0%, 62%, 0.2);
  animation: ripple 1s linear;
}
.am-list-item.am-list-item-top .am-list-line {
  align-items: flex-start;
}
.am-list-item.am-list-item-top .am-list-line .am-list-arrow {
  margin-top: 2px;
}
.am-list-item.am-list-item-middle .am-list-line {
  align-items: center;
}
.am-list-item.am-list-item-bottom .am-list-line {
  align-items: flex-end;
}
.am-list-item.am-list-item-error .am-list-line .am-list-extra {
  color: #f50;
}
.am-list-item.am-list-item-error .am-list-line .am-list-extra .am-list-brief {
  color: #f50;
}
.am-list-item.am-list-item-active {
  background-color: #ddd;
}
.am-list-item.am-list-item-disabled .am-list-line .am-list-content,
.am-list-item.am-list-item-disabled .am-list-line .am-list-extra {
  color: #bbb;
}
.am-list-item img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.am-list-item .am-list-thumb:first-child {
  margin-right: 15px;
}
.am-list-item .am-list-thumb:last-child {
  margin-left: 8px;
}
.am-list-item .am-list-line {
  position: relative;
  display: flex;
  flex: 1;
  align-self: stretch;
  padding-right: 15px;
  overflow: hidden;
  /* list左侧主内容*/
  /* list右补充内容*/
  /* 辅助性文字*/
  /* list右侧箭头*/
}
.am-list-item .am-list-line .am-list-content {
  flex: 1;
  color: #000;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 7px;
  padding-bottom: 7px;
}
.am-list-item .am-list-line .am-list-extra {
  flex-basis: 36%;
  color: #888;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 7px;
  padding-bottom: 7px;
}
.am-list-item .am-list-line .am-list-title {
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.am-list-item .am-list-line .am-list-brief {
  color: #888;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 6px;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.am-list-item .am-list-line .am-list-arrow {
  display: block;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2226%22%20viewBox%3D%220%200%2016%2026%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%20id%3D%22UI-KIT_%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%229.9%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20transform%3D%22translate(-5809.000000%2C%20-8482.000000)%22%20fill%3D%22%23C7C7CC%22%3E%3Cpolygon%20id%3D%22Disclosure-Indicator%22%20points%3D%225811%208482%205809%208484%205820.5%208495%205809%208506%205811%208508%205825%208495%22%3E%3C%2Fpolygon%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  visibility: hidden;
}
.am-list-item .am-list-line .am-list-arrow-horizontal {
  visibility: visible;
}
.am-list-item .am-list-line .am-list-arrow-vertical {
  visibility: visible;
  transform: rotate(90deg);
}
.am-list-item .am-list-line .am-list-arrow-vertical-up {
  visibility: visible;
  transform: rotate(270deg);
}
.am-list-item .am-list-line-multiple {
  padding: 12.5px 15px 12.5px 0;
}
.am-list-item .am-list-line-multiple .am-list-content {
  padding-top: 0;
  padding-bottom: 0;
}
.am-list-item .am-list-line-multiple .am-list-extra {
  padding-top: 0;
  padding-bottom: 0;
}
.am-list-item .am-list-line-wrap .am-list-content {
  white-space: normal;
}
.am-list-item .am-list-line-wrap .am-list-extra {
  white-space: normal;
}
.am-list-item select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  font-size: 17px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.share_bottom___3d5sk {
  position: fixed;
  z-index: 3;
  bottom: 0;
  width: 100%;
}
.share_box___e1ABc {
  background: #FFFFFF;
  box-shadow: 0 0 0.1rem 0 rgba(72, 72, 72, 0.1);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0.08rem 0.16rem 0 0.1rem;
  align-items: center;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  /*兼容 IOS<11.2*/
}
.share_box___e1ABc .back___1O8Jd {
  margin-bottom: 0.04rem;
}
.share_box___e1ABc a {
  margin-bottom: 0.04rem;
}
.share_box___e1ABc .share_btn___1YB0Q {
  width: 3.07rem;
  height: 0.32rem;
  background: linear-gradient(90deg, #1DA8D9 0%, #046DDB 100%);
  border-radius: 0.16rem;
  font-size: 0.14rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.32rem;
  margin-bottom: 0.08rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share_box___e1ABc .share_btn___1YB0Q::before {
  border-width: 0 !important;
}
.share_box___e1ABc .share_btn___1YB0Q img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.04rem;
}

.html-img___1rkms {
  width: 100%;
  display: block;
}
.ishide___3QQQZ {
  display: none;
}
.temp-mci___1buvC .mbi-ranking-title___1UVdD {
  position: absolute;
  width: 1.12rem;
  height: 0.2rem;
  top: 0.28rem;
  left: 0.24rem;
}
.temp-mci___1buvC .mbi-ranking-title___1UVdD img {
  width: 100%;
}
.temp-mci___1buvC p {
  font-size: 0.16rem;
  line-height: 0.22rem;
}
.temp-mci___1buvC .ranking-date___3lzPk {
  position: absolute;
  top: 0.6rem;
  left: 0.24rem;
  color: #A3A6B4;
  font-size: 0.16rem;
  font-weight: 400;
}
.temp-mci___1buvC .content-qrcode___Xsxgf {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0.24rem;
}
.temp-mci___1buvC .content-qrcode___Xsxgf .explain-box___Q0VJp {
  width: 2.41rem;
  background: rgba(38, 74, 127, 0.3);
  border-radius: 0.04rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  margin-left: 0.24rem;
}
.temp-mci___1buvC .content-qrcode___Xsxgf .explain-box___Q0VJp p {
  font-size: 0.11rem;
  font-weight: 400;
  color: #6589BD;
  line-height: 0.18rem;
  padding: 0.08rem;
  text-align: left;
  text-align: justify;
}
.temp-mci___1buvC .qrcode___2uA9_ {
  width: 0.7rem;
  margin-right: 0.24rem;
}
.temp-mci___1buvC .qrcode___2uA9_ .text___1AzGb {
  font-size: 0.16rem;
  font-weight: 400;
  color: #fff;
  vertical-align: top;
  margin-top: 0.04rem;
}
.temp-mci___1buvC .qrcode___2uA9_ .text___1AzGb p {
  color: #fff;
  line-height: 0.14rem;
  font-size: 0.1rem;
  text-align: center;
}
.temp-mci___1buvC .qrcode___2uA9_ img {
  width: 0.7rem;
  height: 0.7rem;
}
.temp-mci___1buvC.temp-1___26x9E {
  text-align: left;
  position: relative;
  height: 7rem;
}
.temp-mci___1buvC.temp-1___26x9E .bg___3km2B {
  position: absolute;
  width: 100%;
}
.temp-mci___1buvC.temp-1___26x9E .is-1___3QKUZ {
  padding-left: 0.24rem;
  padding-right: 0;
  font-size: 0;
  position: relative;
  z-index: 2;
}
.temp-mci___1buvC.temp-1___26x9E .name-box___30OPD {
  background-color: #145AB2;
  border-radius: 0 0.08rem 0.08rem 0;
  max-width: 2rem;
  min-width: 1.2rem;
  padding: 0.08rem 0.24rem;
  margin-left: -0.24rem;
  margin-top: 1.28rem;
  display: inline-block;
}
.temp-mci___1buvC.temp-1___26x9E .name-box___30OPD p {
  font-size: 0.16rem;
  color: #fff;
  display: inline-block;
}
.temp-mci___1buvC.temp-1___26x9E .cup-icon___KhgKx {
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  vertical-align: bottom;
  margin-left: 0.24rem;
  margin-bottom: 0.05rem;
}
.temp-mci___1buvC.temp-1___26x9E .cup-icon___KhgKx img {
  width: 100%;
}
.temp-mci___1buvC.temp-1___26x9E .ranking___3oKjl {
  color: #fff;
  font-size: 0.32rem;
  display: inline-block;
}
.temp-mci___1buvC.temp-1___26x9E .text___1AzGb {
  font-size: 0.64rem;
  font-weight: 600;
  color: #FCD86D;
  line-height: 0.64rem;
}
.temp-mci___1buvC.temp-1___26x9E .rangking-typeName___3Ot3_ {
  font-size: 0.14rem;
  padding-top: 0.2rem;
  color: rgba(255, 255, 255, 0.59);
}
.temp-mci___1buvC.temp-1___26x9E .fk___3OntC {
  height: 0.12rem;
  width: 0.12rem;
  background-color: #453DAF;
}
.temp-mci___1buvC.temp-1___26x9E .series___25xXF {
  color: #FEC27C;
  font-size: 0.2rem;
  padding-top: 0.24rem;
}
.temp-mci___1buvC.temp-1___26x9E .cup-rangking___3uaPL {
  padding-top: 0.24rem;
}
.temp-mci___1buvC.temp-1___26x9E .cup-rangking___3uaPL .cup-icon___KhgKx {
  margin: 0 0 0.05rem 0.24rem;
}
.temp-mci___1buvC.temp-1___26x9E .fk-icon___3wtxR {
  position: relative;
  padding: 0.32rem 0;
}
.temp-mci___1buvC.temp-1___26x9E .fk-icon___3wtxR .icon-line___qa8gM {
  width: 1.2rem;
  height: 0.02rem;
  position: absolute;
  left: 0.2rem;
  background-color: #453DAF;
  top: 0.37rem;
}
.temp-mci___1buvC.temp-1___26x9E .bcl___2vEua {
  color: rgba(255, 255, 255, 0.59);
}
.temp-mci___1buvC.temp-1___26x9E .indexNum___B-oJB {
  color: #fff;
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.33rem;
  margin: 0.04rem 0 0.72rem 0;
}
.temp-mci___1buvC.temp-2___12ExI {
  overflow: hidden;
  position: relative;
  color: #fff;
  height: 7rem;
}
.temp-mci___1buvC.temp-2___12ExI .bg___3km2B {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.temp-mci___1buvC.temp-2___12ExI .one-line___3kC7_.name-box___30OPD {
  top: 1.25rem;
}
.temp-mci___1buvC.temp-2___12ExI .name-box___30OPD {
  max-width: 1.44rem;
  padding: 0.08rem 0.12rem;
  position: absolute;
  top: 1.09rem;
  right: 1rem;
  z-index: 2;
  background-color: #145AB2;
  border-radius: 0.08rem 0 0 0.08rem;
}
.temp-mci___1buvC.temp-2___12ExI .name-box___30OPD span {
  font-size: 0.16rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 0.24rem;
  vertical-align: middle;
  display: inline-block;
}
.temp-mci___1buvC.temp-2___12ExI .ranking___3oKjl {
  color: #fff;
  font-size: 0.36rem;
  display: inline-block;
  font-weight: 600;
  margin: 0.38rem 0 0 0.82rem;
}
.temp-mci___1buvC.temp-2___12ExI .rangking-typeName___3Ot3_ {
  font-size: 0.14rem;
  padding: 0.2rem 0 0 1.34rem;
  color: rgba(255, 255, 255, 0.59);
}
.temp-mci___1buvC.temp-2___12ExI .text___1AzGb {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FCD86D;
  line-height: 0.72rem;
}
.temp-mci___1buvC.temp-2___12ExI .good-icon___3gwqr {
  padding: 0.26rem 0 0 1.34rem;
  font-size: 0.2rem;
  font-weight: 400;
  color: #FEC27C;
}
.temp-mci___1buvC.temp-2___12ExI .fk___3OntC {
  height: 0.12rem;
  width: 0.12rem;
  background-color: #453DAF;
  margin: 0.12rem 0 0.12rem 1.34rem;
  display: inline-block;
}
.temp-mci___1buvC.temp-2___12ExI .bcl___2vEua {
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
  padding-left: 1.34rem;
}
.temp-mci___1buvC.temp-2___12ExI .indexNum___B-oJB {
  font-size: 0.24rem;
  color: #FFFFFF;
  padding-left: 1.34rem;
  font-weight: 600;
  line-height: 0.34rem;
  margin-top: 0.04rem;
}
.temp-mci___1buvC.temp-2___12ExI .adr___2s0Rt {
  position: absolute;
  top: 1.74rem;
}
.temp-mci___1buvC.temp-2___12ExI .content-qrcode___Xsxgf {
  z-index: 2;
}
.temp-mci___1buvC.temp-2___12ExI .content-qrcode___Xsxgf .explain-box___Q0VJp {
  margin-left: 0.24rem;
}

body {
  background-color: #fff;
}
.my_box___U4fdv {
  position: relative;
}
.data_change___FR3YU {
  padding: 0 0.32rem;
  margin-top: -1.92rem;
  height: 1.92rem;
}
.data_change___FR3YU .h_btn_time___1Qjhj {
  padding-top: 0.16rem;
  font-size: 0.14rem;
  font-weight: 400;
  color: #484848;
  line-height: 0.2rem;
  position: relative;
  padding-right: 0.1rem;
}
.data_change___FR3YU .h_btn_time___1Qjhj::after {
  content: '';
  position: absolute;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAbCAYAAABxwd+fAAAAAXNSR0IArs4c6QAAAsdJREFUSEutlU1IVFEUx//nvhmcyaGMDAIjoloWFUThJgzB8c7wdgmFq4gICyqjT0UdImwRtQgknHDRUqUSxsdznM1sWijYwk1FUDERhdoHGMU03nviDjPy/JoP6Ozeu+f8uPec/zmHpJQ1RHRCa73H7/e7gUAgMzo6qlClUTQaDSulhgFsAfCGiG7Pzc05MzMzuWpY1NraegHAQCGIASwQUbfruk+qBe0G8AzAIQCiGExE/TU1NffHxsZ+VgIkABSJRA5qre8CiHqCskQ0bFlWz/j4eKYczIDyZtt2fS6X6yWii8xcvNkSgFml1KlUKvWuFGwZZJza2tqCi4uLNwB0FpKfjyWijNb6bDabTafTaQNfYytA5rSxsTFYV1d3GkAfM+/yRHwkonuhUGhoPXmsAZnAWCwmpqamjgKIM/MBD+wXEQ35fL6uRCLx23utdUFFh5aWlv1CiDiAY56KLgkhniqlepLJ5JflKperhpRyJxH1aa3bAQQL/kb5SWY2sFf5PJYDmXMp5WYAV5j5lgdmjt4S0SXXdVMVgYp5m56e7tBaxwDUe4SbEUJEKwYVA6WUXcx8B4BV/CeE6KgKJKU8ycyPAOzwpOWbz+eLVASybXuTUupcoY1Cnrx+EkLcrK2tHSkLklJuB9DNzGcAmKQbM1PipWVZvY7jpM13SVA4HN4nhBhk5uMAfAWIJqIXSqnrk5OTH8rpiGzbPpzL5QYBHPE85Q+AEcuyOh3H+VFS2Wb0CiHalFKmzHs9Zf5MRA+ZecB13exq/a14WlNTUyAYDF4FcI2Zt3qcvwI4Pz8/7240gpdBzc3N2/x+fxcRXWbmokYUEb1m5vaJiYnZUl3gnZBGZLbH+S+A55ZldTuO875cK5nhv9HMfqC17k8mk9/LQfJNu3qLENGCGWqu6z6uBLBcjNV7zTyloaEhEY/Hq9tr/2vT/gPnfhibxa9L3wAAAABJRU5ErkJggg==) no-repeat center;
  background-size: contain;
  right: 0;
  top: 0.21rem;
  width: 0.06rem;
  height: 0.09rem;
}
.data_change___FR3YU .index_hb___31no7 {
  padding-top: 0.18rem;
}
.data_change___FR3YU .index_hb___31no7 .hb___2Y2ZZ {
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  display: inline-block;
  margin-right: 0.09rem;
  position: relative;
}
.data_change___FR3YU .index_hb___31no7 .hb___2Y2ZZ::after {
  content: '';
  position: absolute;
  width: 0.01rem;
  height: 1rem;
  background: #DDDDDD;
  top: 0;
  right: -0.09rem;
}
.data_change___FR3YU .index_hb___31no7 .hb___2Y2ZZ .index___3EzqT {
  font-size: 0.24rem;
  font-weight: 600;
  color: #118BDA;
  line-height: 0.33rem;
  margin-top: 0.02rem;
}
.data_change___FR3YU .index_hb___31no7 .hb___2Y2ZZ .text___3fWXW {
  font-size: 0.12rem;
  font-weight: 400;
  color: #888888;
  line-height: 0.17rem;
  padding: 0.04rem 0 0.2rem 0;
}
.data_change___FR3YU .index_hb___31no7 .hb___2Y2ZZ .hb_text___3XKtB {
  font-size: 0.12rem;
  font-weight: 400;
  color: #484848;
  line-height: 0.17rem;
}
.data_change___FR3YU .index_hb___31no7 ul {
  display: inline-block;
  vertical-align: top;
  width: 1.92rem;
  margin-top: -0.06rem;
}
.data_change___FR3YU .index_hb___31no7 ul li {
  width: 0.88rem;
  text-align: center;
  display: inline-block;
  margin-left: 0.08rem;
  margin-bottom: 0.08rem;
  padding: 0 0 0.06rem 0;
}
.data_change___FR3YU .index_hb___31no7 ul .index___3EzqT {
  font-size: 0.2rem;
  font-weight: 600;
  color: #484848;
  line-height: 0.28rem;
  margin-bottom: 0.01rem;
}
.data_change___FR3YU .index_hb___31no7 ul .text___3fWXW {
  font-size: 0.12rem;
  font-weight: 400;
  color: #888888;
  line-height: 0.17rem;
  margin-top: 0.01rem;
}
.content_box___3zmyC {
  padding-top: 0.32rem;
  padding-bottom: 0.24rem;
}
.content_box___3zmyC.min_top_bottom___ahlD1 {
  padding-top: 0.24rem;
  padding-bottom: 0.08rem;
}
.content_box___3zmyC.meadia_box___3NB4Z {
  padding-top: 0.16rem;
}
.content_box___3zmyC > h2 {
  font-size: 0.18rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.25rem;
  padding: 0 0.16rem 0.08rem 0.16rem;
}
.more_report___1IZFp {
  margin-top: 0.18rem;
  display: flex;
  font-size: 0.14rem;
  font-weight: 400;
  color: #999999;
  text-align: center;
  height: 0.32rem;
  justify-content: center;
  align-items: center;
}
.more_report___1IZFp img {
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.04rem;
}
.line_bg___5UDKF {
  height: 0.08rem;
  background-color: #F5F5F5;
}
.sticky_inner_active___1YQC1 {
  background-color: #fff;
  z-index: 8;
  box-shadow: 0 0 0.08rem 0 rgba(72, 72, 72, 0.1);
}
.menu_box___2-Yta {
  display: flex;
  background-color: #fff;
}
.menu_box___2-Yta li {
  flex-grow: 1;
}
.menu_box___2-Yta li a {
  position: relative;
  display: block;
  text-align: center;
  height: 0.44rem;
  line-height: 0.44rem;
  font-size: 0.14rem;
  font-weight: 400;
  color: #888888;
}
.menu_box___2-Yta li a.active___10sBQ {
  color: #118BDA;
}
.menu_box___2-Yta li a.active___10sBQ::after {
  content: '';
  position: absolute;
  width: 0.24rem;
  height: 0.02rem;
  background: #118BDA;
  border-radius: 0.01rem;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.block_index___L5azw {
  padding-bottom: 0.24rem;
}
.block_index___L5azw > h2 {
  font-size: 0.18rem;
  font-weight: 600;
  color: #333333;
  line-height: 0.25rem;
  padding: 0.24rem 0 0.16rem 0.16rem;
}
.block_index___L5azw > h2.chartH___5zl4S {
  padding: 0.32rem 0 0.08rem 0.16rem;
}
.block_index___L5azw > h2.chartH___5zl4S.addChart___2rUBh {
  padding-top: 0.4rem;
}
.block_index___L5azw > h2.first_block___1HfM1 {
  padding-top: 0.08rem;
}
.bottom_height___8erqI {
  height: 0.44rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  /*兼容 IOS<11.2*/
}
.media_trend_tab___3vGSc {
  font-size: 0;
}
.media_trend_tab___3vGSc li {
  font-size: 0.12rem;
  font-weight: 400;
  color: #484848;
  display: inline-block;
}
.pie_time___2UQjK {
  font-size: 0.12rem;
  font-weight: 400;
  color: #484848;
  padding: 0.04rem 0 0.08rem 0.16rem;
  line-height: 0.17rem;
}
.look_more___11zy0 {
  margin-top: 0.12rem;
  display: flex;
  font-size: 0.14rem;
  font-weight: 400;
  color: #999999;
  text-align: center;
  height: 0.32rem;
  justify-content: center;
  align-items: center;
}
.look_more___11zy0 img {
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.04rem;
}
.tab_box___3CKgc {
  padding: 0.08rem 0 0.08rem 0.16rem;
}
.tab_box___3CKgc.pb___3Mcyl {
  padding-bottom: 0.16rem;
}
.user_comment___3btCU {
  padding-top: 0.12rem;
}
.content_join___2gZJu {
  padding: 0.2rem 0 0.24rem;
  box-sizing: border-box;
  width: 3.75rem;
  overflow: hidden;
}
.content_join___2gZJu h2 {
  font-weight: 600;
  font-size: 0.18rem;
  color: #333333;
  line-height: 0.25rem;
  text-align: center;
  margin-bottom: 0.2rem;
}
.content_join___2gZJu .joinList___Hi3Tx {
  min-width: 3.75rem;
  overflow-x: scroll;
  padding: 0 0.16rem 0.11rem;
  display: flex;
  gap: 0.08rem;
  box-sizing: border-box;
  margin-bottom: 0.09rem;
}
.content_join___2gZJu .joinList___Hi3Tx .joinListItem___51Stg {
  flex-shrink: 0;
  width: 1.09rem;
  height: 0.72rem;
  background: #EFF6FA;
  border-radius: 0.04rem;
  padding: 0.08rem 0 0 0.2rem;
  box-sizing: border-box;
  overflow: hidden;
}
.content_join___2gZJu .joinList___Hi3Tx .joinListItem___51Stg .joinListItemNum___3PFhB {
  width: 100%;
  height: 0.33rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.12rem;
  color: #484848;
  line-height: 0.33rem;
  font-weight: 600;
}
.content_join___2gZJu .joinList___Hi3Tx .joinListItem___51Stg .joinListItemNum___3PFhB span {
  display: inline-block;
  font-size: 0.24rem;
  font-weight: 600;
}
.content_join___2gZJu .joinList___Hi3Tx .joinListItem___51Stg .joinListItemTitle___2E0r3 {
  font-weight: 400;
  font-size: 0.12rem;
  color: #888888;
  line-height: 0.18rem;
  margin-top: 0.02rem;
}
.content_join___2gZJu .joinInfo___eyh-Y {
  font-weight: 400;
  font-size: 0.14rem;
  color: #484848;
  line-height: 0.24rem;
  padding: 0.04rem 0.16rem 0;
  box-sizing: border-box;
  overflow: hidden;
  word-break: break-all;
}
.content_join___2gZJu .join_info___3bF5s {
  height: 2.1rem;
  overflow: hidden;
  position: relative;
}
.content_join___2gZJu .join_info___3bF5s .join_infoTitle___3sZqz {
  font-weight: bold;
  display: flex;
}
.content_join___2gZJu .join_info___3bF5s .join_infoTitle___3sZqz span {
  display: block;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.22rem;
  padding-bottom: 0.08rem;
  border-bottom: 0.01rem solid #118BDA;
  margin-right: 0.04rem;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  word-break: break-all;
}
.content_join___2gZJu .join_info___3bF5s .join_infoTitle___3sZqz div {
  flex: 1;
  border-bottom: 0.01rem solid #DDDDDD;
}
.content_join___2gZJu .join_info___3bF5s .join_indexInfo___X6u_n li {
  padding: 0.06rem 0;
  border-bottom: 0.01rem dashed #DDDDDD;
  font-size: 0.14rem;
  color: #484848;
  line-height: 0.22rem;
}
.content_join___2gZJu .join_info___3bF5s .join_indexInfo___X6u_n li .join_name___Qvg8o {
  font-weight: 600;
}
.content_join___2gZJu .join_info___3bF5s .join_indexInfo___X6u_n li:last-child {
  border: none;
  padding-bottom: 0;
}
.content_join___2gZJu .join_info___3bF5s:not(:first-child) {
  margin-top: 0.24rem;
}
.content_join___2gZJu .join_info___3bF5s .seeMore___2KKwF {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  padding-top: 0.68rem;
  box-sizing: border-box;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 50%, rgba(255, 255, 255, 0) 100%);
}
.content_join___2gZJu .join_info___3bF5s .seeMore___2KKwF span {
  display: block;
  width: 1.4rem;
  height: 0.32rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #999999;
  margin: 0 auto;
  padding: 0.06rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.content_join___2gZJu .join_info___3bF5s .seeMore___2KKwF img {
  display: block;
  width: 0.08rem;
  height: 0.12rem;
}
.content_join___2gZJu .joinInfo_text___3TVRI {
  max-height: none;
}
.content_join___2gZJu .doc___YbDKE {
  width: 3.43rem;
  height: 0.48rem;
  background: #F5F5F5;
  border-radius: 0.02rem;
  margin: 0.24rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.16rem 0 0.12rem;
  box-sizing: border-box;
}
.content_join___2gZJu .doc___YbDKE div {
  font-weight: 400;
  font-size: 0.14rem;
  color: #333333;
  line-height: 0.22rem;
}
.content_join___2gZJu .doc___YbDKE a,
.content_join___2gZJu .doc___YbDKE span {
  display: block;
  font-weight: 500;
  font-size: 0.14rem;
  color: #118BDA;
  line-height: 0.2rem;
}
.content_join___2gZJu .doc-mobile___1XasY {
  margin-top: 0.16rem;
}
.content_join___2gZJu .more___12WCc {
  width: 0.64rem;
  height: 0.14rem;
  font-weight: 400;
  font-size: 0.12rem;
  color: #999999;
  line-height: 0.14rem;
  margin: 0.12rem auto 0.04rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAShJREFUOE/Nky1PxEAQht/ZNqQOhcMVi0CRE0BwmBNnKlAYEgRB3k4bCFW70wSBAYPhDyBA4LjkICg0FkVwZ3F0CIQjB9f7IDWs3Z0n+34MoeahmvP4JwDvfSuO46skSd6mkZTnuYmiqMnMl58SROQGwLO1douIdBJERE6JaMla2+gDZomoo6r3zLw3DiAiHkCzLMu1LMt63yY65+aCIOiq6gUzH1RBRIQBbBPRirX25ePNjxSKophX1TsAJ8x8NAgpimJHVfdVdTVN06f+3VCM3vsFIroFcMjMZ18ebQI4BrDOzI+D4MoeiMgigI4xZrcsy1cA56q6kabpw29pI4vknFsOguBaVckY02q3290qX8Y20TnXCMNwZtTwkImT8v/zD6YB1l6md5kWZhGeNEvmAAAAAElFTkSuQmCC) right center / 0.08rem 0.08rem no-repeat;
}

