*,
body,
html {
  margin: 0px;
  padding: 0;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #008dec;
}

.slick-slide {
  outline: 0;
}

/* navigation start */
.fixed-top {
  background: rgba(255, 255, 255, 0.5);
}

.navigation .navbar {
  padding: 0;
}

.navigation .navbar-brand .logo-title {
  height: 34px;
  margin: 8px;
}
.navbar-toggler:focus {
  box-shadow: unset;
}

.navigation .navbar-collapse .navbar-nav .nav-item a {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #090e34;
  line-height: 30px;
  margin: 0 20px;
}

.navigation .navbar-collapse .navbar-nav .nav-item.active a {
  color: #1a7ae7;
  position: relative;
  cursor: pointer;
}

.navigation .navbar-collapse .navbar-nav .nav-item.active a::after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  bottom: 0;
  width: 18px;
  height: 2px;
  background-color: #1a7ae7;
}

.navigation .navbar-right-btns button {
  background: linear-gradient(270deg, #1fa9f7 0%, #065cff 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  padding: 6px 15px;
  line-height: 20px;
}

/* 当屏幕分辨率小于768时的样式 */
@media (max-width: 768px) {
  .navigation .navbar-collapse {
    display: none;
    background-color: #fff;
    height: 100vh;
  }
  .navigation .navbar-right-btns {
    display: none;
  }
}

.navigation {
  transition: 0.3s ease;
}

.navbar {
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-bottom: 20px;
  }
}

.nav-bg {
  background-color: #fff !important;
  box-shadow: 0px 10px 20px 0px rgba(0, 141, 236, 0.1);
}

.nav-bg .navbar {
  padding: 10px 0 !important;
}
/* navigation end */

/* footer start */
.footer {
  width: 70%;
  margin: 0 auto;
}

.footer .footer-top {
}

.footer .footer-top ul {
  display: flex;
  margin: 24px auto;
  border-bottom: 1px solid #e4ebf7;
  padding: 24px 0;
}

.footer .footer-top ul li {
  list-style: none;
  flex: 1;
  text-align: center;
}

.footer .footer-top ul li img {
  width: 36px;
}

.footer .footer-top ul li label {
  font-weight: bold;
  font-size: 14px;
  color: #090e34;
  margin-left: 6px;
}

.footer .footer-content {
  display: flex;
  border-bottom: 1px solid #e4ebf7;
  padding-bottom: 24px;
  gap: 40px;
}

.footer .footer-content .footer-content-left {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer .footer-content .footer-content-left dl {
  margin: 0;
  padding: 0;
}

.footer .footer-content .footer-content-left dt {
  font-weight: bold;
  font-size: 14px;
  color: #090e34;
  line-height: 34px;
}

.footer .footer-content .footer-content-left dd {
  font-weight: normal;
  font-size: 13px;
  color: #53566c;
  line-height: 26px;
  margin: 0;
}
.footer .footer-content .footer-content-left dd a {
  color: #53566c;
}
.footer .footer-content .footer-content-right {
  width: 20%;
}

.footer .footer-content .footer-content-right p {
  font-weight: bold;
  font-size: 14px;
  color: #090e34;
  line-height: 34px;
}

.footer .footer-content .footer-content-right div img {
  width: 46%;
}

.footer .footer-content .footer-content-right span {
  color: #090e34;
  font-size: 12px;
  display: block;
  line-height: 20px;
  margin-bottom: 5px;
}

.footer .footer-copyright {
  font-weight: 400;
  font-size: 12px;
  color: #53566c;
  line-height: 40px;
  text-align: center;
}

.footer .footer-copyright a {
  color: #53566c;
  text-decoration: none;
}

/* 当屏幕分辨率小于768时的样式 */
@media (max-width: 768px) {
  .footer {
    width: 92%;
  }

  .footer .footer-top ul {
    flex-wrap: wrap;
    padding: 15px;
    margin: 15px auto;
  }

  .footer .footer-top ul li {
    flex: 50%;
    margin-bottom: 15px;
  }

  .footer .footer-top ul li label {
    font-size: 11px;
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }

  .footer .footer-content {
    display: block;
    padding-bottom: 15px;
  }

  .footer .footer-content .footer-content-left {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer .footer-content .footer-content-left dl {
    flex: calc(50% - 10px);
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .footer .footer-content .footer-content-left dt {
    font-size: 12px;
    line-height: 24px;
  }

  .footer .footer-content .footer-content-left dd {
    font-size: 11px;
    line-height: 20px;
    margin: 0;
  }

  .footer .footer-content .footer-content-right {
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .footer .footer-content .footer-content-right span {
    font-size: 11px;
    line-height: 18px;
  }

  .footer .footer-copyright {
    font-size: 10px;
    line-height: 24px;
    padding: 10px 0;
  }
}

/* footer end */

/* 右侧悬浮组件 start */
.right-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  margin-top: -113px;
  z-index: 1000;
  width: 88px;
  border-radius: 12px 12px 12px 12px;
  border-bottom: 1px solid #68bbff;
}
.right-sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 12px 12px;
  background: linear-gradient(201deg, #1fa9f7 0%, #226eff 100%);
  z-index: -1;
}
.sidebar-btn {
  width: 100%;
  height: 88px;
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.sidebar-btn.phone-btn {
  border-bottom: 1px solid #68bbff;
}
.sidebar-btn img {
  display: block;
  width: 20px;
  margin-bottom: 10px;
}
.sidebar-btn span {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

.sidebar-btn.back-to-top {
  height: 50px;
  border-top: 1px solid #68bbff;
  text-align: center;
}
.sidebar-btn.back-to-top img {
  margin: 0 auto;
}
/* 电话咨询面板 */
.sidebar-phone-panel {
  position: absolute;
  right: 102px;
  top: 50%;
  margin-top: -191px;
  width: 380px;
  height: 382px;
  background: linear-gradient(180deg, #e7f1ff 0%, #f9fcff 100%);
  box-shadow: 0px 3px 8px 1px rgba(164, 187, 218, 0.4);
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #ffffff;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  transform-origin: right center;
}

.sidebar-phone-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sidebar-phone-panel h4 {
  font-weight: bold;
  font-size: 24px;
  color: #1a7ae7;
  line-height: 33px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 10px;
}

.sidebar-phone-panel p {
  font-weight: bold;
  font-size: 18px;
  color: #090e34;
  line-height: 25px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 20px;
}

.sidebar-phone-panel .phone-input {
  width: 320px;
  height: 52px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #e5e6ea;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
  padding: 0 16px;
}

.sidebar-phone-panel .phone-input:focus {
  border-color: #1a7ae7;
  outline: none;
}

.sidebar-phone-panel .phone-input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #53566c;
  line-height: 25px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: center;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

.sidebar-phone-panel .submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(270deg, #1fa9f7 0%, #065cff 100%);
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #32cbff;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 25px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: center;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 25px;
}

.sidebar-phone-panel .submit-btn:hover {
  opacity: 0.9;
}

.sidebar-phone-panel .contact-info {
  padding: 25px 0 25px 73px;
  background: url("../images/common/phone-circle.png") no-repeat left center;
  background-size: 56px 56px;
  border-top: 1px solid #e5e6ea;
}

.sidebar-phone-panel .contact-info .phone-number {
  font-weight: bold;
  font-size: 24px;
  color: #090e34;
  line-height: 33px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

.sidebar-phone-panel .contact-info .time {
  font-weight: 400;
  font-size: 18px;
  color: #090e34;
  line-height: 25px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

/* 申请体验弹窗 */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 629px;
  background: linear-gradient(180deg, #daebff 0%, #ffffff 100%);
  border-radius: 8px 8px 8px 8px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 40px;
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.sidebar-modal .sidebar-bg {
  position: absolute;
  top: 15px;
  right: 38px;
  width: 180px;
  z-index: -1;
}
.sidebar-modal .sidebar-header {
  display: block;
  margin-bottom: 30px;
}

.sidebar-modal .sidebar-header h3 {
  font-weight: bold;
  font-size: 28px;
  color: #090e34;
  line-height: 40px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 10px;
}
.sidebar-modal .sidebar-header p {
  width: 400px;
  font-weight: 400;
  font-size: 16px;
  color: #090e34;
  line-height: 22px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.sidebar-modal .sidebar-header .close-modal {
  position: absolute;
  right: 20px;
  top: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.sidebar-modal .sidebar-header .close-modal i {
  font-size: 14px;
  color: #53566c;
}

.sidebar-modal .sidebar-body .form-group {
  margin-bottom: 30px;
}

.sidebar-modal .sidebar-body .form-group label {
  font-weight: 400;
  font-size: 16px;
  color: #090e34;
  line-height: 22px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
  margin-bottom: 15px;
}

.sidebar-modal .sidebar-body .form-group label .required {
  color: #f22d2d;
}

.sidebar-modal .sidebar-body .form-group input {
  width: 100%;
  height: 54px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #ebebeb;
  transition: border-color 0.3s ease;
  padding: 0 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-stroke: 1px rgba(0, 0, 0, 0);
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0);
}

.sidebar-modal .sidebar-body .form-group input:focus {
  border-color: #1a7ae7;
  outline: none;
}

.sidebar-modal .sidebar-body .form-group input::placeholder {
  color: #53566c;
}

.sidebar-modal .sidebar-body .form-group input.error {
  border-color: #f22d2d;
}

.sidebar-modal .sidebar-body .form-group .error-msg {
  color: #f22d2d;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.sidebar-modal .sidebar-body .form-group.has-error .error-msg {
  display: block;
}

.sidebar-modal .sidebar-footer {
  padding: 10px 0 0;
  text-align: center;
}

.sidebar-modal .sidebar-footer .submit-btn {
  width: 200px;
  height: 54px;
  background: linear-gradient(270deg, #1fa9f7 0%, #065cff 100%);
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #32cbff;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 28px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-modal .sidebar-footer .submit-btn:hover {
  opacity: 0.9;
}

.sidebar-modal .sidebar-footer .submit-btn:active {
  transform: scale(0.98);
}

/* 右侧悬浮组件移动端适配 */
@media (max-width: 768px) {
  /* 调整右侧悬浮组件样式 */
  .right-sidebar {
    width: 50px;
    border-radius: 10px;
    top: auto;
    bottom: 50px;
    margin-top: 0;
    border: none;
  }

  /* 隐藏电话按钮 */
  .sidebar-btn.phone-btn,
  .sidebar-btn.experience-btn {
    display: none;
  }

  /* 隐藏电话面板 */
  .sidebar-phone-panel {
    display: none;
  }

  /* 调整回到顶部按钮样式 */
  .sidebar-btn.back-to-top {
    height: 50px;
    border-top: none;
  }

  .sidebar-btn.back-to-top img {
    width: 16px;
  }

  /* 弹窗样式适配 */
  .sidebar-modal {
    width: 90%;
    height: auto;
    max-height: 90vh;
    padding: 25px;
    overflow-y: auto;
  }

  .sidebar-modal .sidebar-bg {
    width: 120px;
    top: 10px;
    right: 15px;
  }

  .sidebar-modal .sidebar-header h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .sidebar-modal .sidebar-header p {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .sidebar-modal .sidebar-header .close-modal {
    top: 15px;
    right: 15px;
  }

  .sidebar-modal .sidebar-body .form-group {
    margin-bottom: 20px;
  }

  .sidebar-modal .sidebar-body .form-group label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .sidebar-modal .sidebar-body .form-group input {
    height: 44px;
    font-size: 14px;
    padding: 0 15px;
  }

  .sidebar-modal .sidebar-footer .submit-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
}

/* 右侧悬浮组件 end */

@media (max-width: 768px) {
  /* 页脚手机端适配 */
  .footer-top {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px 10px;
  }

  .footer-top img {
    width: 80px !important;
    height: auto !important;
  }

  .footer-content {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
  }

  .footer-content-left {
    padding: 0;
  }

  .footer-content-right {
    text-align: center;
  }

  .footer-content-left p {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-content-left span {
    font-size: 13px;
    line-height: 22px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
    font-size: 12px;
  }
}
.pagination {
  justify-content: center;
  margin: 20px auto;
}
.pagination .page-link {
  font-size: 12px;
}
.pagination .page-link:focus {
  box-shadow: none;
}
