/*--------------------------------------------------------------
# consult-btn
--------------------------------------------------------------*/
.consult-btn {
  width: 156px;
  height: 48px;
  line-height: 48px;
  background: #edf3ff;
  border-radius: 25px;
  font-size: 17px;
  color: #1669ff;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: color 0.3s,
  background 0.3s;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-btn i {
  font-style: normal;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.consult-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #007bff;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  transform: translateX(-50%);
}

.consult-btn:hover::before {
  width: 100%;
}

.consult-btn:hover,
.consult-btn:hover i {
  color: #fff;
}

.consult-btn:hover {
  background: #007bff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #007bff;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #629fd3;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# linkchat
--------------------------------------------------------------*/
.linkchat-container {
  position: fixed;
  top: calc(40% + 96px);
  transform: translateY(-50%);
  right: 20px;
  z-index: 999;
  width: 54px;
}

.linkchat-container .link-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 0;
  background: #477cf9;
  border-radius: 32px;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
}

.linkchat-container .link-top:hover {
  cursor: pointer;
}

.linkchat-container .link-top img {
  width: 100%;
  height: 100%;
  padding: 0 14px;
}

.linkchat-container .link-top .top-text {
  width: 16px;
  margin-top: 5px;
}

.linkchat-container .link-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  background: #fff;
  border-radius: 32px;
  font-size: 15px;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to bottom, #1890ff, #70cfff);
}

.linkchat-container .link-bottom .wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 23px 5px 15px;
}

.linkchat-container .link-bottom .register {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 5px 5px;
}

.linkchat-container .link-bottom .phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 15px 5px 23px;
}

.linkchat-container .link-bottom span {
  margin-top: 10px;
}

/*  */

.linkchat-container .link-bottom > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.linkchat-container .link-bottom > div span {
  position: relative;
  z-index: 2;
}

/* 悬浮提示框样式 */
.linkchat-container .link-top .hover-tip {
  opacity: 0;
  visibility: hidden;
  transition: transform 0.15s ease-in-out;
  transition-property: transform, opacity, visibility;
  position: absolute;
  right: 78px;
  top: 16%;
  transform: translateY(-50%) translateX(10px) scale(0.9);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px 6px rgba(36, 91, 219, 0.04),
  0 4px 8px rgba(36, 91, 219, 0.06),
  0 3px 6px -6px rgba(36, 91, 219, 0.14);
}

/* 悬浮提示框样式 */
.linkchat-container .link-bottom .hover-tip {
  opacity: 0;
  visibility: hidden;
  transition: transform 0.15s ease-in-out;
  transition-property: transform, opacity, visibility;
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(10px) scale(0.9);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px 6px rgba(36, 91, 219, 0.04),
  0 4px 8px rgba(36, 91, 219, 0.06),
  0 3px 6px -6px rgba(36, 91, 219, 0.14);
}

/* hover时显示 */
.linkchat-container .link-bottom > div:hover .hover-tip,
.linkchat-container .link-top:hover > div .hover-tip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.1s;
}

.linkchat-container .hover-tip > svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  width: 8px;
  height: auto;
}

.linkchat-container .hover-box {
  width: 150px;
  /* padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px; */
  overflow: hidden;
  padding: 5px 0;
}

.linkchat-container .hover-box img {
  width: 100%;
}

.linkchat-container .hover-box .p3 {
  font-size: 18px;
  color: #3b3b3b;
  margin: 0;
  text-align: center;
}

.linkchat-container .hover-box .p4 {
  font-size: 18px;
  color: #3b3b3b;
  margin: 6px 0;
  padding: 0 10px;
  text-align: left;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #007bff;
}

#topbar .contact-info i {
  color: #007bff;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: #007bff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #007bff;
}

.tlinks {
  text-indent: -9999px;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header-sticky-wrapper,
#header-sticky-wrapper.header-sticky,
#header-sticky-wrapper.header-scrolled {
  background: transparent !important;
  background-color: transparent !important;
  /* box-shadow: none !important; */
}

#header {
  transition: all 0.5s;
  padding: -12px 0;
  z-index: 997;
  align-items: center;
  background: transparent !important;
  /* box-shadow: none !important; */
  transition: all 0.5s;
}

#header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

#header.header-scrolled {
  background: #fff !important;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-right: 10px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#header .navbar .navbar-left {
  display: flex;
  align-items: center;
}

#header .navbar .navbar-right {
  display: flex;
  align-items: center;
}

/* #header .navbar .navbar-right .gaoxin {
  height: 65px;
} */

.gaoxin-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  height: 65px;
}

.gaoxin-box .gaoxin {
  display: block;
  margin-bottom: 4px;
  min-height: 0;
}

.gaoxin-box span {
  font-size: 13px;
  color: #333;
  line-height: 1;
}

/* video-box 下为白色 */
.video-box .gaoxin-box span {
  color: #fff;
}

/* header-scrolled 时恢复为深色（优先级高） */
#header.header-scrolled .gaoxin-box span {
  color: #333 !important;
}

#header .nav-links {
  display: flex;
  list-style: none;
}

#header .nav-links a,
#header.header-scrolled .video-box .nav-links a {
  color: #555555;
  position: relative;
  display: inline-block;
  height: 100%;
  font-weight: bold;
  margin-top: 9px;
}

#header .video-box .nav-links a {
  color: #fff;
  position: relative;
  display: inline-block;
  height: 100%;
  font-weight: bold;
  margin-top: 9px;
}

#header .video-box .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

#header .nav-links a:hover::after {
  width: 100%;
}

#header .navbar-right {
  display: flex;
}

#header .navbar-right a {
  height: 100%;
}

.navbar-right .contact-us {
  display: flex;
  align-items: center;
  height: 100%;
  transform: scale(0.8);
  margin: 0 10px;
}

.contact-us .phone_box {
  display: flex;
  animation: pulse-scale 3.5s infinite;
}

.contact-us .phone_box img {
  width: 40px;
  height: 100%;
}

.contact-us img {
  width: 100%;
  height: 100%;
}

.phone_box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone_box img {
  width: 22px;
  height: 22px;
  display: block;
}

/* 默认蓝色字体 */
.phone_box span {
  font-size: 30px;
  color: #0774eb;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
}

/* video-box 下为白色 */
.video-box .phone_box span {
  color: #fff;
}

/* header-scrolled 时恢复为蓝色（优先级高） */
#header.header-scrolled .phone_box span {
  color: #0774eb !important;
}

/* 1. 默认都隐藏 */
.logo .btn-play,
.logo .btn-close,
.phone_box .btn-play,
.phone_box .btn-close {
  display: none;
}

/* 2. 没有 video-box 时，显示 logo2/phone2（btn-close），隐藏 logo1/phone1（btn-play） */
:not(.video-box) .logo .btn-close,
:not(.video-box) .phone_box .btn-close {
  display: inline-block;
}

:not(.video-box) .logo .btn-play,
:not(.video-box) .phone_box .btn-play {
  display: none;
}

/* 3. 有 video-box 时，显示 logo1/phone1（btn-play），隐藏 logo2/phone2（btn-close） */
.video-box .logo .btn-play,
.video-box .phone_box .btn-play {
  display: inline-block;
}

.video-box .logo .btn-close,
.video-box .phone_box .btn-close {
  display: none;
}

/* 4. 有 header-scrolled 时，无论是否有 video-box，都显示 logo2/phone2（btn-close），隐藏 logo1/phone1（btn-play） */
#header.header-scrolled .logo .btn-play,
#header.header-scrolled .phone_box .btn-play {
  display: none !important;
}

#header.header-scrolled .logo .btn-close,
#header.header-scrolled .phone_box .btn-close {
  display: inline-block !important;
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

#header .navbar-right .nav-button {
  border-radius: 30px;
  padding: 0 29px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  background-color: #007bff;
  color: #fff;
  font-size: 23px;
  transform: scale(0.7);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 3px;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  padding: 12px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a,
.header-scrolled .video-box .nav-menu a:hover,
.header-scrolled .video-box .nav-menu .active > a,
.header-scrolled .video-box .nav-menu li:hover > a {
  color: #175dff !important;
  text-decoration: none !important;
}

.video-box .nav-menu a:hover,
.video-box .nav-menu .active > a,
.video-box .nav-menu li:hover > a {
  color: #007bff !important;
  text-decoration: none !important;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 60px;
  right: -50%;
  transition: all 0.2s;
  background-color: #ffffff;
  max-width: 50vw;
  padding-top: 16px;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #333333;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 51;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #007bff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 48;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
#footer {
  background: #1f2329;
  padding: 0 0 30px 0;
  color: #9fa1a5;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px;
}

#footer .bottom-line {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

#footer .footer-top h4 img {
  display: none;
}

#footer .toggle-icon {
  width: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#footer .toggle-icon.active {
  transform: rotate(90deg);
}

#footer .footer-top .footer-links {
  flex: 3;
}

#footer .footer-top .footer-links:last-child {
  flex: 2;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul.active {
  display: block;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #9fa1a5;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

#footer .footer-top .footer-newsletter {
  display: flex;
  justify-content: space-around;
}

#footer .footer-newsletter .details {
  display: flex;
  flex-direction: column;
}

#footer .details-call {
  margin: 5px 0;
}

#footer .details-qr {
  display: flex;
  text-align: center;
}

#footer .details-qr img {
  height: 108px;
  object-fit: contain;
}

#footer .officialAccount {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer .consult {
  display: flex;
  flex-direction: column;
}

#footer .details img {
  vertical-align: middle;
}

#footer .footer-bottom-top {
  display: flex;
  justify-content: space-between;
  height: 36px;
  margin-bottom: 20px;
}

#footer .footer-bottom-bottom {
  display: flex;
  justify-content: space-between;
}

#footer .copyright {
  text-align: left;
}

#footer .credits {
  text-align: right;
  font-size: 13px;
  color: #64666a;
}

#footer .credits a {
  color: #64666a;
}

/*--------------------------------------------------------------
# 模态框
--------------------------------------------------------------*/

/* 模态框背景 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

/* 模态框内容 */
.modal-container {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
  margin-bottom: 25px;
  text-align: center;
}

.modal-header h2 {
  color: #333;
  font-size: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #4a90e2;
  outline: none;
}

.captcha-group {
  display: flex;
  gap: 10px;
}

.captcha-input {
  flex: 1;
}

.get-captcha-btn {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
  padding: 0 15px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.3s;
  outline-color: transparent;
}

.get-captcha-btn:hover {
  background-color: #e0e0e0;
}

.get-captcha-btn.disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #3a7bc8;
}

#contactModal .error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-control.error {
  border-color: #e74c3c;
}

/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
#solution {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-image: url("https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

#solution .container {
  padding: 80px 0 50px 0;
}

.solution-container {
  margin: 0 auto;
}

.solution-container img {
  width: 75%;
}

.solution-header {
  margin-bottom: 40px;
}

.solution-header-top {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.solution-header-center {
  font-size: 20px;
  color: #0d6bf3;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Wave
--------------------------------------------------------------*/
#wave {
  width: 100%;
  color: #fff;
  height: 578px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  background-position: center;
  background-image: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj5.webp);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

#wave .wave-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 43px 0;
}

#wave .wave-left {
  width: 50%;
  margin: 0 auto;
}

#wave .wave-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
}

#wave .p1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}

#wave .p2 {
  font-size: 25px;
  margin-bottom: 0;
}

#wave .wave-right .p2 .icon-tag {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/icon-tag.webp") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin: 0 4px;
}

#wave .wave-right .p2 .icon-tag.flip {
  transform: scaleX(-1);
}

/*--------------------------------------------------------------
# customer-case Section
--------------------------------------------------------------*/
#customer-case {
  width: 100%;
  /* height: 800px; */
  padding: 0;
  overflow: hidden;
}

#customer-case .customer-case-container {
  background-color: transparent;
  background-position: bottom;
  background-image: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj6.webp);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

#customer-case .carousel-item {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#customer-case .carousel-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#customer-case .carousel-container {
  display: flex;
  height: 100%;
}

#customer-case .carousel-content {
  text-align: left;
}

#customer-case h3 {
  color: #000;
  padding-top: 80px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

#customer-case .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#customer-case .carousel-inner {
  padding-bottom: 80px;
  width: 80%;
  margin: 0 auto;
}

#customer-case .carousel-indicators {
  margin-bottom: 50px;
}

#customer-case .carousel-indicators li {
  cursor: pointer;
  width: 80px;
  height: 6px;
  border-radius: 3px;
  border: 0;
  opacity: 1;
  margin: 0 5px;
  background-color: #c7c7c7;
}

#customer-case .carousel-indicators .active {
  background-color: #fff;
}

/*--------------------------------------------------------------
# solutions Section
--------------------------------------------------------------*/
#solutions {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-position: center;
  background-image: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj7.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#solutions .container {
  padding: 80px 0 50px 0;
}

#solutions .row {
  margin-top: 50px;
}

#solutions .row > div {
  margin-bottom: 20px;
}

#solutions .t1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #333;
  line-height: 1;
}

#solutions .t2 {
  font-size: 20px;
  color: #1890ff;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

#solutions .solutions-box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 28px 22px 16px 22px;
  display: block;
  border-radius: 18px;
}

#solutions .solutions-box .solutions-box-top {
  display: flex;
  justify-content: flex-start;
  height: 36px;
  align-items: center;
}

#solutions .solutions-box-top img {
  height: 43px;
}

#solutions .solutions-box-top .message {
  font-size: 25px;
  color: #282828;
  line-height: 32px;
  font-weight: 600;
  margin-left: 8px;
}

#solutions .solutions-box-bottom {
  position: relative;
  font-size: 18px;
  color: #a3a4a6;
  text-align: justify;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/
#services {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-position: top center;
  background-image: url(https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj8.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#services .container {
  padding: 80px 0 50px 0;
}

#services .row {
  margin-top: 50px;
}

#services .row > div {
  margin-bottom: 20px;
}

#services .t1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 1;
}

#services .t2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

#services .services-box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 28px 24px 16px 24px;
  display: block;
  border-radius: 18px;
}

#services .services-box .services-box-top {
  display: flex;
  justify-content: flex-start;
  height: 36px;
  align-items: center;
}

#services .services-box-top img {
  height: 43px;
}

#services .services-box-top .message {
  font-size: 25px;
  color: #282828;
  line-height: 32px;
  font-weight: 600;
  margin-left: 8px;
}

#services .services-box-bottom {
  text-align: left;
  position: relative;
  font-size: 18px;
  color: #a3a4a6;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 16px;
}

/*--------------------------------------------------------------
# certify Section
--------------------------------------------------------------*/
#certify {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

#certify .certify-box {
  position: relative;
  padding-top: 80px;
}

#certify .t1 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1;
}

#certify .t2 {
  text-align: center;
  font-size: 20px;
  color: #0d6bf3;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 500;
}

#certify .swiper-slide {
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  justify-content: center;
  transition: 300ms;
  transform: scale(0.95);
  padding-bottom: 20px;
  margin-bottom: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}

#certify .swiper-slide img {
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  background: #fff;
  height: 300px;
}

#certify .swiper-slide .caption {
  position: relative;
  margin-top: 12px;
  font-size: 25px;
  color: #333;
  text-align: center;
  overflow: visible;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  display: block;
}

#certify .swiper-container {
  width: 100%;
  height: 100%;
  position: unset;
}

#certify .caption {
  font-size: 20px;
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

#certify .swiper-button-prev,
#certify .swiper-button-next {
  width: 48px;
  height: 48px;
  background-image: url("https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/arrow-btn.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 50%;
  border: none;
  opacity: 0.85;
  top: 56%;
}

/* 左按钮正常状态（sprite第一格） */
#certify .swiper-button-prev {
  background-position: 0 0;
  opacity: 1;
}

/* 左按钮hover状态（sprite第二格） */
#certify .swiper-button-prev:hover {
  background-position: 0 -49px;
  opacity: 1;
}

/* 右按钮正常状态（sprite第三格） */
#certify .swiper-button-next {
  background-position: 0 -99px;
  opacity: 1;
}

/* 右按钮hover状态（sprite第四格） */
#certify .swiper-button-next:hover {
  background-position: 0 -148px;
  opacity: 1;
}

#certify .swiper-button-prev::after,
#certify .swiper-button-next::after {
  content: "";
  display: none;
}

#certify .swiper-button-prev {
  left: 0;
}

#certify .swiper-button-next {
  right: 0;
}

/*--------------------------------------------------------------
# dynamic Section
--------------------------------------------------------------*/
#dynamic {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-image: url("https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj9.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.dynamic-container {
  margin: 0 auto;
  padding: 50px 0;
}

.dynamic-header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.dynamic-header-top {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.dynamic-header-center {
  font-size: 20px;
  color: #0d6bf3;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 500;
}

.dynamic-header-bottom {
  font-size: 18px;
  color: #0d6bf3;
  position: relative;
  font-weight: 400;
}

.dynamic-header-bottom img {
  height: 1em;
  margin-bottom: 4px;
}

.dynamic-box {
  border-radius: 26px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #2f2f2f;
}

.dynamic-box img {
  border-radius: 26px;
  object-fit: fill;
  width: 100%;
  aspect-ratio: 16/9;
}

.dynamic-box:hover {
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
}

.dynamic-box:hover .dynamic-box-item > div {
  color: #0d6bf3;
}

.dynamic-box-item {
  padding: 25px;
}

.dynamic-box-item .t1 {
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 最多2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.dynamic-box-item .t2 {
  font-size: 15px;
  margin: 10px 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 最多3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.dynamic-box-item .time {
  font-size: 18px;
}

/*--------------------------------------------------------------
# advantage Section
--------------------------------------------------------------*/
#advantage {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-image: url("https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/bj10.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.advantage-container {
  margin: 0 auto;
  padding: 50px 0;
}

#advantage .t1 {
  font-size: 50px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

#advantage .t1:first-of-type {
  letter-spacing: 1.5px;
}

#advantage .t2 {
  font-size: 20px;
  color: #0d6bf3;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 500;
}

.advantage-box {
  display: flex;
  margin: 40px 0;
  /* height: 531px; */
}

.advantage-box-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantage-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background-color: #f5f9fc;
  padding-left: 20px;
  padding-right: 20px;
  height: 48%;
  gap: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#advantage .text {
  font-size: 20px;
  font-weight: 500;
  color: #0d6bf3;
}

.advantage-box-item img {
  /* width: 130px; */
  height: 100px;
}

.advantage-box-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  margin-left: 20px;
  background-color: #f5f9fc;
  padding: 31px 46px 38px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.advantage-box-right img {
  margin-top: 20px;
  height: 290px;
}

.sticky-wrapper {
  position: fixed;
  z-index: 50;
  width: 100%;
}

/* 防止移动端页面左右摇晃 */
html,
body {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  /* 防止iOS弹性滚动溢出 */
  overscroll-behavior-x: none;
}

.new-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.new-pagination-container .arrow-btn {
  border: 1px solid #e0e0e6;
  color: #333639;
  display: inline-flex;
  padding: 6px;
  border-radius: 3px;
}

.new-pagination-container .arrow-btn.disabled {
  background-color: #fafafc;
  color: #e0e0e6;
  border-color: #e0e0e6;
  cursor: not-allowed;
}

.new-pagination-container .page-item {
  border: 1px solid #e0e0e6;
  color: #333639;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 14px;
}

.new-pagination-container .page-item.active {
  background-color: #175dff;
  color: #ffffff;
}

.new-pagination-container .page-item:hover {
  background-color: #175dff;
  color: #ffffff;
}

.new-pagination-container .arrow-btn:not(.disabled):hover {
  background-color: #175dff;
  color: #ffffff;
}
