body {
  margin: 0;
  padding: 0;
  font-family: "PingFangSC", "PingFang SC", "Arial Normal", "Arial";
  /* background-color: #eff4fa; */
  background: linear-gradient(rgb(247, 251, 254) 0%, rgb(246, 251, 254) 99%);
  background-image: url("https://zfy-fsfmy.oss-cn-shenzhen.aliyuncs.com/fsoa/images/index-bg.png");
  background-color: #f6fbfe;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto;
  /*overflow: hidden;*/
  min-width: 1200px;
  overflow-x: auto;
}

.md {
  width: 1140px;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid_separate {
  grid-column: 1/-1;
}

.grid_4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid_3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid_2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid_columns_2 {
  grid-column: 1/3;
}

.flex {
  display: flex;
}

.flex_col {
  flex-direction: column;
}

.flex_center {
  justify-content: center;
  align-items: center;
}

.flex_justify_between {
  justify-content: space-between;
}

.flex_justify_center {
  justify-content: center;
}

.flex_items_start {
  align-items: flex-start;
}

.flex_items_end {
  align-items: flex-end;
}

.flex_justify_around {
  justify-content: space-around;
}

.flex_justify_end {
  justify-content: flex-end;
}

.flex_items_center {
  align-items: center;
}

.flex_items_between {
  align-items: space-between;
}

.flex_1 {
  flex: 1 1 0px;
  min-width: 0;
}

.flex_2 {
  flex: 2;
}

.flex_text_right {
  display: flex;
  flex: 1;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}

.text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.triangle {
  width: 5px;
  height: 8px;
  background-image: url("https://zfy-fsfmy.oss-cn-shenzhen.aliyuncs.com/mobile/images/icon/personal/triangle.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.triangle.blue {
  background-image: url("https://zfy-fsfmy.oss-cn-shenzhen.aliyuncs.com/mobile/images/icon/personal/blue_triangle.png");
}

.arrow {
  width: 7px;
  height: 12px;
  background-image: url("https://zfy-fsfmy.oss-cn-shenzhen.aliyuncs.com/mobile/images/icon/personal/arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.image, .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
}

.break_all {
  word-break: break-all;
}

.theme_btn_box {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.theme_btn {
  background: #3f84f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  padding: 10px 0;
  margin: 5px 0;
  cursor: pointer;
}
.theme_btn.grey_btn {
  background: #999;
  color: #fff;
}

.orange_color {
  color: #f7853f;
}

.blue_color {
  color: #3f84f7;
}

.green_color {
  color: #3bb72c;
}

.grey_color {
  color: #999;
}

.not_fully_loaded {
  pointer-events: none;
}/*# sourceMappingURL=base.css.map */