@charset "UTF-8";
.text-color-white {
  color: #fff;
}

.bg-color-white {
  background-color: #fff;
}

.text-color-black {
  color: #000;
}

.bg-color-black {
  background-color: #000;
}

.text-color-black2 {
  color: #111f33;
}

.bg-color-black2 {
  background-color: #111f33;
}

.text-color-black3 {
  color: #272e47;
}

.bg-color-black3 {
  background-color: #272e47;
}

.text-color-black4 {
  color: #333;
}

.bg-color-black4 {
  background-color: #333;
}

.text-color-primary {
  color: #4c6aff;
}

.bg-color-primary {
  background-color: #4c6aff;
}

.text-color-success {
  color: #4cd964;
}

.bg-color-success {
  background-color: #4cd964;
}

.text-color-warning {
  color: #f0ad4e;
}

.bg-color-warning {
  background-color: #f0ad4e;
}

.text-color-error {
  color: #999;
}

.bg-color-error {
  background-color: #999;
}

.text-color-disable {
  color: #c0c0c0;
}

.bg-color-disable {
  background-color: #c0c0c0;
}

.text-color-grey {
  color: #999;
}

.bg-color-grey {
  background-color: #999;
}

.text-color-lightgrey {
  color: #f6f6f6;
}

.bg-color-lightgrey {
  background-color: #f6f6f6;
}

.text-color-placeholder {
  color: #808080;
}

.bg-color-placeholder {
  background-color: #808080;
}

.text-color-red {
  color: #ff0000;
}

.bg-color-red {
  background-color: #ff0000;
}

.text-color-hover {
  color: #f1f1f1;
}

.bg-color-hover {
  background-color: #f1f1f1;
}

.text-color-mask {
  color: rgba(0, 0, 0, 0.4);
}

.bg-color-mask {
  background-color: rgba(0, 0, 0, 0.4);
}

.font-bold {
  font-weight: bold;
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-22 {
  font-size: 22px;
}

.text-24 {
  font-size: 24px;
}

.text-26 {
  font-size: 1.625rem;
}

.text-28 {
  font-size: 1.75rem;
}

.text-30 {
  font-size: 1.875rem;
}

@media screen and (max-width: 991px) {
  .text-12 {
    font-size: 12px;
  }
  .text-14 {
    font-size: 14px;
  }
  .text-16 {
    font-size: 16px;
  }
  .text-18 {
    font-size: 18px;
  }
  .text-20 {
    font-size: 20px;
  }
  .text-22 {
    font-size: 22px;
  }
  .text-24 {
    font-size: 24px;
  }
  .text-26 {
    font-size: 1.625rem;
  }
  .text-28 {
    font-size: 1.75rem;
  }
  .text-30 {
    font-size: 1.875rem;
  }
}

.text-line-1 {
  line-height: 1;
}

.text-line-l2 {
  line-height: 1.2;
}

.text-line-14 {
  line-height: 1.4;
}

.text-line-16 {
  line-height: 1.6;
}

.text-line-18 {
  line-height: 1.8;
}

.text-line-20 {
  line-height: 2;
}

.text-overflow-1 {
  display: -webkit-box;
  /* 使用旧版WebKit内核布局盒模型 */
  -webkit-line-clamp: 1;
  /* 限制文本显示的行数为2行 */
  -webkit-box-orient: vertical;
  /* 设置盒模型布局方向为垂直 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的部分 */
}

.text-overflow-2 {
  display: -webkit-box;
  /* 使用旧版WebKit内核布局盒模型 */
  -webkit-line-clamp: 2;
  /* 限制文本显示的行数为2行 */
  -webkit-box-orient: vertical;
  /* 设置盒模型布局方向为垂直 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的部分 */
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.full-w {
  width: 100%;
}

.full-h {
  height: 100%;
}

.img100 img {
  display: block;
  width: 100%;
}

.container {
  width: 1200px !important;
  max-width: 1200px !important;
  padding: 0 !important;
}

@media screen and (max-width: 991px) {
  .container {
    width: 100% !important;
    max-width: 100%;
    padding: 0 15px;
  }
}

.content {
  width: 1060px;
  margin: 0 auto;
}

.g-wrap {
  width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: calc(100% - 0.2rem) !important;
    max-width: calc(100% - 0.2rem) !important;
  }
  .g-wrap {
    width: calc(100% - 0.2rem) !important;
    max-width: calc(100% - 0.2rem) !important;
  }
}
