@charset "UTF-8";
/* ---- 常规 Style---- */
body {
  height: 100%;
  background: #f5f5f5;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

input,
select {
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none; /* 去掉下划线 */
}

/* 校验失败样式 */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* 获得焦点时恢复正常样式 */
.form-control:focus {
  border-color: var(--bs-border-color);
}

input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #333 !important;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%; /* 固定占满视口高度，适配任意屏幕大小 */
}

@media (width >= 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
.container {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* ------ Section Header Style ------ */
.sn-section-wrapper {
  padding: 100px 0;
}
.sn-section-wrapper .sn-section-header {
  margin-bottom: 44px;
  text-align: center;
}

/* ----- 悬浮 Style ---- */
.float-box {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.35s;
}
.float-box:hover {
  transform: translateY(-10px);
}
.float-box .kefu-box {
  position: absolute;
  bottom: 6px;
  width: 100%;
  height: 46px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 46px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(0deg, #ffb52d 0%, #ff8c1b 100%), #f3f7ff;
  border-radius: 23px;
}

/* ----- 菜单 Style ---- */
.sn-main-menu {
  position: fixed;
  z-index: 10;
  width: 100%;
  padding: 4px 0;
  background: rgba(246, 246, 246, 0.5);
  border: none;
  border-radius: 0;
  transition: all 0.35s;
  backface-visibility: hidden;
}
.sn-main-menu .container .navbar-brand {
  display: flex;
  align-items: center;
}
.sn-main-menu .container .collapse {
  visibility: visible;
}
.sn-main-menu .container .navbar-toggler {
  font-size: 16px;
  background: #fff;
}
.sn-main-menu .container .sn-menu-wrapper li > a {
  padding: 8px 40px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #1e3f83;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.sn-main-menu .container .sn-menu-wrapper li > a:hover {
  font-weight: 700;
  color: #2184ff;
}
.sn-main-menu .container .sn-menu-wrapper li > a.active {
  position: relative;
  font-weight: 700;
  color: #2184ff;
}
.sn-main-menu .container .sn-menu-wrapper li > a.active::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: #f79000;
  border-radius: 2px;
  content: "";
  transform: translateX(-50%);
}

/* ---- Footer Style ---- */
.footer {
  width: 100%;
  padding: 32px 0 10px;
  text-align: center;
  background-color: #32374a;
  flex-shrink: 0; /* 关键：防止footer被压缩 */
}
.footer .container {
  display: flex;
}
.footer .container .box-left {
  display: none;
  padding-right: 68px;
  border-right: 1px solid #2c4057;
}
.footer .container .box-left img {
  width: 141px;
  height: 71px;
}
.footer .container p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

/* ----- 轮播图 Style ---- */
.banner-swiper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-swiper .banner-img {
  width: 100%;
  height: 730px;
}
.banner-swiper .login-container {
  position: absolute;
  top: 50%;
  z-index: 9;
  display: flex;
  /*justify-content: flex-end;*/
}
.banner-swiper .login-container .login-box {
  display: flex;
  width: 340px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 16px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  flex-direction: column;
  align-items: center;
}
.banner-swiper .login-container .login-box .input-user {
  padding-left: 60px;
  background: url("../images/icon1.png") no-repeat 10px center;
}
.banner-swiper .login-container .login-box .input-password {
  padding-left: 60px;
  background: url("../images/icon2.png") no-repeat 10px center;
}

/* ------ 平台实力 Style ------ */
.strength-box .strength-item {
  height: 525px;
  max-width: 585px;
  padding: 50px 40px 0 30px;
  background: #f3f7ff;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strength-box .strength-item:hover {
  transform: translateY(-10px) rotate(1deg);
}
.strength-box .strength-item .strength-text span {
  width: 80px;
  height: 63px;
  font-size: 80px;
  font-weight: 700;
  line-height: 36px;
  color: #1e7cf8;
  background: linear-gradient(0deg, #f3f7ff 0%, #d3deff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.strength-box .strength-item .strength-text p {
  position: relative;
  top: -35px;
  left: 35px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #333;
  text-align: left;
}

/* ------ 价格查询 Style ------ */
.price-box .table {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.price-box .table thead tr {
  width: 1200px;
  height: 50px;
  background: #1e7cf8;
  border-radius: 10px 10px 0 0;
}
.price-box .table thead tr th {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.9px;
  color: #fff;
  text-align: center;
  background: #1e7cf8;
}
.price-box .table tbody tr {
  background: #fff;
}
.price-box .table tbody tr td {
  height: 33px;
  line-height: 33px;
  text-align: center;
}
.price-box .table tbody tr:nth-child(2n) td {
  background: #f5f7f9;
}
.price-box .table:hover {
  transform: scale(1.01) rotate(0deg);
}
.price-box .btn-more {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.price-box .btn-more .down {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
}
.price-box .btn-more .down::before, .price-box .btn-more .down::after {
  inset: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-color: #859bb8;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  transform: rotate(135deg);
}
.price-box .btn-more .down::after {
  position: absolute;
  top: 5px;
}

/* ------ 核心资源 Style ------ */
.resources-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-box .resources-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.resources-box .resources-item {
  position: absolute;
  top: 190px;
}
.resources-box .resources-item .sub-title {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 2px;
  color: #000;
  background: linear-gradient(-25deg, #ffbb2a 0%, #ff982a 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.resources-box .resources-item .resources-btn {
  display: flex;
  width: 160px;
  height: 45px;
  margin-top: 70px;
  cursor: pointer;
  background: #ffb006;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  animation: buttonHover 0.3s ease;
}
.resources-box .resources-item .resources-btn:hover {
  background: #ffa500;
}

/* ------ 服务流程 Style ------ */
.sn-service-wrapper .service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sn-service-wrapper .service-box .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sn-service-wrapper .service-box .spacing {
  display: none;
  position: relative;
  width: 30px;
  margin-top: 68px;
}
.sn-service-wrapper .service-box .spacing::before, .sn-service-wrapper .service-box .spacing::after {
  position: absolute;
  top: 7%;
  z-index: -1;
  width: 159px;
  height: 2px;
  background: #a1b9ea;
  content: "";
  transform: translateY(-50%);
}
.sn-service-wrapper .service-box .spacing::before {
  left: -158px;
}
.sn-service-wrapper .service-box .spacing::after {
  right: -158px;
}

.login-tabs {
  display: flex;
  width: 100%;
  margin-top: 10px;
  align-items: center;
  justify-content: space-around;
}
.login-tabs .login-tab {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.9px;
  color: #1e7cf8;
  text-align: center;
}
.login-tabs .login-tab::before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 35px;
  height: 4px;
  background: #f79000;
  border-radius: 2px;
  content: "";
  transform: translateX(-50%);
}

/* ------ 注册&忘记密码 Style ------ */
.modal-dialog-centered {
  max-width: 721px;
}

.modal-bg {
  position: relative;
  width: 721px;
  height: 521px;
  background: url("../images/modal-bg.png") no-repeat center center;
  background-size: cover;
  border: none;
}
.modal-bg .modal-header {
  border-bottom: 0;
}
.modal-bg .modal-body {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 330px;
}
.modal-bg .modal-body .border-radius {
  border-radius: var(--bs-border-radius);
}
.modal-bg .modal-body .verify-btn {
  width: 95px;
  height: 36px;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.7px;
  color: #fff;
  text-align: center;
  background: #f79000;
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
}
.modal-bg .modal-body .input-register-user {
  padding-left: 80px;
  background: url("../images/admin.png") no-repeat 10px center;
}
.modal-bg .modal-body .input-register-password {
  padding-left: 80px;
  background: url("../images/password.png") no-repeat 10px center;
}
.modal-bg .modal-body .input-register-phone {
  padding-left: 80px;
  background: url("../images/phone.png") no-repeat 10px center;
}
.modal-bg .modal-body .input-register-code {
  padding-left: 80px;
  background: url("../images/code.png") no-repeat 10px center;
  border: var(--bs-border-radius) 0 0 var(--bs-border-radius) !important;
}
.modal-bg .modal-body .input-register-name {
  padding-left: 80px;
  background: url("../images/name.png") no-repeat 10px center;
}
.modal-bg .modal-body .input-register-qq {
  padding-left: 80px;
  background: url("../images/qq.png") no-repeat 10px center;
}
.modal-bg .modal-body .input-register-update-password {
  padding-left: 80px;
  background: url("../images/update_password.png") no-repeat 10px center;
}

/*# sourceMappingURL=style.css.map */
