@charset "utf-8";
@import "toastify.css";

/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
  color: #666;
}

img {
  max-height: 100%;
  max-width: 100%;
  border: 0;
}

input,
textarea {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
}

html,
body {
  font-size: 100%;
  width: 100%;
  height: 100%;
}

textarea::-webkit-input-placeholder {
  color: #999999;
  font-size: 12px;
}

textarea::-moz-placeholder {
  color: #999999;
  font-size: 12px;
}

textarea::-ms-input-placeholder {
  color: #999999;
  font-size: 12px;
}

input::-webkit-input-placeholder {
  color: #999999;
  font-size: 12px;
}

input:-moz-placeholder {
  font-weight: 999999;
  font-size: 12px;
}

input:-ms-input-placeholder {
  font-weight: 999999;
  font-size: 12px;
}

body {
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.poi_absolute {
  position: absolute;
}

.poi_relative {
  position: relative;
}

.inline_block {
  display: inline-block;
}

.flex {
  display: flex;
}

.flex_row {
  display: flex;
  flex-direction: row;
}
.flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex_colum {
  display: flex;
  flex-direction: column;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex-basis-120 {
  flex-basis: 120px;
}

.flex-basis-300 {
  flex-basis: 300px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.align_center {
  align-items: center;
}

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

.content_center {
  justify-content: center;
}

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

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

.space_start {
  justify-content: start;
}

.flex_start {
  align-items: flex-start; /* 子元素在水平方向上居左对齐 */
}

.vertical_bottom {
  vertical-align: bottom;
}

.gap_6 {
  gap: 6px;
}

.gap_10 {
  gap: 10px;
}

.shrink_0 {
  flex-shrink: 0;
}

.text_center {
  text-align: center;
}

.text_normal_color {
  color: #333333;
}

.text_sub_color {
  color: #666666;
}

.text_sub_color2 {
  color: #999999;
}

.text_black {
  color: rgba(0, 0, 0, 0.9);
}

.text_orange {
  color: #ff7821;
}

.text_blue {
  color: #1290ff;
}

.text_blue2 {
  color: rgba(56, 158, 208, 1);
}

.text_blue3 {
  color: rgba(157, 197, 216, 1);
}

.text_blue4 {
  color: rgba(90, 228, 240, 1);
}

.text_blue5 {
  color: #9dc5d8;
}

.text_white {
  color: #ffffff;
}

.text_white_2 {
  color: rgba(255, 255, 255, 0.9);
}

.text_white_3 {
  color: rgba(255, 255, 255, 0.79);
}

.text_white_4 {
  color: rgba(255, 255, 255, 1);
}

.index_99 {
  z-index: 99;
}

.index_100 {
  z-index: 100;
}

.l_p50 {
  left: 50%;
}

.b_0 {
  bottom: 0;
}

.l_0 {
  left: 0;
}

.l_30 {
  left: 30px;
}

.r_0 {
  right: 0;
}

.r_12 {
  right: 12px;
}

.r_20 {
  right: 20px;
}

.r_50 {
  right: 50px;
}

.r_210 {
  right: 210px;
}

.t_0 {
  top: 0;
}

.t_10 {
  top: 10px;
}

.t_15 {
  top: 15px;
}

.t_20 {
  top: 20px;
}

.transform_h_center {
  transform: translate(-50%, 0);
}

.pb_3 {
  padding-bottom: 3px;
}

.pb_6 {
  padding-bottom: 6px;
}

.pb_8 {
  padding-bottom: 8px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_12 {
  padding-bottom: 12px;
}

.pb_14 {
  padding-bottom: 14px;
}

.pb_20 {
  padding-bottom: 20px;
}

.border_bottom_blue {
  border-bottom: #1290ff 2px solid;
}

.border_bottom_gray {
  border-bottom: #d9d9d9 1px solid;
}

.bg_white {
  background: #ffffff;
}

.bg_gray {
  background: #f8f8f8;
}

.bg_orange {
  background: rgba(255, 169, 102, 0.24);
}

.bg_blue {
  background: rgba(18, 144, 255, 0.24);
}

.bg_blue2 {
  background: rgba(18, 144, 255, 0.32);
}

.bg_blue3 {
  background: #1290ff;
}

.bg_blue4 {
  background: #3fa5ff;
}

.bg_blue5 {
  background: linear-gradient(135deg, #3fa5ff 0%, #0079e4 100%);
}

.bg_blue6 {
  background: #017ae5;
}

.bg_black {
  background: #2c2c2c;
}

.bg_black2 {
  background: rgba(35, 35, 35, 0.7);
}

.bg_black3 {
  background: rgba(0, 0, 0, 0.8);
}

.radius_4 {
  border-radius: 4px;
}

.radius_5 {
  border-radius: 5px;
}

.radius_8 {
  border-radius: 8px;
}

.radius_10 {
  border-radius: 10px;
}

.radius_12 {
  border-radius: 12px;
}

.radius_15 {
  border-radius: 15px;
}

.radius_20 {
  border-radius: 20px;
}

.radius_t_15 {
  border-top-left-radius: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-right-radius: 15px;
  -moz-border-radius-topright: 15px;
}

.radius_tl8_rb8 {
  border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
}

.border_orange {
  border: 1px solid #ff7821;
}

.border_blue {
  border: 1px solid #1291ff;
}

.border_gray {
  border: 1px solid #e2e2e2;
}

.border-white {
  border: 1px solid rgba(255, 255, 255, 1);
}

.object_cover {
  object-fit: cover;
}

.shadow_8 {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08);
}

.shadow_4 {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.04);
}

.display_block {
  display: block;
}

.display_none {
  display: none;
}

.font_12 {
  font-size: 12px;
}

.font_10 {
  font-size: 10px;
}

.font_14 {
  font-size: 14px;
}

.font_16 {
  font-size: 16px;
}

.font_18 {
  font-size: 18px;
}

.font_20 {
  font-size: 20px;
}

.font_24 {
  font-size: 24px;
}

.font_36 {
  font-size: 36px;
}

.font_48 {
  font-size: 48px;
}

.font_72 {
  font-size: 72px;
}

.font_bold {
  font-weight: bold;
}

.w_3 {
  width: 3px;
}

.w_10 {
  width: 10px;
}

.w_16 {
  width: 16px;
}

.w_20 {
  width: 20px;
}

.w_22 {
  width: 22px;
}

.w_24 {
  width: 24px;
}

.w_25 {
  width: 25px;
}

.w_80 {
  width: 80px;
}

.w_88 {
  width: 88px;
}

.w_92 {
  width: 92px;
}

.w_132 {
  width: 132px;
}

.w_156 {
  width: 156px;
}

.w_100p {
  width: 100%;
}

.h_100p {
  height: 100%;
}

.h_300p {
  height: 300%;
}

.h_100v {
  height: 100vh;
}

.h_10 {
  height: 10px;
}

.h_16 {
  height: 16px;
}

.h_20 {
  height: 20px;
}

.h_22 {
  height: 22px;
}

.h_24 {
  height: 24px;
}

.h_25 {
  height: 25px;
}

.h_30 {
  height: 30px;
}

.h_36 {
  height: 36px;
}

.h_80 {
  height: 80px;
}

.h_88 {
  height: 88px;
}

.h_110 {
  height: 110px;
}

.h_120 {
  height: 120px;
}

.h_180 {
  height: 180px;
}

.h_220 {
  height: 220px;
}

.line_h_36 {
  line-height: 36px;
}

.ml_4 {
  margin-left: 4px;
}

.m_12 {
  margin: 12px;
}

.ml_8 {
  margin-left: 8px;
}

.ml_12 {
  margin-left: 12px;
}

.ml_15 {
  margin-left: 15px;
}

.ml_16 {
  margin-left: 16px;
}

.ml_20 {
  margin-left: 20px;
}

.ml_24 {
  margin-left: 24px;
}

.ml_40 {
  margin-left: 40px;
}

.ml_50 {
  margin-left: 50px;
}

.ml_120 {
  margin-left: 120px;
}

.mr_12 {
  margin-right: 12px;
}

.mt_d4 {
  margin-top: -4px;
}

.mt_4 {
  margin-top: 4px;
}

.mt_6 {
  margin-top: 6px;
}

.mt_8 {
  margin-top: 8px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_12 {
  margin-top: 12px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_12 {
  margin-bottom: 12px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_100 {
  margin-bottom: 100px;
}

.mb_160 {
  margin-bottom: 160px;
}

.m18_12 {
  margin: 18px 12px;
}

.pt_30 {
  padding-top: 30px;
}

.pl_12 {
  padding-left: 12px;
}

.pl_20 {
  padding-left: 20px;
}

.pl_30 {
  padding-left: 30px;
}

.pl_45 {
  padding-left: 45px;
}

.pr_12 {
  padding-right: 12px;
}

.pr_20 {
  padding-right: 20px;
}

.pr_30 {
  padding-right: 30px;
}

.p12 {
  padding: 12px;
}

.p2_12 {
  padding: 2px 10px;
}

.p4_10 {
  padding: 4px 10px;
}

.p6_24 {
  padding: 6px 24px;
}

.p6_12 {
  padding: 6px 10px;
}

.p8_12 {
  padding: 8px 10px;
}

.p6_30 {
  padding: 6px 30px;
}

.p10_16_16 {
  padding: 10px 16px 16px;
}

.p0_16_10_16 {
  padding: 0 16px 10px 16px;
}

.p8_0 {
  padding: 8px 0;
}

.p10_0 {
  padding: 10px 0;
}

.p8_12 {
  padding: 8px 12px;
}

.p12_16 {
  padding: 12px 16px;
}

.line_height_18 {
  line-height: 18px;
}

.line_height_20 {
  line-height: 20px;
}

.line_height_24 {
  line-height: 24px;
}

.font_weight_400 {
  font-weight: 400;
}

.font_weight_500 {
  font-weight: 500;
}

.font_weight_700 {
  font-weight: 700;
}

.overflow_auto {
  overflow: auto;
}

.text_center {
  text-align: center;
}

.content_center {
  justify-content: center;
}

/* 引入字体 */
@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-3-85-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "AlimamaShuHeiTi";
  src: url("../fonts/AlimamaShuHeiTi-Bold.woff2") format("woff2");
}

.alipuhui-font {
  font-family: "AlibabaPuHuiTi", sans-serif;
}

.alishuhei-font {
  font-family: "AlimamaShuHeiTi", sans-serif;
}

/* 文本自动换行 */
.break-word {
  word-wrap: break-word; /* 旧名称 */
  overflow-wrap: break-word; /* 新名称 */
  white-space: normal; /* 自动换行 */
}

.text-left {
  text-align: left;
}

.align-start {
  align-self: flex-start;
}

.single-line {
  overflow: hidden; /* 隐藏超出容器的内容 */
  white-space: nowrap; /* 保持文本在一行内显示 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.pointer{
  cursor: pointer;
}