@charset "UTF-8";
@import url("/fonts/AlibabaPuhui/AlibabaPuhui.css");
@import url("/css/quil/quill.bubble.prod.css");
@import url("/css/quil/quill.core.prod.css");
@import url("/css/quil/quill.snow.prod.css");
@import url("/css/quil/quill-font.css");
@import url("/css/quill.snow.css");
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 19.2px;
}

body {
  font-size: var(--base-text-size);
  max-width: 1920px !important;
  min-width: 960px !important;
  min-height: 100vh;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 9.6px !important;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  html {
    font-size: 9.6px !important;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1280px) {
  html {
    font-size: 12.8px !important;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  html {
    font-size: 13.36px !important;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1536px) {
  html {
    font-size: 15.36px !important;
  }
}
@media screen and (min-width: 1536px) and (max-width: 1745px) {
  html {
    font-size: 17.45px !important;
  }
}
@media screen and (min-width: 1746px) and (max-width: 1920px) {
  html {
    font-size: 19.2px !important;
  }
}
@media screen and (min-width: 1921px) and (max-width: 3000px) {
  html {
    font-size: 19.21px;
  }
}
:root {
  --base-color-primary:#28508C;
  /*基础字颜色*/
  --base-text-color: #333;
  --base-text-color-dark: #2D3643;
  --base-text-color-black: #000;
  --base-text-color-secondary: #666;
  --base-text-color-gray: #8897AE;
  --base-text-color-white: white;
  --base-text-color-light: #D9E9FF;
  --gap: 1.0416666667rem;
  --gap-small: 0.78125rem;
  --gap-medium: 1.3020833333rem;
  --gap-mini: 0.78125rem;
  --gap-large: 2.6041666667rem;
  --base-text-size: 0.8333333333rem;
  --base-text-mini-size: 0.7291666667rem;
  --base-gap: 4.1666666667rem;
}

* {
  margin: 0;
  padding: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: AlibabaPuhuiTi, sans-serif !important;
}

a:hover {
  color: var(--base-color-primary);
}

#icon_module {
  right: 0 !important;
  left: initial !important;
}

li {
  list-style: none;
}

p {
  margin-bottom: 0;
}

img {
  vertical-align: top;
  border: none;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 0.9375rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.base-page {
  width: 100%;
}
.base-page .breadcrumb {
  height: 2.0833333333rem;
  padding: 0 calc((100% - 83.3333333333rem) / 2);
  display: flex;
  align-items: center;
  background: #F7FAFF;
  margin-bottom: 0;
}
.base-page .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.7291666667rem;
}
.base-page .breadcrumb-item > a {
  color: #3D4966;
  font-weight: 400;
}
.base-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.8333333333rem;
  color: #8897AE;
  content: "|";
}
.base-page .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.8333333333rem;
}
.base-page .breadcrumb .active > span {
  color: var(--base-color-primary);
}

.required::before {
  content: "*";
  color: red;
  margin-right: 0.4166666667rem;
}

/* 隐藏原生复选框 */
.custom-checkbox input[type=checkbox] {
  display: none;
}

/* 创建一个自定义的复选框样式 */
.custom-checkbox span {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.4166666667rem;
  border: 0.1041666667rem solid #AFBACA; /* 边框颜色 */
  vertical-align: middle;
  position: relative;
  background-color: #F2F7FF;
  border-radius: 0.2083333333rem;
}

/* 当复选框被选中时，显示一个内部的选中标记 */
.custom-checkbox input[type=checkbox]:checked + span {
  color: #fff; /* 选中标记的颜色 */
  background-color: var(--base-color-primary); /* 选中的背景颜色 */
  border: none;
}

.custom-checkbox span::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.46875rem;
  top: 0.2083333333rem;
  width: 0.3645833333rem;
  height: 0.6770833333rem;
  border: solid #fff; /* 选中标记的线条颜色 */
  border-width: 0 0.15625rem 0.15625rem 0;
  transform: rotate(45deg); /* 将线条旋转成选中状态 */
}

.custom-checkbox input[type=checkbox]:checked + span::after {
  display: block;
}

.base-btn {
  padding: 1.0416666667rem 3.0208333333rem;
  height: 3.125rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  color: #FFFFFF;
  cursor: pointer;
  font-size: var(--base-text-size);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.message-box {
  position: fixed;
  top: 2.6041666667rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  height: 2.34375rem;
  padding: 0.5208333333rem 1.0416666667rem;
  border-radius: 0.2604166667rem;
  z-index: 9999;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(237, 242, 252);
  border: 1px solid rgb(235, 238, 245);
}
.message-box .message {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5208333333rem;
  color: #909399;
}

.text-error {
  color: red !important;
}

.text-ellipsis {
  white-space: nowrap; /* 强制文本在一行显示 */
  overflow: hidden; /* 隐藏超出容器的文本 */
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
}

.message-error {
  background-color: #fef0f0;
  border: 1px solid #fde2e2;
}
.message-error .message {
  color: rgb(245, 108, 108);
}

.message-success {
  background-color: #f0f9eb;
  border: 1px solid #e1f3d8;
}
.message-success .message {
  color: #67c23a;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
}

.message-board {
  width: 100%;
  background: #FFFFFF;
  padding: 4.1666666667rem 0;
  box-sizing: border-box;
}
.message-board-form {
  width: 46.875rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.0416666667rem;
}
.message-board-form-item {
  width: 100%;
  display: flex;
}
.message-board-form-item-label {
  width: 11.4583333333rem;
  height: 2.6041666667rem;
  padding: 0.7291666667rem 0.8333333333rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: var(--base-text-size);
  color: var(--base-text-color-dark);
  line-height: 0.9895833333rem;
  margin-bottom: 0;
}
.message-board-form-item-value {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8333333333rem;
}
.message-board-form-item-value > input {
  flex: 1;
}
.message-board-form-item-value-btn-code {
  width: 9.375rem;
  height: 2.6041666667rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.message-board-form-item-value-btn-code-text {
  width: 9.375rem;
  height: 2.6041666667rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: none;
}
.message-board-form-item-value .form-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
}
.message-board-form-item-value .form-check > input {
  width: 1.25rem;
  height: 1.25rem;
  background: #F2F7FF;
  border-radius: 0.2083333333rem;
  border: 0.1041666667rem solid #AFBACA;
}
.message-board-form-item-value .form-check > label {
  margin-left: 0.4166666667rem;
  margin-bottom: 0;
}
.message-board-form-item input, .message-board-form-item textarea {
  height: 2.6041666667rem;
  outline: none;
  border: none;
  padding: 0.7291666667rem 0.8333333333rem;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 0.9895833333rem;
  background: #F7FAFF;
  border-radius: 0.3125rem;
  font-size: 0.8333333333rem;
}
.message-board-form-item input::placeholder, .message-board-form-item textarea::placeholder {
  font-weight: 400;
  color: #8897AE;
  font-size: 0.8333333333rem;
  line-height: 0.9895833333rem;
}
.message-board-form-item textarea {
  min-height: 6.25rem;
  resize: none;
}
.message-board-form-btn {
  justify-content: flex-end;
  margin-top: 0.4166666667rem;
}
.message-board-form-btn-submit {
  width: 9.375rem;
  height: 3.125rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  color: var(--base-text-color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: var(--base-text-size);
  cursor: pointer;
}

.encryption {
  position: absolute;
  width: 100%;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.encryption::before {
  content: "";
  width: 100%;
  height: 4.1666666667rem;
  position: absolute;
  top: -4.1666666667rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 70%, #FFFFFF 100%);
}
.encryption-title {
  height: 2.6041666667rem;
  font-weight: bold;
  font-size: 2.0833333333rem;
  color: var(--base-color-primary);
  line-height: 2.6041666667rem;
  text-align: center;
  margin-bottom: 2.0833333333rem;
}
.encryption #codeImg {
  cursor: pointer;
}

/*# sourceMappingURL=encryption-template.css.map */
