@charset "UTF-8";
/**
 * Cookie Banner Style 1 - Glassmorphism Card
 * 玻璃拟态风格
 * 特点：浅色玻璃效果、渐变图标、底部居中
 */
.cookie-style-1 .cookie-v1.cookiecookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0.2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-style-1 .cookie-v1.cookiecookie.active {
  transform: translateY(0);
}
.cookie-style-1 .cookie-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.cookie-style-1 .cookie-container {
  position: relative;
  width: 90%;
  max-width: max(8rem, 600px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.3rem 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.2rem;
  box-shadow: 0 0.08rem 0.32rem rgba(0, 0, 0, 0.12), 0 0.02rem 0.08rem rgba(0, 0, 0, 0.08), inset 0 0.01rem 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-style-1 .cookie-content {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  flex: 1;
}
.cookie-style-1 .cookie-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}
.cookie-style-1 .cookie-icon {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  background: linear-gradient(135deg, var(--color-link) 0%, #764ba2 100%);
  border-radius: 0.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.04rem 0.15rem rgba(36, 133, 222, 0.4);
  z-index: 1;
}
.cookie-style-1 .cookie-icon svg {
  width: 0.26rem;
  height: 0.26rem;
  min-width: 20px;
  min-height: 20px;
  color: #fff;
}
.cookie-style-1 .cookie-icon-glow {
  position: absolute;
  inset: -0.04rem;
  background: linear-gradient(135deg, var(--color-link) 0%, #764ba2 100%);
  border-radius: 0.18rem;
  opacity: 0.3;
  -webkit-filter: blur(0.1rem);
          filter: blur(0.1rem);
  z-index: 0;
  -webkit-animation: iconGlow 3s ease-in-out infinite alternate;
          animation: iconGlow 3s ease-in-out infinite alternate;
}
@-webkit-keyframes iconGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}
@keyframes iconGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}
.cookie-style-1 .cookie-text {
  flex: 1;
}
.cookie-style-1 .cookie-title {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.08rem;
}
.cookie-style-1 .cookie-desc {
  font-size: var(--font-size-14);
  color: var(--pp-text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-style-1 .cookie-link {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.cookie-style-1 .cookie-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-link) 0%, #764ba2 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.cookie-style-1 .cookie-link:hover {
  color: var(--color-primary);
}
.cookie-style-1 .cookie-link:hover::after {
  width: 100%;
}
.cookie-style-1 .cookie-actions {
  display: flex;
  gap: 0.12rem;
  flex-shrink: 0;
}
.cookie-style-1 .cookie-btn {
  position: relative;
  padding: 0.12rem 0.28rem;
  border-radius: 0.1rem;
  font-size: var(--font-size-14);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  overflow: hidden;
}
.cookie-style-1 .cookie-btn .cookie-btn-text {
  position: relative;
  z-index: 1;
}
.cookie-style-1 .cookie-btn-primary {
  background: linear-gradient(135deg, var(--color-link) 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 0.04rem 0.15rem rgba(36, 133, 222, 0.35);
}
.cookie-style-1 .cookie-btn-primary .btn-icon {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 14px;
  min-height: 14px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #764ba2 0%, var(--color-link) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.08rem 0.25rem rgba(36, 133, 222, 0.45);
}
.cookie-style-1 .cookie-btn-primary:hover::before {
  opacity: 1;
}
.cookie-style-1 .cookie-btn-primary:hover .btn-icon {
  transform: scale(1.1);
}
.cookie-style-1 .cookie-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 0.04rem 0.12rem rgba(36, 133, 222, 0.35);
}
.cookie-style-1 .cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--pp-text-muted);
  border: 1px solid var(--pp-border);
}
.cookie-style-1 .cookie-btn-secondary:hover {
  background: #fff;
  border-color: #ccc;
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
}
.cookie-style-1 .cookie-btn-secondary:active {
  transform: translateY(0);
}
.cookie-style-1 {
  /* Style 1 Mobile Responsive */
}
@media screen and (max-width: 768px) {
  .cookie-style-1 .cookie-v1.cookiecookie {
    padding: 0.15rem;
  }
  .cookie-style-1 .cookie-container {
    flex-direction: column;
    gap: 0.24rem;
    padding: 0.24rem;
    text-align: center;
  }
  .cookie-style-1 .cookie-content {
    flex-direction: column;
    align-items: center;
  }
  .cookie-style-1 .cookie-text {
    max-width: 4rem;
  }
  .cookie-style-1 .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-style-1 .cookie-btn {
    flex: 1;
    max-width: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .cookie-style-1 .cookie-v1.cookiecookie {
    padding: 0.1rem;
  }
  .cookie-style-1 .cookie-container {
    padding: 0.24rem 0.2rem 0.2rem;
  }
  .cookie-style-1 .cookie-icon {
    width: 0.44rem;
    height: 0.44rem;
    min-width: 36px;
    min-height: 36px;
  }
  .cookie-style-1 .cookie-icon svg {
    width: 0.22rem;
    height: 0.22rem;
    min-width: 18px;
    min-height: 18px;
  }
  .cookie-style-1 .cookie-title {
    font-size: var(--font-size-16);
  }
  .cookie-style-1 .cookie-desc {
    font-size: var(--font-size-12);
  }
  .cookie-style-1 .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-style-1 .cookie-btn {
    width: 100%;
    max-width: none;
    padding: 0.14rem 0.28rem;
  }
}

/**
 * Cookie Banner Style 2 - Dark Neon Card
 * 深色霓虹风格
 * 特点：深色背景、霓虹发光效果、右下角浮动
 */
.cookie-style-2 .cookie-cookie-v2 {
  position: fixed;
  bottom: 0.4rem;
  right: 0.4rem;
  left: auto;
  z-index: 9999;
  max-width: max(3.8rem, 380px);
  width: 90%;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-style-2 .cookie-cookie-v2.active {
  transform: translateX(0);
}
.cookie-style-2 .cookie-card-v2 {
  position: relative;
  background: linear-gradient(145deg, #1e1e2e 0%, #2a2a3e 100%);
  border-radius: 0.24rem;
  padding: 0.32rem;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.4), 0 0 0.4rem rgba(36, 133, 222, 0.2), inset 0 0.01rem 0 rgba(255, 255, 255, 0.1);
  border: 0.01rem solid rgba(36, 133, 222, 0.3);
  overflow: hidden;
}
.cookie-style-2 .cookie-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.03rem;
  background: linear-gradient(90deg, transparent 0%, var(--color-link) 50%, transparent 100%);
  -webkit-animation: decorationSlide 2s ease-in-out infinite;
          animation: decorationSlide 2s ease-in-out infinite;
}
@-webkit-keyframes decorationSlide {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes decorationSlide {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.cookie-style-2 .cookie-content-v2 {
  position: relative;
  z-index: 1;
}
.cookie-style-2 .cookie-header-v2 {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  margin-bottom: 0.2rem;
}
.cookie-style-2 .cookie-icon-v2 {
  width: 0.48rem;
  height: 0.48rem;
  min-width: 36px;
  min-height: 36px;
  background: linear-gradient(135deg, var(--color-link) 0%, #00d4ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.2rem rgba(36, 133, 222, 0.6), 0 0 0.4rem rgba(36, 133, 222, 0.3);
  -webkit-animation: iconPulse 2s ease-in-out infinite;
          animation: iconPulse 2s ease-in-out infinite;
}
.cookie-style-2 .cookie-icon-v2 svg {
  width: 0.28rem;
  height: 0.28rem;
  min-width: 22px;
  min-height: 22px;
  color: #fff;
}
@-webkit-keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0.2rem rgba(36, 133, 222, 0.6), 0 0 0.4rem rgba(36, 133, 222, 0.3);
  }
  50% {
    box-shadow: 0 0 0.3rem rgba(36, 133, 222, 0.8), 0 0 0.6rem rgba(36, 133, 222, 0.5);
  }
}
@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0.2rem rgba(36, 133, 222, 0.6), 0 0 0.4rem rgba(36, 133, 222, 0.3);
  }
  50% {
    box-shadow: 0 0 0.3rem rgba(36, 133, 222, 0.8), 0 0 0.6rem rgba(36, 133, 222, 0.5);
  }
}
.cookie-style-2 .cookie-title-v2 {
  font-size: var(--font-size-20);
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}
.cookie-style-2 .cookie-desc-v2 {
  font-size: var(--font-size-13);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 0.24rem 0;
}
.cookie-style-2 .cookie-link-v2 {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.cookie-style-2 .cookie-link-v2:hover {
  color: #00d4ff;
  text-shadow: 0 0 0.08rem rgba(36, 133, 222, 0.6);
}
.cookie-style-2 .cookie-options-v2 {
  margin-bottom: 0.24rem;
}
.cookie-style-2 .cookie-option-v2 {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.16rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.08rem;
  margin-bottom: 0.08rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-style-2 .cookie-option-v2:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cookie-style-2 .cookie-option-v2 input[type=checkbox] {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 16px;
  min-height: 16px;
  cursor: pointer;
  accent-color: var(--color-link);
}
.cookie-style-2 .cookie-option-v2 input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-style-2 .cookie-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.08rem;
}
.cookie-style-2 .cookie-option-name {
  font-size: var(--font-size-13);
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
}
.cookie-style-2 .cookie-option-badge {
  font-size: var(--font-size-11);
  padding: 0.02rem 0.08rem;
  background: rgba(36, 133, 222, 0.2);
  color: var(--color-link);
  border-radius: 0.04rem;
  white-space: nowrap;
}
.cookie-style-2 .cookie-actions-v2 {
  display: flex;
  gap: 0.12rem;
}
.cookie-style-2 .cookie-btn-v2 {
  flex: 1;
  padding: 0.14rem 0.2rem;
  border-radius: 0.08rem;
  font-size: var(--font-size-13);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  text-align: center;
}
.cookie-style-2 .cookie-btn-decline-v2 {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.cookie-style-2 .cookie-btn-decline-v2:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cookie-style-2 .cookie-btn-accept-v2 {
  background: linear-gradient(135deg, var(--color-link) 0%, #00d4ff 100%);
  color: #fff;
  box-shadow: 0 0.02rem 0.12rem rgba(36, 133, 222, 0.4);
}
.cookie-style-2 .cookie-btn-accept-v2:hover {
  transform: translateY(-0.02rem);
  box-shadow: 0 0.04rem 0.2rem rgba(36, 133, 222, 0.6);
}
.cookie-style-2 .cookie-btn-accept-v2:active {
  transform: translateY(0);
}
.cookie-style-2 {
  /* Cookie V2 Mobile Responsive */
}
@media screen and (max-width: 768px) {
  .cookie-style-2 .cookie-cookie-v2 {
    bottom: 0.2rem;
    right: 0.2rem;
    left: 0.2rem;
    max-width: none;
    width: auto;
  }
  .cookie-style-2 .cookie-card-v2 {
    padding: 0.28rem;
  }
}
@media screen and (max-width: 480px) {
  .cookie-style-2 .cookie-cookie-v2 {
    bottom: 0.15rem;
    right: 0.15rem;
    left: 0.15rem;
  }
  .cookie-style-2 .cookie-card-v2 {
    padding: 0.24rem;
  }
  .cookie-style-2 .cookie-icon-v2 {
    width: 0.4rem;
    height: 0.4rem;
    min-width: 32px;
    min-height: 32px;
  }
  .cookie-style-2 .cookie-icon-v2 svg {
    width: 0.24rem;
    height: 0.24rem;
    min-width: 20px;
    min-height: 20px;
  }
  .cookie-style-2 .cookie-title-v2 {
    font-size: var(--font-size-18);
  }
  .cookie-style-2 .cookie-desc-v2 {
    font-size: var(--font-size-12);
  }
  .cookie-style-2 .cookie-actions-v2 {
    flex-direction: column;
  }
  .cookie-style-2 .cookie-btn-v2 {
    width: 100%;
    padding: 0.16rem 0.2rem;
  }
}

/**
 * Cookie Banner Style 3 - Logo Card
 * Logo 卡片风格
 * 特点：左侧 Logo 区域、详细 Cookie 选项、底部居中
 */
.cookie-style-3 .cookie-cookie-v3 {
  position: fixed;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  max-width: max(9rem, 900px);
  width: 90%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-style-3 .cookie-cookie-v3.active {
  transform: translateX(-50%) translateY(0);
}
.cookie-style-3 .cookie-card-v3 {
  position: relative;
  background: #fff;
  border-radius: 0.24rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15), 0 0 0.4rem rgba(36, 133, 222, 0.1);
  border: 0.01rem solid rgba(0, 0, 0, 0.08);
  display: flex;
  -webkit-animation: cookieSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
          animation: cookieSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@-webkit-keyframes cookieSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookieSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-style-3 {
  /* Logo Section */
}
.cookie-style-3 .cookie-logo-section {
  flex-shrink: 0;
  width: 1.6rem;
  background: linear-gradient(180deg, var(--color-primary) 0%, #065a58 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.2rem;
  position: relative;
  overflow: hidden;
}
.cookie-style-3 .cookie-logo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.cookie-style-3 .cookie-logo-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.cookie-style-3 .cookie-logo {
  width: 100%;
  max-width: max(1.2rem, 120px);
  height: auto;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cookie-style-3 .cookie-logo-badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06rem;
  padding: 0.12rem 0.16rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.12rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.cookie-style-3 .cookie-logo-badge svg {
  width: 0.28rem;
  height: 0.28rem;
  min-width: 22px;
  min-height: 22px;
  color: #fff;
}
.cookie-style-3 .cookie-logo-badge .cookie-badge-text {
  font-size: var(--font-size-11);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
.cookie-style-3 {
  /* Content Section */
}
.cookie-style-3 .cookie-content-v3 {
  flex: 1;
  padding: 0.32rem;
  display: flex;
  flex-direction: column;
}
.cookie-style-3 .cookie-header-v3 {
  margin-bottom: 0.2rem;
}
.cookie-style-3 .cookie-title-v3 {
  font-size: var(--font-size-22);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.06rem 0;
  line-height: 1.2;
}
.cookie-style-3 .cookie-subtitle-v3 {
  font-size: var(--font-size-12);
  color: var(--pp-text-muted);
  font-weight: 400;
}
.cookie-style-3 .cookie-desc-v3 {
  font-size: var(--font-size-13);
  color: var(--pp-text-muted);
  line-height: 1.6;
  margin: 0 0 0.24rem 0;
}
.cookie-style-3 .cookie-link-v3 {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.cookie-style-3 .cookie-link-v3:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-style-3 {
  /* Cookie Options */
}
.cookie-style-3 .cookie-options-v3 {
  margin-bottom: 0.24rem;
}
.cookie-style-3 .cookie-option-v3 {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.16rem;
  background: var(--pp-bg-light);
  border-radius: 0.1rem;
  margin-bottom: 0.08rem;
  transition: all 0.3s ease;
}
.cookie-style-3 .cookie-option-v3:hover {
  background: #eef5f5;
}
.cookie-style-3 .cookie-option-icon {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 28px;
  min-height: 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-link) 100%);
  border-radius: 0.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cookie-style-3 .cookie-option-icon svg {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 16px;
  min-height: 16px;
  color: #fff;
  stroke-width: 2;
}
.cookie-style-3 .cookie-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}
.cookie-style-3 .cookie-option-name {
  font-size: var(--font-size-13);
  font-weight: 500;
  color: var(--color-text);
}
.cookie-style-3 .cookie-option-desc {
  font-size: var(--font-size-11);
  color: var(--pp-text-muted);
  font-weight: normal;
}
.cookie-style-3 .cookie-option-status,
.cookie-style-3 .cookie-option-toggle {
  flex-shrink: 0;
}
.cookie-style-3 .cookie-status-badge {
  font-size: var(--font-size-11);
  padding: 0.04rem 0.12rem;
  border-radius: 0.06rem;
  font-weight: 500;
  white-space: nowrap;
}
.cookie-style-3 .cookie-status-required {
  background: rgba(36, 133, 222, 0.1);
  color: var(--color-link);
}
.cookie-style-3 {
  /* Toggle Switch */
}
.cookie-style-3 .cookie-option-toggle input[type=checkbox] {
  display: none;
}
.cookie-style-3 .cookie-toggle-label {
  display: block;
  width: 0.4rem;
  height: 0.22rem;
  min-width: 32px;
  min-height: 18px;
  background: #ddd;
  border-radius: 0.22rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=checkbox]:checked + .cookie-style-3 .cookie-toggle-label {
  background: var(--color-primary);
}
.cookie-style-3 .cookie-toggle-slider {
  position: absolute;
  top: 0.02rem;
  left: 0.02rem;
  width: 0.18rem;
  height: 0.18rem;
  min-width: 14px;
  min-height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0.01rem 0.03rem rgba(0, 0, 0, 0.2);
}
input[type=checkbox]:checked + .cookie-toggle-label .cookie-style-3 .cookie-toggle-slider {
  left: 0.2rem;
}
.cookie-style-3 {
  /* Action Buttons */
}
.cookie-style-3 .cookie-actions-v3 {
  display: flex;
  gap: 0.12rem;
  margin-top: auto;
}
.cookie-style-3 .cookie-btn-v3 {
  flex: 1;
  padding: 0.14rem 0.24rem;
  border-radius: 0.1rem;
  font-size: var(--font-size-13);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  white-space: nowrap;
}
.cookie-style-3 .cookie-btn-v3 svg {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 14px;
  min-height: 14px;
  stroke-width: 2;
}
.cookie-style-3 .cookie-btn-decline-v3 {
  background: transparent;
  color: var(--pp-text-muted);
  border: 0.01rem solid var(--pp-border);
}
.cookie-style-3 .cookie-btn-decline-v3:hover {
  background: var(--pp-bg-light);
  border-color: #ccc;
  color: var(--color-text);
}
.cookie-style-3 .cookie-btn-accept-v3 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-link) 100%);
  color: #fff;
  box-shadow: 0 0.04rem 0.12rem rgba(8, 106, 103, 0.3);
}
.cookie-style-3 .cookie-btn-accept-v3 svg {
  transition: transform 0.3s ease;
}
.cookie-style-3 .cookie-btn-accept-v3:hover {
  transform: translateY(-0.02rem);
  box-shadow: 0 0.06rem 0.16rem rgba(8, 106, 103, 0.4);
}
.cookie-style-3 .cookie-btn-accept-v3:hover svg {
  transform: translateX(0.02rem);
}
.cookie-style-3 .cookie-btn-accept-v3:active {
  transform: translateY(0);
  box-shadow: 0 0.02rem 0.08rem rgba(8, 106, 103, 0.3);
}
.cookie-style-3 {
  /* Cookie V3 Mobile Responsive */
}
@media screen and (max-width: 768px) {
  .cookie-style-3 .cookie-cookie-v3 {
    bottom: 0.2rem;
    max-width: none;
    width: 94%;
  }
  .cookie-style-3 .cookie-card-v3 {
    flex-direction: column;
  }
  .cookie-style-3 .cookie-logo-section {
    width: 100%;
    padding: 0.24rem 0.2rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.16rem;
  }
  .cookie-style-3 .cookie-logo-section::before {
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  }
  .cookie-style-3 .cookie-logo-wrapper {
    width: auto;
    margin-bottom: 0;
  }
  .cookie-style-3 .cookie-logo-badge {
    flex-direction: row;
    gap: 0.08rem;
    padding: 0.08rem 0.12rem;
  }
  .cookie-style-3 .cookie-content-v3 {
    padding: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .cookie-style-3 .cookie-cookie-v3 {
    bottom: 0.15rem;
    width: 96%;
  }
  .cookie-style-3 .cookie-logo-section {
    padding: 0.2rem 0.16rem;
  }
  .cookie-style-3 .cookie-content-v3 {
    padding: 0.2rem 0.16rem;
  }
  .cookie-style-3 .cookie-title-v3 {
    font-size: var(--font-size-18);
  }
  .cookie-style-3 .cookie-desc-v3 {
    font-size: var(--font-size-12);
  }
  .cookie-style-3 .cookie-option-v3 {
    padding: 0.1rem 0.12rem;
  }
  .cookie-style-3 .cookie-option-icon {
    width: 0.32rem;
    height: 0.32rem;
    min-width: 24px;
    min-height: 24px;
  }
  .cookie-style-3 .cookie-actions-v3 {
    flex-direction: column;
  }
  .cookie-style-3 .cookie-btn-v3 {
    width: 100%;
    padding: 0.16rem 0.2rem;
  }
}

/* ========================================
   模块说明
   ========================================
   1. 基础样式 (Reset + Normalize + 布局)
   2. 视频弹窗组件
   3. Footer 底部组件
   4. 导航组件
   5. 右侧客服组件
   6. 弹窗组件
   8. 动效工具类
   9. Swiper 轮播库
   11. 图标字体 iconfont
   12. 自定义字体
   13. 语言切换下拉
   14. 搜索组件
   16. Banner 轮播
   19. 相关案例 Swiper
   21. 无障碍 + PageSpeed 优化
   ======================================== */
/* ========================================
   1. 基础样式 - 开始
   ======================================== */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  transition: all 550ms;
  -webkit-transition: all 550ms;
  max-width: 100%;
  width: 100%;
  border: none;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.pcbanner {
  display: block;
}

.phonebanner {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcbanner {
    display: none;
  }
  .phonebanner {
    display: block;
  }
}
ul,
form,
p,
a,
img,
table,
tr,
td,
li,
dd,
dt,
dl,
span {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  color: inherit;
}

input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
}

button {
  border-radius: 0px;
  -webkit-border-radius: 0px;
}

/*reset css*/
html {
  font-size: max(5.2083333333vw, 50px) !important;
  /* 适配1920px宽度 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-size: var(--font-size-18);
  font-family: "sscr", Arial, Helvetica, "Microsoft YaHei", sans-serif;
  --theme-color: #093090;
  --primary-color: #c1dedd;
  /* 主题色 */
  --color-primary: #093090;
  /* 文本色 */
  --color-text: #222222;
  --color-link: #093090;
  --color-vi: #3C6FE3;
  --color-gary: #666;
  /* 导航高度 */
  --header-height: 0.98rem;
  line-height: 1.5;
  --font-size-72: max(0.72rem, 24px);
  --font-size-60: max(0.6rem, 26px);
  --font-size-48: max(0.48rem, 24px);
  --font-size-40: max(0.4rem, 24px);
  --font-size-36: max(0.36rem, 24px);
  --font-size-34: max(0.34rem, 24px);
  --font-size-32: max(0.32rem, 22px);
  --font-size-30: max(0.3rem, 22px);
  --font-size-28: max(0.28rem, 22px);
  --font-size-26: max(0.26rem, 20px);
  --font-size-24: max(0.24rem, 16px);
  --font-size-22: max(0.22rem, 16px);
  --font-size-20: max(0.2rem, 16px);
  --font-size-18: max(0.18rem, 14px);
  --font-size-16: max(0.16rem, 14px);
  --font-size-14: max(0.14rem, 12px);
  --font-size-12: max(0.12rem, 12px);
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  display: block;
  flex: 1;
}

*[id] {
  scroll-margin-top: 1rem;
  /* 避免锚点内容被 fixed header 遮挡 */
  scroll-behavior: smooth;
}

.scroll-x {
  overflow-x: auto;
}

.scroll-x::-webkit-scrollbar {
  height: 3px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background-color: var(--color-vi);
  /* 设置滚动条滑块的颜色 */
  border-radius: 5px;
  /* 设置滚动条滑块的圆角 */
}

.scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-vi);
  /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-x::-webkit-scrollbar-track {
  background-color: #fceddf;
  /* 设置滚动条背景的颜色 */
}

.scroll-y {
  overflow-y: auto !important;
}

.scroll-y::-webkit-scrollbar {
  width: 2px;
  /* 设置滚动条的宽度 */
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: var(--color-vi);
  /* 设置滚动条滑块的颜色 */
  border-radius: 5px;
  /* 设置滚动条滑块的圆角 */
}

.scroll-y::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-vi);
  /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-y::-webkit-scrollbar-track {
  background-color: #fceddf;
  /* 设置滚动条背景的颜色 */
}

a,
button,
input,
textarea {
  font-family: var(--font-regular);
}

p {
  color: #666;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bold);
  color: #222;
}

h2 {
  font-size: var(--font-size-40);
}

video {
  width: 100%;
}

/* motion effects */
/* From Uiverse.io by nikk7007 */
.slice {
  --c1: #202020;
  --c2: #00a1b7;
  --size-letter: 0.12rem;
  padding: 0.05rem 0.1rem;
  font-size: var(--size-letter);
  background-color: transparent;
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.02rem;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: var(--font-size-14);
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}
.slice > .text {
  font-weight: 700;
  color: var(--c2);
  position: relative;
  z-index: 1;
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

h1 {
  margin: 0;
  line-height: 1;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* 常用宽度 */
.w1400 {
  width: 73.57%;
  margin: 0 auto;
}

.left-1400 {
  margin-left: 13.21%;
}

.right-1400 {
  margin-right: 13.21%;
}

.w1600 {
  width: 84.08%;
  margin: 0 auto;
}

.left-1600 {
  margin-left: 8.04%;
}

.w1760 {
  width: 92.5%;
  margin: 0 auto;
}

.w1200 {
  width: 62.5%;
  margin: 0 auto;
}

@media screen and (max-width: 1599px) {
  .w1600 {
    width: 90%;
  }
  .left-1600 {
    margin-left: 5%;
  }
  .w1400 {
    width: 80%;
  }
  .left-1400 {
    margin-left: 10%;
  }
  .right-1400 {
    margin-right: 10%;
  }
}
@media screen and (max-width: 1439px) {
  .w1400 {
    width: 90%;
  }
  .left-1400 {
    margin-left: 5%;
  }
  .right-1400 {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1279px) {
  .w1200 {
    width: 90%;
  }
}
/* ========================================
   1. 基础样式 - 结束
   ======================================== */
/* ========================================
   2. 视频弹窗组件 - 开始
   ======================================== */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-popup iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  max-height: 90vh;
  object-fit: contain;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: var(--font-size-34);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 0.36rem;
  height: 0.36rem;
  line-height: 0.36rem;
  min-width: 30px;
  min-height: 30px;
  line-height: 30px;
  text-align: center;
}

/* ========================================
   4. 视频弹窗组件 - 结束
   ======================================== */
/* ========================================
   3. Footer 底部组件 - 开始
   ======================================== */
.f-logo-box {
  width: max(2.3rem, 130px);
}

.footer-mid {
  background: #fff;
}

.footer-kuang {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
}

.f-left {
  width: 3.6rem;
  flex: none;
}

.f-logo {
  display: block;
  width: 2.32rem;
  height: 0.52rem;
}

.f-ico {
  width: max(0.2rem, 14px);
  height: max(0.3rem, 20px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
}

.f-contact {
  margin-top: 0.36rem;
}

.f-row {
  display: flex;
  margin-bottom: 0.32rem;
}
.f-row a:hover {
  color: var(--color-link);
}

.f-row-div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-family: "sscr";
}
.f-row-div strong {
  font-weight: normal;
}

.f-base {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.32rem;
}

.f-base-item {
  margin-right: 0.43rem;
  margin-bottom: 0.24rem;
}
.f-base-item em {
  display: block;
  font-style: normal;
  font-size: var(--font-size-14);
  font-weight: 500;
  color: #666;
}
.f-base-item span {
  font-size: var(--font-size-18);
  color: #222;
}

.f-links {
  margin-top: 0.54rem;
  font-size: var(--font-size-18);
  color: #666;
}
.f-links a {
  color: #666;
  margin-right: 0.1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.f-links a:hover {
  color: var(--color-link);
}

.f-nav {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.49rem;
  width: 68.75%;
  justify-content: space-between;
}

.f-nav-col {
  width: 100%;
}

.f-nav-title {
  font-size: var(--font-size-20);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.f-nav-line {
  width: 0.22rem;
  height: 0.06rem;
  margin-top: 0.28rem;
  background: var(--color-vi);
}

.f-nav-col ul {
  margin-top: 0.36rem;
}

.f-nav-col li {
  margin-bottom: 0.16rem;
}
.f-nav-col li a {
  font-size: var(--font-size-18);
  color: #666;
}
.f-nav-col li a:hover {
  color: var(--color-link);
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DCDDE1;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.f-copy {
  font-size: var(--font-size-14);
  color: #666;
}
.f-copy a {
  color: #666;
}
.f-copy a:hover {
  color: var(--color-link);
}

.f-en {
  font-size: var(--font-size-12);
  letter-spacing: 0.0052rem;
  color: #666;
}

@media screen and (max-width: 991px) {
  .f-nav {
    display: none;
  }
  .footer-kuang {
    flex-direction: column;
    padding-top: 0.6rem;
    padding-bottom: 0.4rem;
  }
  .f-left {
    width: 100%;
  }
  .footer-bot {
    flex-direction: column;
    justify-content: center;
    gap: 0.08rem;
    height: auto;
    padding: 0.15rem 0.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-bot {
    padding-bottom: 50px;
  }
}
/* ========================================
   3. Footer 底部组件 - 结束
   ======================================== */
/* ========================================
   4. 导航组件 - 开始
   ======================================== */
::selection {
  color: #fff;
  background: #829d94;
}

.table {
  width: 100%;
  overflow: auto;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border: 0px;
  line-height: 22px;
}

.table table tr td {
  border: 1px solid #f2f2f2;
  border: 0px;
  font-size: var(--font-size-12);
  text-align: left;
}

.m-muban-nav {
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}

/* 桌面端（>991px）：鼠标下滑隐藏导航，上滑出现 */
@media screen and (min-width: 992px) {
  .m-muban-nav.hd-hide {
    transform: translate(-50%, -100%);
  }
}
.m-muban-mid-logo {
  display: block;
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: max(2rem, 140px);
}
.m-muban-mid-logo span {
  font-size: var(--font-size-14);
  color: #FFFFFF;
  display: block;
}
.m-muban-mid-logo img:last-child {
  position: absolute;
  width: auto;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-muban-mid {
  display: flex;
  align-items: initial;
  justify-content: space-between;
}

.m-muban-mid-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.m-muban-mid-right > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.m-muban-mid-right > ul li.active > a {
  color: #fff;
  font-weight: 500;
}
.m-muban-mid-right > ul li.active > a::after {
  width: 100%;
}
.m-muban-mid-right > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0.12rem;
}
.m-muban-mid-right > ul > li {
  position: relative;
}
.m-muban-mid-right > ul > li > a {
  display: block;
  font-size: var(--font-size-18);
  color: #FFFFFF;
  margin-left: var(--font-size-20);
  margin-right: var(--font-size-20);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  position: relative;
  transition: color 0.3s ease;
}
.m-muban-mid-right > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.m-muban-mid-right > ul > li > a:hover::after {
  width: 100%;
}
.m-muban-mid-right > ul > li ul {
  width: auto;
  min-width: 220px;
}
.m-muban-mid-right > ul > li > ul {
  position: absolute;
  left: var(--font-size-20);
  top: 100%;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 0.12rem 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 0.08rem;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.m-muban-mid-right > ul > li > ul::before {
  content: "";
  position: absolute;
  top: -0.06rem;
  left: 0.3rem;
  width: var(--font-size-12);
  height: var(--font-size-12);
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-right > ul > li > ul > li {
  padding: 0;
  position: relative;
}
.m-muban-mid-right > ul > li > ul > li a {
  display: block;
  color: #333;
  font-size: var(--font-size-16);
  line-height: 1.5;
  padding: 0.12rem 0.24rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.m-muban-mid-right > ul > li > ul > li a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
  padding-left: 0.32rem;
}
.m-muban-mid-right > ul > li > ul > li:first-child a {
  border-radius: 4px 4px 0 0;
}
.m-muban-mid-right > ul > li > ul > li:last-child a {
  border-radius: 0 0 4px 4px;
}
.m-muban-mid-right > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  border-radius: var(--font-size-12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 0.12rem 0;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  margin-left: 0.08rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
}
.m-muban-mid-right > ul > li > ul > li > ul::before {
  content: "";
  position: absolute;
  left: -0.06rem;
  top: 0.3rem;
  width: var(--font-size-12);
  height: var(--font-size-12);
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-right > ul > li > ul > li > ul > li {
  padding: 0;
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a {
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-14);
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a:hover {
  padding-left: 0.28rem;
}
.m-muban-mid-right > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-left: 0.12rem;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a {
  position: relative;
  padding-right: 0.4rem;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 0.16rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-18);
  color: #999;
  transition: all 0.2s ease;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu:hover > a::after {
  color: var(--color-link);
  right: 0.12rem;
}

.m-muban-nav.active,
.m-muban-nav:hover {
  background: #fff;
}
.m-muban-nav.active .m-muban-mid-logo img,
.m-muban-nav:hover .m-muban-mid-logo img {
  opacity: 0;
}
.m-muban-nav.active .m-muban-mid-logo img:last-child,
.m-muban-nav:hover .m-muban-mid-logo img:last-child {
  opacity: 1;
}
.m-muban-nav.active .current-lang,
.m-muban-nav:hover .current-lang {
  color: var(--color-link);
}
.m-muban-nav.active .morenyuyan a::before,
.m-muban-nav.active .morenyuyan span::before,
.m-muban-nav:hover .morenyuyan a::before,
.m-muban-nav:hover .morenyuyan span::before {
  background: var(--color-link);
}
.m-muban-nav.active .sousuo i,
.m-muban-nav.active .morenyuyan a:hover,
.m-muban-nav:hover .sousuo i,
.m-muban-nav:hover .morenyuyan a:hover {
  color: var(--color-link);
}
.m-muban-nav.active .m-muban-mid-right > ul li.active > a,
.m-muban-nav:hover .m-muban-mid-right > ul li.active > a {
  color: var(--color-link);
}
.m-muban-nav.active .m-muban-mid-right > ul li.active > a::after,
.m-muban-nav:hover .m-muban-mid-right > ul li.active > a::after {
  background: var(--color-link);
}
.m-muban-nav.active .m-muban-mid-right > ul > li > a,
.m-muban-nav:hover .m-muban-mid-right > ul > li > a {
  color: var(--color-text);
}
.m-muban-nav.active .m-muban-mid-right > ul > li > a:hover,
.m-muban-nav:hover .m-muban-mid-right > ul > li > a:hover {
  color: var(--color-link);
}
.m-muban-nav.active .m-muban-mid-right > ul > li > a:hover::after,
.m-muban-nav:hover .m-muban-mid-right > ul > li > a:hover::after {
  background: var(--color-link);
}

@media screen and (max-width: 1280px) {
  .m-muban-mid-right > ul > li > a {
    margin-left: 0px;
  }
}
@media screen and (max-width: 991px) {
  .m-muban-mid-logo {
    height: 40px;
  }
  .m-muban-mid-right ul,
  .m-muban-mid-right .duoyuyan {
    display: none;
  }
  .m-muban-mid-right .sousuo-mid {
    margin-right: 50px;
  }
  .m-muban-mid {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sousou-kuang.active {
    height: 100vh;
  }
  .sousou-kuang .form-sousuo {
    height: 0.48rem;
    padding: 0 0.06rem 0 0.16rem;
  }
  .sousou-kuang form input[type=text] {
    font-size: var(--font-size-16);
  }
  .sousou-kuang form .tj {
    width: 0.36rem;
    min-width: 32px;
    height: 0.36rem;
    min-height: 32px;
  }
  .search-suggestions {
    margin-top: 0.2rem;
    padding: 0.16rem;
  }
  .search-suggestions .suggest-list a {
    padding: 0.06rem 0.12rem;
    font-size: var(--font-size-14);
  }
  .header-keywords {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-keywords {
    font-size: 12px;
  }
  .sousou-kuang .w1400 {
    padding: 0 0.2rem;
    width: 100%;
  }
  .sousou-kuang .sousou-close {
    top: 0.2rem;
  }
  .search-suggestions .suggest-list {
    gap: 0.08rem;
  }
}
.m-mobilenav {
  display: none;
}

.duoyuyanphone {
  padding: 0.2rem;
  margin-top: 0.2rem;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
}
.duoyuyanphone a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-16);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 0.8rem;
}
.duoyuyanphone a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.duoyuyanphone a.active {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.m-mobilenav {
  display: none;
}

@media screen and (max-width: 991px) {
  .mbnav-wp_seach {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
  }
  .mbnav-wp_seach > form > .box-form {
    display: flex;
    height: 100%;
    height: 40px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
  }
  .mbnav-wp_seach > form > .box-form > .box-text {
    width: calc(100% - 30px);
    border: 0px;
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    background: transparent;
    outline: none;
  }
  .mbnav-wp_seach > form > .box-form > .box-submit {
    width: 30px;
    height: 100%;
    border: 0px;
    position: relative;
    z-index: 2;
    background: transparent;
    cursor: pointer;
    background: transparent;
  }
  .mbnav-wp_seach > form > .box-form .icon {
    position: absolute;
    right: 4px;
    top: 10px;
    z-index: 1;
  }
  .mbnav-list {
    margin-top: 20px;
  }
  .m-mobilenav {
    position: absolute;
    z-index: 11;
    padding-top: 25px;
    top: 0;
    left: 0;
    display: block;
    box-sizing: border-box;
    z-index: 100;
  }
  .m-mobilenav .mbnav-btn {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 4%;
    left: auto;
    padding: 4px;
    overflow: hidden;
    background: #fff;
    width: 34px;
    border-radius: 4px;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--color-link);
    transition: 0.5s;
  }
  .m-mobilenav .mbnav-btn.active .line {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn .line2 {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .m-mobilenav .mbnav-btn .smalldaohangxuanzhong {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn.active .line1 {
    transform: rotate(-45deg);
    background-color: var(--color-link);
    top: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-btn.active .line3 {
    transform: rotate(45deg);
    background-color: var(--color-link);
    bottom: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-bd {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    top: 0;
    visibility: hidden;
    z-index: 1;
  }
  .m-mobilenav .mbnav-bd.show {
    visibility: visible;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-wp {
    height: 100%;
    opacity: 1;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-item > a {
    opacity: 1;
    color: #FFFFFF;
    transform: scale(1) translate(0, 0);
  }
  .m-mobilenav .mbnav-wp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: rgba(51, 51, 51, 0.9);
    top: 0;
    transition: all 550ms;
    opacity: 0;
  }
  .m-mobilenav .mbnav-fix {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
    height: calc(100% - 60px);
    width: 100%;
    box-sizing: border-box;
    /* overflow-y: scroll; */
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .m-mobilenav .mbnav-item {
    position: relative;
    padding-left: 44px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .m-mobilenav .mbnav-item i {
    position: absolute;
    left: 13px;
    top: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: transparent;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  .m-mobilenav .mbnav-item > a {
    display: block;
    line-height: 26px;
    font-size: 16px;
    color: #FFFFFF;
    transform: scale(1.1) translate(60px, -35px);
    opacity: 0;
    transition: 0.5s 0.1s;
  }
  .m-mobilenav .mbnav-item > a.current:after {
    content: "";
    margin-left: 5px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-item > a.active {
    color: #529dba;
  }
  .m-mobilenav .mbnav-item > a.active:after {
    background-color: #529dba;
  }
  .m-mobilenav .mbnav-item:nth-child(1) > a {
    transition-delay: 250ms;
  }
  .m-mobilenav .mbnav-item:nth-child(2) > a {
    transition-delay: 300ms;
  }
  .m-mobilenav .mbnav-item:nth-child(3) > a {
    transition-delay: 350ms;
  }
  .m-mobilenav .mbnav-item:nth-child(4) > a {
    transition-delay: 400ms;
  }
  .m-mobilenav .mbnav-item:nth-child(5) > a {
    transition-delay: 450ms;
  }
  .m-mobilenav .mbnav-item:nth-child(6) > a {
    transition-delay: 500ms;
  }
  .m-mobilenav .mbnav-item:nth-child(7) > a {
    transition-delay: 550ms;
  }
  .m-mobilenav .mbsbnav-list {
    padding: 10px 0;
    display: none;
  }
  .m-mobilenav .mbsbnav-item {
    position: relative;
    padding-left: 20px;
    padding-right: 5px;
  }
  .m-mobilenav .mbsbnav-item i {
    left: 0;
    top: 6px;
    line-height: 24px;
  }
  .m-mobilenav .mbsbnav-item a {
    display: block;
    padding: 5px 5px;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
  }
  .m-mobilenav .mbsbnav-item a.active {
    color: #529dba;
  }
  .box-form-tj {
    position: absolute;
    font-size: 20px !important;
    right: 5px;
    top: 8px;
    color: #043F71;
  }
}
/* ========================================
   4. 导航组件 - 结束
   ======================================== */
/* ========================================
   5. 右侧客服组件 - 开始
   ======================================== */
/*
 * 右侧悬浮客服组件
 * 结构：<ul class="contact-footer">
 *        <p>开关按钮</p>
 *        <li>客服 / WhatsApp / 回顶</li>
 *      </ul>
 * 交互：点击 p 展开/收起 li 列表，hover 显示 tooltip
 */
/* --- 5.1 容器定位 --- */
.contact-footer {
  position: fixed;
  right: -100px;
  bottom: 40%;
  z-index: 10;
  transition: all 0.5s;
}
.contact-footer i {
  font-size: var(--font-size-18);
  color: #fff;
}

.contact-footer.xs {
  right: 0;
}

/* --- 5.2 列表项（折叠状态：隐藏） --- */
.contact-footer > li {
  height: 0.4rem;
  width: 0.4rem;
  min-height: 40px;
  min-width: 40px;
  margin-bottom: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: var(--color-vi);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

/* 第一个 li 始终可见（作为展开/收起开关） */
.contact-footer > li:first-child {
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/* --- 5.3 展开状态（.active） --- */
.contact-footer.active > li {
  height: 0.4rem;
  min-height: 40px;
  overflow: unset;
  visibility: visible;
  opacity: 1;
}

/* 展开时开关图标切换为收起图标 */
.contact-footer.active > li:first-child p i:before {
  content: "\e65b";
  font-family: "iconfont";
}

/* 展开时 p 内图片切换 */
.contact-footer.active > p img {
  display: none;
}
.contact-footer.active > p img:nth-child(1) {
  display: block;
}

/* --- 5.4 链接与图标通用样式 --- */
.contact-footer li {
  cursor: pointer;
  position: relative;
}
.contact-footer li a,
.contact-footer li p {
  cursor: pointer;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.5s;
}
.contact-footer li a i,
.contact-footer li p i {
  font-size: var(--font-size-18);
}
.contact-footer li a:hover {
  background: var(--color-vi);
}
.contact-footer li img {
  width: 20px;
}

/* --- 5.5 第一个 li 内的 p（开关按钮专用） --- */
.contact-footer > li:first-child p img {
  display: none;
  width: 20px;
}
.contact-footer > li:first-child p img:nth-child(2) {
  display: block;
}

/* --- 5.6 hover 效果 --- */
.contact-footer > li:hover,
.contact-footer > p:hover {
  background: var(--color-vi);
}

.contact-footer li:hover span {
  right: 120%;
}

.contact-footer li:hover .ewm {
  left: -110px;
}

/* --- 5.7 tooltip 文字（hover 时从左侧滑入） --- */
.contact-footer li span {
  border-radius: 0.1rem;
  text-align: center;
  padding: 0 0.1rem;
  white-space: nowrap;
  font-size: var(--font-size-14);
  color: #fff;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1000px;
  top: 0;
  z-index: -1;
  background-color: var(--color-vi);
  transition: 0.5s;
}

/* --- 5.8 电话弹层 --- */
.contact-footer li .con-phone {
  width: 140px;
  right: 40px;
  left: 100%;
  visibility: hidden;
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--kf-color);
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 10px;
}

/* --- 5.9 二维码弹层 --- */
.ewm {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: 100px;
  left: 100px;
  top: 0;
  transition: 0.5s;
  z-index: -1;
}

.contact-footer li .ewm {
  min-width: 100px;
  max-width: 100px;
  min-height: 100px !important;
}

.kf-youxiang {
  background: var(--kf-color);
}

@media screen and (min-width: 768px) {
  .contact-footer li:hover {
    transform: scale(1.1);
  }
}
/* 平板：隐藏 tooltip 文字 */
@media screen and (max-width: 999px) {
  .contact-footer li span {
    display: none;
  }
}
/* 手机：变为底部固定栏 */
@media screen and (max-width: 768px) {
  .contact-footer.xs {
    right: 0;
  }
  .contact-footer {
    width: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kf-color);
  }
  .contact-footer p {
    display: none;
  }
  .contact-footer li {
    width: 34%;
    margin-bottom: 0;
    border-radius: 0;
    background: var(--color-vi);
  }
  .contact-footer li a,
  .contact-footer li p {
    border-radius: 0;
  }
  .contact-footer li.dianji {
    display: none;
  }
  .contact-footer li:hover .ewm {
    left: 0;
    bottom: 140px;
  }
  .ewm {
    display: none;
    top: -100px;
    left: 0;
  }
}
/* ========================================
   5. 右侧客服组件 - 结束
   ======================================== */
/* ========================================
   6. 弹窗组件 - 开始
   ======================================== */
/* // tanchuang start */
.tanchuang {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(0.24rem, 16px);
  background: rgba(9, 48, 144, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
  overflow-y: auto;
}

.tabchuang-mid {
  position: relative;
  width: 100%;
  max-width: 6.8rem;
  max-height: 90vh;
  margin: auto;
  padding: 0.3rem 0.4rem;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  background: #fff;
  border: 1px solid #EAEFF5;
  border-radius: 0.16rem;
  box-shadow: 0 0.4rem 0.9rem -0.44rem rgba(10, 38, 85, 0.45);
  text-align: center;
}
.tabchuang-mid::-webkit-scrollbar {
  width: 4px;
}
.tabchuang-mid::-webkit-scrollbar-thumb {
  background: #DCDDE1;
  border-radius: 4px;
}

.guanbi {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: max(0.36rem, 36px);
  height: max(0.36rem, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #F2F5FA;
  color: var(--color-gary);
  cursor: pointer;
  outline: none;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}
.guanbi i {
  font-size: var(--font-size-18);
  transform: rotate(45deg);
}
.guanbi:hover {
  background: var(--color-link);
  color: #fff;
}

.gb-title {
  margin-bottom: 0.16rem;
  color: var(--color-primary);
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 1.3;
}

.gb-neirong > p {
  max-width: 5.4rem;
  margin: 0 auto 0.32rem;
  color: var(--color-gary);
  font-size: var(--font-size-16);
  line-height: 1.7;
}

/* 表单 */
.tabchuang-mid > form {
  text-align: left;
}

.tabchuang-mid > form p {
  width: 100%;
  margin-bottom: 0.1rem;
}
.tabchuang-mid > form p input,
.tabchuang-mid > form p textarea {
  width: 100%;
  outline: none;
  border: 1px solid #EAEFF5;
  border-radius: 0.1rem;
  background: #F7F9FC;
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--font-size-16);
  line-height: 1.5;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}
.tabchuang-mid > form p input::-webkit-input-placeholder, .tabchuang-mid > form p textarea::-webkit-input-placeholder {
  color: #9AA6BF;
}
.tabchuang-mid > form p input:-ms-input-placeholder, .tabchuang-mid > form p textarea:-ms-input-placeholder {
  color: #9AA6BF;
}
.tabchuang-mid > form p input::placeholder,
.tabchuang-mid > form p textarea::placeholder {
  color: #9AA6BF;
}
.tabchuang-mid > form p input:focus,
.tabchuang-mid > form p textarea:focus {
  border-color: var(--color-link);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(9, 48, 144, 0.08);
}
.tabchuang-mid > form p input {
  height: max(0.56rem, 48px);
  padding: 0 0.18rem;
}
.tabchuang-mid > form p textarea {
  height: 1.2rem;
  min-height: 104px;
  padding: 0.12rem 0.18rem;
  resize: none;
  overflow-y: auto;
}

.tabchuang-mid > form > div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.04rem;
  margin-bottom: 0.06rem;
  text-align: left;
}
.tabchuang-mid > form > div .checkboxinput {
  flex: none;
  width: max(0.18rem, 16px);
  height: max(0.18rem, 16px);
  margin-top: 0.02rem;
  accent-color: var(--color-link);
  cursor: pointer;
}
.tabchuang-mid > form > div label {
  flex: 1;
  color: var(--color-gary);
  font-size: var(--font-size-14);
  cursor: pointer;
}

.error-msg {
  display: block;
  width: 100%;
  margin-top: 0.02rem;
  color: #D93025;
  font-size: var(--font-size-12);
  line-height: 1.45;
  text-align: left;
  visibility: hidden;
}
.error-msg a {
  color: inherit;
  text-decoration: underline;
}

.input-error {
  border-color: #D93025 !important;
  background: #FFF6F5 !important;
}

.stbtanc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: max(0.56rem, 48px);
  padding: 0 0.5rem;
  border: 1px solid var(--color-link);
  border-radius: 0.1rem;
  background: var(--color-link);
  color: #fff;
  font-family: inherit;
  font-size: var(--font-size-16);
  cursor: pointer;
  outline: none;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}
.stbtanc:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 133, 222, 0.35);
}
.stbtanc:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .tabchuang-mid {
    padding: 40px 32px 44px;
  }
  .gb-neirong > p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tanchuang {
    padding: 12px;
  }
  .tabchuang-mid {
    max-height: 88vh;
    padding: 34px 20px 28px;
  }
  .guanbi {
    top: 10px;
    right: 10px;
  }
  .gb-title {
    margin-bottom: 8px;
    font-size: var(--font-size-20);
  }
  .gb-neirong > p {
    margin: 0 auto 16px;
    font-size: var(--font-size-14);
  }
  .stbtanc {
    display: flex;
    width: 100%;
    min-width: 0;
  }
}
/* // tanchuang end */
/* ========================================
   6. 弹窗组件 - 结束
   ======================================== */
/* ========================================
   10. 动效工具类 - 开始
   ======================================== */
.xieleftright {
  position: relative;
}

.xieleftright:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 25px;
  left: -45px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  transition: all 0.6s ease-out;
  transform: skewX(-25deg);
}

.xieleftright:hover:before {
  left: 120%;
}

.woshi {
  display: inline-block;
  position: relative;
}

.woshi:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 25px;
  left: -45px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  transition: all 0.6s ease-out;
  transform: skewX(-25deg);
}

.woshi:hover:before {
  left: 120%;
}

html.gsap-on .g-fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
}

@media (prefers-reduced-motion: reduce) {
  html.gsap-on .g-fadein {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
/* ========================================
   10. 动效工具类 - 结束
   ======================================== */
/* ========================================
   11. Swiper 轮播库 - 开始
   ======================================== */
/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper {
  width: 100%;
}

/* ========================================
   11. Swiper 轮播库 - 结束
   ======================================== */
/* ========================================
   14. 自定义字体 - 开始
   ======================================== */
@font-face {
  font-family: "ssb";
  src: url("../fonts/SOURCEHANSANSSC-BOLD.woff2") format("woff2"), url("../fonts/SOURCEHANSANSSC-BOLD.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscr";
  src: url("../fonts/SOURCEHANSANSSC-REGULAR.woff2") format("woff2"), url("../fonts/SOURCEHANSANSSC-REGULAR.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscm";
  src: url("../fonts/SOURCEHANSANSSC-MEDIUM.woff2") format("woff2"), url("../fonts/SOURCEHANSANSSC-MEDIUM.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   12. 自定义字体 - 结束
   ======================================== */
/* ========================================
   15. 语言切换下拉 - 开始
   ======================================== */
.morenyuyan {
  margin-left: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  transition: all 0.3s ease;
  gap: 0.06rem;
  font-weight: 500;
  font-size: var(--font-size-18);
  font-family: "Inter";
  color: #B0B4BA;
}
.morenyuyan i {
  font-size: var(--font-size-20);
}
.morenyuyan .current-lang {
  font-family: "Inter";
  font-weight: bold;
  color: #fff;
}
.morenyuyan a,
.morenyuyan span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  position: relative;
  top: max(0.01rem, 1px);
  padding-right: 0.24rem;
  position: relative;
}
.morenyuyan a::before,
.morenyuyan span::before {
  content: "";
  position: absolute;
  right: 0.08rem;
  height: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.morenyuyan a:last-child,
.morenyuyan span:last-child {
  padding-right: 0px;
}
.morenyuyan a:last-child::before,
.morenyuyan span:last-child::before {
  display: none;
}
.morenyuyan a:hover {
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .morenyuyan {
    margin-left: 10px;
  }
}
/* ========================================
   15. 语言切换下拉 - 结束
   ======================================== */
/* ========================================
   16. 搜索组件 - 开始
   ======================================== */
.sousuo-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sousuo {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}
.sousuo i {
  font-size: var(--font-size-30);
  color: #fff;
}
.sousuo:hover {
  background: transparent;
  transform: scale(1.05);
}

.header-keywords {
  font-size: var(--font-size-16);
  margin-top: var(--font-size-20);
  color: var(--pp-text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.header-keywords a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.06rem 0.12rem;
  border-radius: 999px;
  background: var(--pp-bg-light);
  border: 1px solid var(--pp-border);
  color: var(--color-text);
}
.header-keywords a:hover {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.search-suggestions {
  margin-top: 0.24rem;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.search-suggestions .suggest-title {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.12rem;
}
.search-suggestions .suggest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.search-suggestions .suggest-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.16rem;
  font-size: var(--font-size-14);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.search-suggestions .suggest-list a:hover {
  background: var(--color-link);
  transform: translateY(-2px);
}

.sousou-kuang.active {
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.sousou-kuang {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 2rem;
  right: 0px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sousou-kuang .sousou-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: max(0.44rem, 36px);
  height: max(0.44rem, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sousou-kuang .sousou-close i {
  font-size: var(--font-size-20);
  color: #fff;
  transform: rotate(220deg);
}
.sousou-kuang .sousou-close:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}
.sousou-kuang .form-sousuo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 0.56rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 0.08rem 0 0.2rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.sousou-kuang .form-sousuo:focus-within {
  border-color: var(--color-link);
  box-shadow: 0 4px 24px rgba(36, 133, 222, 0.2);
}
.sousou-kuang .form-sousuo i {
  color: var(--color-text);
}
.sousou-kuang form {
  flex-wrap: wrap;
  max-width: 9rem;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
}
.sousou-kuang form input[type=text] {
  flex: 1;
  width: 100%;
  height: 100%;
  outline: none;
  border: 0px;
  padding-left: 0;
  padding-right: 10px;
  font-size: var(--font-size-18);
  background: transparent;
  color: var(--color-text);
}
.sousou-kuang form input[type=text]::-webkit-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]:-ms-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]::placeholder {
  color: #aaa;
}
.sousou-kuang form .tj {
  width: 0.44rem;
  min-width: 36px;
  height: 0.44rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-link);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sousou-kuang form .tj i {
  font-size: var(--font-size-20);
  color: #fff;
}
.sousou-kuang form .tj:hover {
  background: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(36, 133, 222, 0.35);
}
.sousou-kuang form .tj:active {
  transform: scale(0.95);
}

@media screen and (max-width: 991px) {
  .sousou-kuang .sousou-close {
    right: 100px;
  }
  .sousuo i {
    font-size: 28px;
  }
}
/* ========================================
   16. 搜索组件 - 结束
   ======================================== */
/* ========================================
   18. Banner 轮播 - 开始
   ======================================== */
.banner-mid {
  width: 100%;
  overflow: hidden;
}
.banner-mid .bannerswiper {
  width: 100%;
}

.banner-kong {
  height: 1rem;
  min-height: 60px;
}

.font48 {
  font-size: var(--font-size-48);
}

.text16 {
  font-size: var(--font-size-16);
}

.text18 {
  font-size: var(--font-size-18);
}

.text24 {
  font-size: var(--font-size-24);
}

.quanduan {
  width: auto;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  margin-left: 20px;
  background: #000;
}

.conic {
  position: relative;
}
.conic::before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(168, 239, 255), transparent 38%);
  -webkit-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.annnu-gd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.18rem 0.4rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
  z-index: 1;
  color: var(--color);
  font-size: var(--font-size-20);
  border: max(0.02rem, 2px) solid #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0.6rem;
  position: relative;
  margin-right: 0.4rem;
  transition: background 1s;
}
.annnu-gd.blue {
  background: var(--color-link);
  border-color: var(--color-link);
  transition: all 0.5s;
}
.annnu-gd.blue:hover {
  transform: scale(1.05);
}

.annnu-gd:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color-link);
  height: 400%;
  width: 200%;
  top: 0px;
  bottom: 0px;
  border-radius: 50%;
}

.annnu-gd:hover {
  color: #fff;
  border-color: var(--color-link);
  background: var(--color-link);
}

.annnu-gd:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.annnu-gd:hover:before {
  top: -0.5rem;
  left: -0.5rem;
}

@media screen and (max-width: 768px) {
  .annnu-gd:hover:before {
    top: -50px;
  }
}
.annnu-gd:active:before {
  background: var(--color-vi);
  transition: background 0s;
}

.banner-img {
  position: relative;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
.banner-img::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 48, 144, 0.8) 0%, rgba(9, 48, 144, 0) 46.88%);
}
.banner-img.videobanner::before {
  display: none;
}
.banner-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-img video,
.banner-img iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 1;
}
.banner-text h1,
.banner-text .banner-title {
  color: #fff;
  font-family: "ssb";
  font-size: 0.78rem;
  letter-spacing: 6.24px;
  line-height: 1.1;
}

.banner-toptitle {
  text-shadow: 0 2px 4.8px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  color: red;
  margin-bottom: 0.2rem;
}

.banner-ertitle {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.25);
}

.bannerswiper .swiper-pagination .swiper-pagination-bullet {
  width: max(0.1rem, 10px);
  height: max(0.1rem, 10px);
  border-radius: 50%;
  transition: all 0.5s;
  background: #FFFFFF;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet-active {
  width: max(0.3rem, 30px);
  border-radius: 0.2rem;
}
.bannerswiper .swiper-pagination {
  position: unset;
  text-align: left;
}

.homebanner-bottom {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 1.4rem;
}

.banner-annu {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.18rem;
}
.banner-annu .swiper-button-prev,
.banner-annu .swiper-button-next {
  position: unset;
  margin: 0px;
  color: #fff;
  width: max(0.56rem, 40px);
  height: max(0.56rem, 40px);
  border-radius: 50%;
  border: max(0.01rem, 1px) solid #fff;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: all 0.5s;
}
.banner-annu .swiper-button-prev:hover,
.banner-annu .swiper-button-next:hover {
  background: var(--color-link);
  border-color: var(--color-link);
}
.banner-annu i {
  font-size: var(--font-size-18);
}
.banner-annu .swiper-button-prev::after {
  display: none;
}
.banner-annu .swiper-button-next::after {
  display: none;
}

.banner-text h1 {
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.banner-text p {
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}
.banner-text a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}
.banner-text.animate-in h1,
.banner-text.animate-in p,
.banner-text.animate-in a {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .bannerswiper .swiper-pagination {
    bottom: 1rem;
  }
}
/* ========================================
   18. Banner 轮播 - 结束
   ======================================== */
/* ========================================
   22. 无障碍 + PageSpeed 优化 - 开始
   ======================================== */
.skip-link {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 0.08rem 0.2rem;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-14);
  text-decoration: none;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.skip-link:focus {
  top: 0;
}

@media screen and (max-width: 768px) {
  .skip-link {
    padding: 0.05rem 0.15rem;
    font-size: var(--font-size-12);
  }
}
/* ========================================
   22. 无障碍 + PageSpeed 优化 - 结束
   ======================================== */
/* 首页整站 swiper */
.homeswiper > .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 0.64rem;
}
.homeswiper .swiper-pagination-bullet {
  width: max(0.2rem, 16px);
  height: max(0.02rem, 2px);
  border-radius: 0px;
  background: var(--color-gary);
  opacity: 0.5;
  transition: all 0.5s;
}
.homeswiper .swiper-pagination-bullet-active {
  width: max(0.42rem, 30px);
  height: max(0.02rem, 2px);
  background: var(--color-vi);
  opacity: 1;
}

/* 首页 aboutus start */
.index-about-kuang {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-about-left {
  width: 6.1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.index-about-right {
  width: 10rem;
}

.ty-top-content {
  margin-top: 0.3rem;
  color: var(--color-gary);
  line-height: 1.8;
}
.ty-top-content em {
  font-style: normal;
  color: var(--color-link);
}

.index-about-bottom-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.index-ab-div .math {
  font-size: var(--font-size-60);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-text);
}
.index-ab-div .math .counter {
  color: var(--color-text);
  transition: all 0.5s;
  font-family: "sscm";
}
.index-ab-div .math sub {
  font-size: var(--font-size-32);
  color: var(--color-link);
  font-weight: 500;
  font-family: "sscm";
}

.index-ab-div-title {
  font-size: var(--font-size-20);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.25);
  color: var(--color-gary);
  transition: all 0.5s;
}

.index-ab-div:hover .index-ab-div-title,
.index-ab-div:hover .counter {
  color: var(--color-link);
}

@media screen and (max-width: 991px) {
  .index-about-kuang {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 0px;
  }
  .index-about-kuang.left-1600 {
    margin: 0px;
  }
  .index-about-kuang.left-1600 .index-about-left {
    width: 90%;
    margin: auto;
  }
  .index-about-left,
  .index-about-right {
    width: 100%;
  }
}
/* 首页 aboutus end */
/* ========================================
   23. 首页 - 与领先者同行（- 开始
   ======================================== */
.index-hb {
  position: relative;
  padding: 0.51rem 0 1.3rem;
  background: #F4F7FB;
  overflow: hidden;
}

.index-hb-kuang {
  position: relative;
  z-index: 1;
}

.index-hb-mid {
  position: relative;
  padding-top: 1rem;
}

.hb-arc {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hb-arc img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ty-top-kuang {
  text-align: center;
}

.ty-top-title {
  font-size: var(--font-size-48);
  font-family: "sscm";
  font-weight: 500;
  color: #222222;
}

.ty-top-ertitle {
  margin-top: 0.08rem;
  font-size: var(--font-size-16);
  font-weight: 400;
  color: #666666;
}

.index-hb-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.53rem;
  margin-top: 0.75rem;
}

.hb-group {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.hb-group.left {
  justify-content: flex-end;
}

.hb-card {
  flex: 0 0 auto;
  width: max(5rem, 400px);
  min-height: 5.92rem;
  background: #fff;
  outline: 1px solid #EAEFF5;
  outline-offset: -1px;
  box-shadow: 0 0.4rem 0.9rem -0.44rem rgba(10, 38, 85, 0.45);
  overflow: hidden;
  text-align: center;
  padding-bottom: 0.3rem;
}

.hb-card-pic {
  position: relative;
  margin: 1px 1px 0;
  aspect-ratio: 5/2.5;
}
.hb-card-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 25, 69, 0.08) 0%, rgba(6, 25, 69, 0.32) 100%);
}

.hb-card-tag {
  position: absolute;
  left: 0.24rem;
  top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0.08rem 0.14rem;
  background: rgba(8, 28, 58, 0.4);
  border-radius: 100px;
  outline: 1px solid rgba(255, 255, 255, 0.28);
  outline-offset: -1px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.hb-card-tag p {
  font-size: var(--font-size-12);
  font-weight: 400;
  letter-spacing: 0.0176rem;
  color: #fff;
  white-space: nowrap;
  position: relative;
  padding-left: max(0.06rem, 6px);
}
.hb-card-tag p::before {
  content: "";
  position: absolute;
  left: -0.06rem;
  top: 50%;
  width: max(0.06rem, 6px);
  height: max(0.06rem, 6px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: #22A6E4;
}

.hb-card-logo {
  width: max(0.76rem, 40px);
  height: max(0.76rem, 40px);
  margin: 0.5rem auto 0;
  background: #093090;
  border-radius: 50%;
  box-shadow: 0 0.18rem 0.38rem -0.16rem #3C6FE3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-card-logo .hb-card-abb {
  font-size: var(--font-size-22);
  font-weight: 700;
  color: #fff;
}

.hb-card-name {
  margin-top: 0.3rem;
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #0C1C33;
}

.hb-card-desc {
  width: 3.335rem;
  margin: 0.12rem auto 0;
  font-size: var(--font-size-14);
  font-weight: 400;
  color: #5A6678;
  line-height: 1.7;
}

.hb-dot {
  width: 1.14rem;
  text-align: center;
  cursor: pointer;
}
.hb-dot:focus-visible {
  outline: 2px solid #3C6FE3;
  outline-offset: 0.04rem;
}

.hb-dot-circle {
  width: 1.14rem;
  height: 1.14rem;
  border-radius: 50%;
  background: #fff;
  outline: 1px solid #EAEFF5;
  outline-offset: -1px;
  box-shadow: 0 0.16rem 0.34rem -0.2rem rgba(10, 38, 85, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, outline-color 0.3s ease;
}
.hb-dot-circle .hb-abb {
  font-family: "Space Grotesk";
  font-size: var(--font-size-18);
  font-weight: 700;
  letter-spacing: 0.0019rem;
  color: #16314F;
  transition: color 0.3s ease;
}

.hb-dot-name {
  margin-top: 0.12rem;
  font-size: var(--font-size-12);
  font-weight: 600;
  color: #5A6678;
  transition: font-weight 0s;
}

.hb-dot.active {
  transform: scale(1.05);
}
.hb-dot.active .hb-dot-circle {
  outline: 2px solid #3C6FE3;
  outline-offset: -2px;
  box-shadow: none;
}
.hb-dot.active .hb-dot-circle .hb-abb {
  color: #3C6FE3;
}

@media screen and (max-width: 991px) {
  .hb-card-logo {
    margin-top: 0.2rem;
  }
  .index-hb-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 0.4rem;
  }
  .hb-group,
  .hb-group.left {
    justify-content: center;
  }
  .hb-card {
    width: 100%;
    max-width: 92%;
    height: auto;
    padding-bottom: 0.5rem;
  }
  .hb-card-tag p {
    font-size: 12px;
  }
}
/* ========================================
   23. 首页 - 与领先者同行（设计稿 693-655 1:1 还原）- 结束
   ======================================== */
/* ========================================
   24. 首页 - 产品中心手风琴（设计稿 693-743 1:1 还原）- 开始
   坐标基准：1920 设计稿，1px = 0.01rem
   面板比例：收起 368 / 展开 816（flex-grow 1 : 2.2174）
   ======================================== */
.index-product {
  position: relative;
}

.index-product-kuang {
  display: flex;
  height: 100vh;
  background: #0C1C33;
}

.ip-panel {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 0.5s ease;
  overflow: hidden;
}
.ip-panel.active {
  flex-grow: 2.2174;
}
.ip-panel:focus-visible {
  outline: 2px solid #3C6FE3;
  outline-offset: -0.04rem;
}
.ip-panel .annnu-gd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: max(0.01rem, 1px);
  background: transparent;
  font-family: var(--font-size-20);
  font-weight: 500;
  padding: 0.16rem 0.3rem;
  gap: 0.14rem;
  color: #fff;
}
.ip-panel .annnu-gd p {
  font-family: "sscm";
  color: #fff;
}
.ip-panel .annnu-gd {
  display: none;
}

.annnu-gd.jt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: max(0.01rem, 1px);
  background: transparent;
  font-family: var(--font-size-20);
  font-weight: 500;
  padding: 0.16rem 0.3rem;
  gap: 0.14rem;
  color: #fff;
  margin: 0px;
}
.annnu-gd.jt p {
  font-family: "sscm";
  color: #fff;
}

.ip-panel-bg {
  position: absolute;
  inset: 0;
}
.ip-panel-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ip-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
  transition: background 0.5s ease;
}
.ip-panel.active .ip-panel-bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.ip-panel-num {
  position: absolute;
  right: 1.23rem;
  top: 0.88rem;
  font-size: var(--font-size-60);
  font-family: "sscm";
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.5s ease;
}

.ip-panel.active .ip-panel-num {
  color: #fff;
  text-shadow: 0 0.02rem 0.05rem rgba(12, 28, 51, 0.3);
}

.ip-panel-info {
  position: absolute;
  bottom: 1.63rem;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.ip-panel-en {
  display: none;
  font-family: "ssb";
  font-size: var(--font-size-16);
  letter-spacing: 0.03rem;
  color: #fff;
  margin-bottom: 0.08rem;
}

.ip-panel-name {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0.02rem 0.05rem rgba(12, 28, 51, 0.5);
  white-space: nowrap;
  transition: font-size 0.4s ease;
}

.ip-panel-bar {
  width: 0.78rem;
  height: 0.04rem;
  margin-top: 0.28rem;
  background: #3C6FE3;
  transition: width 0.4s ease, margin 0.4s ease;
}

.ip-panel-desc {
  margin-top: 0.21rem;
  font-size: var(--font-size-18);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0.06rem 0.4rem rgba(0, 0, 0, 0.25);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

.ip-panel-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1.69rem;
  height: 0.64rem;
  margin-top: 0.52rem;
  padding: 0 0.23rem 0 0.32rem;
  outline: 1px solid #fff;
  outline-offset: -1px;
}
.ip-panel-more p {
  font-family: "sscm";
  font-size: var(--font-size-20);
  font-weight: 500;
  color: #fff;
}
.ip-panel-more i {
  font-size: var(--font-size-18);
  color: #fff;
}

.ip-panel.active .ip-panel-en {
  display: block;
}
.ip-panel.active .annnu-gd {
  display: inline-flex;
}
.ip-panel.active .ip-panel-name {
  font-size: var(--font-size-48);
  margin-top: 0.02rem;
}
.ip-panel.active .ip-panel-bar {
  width: 2.91rem;
  margin-top: 0.23rem;
}
.ip-panel.active .ip-panel-desc {
  display: -webkit-box;
}
.ip-panel.active .ip-panel-more {
  display: flex;
}

@media screen and (max-width: 991px) {
  .ip-panel-info {
    bottom: 20px;
  }
  .index-product-kuang {
    flex-direction: column;
    height: auto;
  }
  .ip-panel-name {
    font-size: var(--font-size-48);
  }
  .ip-panel {
    flex: none;
    display: flex;
    flex-direction: column;
    cursor: default;
  }
  .ip-panel + .ip-panel {
    margin-top: 0;
  }
  .ip-panel-bg {
    position: relative;
    inset: auto;
    flex: none;
    height: 400px;
  }
  .ip-panel .annnu-gd {
    display: inline-flex;
    margin-top: 0.2rem;
  }
  .ip-panel-num {
    right: 0.3rem;
    top: 0.3rem;
  }
  .ip-panel-en {
    display: block;
  }
  .ip-panel-bar {
    width: 2.91rem;
    margin-top: 0.23rem;
  }
  .ip-panel-desc {
    display: block;
  }
  .ip-panel-more {
    display: flex;
  }
  .ip-side {
    display: none;
  }
}
/* ========================================
   24. 首页 - 产品中心手风琴结束
   ======================================== */
/* 首页  保护环境 start */
.index-fanzhan-mid {
  position: relative;
  background: #F4F7FB;
}
.index-fanzhan-mid .ty-top-title {
  position: absolute;
  top: 1rem;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

/* 桌面端：整块正好一屏。ScrollTrigger 以 top top 固定，高于一屏的部分会被顶出视口 */
.index-fazhan-img {
  height: 100vh;
}
.index-fazhan-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-fanzhan-kuang {
  position: absolute;
  z-index: 1;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.index-fazhan-div {
  border-left: 1px solid rgba(255, 255, 255, 0.51);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.5s;
}
.index-fazhan-div:first-child {
  border-left: 0px;
}
.index-fazhan-div:hover {
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.index-fazhan-div:hover .index-fazhan-icon {
  opacity: 1;
}

.index-fazhan-icon {
  width: max(1.04rem, 60px);
  height: max(1.04rem, 60px);
  margin: auto;
  margin-bottom: 0.14rem;
  opacity: 0;
  transition: all 0.5s;
}

.index-fazhan-d-title {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #fff;
}

.index-fazhan-d-ertitle {
  font-size: var(--font-size-14);
  font-family: "sscr";
  color: #fff;
}

.fazhan-more {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--color-link);
  background: #fff;
  padding: 0.1rem 0.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.fazhan-more:hover {
  background: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .index-fazhan-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .index-fazhan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-fazhan-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 48, 144, 0.65) 0%, rgba(9, 48, 144, 0.35) 100%);
  }
  .index-fanzhan-mid {
    padding-bottom: 20px;
  }
  .index-fanzhan-mid .ty-top-title {
    position: relative;
    transform: none;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 0.5rem 0.3rem 0.3rem;
  }
  .index-fanzhan-kuang {
    flex-wrap: wrap;
    position: relative;
    gap: 0.2rem;
    padding: 0 0.3rem;
  }
  .index-fazhan-icon {
    opacity: 1;
    width: max(0.8rem, 60px);
    height: max(0.8rem, 60px);
  }
  .index-fazhan-div {
    width: calc(50% - 0.1rem);
    border: 0px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(0.15rem);
            backdrop-filter: blur(0.15rem);
    border-radius: 0.12rem;
    padding: 0.3rem 0.1rem;
    transition: background 0.5s;
  }
  .index-fazhan-div:hover {
    background: rgba(255, 255, 255, 0.22);
  }
  .index-fazhan-div:last-child {
    width: 100%;
  }
  .fazhan-more {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    transform: none;
    width: -webkit-max-content;
    width: max-content;
    margin: auto;
    margin-top: 20px;
  }
}
/* 首页 保护环境   end */
/* ========================================
   25. 首页 - 最新资讯开始
   ======================================== */
/* 首页 news start*/
.index-news-mid {
  background: #F4F7FB;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.index-news-list {
  margin-top: 0.4rem;
  display: flex;
  border-radius: 0.2rem;
  overflow: hidden;
}

.index-news-show {
  position: relative;
  flex: 0 0 auto;
  width: 56.25%;
  overflow: hidden;
}
.index-news-show .index-news-img {
  position: absolute;
  inset: 0;
}
.index-news-show .index-news-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news-show .index-news-img:hover img {
  transform: scale(1.06);
}

.index-news-right {
  width: 43.75%;
  height: 100%;
  background: #fff;
  padding: 0.4rem;
}

.index-news-item {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #DADADA;
  cursor: pointer;
}
.index-news-item:last-child {
  border-bottom: 0;
}

.index-news-head {
  display: flex;
  align-items: center;
  height: 0.81rem;
}
.index-news-head .index-news-num {
  flex: 0 0 auto;
  width: 0.48rem;
  font-size: var(--font-size-32);
  font-family: "sscm";
  font-weight: 500;
  line-height: 1;
  color: #CBCBD1;
  transition: color 0.3s ease;
}
.index-news-head .index-news-tit {
  margin-left: 0.32rem;
  font-size: var(--font-size-16);
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.index-news-head .index-news-tit a {
  color: inherit;
}

.index-news-item.active .index-news-head {
  height: auto;
  padding: 0.24rem 0 0;
}
.index-news-item.active .index-news-head .index-news-num {
  color: #093090;
}
.index-news-item.active .index-news-head .index-news-tit {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.index-news-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.index-news-body .index-news-desc {
  margin: 0.16rem 0 0 0.8rem;
  width: 5.4rem;
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.64;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news-body .index-news-date {
  margin: 0.12rem 0 0 0.8rem;
  font-size: var(--font-size-14);
  color: #666;
  letter-spacing: 0.0056rem;
}
.index-news-body .index-news-more {
  margin: 0.22rem 0 0.25rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: var(--font-size-16);
  color: #093090;
}
.index-news-body .index-news-more .iconfont {
  font-size: var(--font-size-14);
}

.index-news-item.active .index-news-body {
  max-height: max(1.7rem, 170px);
  opacity: 1;
}

.index-news-allbtn {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.index-news-allbtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666;
  border-radius: 1rem;
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-16);
  color: #222;
  transition: all 0.3s ease;
}
.index-news-allbtn a:hover {
  background: #093090;
  border-color: #093090;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .index-news-list {
    height: auto;
  }
  .index-news-show {
    display: none;
  }
  .index-news-right {
    width: 100%;
    height: auto;
    padding: 0.2rem 0.3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .index-news-item {
    padding: 0.24rem 0.2rem;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
  }
  .index-news-item:nth-child(2n) {
    border-right: 0;
  }
  .index-news-item:nth-child(n+3) {
    border-bottom: 0;
  }
  .index-news-item .index-news-head,
  .index-news-item.active .index-news-head {
    height: auto;
    padding: 0;
  }
  .index-news-item .index-news-num,
  .index-news-item.active .index-news-num {
    color: #093090;
  }
  .index-news-item .index-news-tit,
  .index-news-item.active .index-news-tit {
    font-size: var(--font-size-18);
    font-family: "sscm";
    font-weight: 500;
    color: #222;
    white-space: normal;
  }
  .index-news-item .index-news-body,
  .index-news-item.active .index-news-body {
    max-height: none;
    opacity: 1;
  }
  .index-news-body .index-news-desc {
    width: 100%;
    margin-left: 0;
  }
  .index-news-body .index-news-date,
  .index-news-body .index-news-more {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .index-news-right {
    grid-template-columns: 1fr;
    padding: 0.1rem 0.24rem;
  }
  .index-news-item {
    border-right: 0;
  }
  .index-news-item:nth-child(n+3) {
    border-bottom: 1px solid #DADADA;
  }
  .index-news-item:last-child {
    border-bottom: 0;
  }
  .index-news-item .index-news-tit,
  .index-news-item.active .index-news-tit {
    font-size: var(--font-size-16);
  }
}
/* 首页 news end */
/* 产品 start */
.page-banner-kuang {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-kuang .banner-title {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-banner-kuang .banner-img {
  height: unset;
}
.page-banner-kuang .banner-img img {
  position: unset;
}
.page-banner-kuang .banner-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-banner-kuang.juzuo .banner-title {
  text-align: left;
}

@media screen and (max-width: 991px) {
  .page-banner-kuang .banner-img {
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    object-fit: cover;
  }
  .page-banner-kuang .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* 产品与应用下拉面板（设计稿 700-1589）*/
.fiexd-div {
  position: fixed;
  width: 100%;
  background-color: #fff;
  left: 0px;
  border-top: max(0.01rem, 1px) solid #DCDDE1;
  top: 100%;
  z-index: 100;
  max-height: 0px;
  padding-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.06);
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.5s, visibility 0.3s, opacity 0.3s ease;
}

.m-muban-mid-right > ul > li:hover .fiexd-div,
.m-muban-mid-right > ul > li:focus-within .fiexd-div {
  max-height: 5rem;
  visibility: visible;
  opacity: 1;
}

.fiexd-mid {
  padding-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.fiexd-mid ul {
  position: relative;
}
.fiexd-mid ul::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  background: #DCDDE1;
  width: max(0.01rem, 1px);
}
.fiexd-mid .fiexd-lv1 {
  width: 3.44rem;
  position: relative;
}
.fiexd-mid .fiexd-lv1 > li {
  padding-right: 0.48rem;
}
.fiexd-mid .fiexd-lv1 > li.on .fiexd-v1-a, .fiexd-mid .fiexd-lv1 > li:hover .fiexd-v1-a {
  background: #F5F5F5;
  color: var(--color-link);
}
.fiexd-mid .fiexd-lv1 > li.on .fiexd-v1-a::before, .fiexd-mid .fiexd-lv1 > li:hover .fiexd-v1-a::before {
  height: 100%;
}
.fiexd-mid .fiexd-lv1 .fiexd-v1-a {
  font-size: var(--font-size-20);
  color: var(--color-text);
  padding: 0.2rem 0.4rem;
  position: relative;
  display: block;
}
.fiexd-mid .fiexd-lv1 .fiexd-v1-a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: max(0.06rem, 6px);
  height: 0%;
  background: var(--color-link);
  transition: height 0.5s;
}
.fiexd-mid .fiexd-lv1 .fiexd-v1-a:hover {
  background: #F5F5F5;
  color: var(--color-link);
}
.fiexd-mid .fiexd-lv1 .fiexd-v1-a:hover::before {
  height: 100%;
}
.fiexd-mid .fiexd-lv2, .fiexd-mid .fiexd-lv3 {
  min-width: auto;
}
.fiexd-mid .fiexd-lv2 li, .fiexd-mid .fiexd-lv3 li {
  padding-left: 0.48rem;
  padding-right: 0.48rem;
}
.fiexd-mid .fiexd-lv2 li:hover a, .fiexd-mid .fiexd-lv2 li.on a, .fiexd-mid .fiexd-lv3 li:hover a, .fiexd-mid .fiexd-lv3 li.on a {
  color: var(--color-link);
}
.fiexd-mid .fiexd-lv2 li:hover a .fiexd-arr, .fiexd-mid .fiexd-lv2 li.on a .fiexd-arr, .fiexd-mid .fiexd-lv3 li:hover a .fiexd-arr, .fiexd-mid .fiexd-lv3 li.on a .fiexd-arr {
  color: var(--color-link);
  opacity: 1;
}
.fiexd-mid .fiexd-lv2 li:hover a::before, .fiexd-mid .fiexd-lv2 li.on a::before, .fiexd-mid .fiexd-lv3 li:hover a::before, .fiexd-mid .fiexd-lv3 li.on a::before {
  width: 100%;
}
.fiexd-mid .fiexd-lv2 a, .fiexd-mid .fiexd-lv3 a {
  width: 2.44rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 0.1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  padding-right: 0.14rem;
  position: relative;
}
.fiexd-mid .fiexd-lv2 a span, .fiexd-mid .fiexd-lv3 a span {
  display: block;
  white-space: nowrap;
  gap: 0.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fiexd-mid .fiexd-lv2 a::before, .fiexd-mid .fiexd-lv3 a::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: max(0.02rem, 2px);
  background: var(--color-vi);
  transition: width 0.5s;
}
.fiexd-mid .fiexd-lv2 a .fiexd-arr, .fiexd-mid .fiexd-lv3 a .fiexd-arr {
  font-size: var(--font-size-18);
  color: var(--color-vi);
  opacity: 0;
  transition: opacity 0.5s;
  font-weight: bold;
  flex-shrink: 0;
}
.fiexd-mid .fiexd-lv4 {
  height: -webkit-fit-content;
  height: fit-content;
}
.fiexd-mid .fiexd-lv4::before {
  display: none;
}
.fiexd-mid .fiexd-lv4 {
  width: 5.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 0.48rem;
  padding-right: 0.48rem;
  gap: 0.33rem;
}
.fiexd-mid .fiexd-lv4 li {
  border: max(0.01rem, 1px) solid #DCDDE1;
  border-radius: 0.1rem;
  text-align: center;
  overflow: hidden;
}
.fiexd-mid .fiexd-lv4 li .fiexd-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: space-between;
  justify-content: space-between;
  flex-direction: column;
}
.fiexd-mid .fiexd-lv4 li .fiexd-card-img {
  width: 1.08rem;
  padding-top: 0.18rem;
  padding-bottom: 0.18rem;
  margin: auto;
}
.fiexd-mid .fiexd-lv4 li .fiexd-card-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-18);
  font-weight: 400;
  padding: 0.14rem 0.16rem;
}
.fiexd-mid .fiexd-lv4 li .fiexd-card-bar span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.fiexd-mid .fiexd-lv4 li .fiexd-card-bar .fiexd-btn {
  flex-shrink: 0;
  width: max(0.2rem, 22px);
  height: max(0.2rem, 22px);
  border-radius: 50%;
  background: #fff;
  color: var(--color-vi);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition: transform 0.5s;
}
.fiexd-mid .fiexd-lv4 li:hover img {
  transform: scale(1.05);
}
.fiexd-mid .fiexd-lv4 li:hover .fiexd-btn {
  transform: rotate(0deg);
}

/* 产品下拉：每个一级只显示自己那一组（data-lv1 对应，JS 切换 on） */
.fiexd-lv2-content > ul.fiexd-lv2,
.fiexd-lv3-content > ul.fiexd-lv3,
.fiexd-lv4-content > ul.fiexd-lv4 {
  display: none;
}
.fiexd-lv2-content > ul.fiexd-lv2.on,
.fiexd-lv3-content > ul.fiexd-lv3.on,
.fiexd-lv4-content > ul.fiexd-lv4.on {
  display: block;
}

.fiexd-lv4-content > ul.fiexd-lv4.on {
  display: grid;
}

/* 第 4 列继续下钻时的列表：沿用三级条目样式，但不要右侧分隔线 */
.fiexd-lv4-content > ul.fiexd-lv4-drill::before {
  display: none;
}