@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. 弹窗组件
   7. 作者组件
   8. 动效工具类
   9. Swiper 轮播库
   10. baguetteBox 灯箱库
   11. 图标字体 iconfont
   12. 自定义字体
   13. 语言切换下拉
   14. 搜索组件
   15. 分页组件
   16. Banner 轮播
   18. 新闻详情页 V2
   19. 相关案例 Swiper
   20. 隐私协议页面
   21. 无障碍 + PageSpeed 优化
   23. 首页 - 与领先者同行（设计稿 693-655）
   24. 首页 - 产品中心手风琴（设计稿 693-743）
   25. 首页 - 最新资讯（设计稿 693-541）
   26. 产品与应用页（设计稿 700-1344）
   27. 新闻列表页（设计稿 833-5323）
   28. 加入我们 - 职位详情（设计稿 833-6542）
   33. 可持续发展页（设计稿 833_5867）
   34. 关于我们页（设计稿 833_4623）
   35. 联系我们 / 分支机构页（设计稿 833_5101）
    ======================================== */
/* ========================================
   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;
}

.padd100 {
  padding: 1rem 0px;
}

.padd50 {
  padding: 0.5rem 0px;
}

@media screen and (max-width: 991px) {
  .padd100 {
    padding: 0.5rem 0px;
  }
}
.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-96: max(0.96rem, 28px);
  --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: max(0.06rem, 6px);
  /* 设置滚动条的宽度 */
}

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

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

.scroll-y::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置滚动条背景的颜色 */
}

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;
  }
}
/* 产品与应用下拉面板（设计稿 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;
}

.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. 弹窗组件 - 结束
   ======================================== */
/* ========================================
   7. 作者组件 - 开始
   ======================================== */
.aut-fxzj a {
  display: block;
  font-size: 0px;
  overflow: hidden;
  border-radius: 50%;
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: #e6e6e6;
}
.aut-fxzj a i {
  font-size: 18px;
  color: #222;
}

.aut-fxzj a:hover {
  background-color: #3ab6ef;
}
.aut-fxzj a:hover i {
  color: #fff;
}

.aut-title {
  font-weight: bold;
  font-size: 42px;
  line-height: 50px;
  color: #161616;
}

.aut-ertitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #3ab6ef;
  margin-top: 22px;
  margin-bottom: 8px;
}

.aut-neirong {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}

.aut-mid-left {
  width: 44%;
}

.aut-mid-right {
  width: 51%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.aut-mid-top {
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row-reverse;
}

.aut-mobile {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 36px;
  color: #222222;
  margin-top: 26px;
  margin-bottom: 11px;
}

.aut-email {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #222222;
}
.aut-email a {
  color: #3ab6ef;
}

.aut-fxzj {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.aut-fxzj a {
  margin-right: 17px;
}

.author-list-img {
  display: block;
  font-size: 0px;
  overflow: hidden;
}
.author-list-img img:hover {
  transform: scale(1.1);
}

.author-list-bottom {
  padding: 30px;
}

.author-list-bottom-title {
  font-size: 22px;
  line-height: 32px;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.author-list-bottom-nr {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-list-div {
  width: 32%;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 2%;
  background: #fff;
  margin-bottom: 34px;
}
.author-list-div a:hover {
  color: #ffdf00;
}

.author-list-div.nomargin {
  margin-left: 0px;
}

.author-list {
  margin-top: 89px;
  display: flex;
  align-items: initial;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 1280px) {
  .author-list-bottom {
    padding: 20px;
  }
}
@media screen and (max-width: 999px) {
  .book-title {
    margin-top: 10px;
  }
  .aut-mid-top {
    flex-wrap: wrap;
  }
  .aut-mid-right,
  .aut-mid-left {
    width: 100%;
    margin-bottom: 10px;
  }
  .author-list,
  .aut-mid-top {
    margin-top: 20px;
  }
  .author-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .author-list-div {
    width: 49%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .aut-title {
    font-size: 30px;
    line-height: 36px;
  }
  .aut-ertitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .aut-neirong {
    font-size: 14px;
  }
  .aut-mobile,
  .aut-email {
    font-size: 18px;
  }
  .aut-mobile {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .book-title {
    font-size: 14px;
    padding: 10px;
  }
  .author-list-bottom-title {
    font-size: 18px;
    line-height: 24px;
  }
  .author-list-bottom-nr {
    font-size: 14px;
    line-height: 24px;
    margin-top: 4px;
  }
  .author-list-bottom {
    padding: 10px;
  }
  .author-list-div {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .author-list-div {
    width: 100%;
  }
}
/* ========================================
   7. 作者组件 - 结束
   ======================================== */
/* ========================================
   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 轮播库 - 结束
   ======================================== */
/* ========================================
   12. baguetteBox 灯箱库 - 开始
   ======================================== */
/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.12.0
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight 0.4s ease-out;
  animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  animation: bounceFromLeft 0.4s ease-out;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button,
.baguetteBox-button#next-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
/* ========================================
   12. baguetteBox 灯箱库 - 结束
   ======================================== */
/* ========================================
   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: 0.1rem;
  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 .iconfont {
  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: 0.1rem;
  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: 0.1rem;
  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: calc(4% + 50px);
  }
  .sousuo i {
    font-size: 28px;
  }
}
.duoyuyanphone {
  width: 90%;
  margin: auto;
  margin-top: 0.2rem;
  font-size: var(--font-size-20);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  color: #fff;
}
.duoyuyanphone a, .duoyuyanphone p {
  border-radius: 0.2rem;
  padding: 0.04rem 0.2rem;
}
.duoyuyanphone .active {
  background: #fff;
  color: var(--color-link);
}
.duoyuyanphone a:hover {
  background: #fff;
  color: var(--color-link);
}

/* ========================================
   16. 搜索组件 - 结束
   ======================================== */
/* ========================================
   17. 分页组件 - 开始
   ======================================== */
.m-muban-pagebox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.m-muban-pagebox .m-muban-next,
.m-muban-pagebox .m-muban-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-muban-pagebox .m-muban-next i,
.m-muban-pagebox .m-muban-prev i {
  font-size: var(--font-size-16);
}

.m-muban-pagebox a,
.m-muban-pagebox p,
.m-muban-pagebox span {
  width: max(0.42rem, 30px);
  height: max(0.42rem, 30px);
  display: block;
  text-align: center;
  font-size: var(--font-size-20);
  color: var(--color-gary);
  margin: max(0.04rem, 4px);
  border-radius: max(0.05rem, 5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-muban-pagebox a:hover,
.m-muban-pagebox a.active {
  background: var(--color-link);
  color: #fff;
  border-color: var(--color-link);
}

.m-muban-pagebox a.no:hover {
  background: unset;
  color: unset;
  cursor: auto;
}

.m-muban-pagenum {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-muban-pagenum a {
  margin-left: 1%;
  margin-right: 1%;
}

@media screen and (max-width: 999px) {
  .m-muban-pagebox a,
  .m-muban-pagebox p,
  .m-muban-pagebox span {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    line-height: 28px;
  }
  .m-muban-pagebox {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
    justify-content: center;
  }
}
/* ========================================
   17. 分页组件 - 结束
   ======================================== */
/* ========================================
   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);
  font-family: "sscm";
  font-weight: normal;
}

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

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

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

.text32 {
  font-size: var(--font-size-32);
}

.textbox {
  text-shadow: 0 6px 40px rgba(11, 27, 49, 0.5);
}

.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 轮播 - 结束
   ======================================== */
.nd-wrap-mid {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.nd-main {
  flex: 0 0 auto;
  width: 11.31rem;
  background: #fff;
  overflow: hidden;
}

.nd-title {
  font-size: var(--font-size-40);
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

.nd-date {
  margin-top: 0.15rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid #DCDDE1;
  font-size: var(--font-size-18);
  color: #666;
}

.nd-body {
  margin-top: 0.3rem;
}
.nd-body p {
  font-size: var(--font-size-20);
  line-height: 1.8;
  color: #222;
}
.nd-body img {
  display: inline-block;
}

.nd-side {
  flex: 1 1 auto;
  min-width: 0;
}

.annnu-gd.jtblue {
  border-color: var(--color-link);
  border-width: max(0.01rem, 1px);
  font-weight: bold;
}
.annnu-gd.jtblue .iconfont {
  color: var(--color-link);
  text-shadow: none;
  font-weight: bold;
}
.annnu-gd.jtblue p {
  color: var(--color-link);
  text-shadow: none;
}
.annnu-gd.jtblue:hover .iconfont,
.annnu-gd.jtblue:hover p {
  color: #fff;
}

.nd-rel {
  background: #fff;
}

.nd-rel-head {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.1rem;
  font-size: var(--font-size-24);
  position: relative;
  padding-left: max(0.12rem, 12px);
}
.nd-rel-head::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: var(--color-vi);
  width: max(0.04rem, 4px);
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
}

.nd-rel-title {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.nd-rel-item {
  display: flex;
  gap: 0.12rem;
  padding: 0.2rem 0;
  border-bottom: 1px dotted #DCDDE1;
  text-decoration: none;
}
.nd-rel-item:last-child {
  border-bottom: 0;
}

.nd-rel-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.nd-rel-name {
  font-size: var(--font-size-18);
  line-height: 1.5;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  width: 100%;
}

.nd-rel-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.06rem;
  margin-top: 0.1rem;
  font-size: var(--font-size-14);
  color: #666;
}
.nd-rel-date .iconfont {
  font-size: var(--font-size-12);
}

.nd-rel-pic {
  flex: 0 0 auto;
  width: 1.28rem;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nd-rel-item:hover .nd-rel-name {
  color: #093090;
}
.nd-rel-item:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 1280px) {
  .nd-wrap-mid {
    flex-direction: column;
  }
  .nd-main {
    width: 100%;
  }
  .nd-side {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .nd-wrap-mid {
    margin-top: 0.5rem;
  }
  .nd-title {
    font-size: var(--font-size-24);
  }
  .nd-body p {
    font-size: var(--font-size-16);
  }
  .nd-rel {
    padding: 0.3rem 0.15rem 0.1rem;
  }
}
/* ========================================
   19. 新闻详情页（设计稿 833-5493）- 结束
   ======================================== */
/* ========================================
   20. 隐私协议页面 - 开始
   ======================================== */
.privacy-s1 {
  padding-top: 0.6rem;
  padding-bottom: 1rem;
}

.privacy-content {
  background: #fff;
  border-radius: 8px;
  padding: 0.6rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.privacy-title {
  font-size: var(--font-size-40);
  color: var(--color-text);
  font-family: var(--font-bold);
  text-align: center;
  margin-bottom: 0.12rem;
}

.privacy-update {
  font-size: var(--font-size-14);
  color: #999;
  text-align: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #eee;
}

.privacy-section {
  margin-bottom: 0.4rem;
}
.privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section h2 {
  font-size: var(--font-size-24);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.2rem;
  padding-top: 0.1rem;
}
.privacy-section p {
  font-size: var(--font-size-16);
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.15rem;
}
.privacy-section ul {
  margin-bottom: 0.15rem;
  padding-left: 0.3rem;
}
.privacy-section ul li {
  font-size: var(--font-size-16);
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.08rem;
  list-style: disc;
}
.privacy-section ul li strong {
  color: var(--color-text);
}

@media screen and (max-width: 991px) {
  .privacy-s1 {
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .privacy-content {
    padding: 0.4rem;
  }
  .privacy-title {
    font-size: var(--font-size-32);
  }
}
@media screen and (max-width: 768px) {
  .privacy-s1 {
    padding-top: 0.3rem;
    padding-bottom: 0.5rem;
  }
  .privacy-content {
    padding: 0.3rem;
    border-radius: 6px;
  }
  .privacy-title {
    font-size: var(--font-size-28);
  }
  .privacy-section h2 {
    font-size: var(--font-size-20);
  }
  .privacy-section p,
  .privacy-section ul li {
    font-size: var(--font-size-14);
  }
}
/* ========================================
   20. 隐私协议页面 - 结束
   ======================================== */
/* ========================================
   21. 联系我们页面 - 开始
   ======================================== */
.contactus-s1 {
  padding: 0.6rem 0;
}

.contactus-s1-mid {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: space-between;
}

/* ---- 左侧联系方式 ---- */
.contactus-s1-left {
  width: 5.9rem;
}

.contactus-s1-title {
  font-size: var(--font-size-48);
  color: var(--color-text);
  font-family: var(--font-bold);
  margin-bottom: 0.4rem;
}

.contactus-s1-item {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  margin: 0.3rem 0px;
}
.contactus-s1-item a:hover {
  color: var(--color-link);
}

.contactus-s1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.52rem, 42px);
  height: max(0.52rem, 42px);
  border-radius: 50%;
  background: #F4F7FA;
  flex-shrink: 0;
  padding: max(0.1rem, 10px);
}
.contactus-s1-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contactus-s1-info {
  flex: 1;
  border-bottom: max(0.01rem, 1px) solid #EAEAEA;
  padding-bottom: 0.16rem;
}

.contactus-s1-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  row-gap: 0.2rem;
}

.contactus-s1-label {
  font-size: var(--font-size-18);
  color: var(--color-vi);
  margin-bottom: 0.1rem;
}

.contactus-s1-val {
  font-size: var(--font-size-18);
  color: var(--color-666);
}

/* ---- 右侧在线留言 ---- */
.contactus-s1-right {
  width: 8.8rem;
  background: #fff;
  border-radius: max(0.1rem, 10px);
  box-shadow: 0px 4px 25px 0px rgba(196, 196, 196, 0.3);
  padding: 0.3rem 0.6rem;
}

.contactus-s1-form-title {
  font-size: var(--font-size-24);
  color: var(--color-text);
  margin-bottom: 0.24rem;
}

.contactus-s1-form-row {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.contactus-s1-form-group {
  flex: 1;
}
.contactus-s1-form-group.full {
  margin-bottom: 0.2rem;
}
.contactus-s1-form-group input,
.contactus-s1-form-group textarea {
  width: 100%;
  border: 1px solid #F5F5F5;
  border-radius: max(0.04rem, 4px);
  padding: 0.14rem 0.16rem;
  height: max(0.66rem, 40px);
  font-size: var(--font-size-14);
  color: var(--color-text);
  background: #F5F5F5;
  outline: none;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.contactus-s1-form-group input:focus,
.contactus-s1-form-group textarea:focus {
  border-color: var(--color-link);
}
.contactus-s1-form-group input::-webkit-input-placeholder,
.contactus-s1-form-group textarea::-webkit-input-placeholder {
  color: #aaa;
  font-size: var(--font-size-18);
  font-family: "arial";
}
.contactus-s1-form-group input::-moz-placeholder,
.contactus-s1-form-group textarea::-moz-placeholder {
  color: #aaa;
  font-size: var(--font-size-18);
  font-family: "arial";
}
.contactus-s1-form-group input:-ms-input-placeholder,
.contactus-s1-form-group textarea:-ms-input-placeholder {
  color: #aaa;
  font-size: var(--font-size-18);
  font-family: "arial";
}
.contactus-s1-form-group textarea {
  height: max(1.5rem, 100px);
  resize: vertical;
}

.contactus-s1-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.4rem;
  min-width: 2.6rem;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-24);
  border: none;
  border-radius: max(0.04rem, 4px);
  cursor: pointer;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.contactus-s1-submit:hover {
  background: var(--color-vi);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

/* ---- 响应式 ---- */
@media screen and (max-width: 991px) {
  .contactus-s1-mid {
    flex-direction: column;
  }
  .contactus-s1-right {
    padding: 0.2rem;
  }
  .contactus-s1-right,
  .contactus-s1-left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactus-s1 {
    padding: 0.3rem 0;
  }
  .contactus-s1-form-row {
    flex-direction: column;
    gap: 0;
  }
  .contactus-s1-form-group {
    margin-bottom: 0.2rem;
  }
}
.map-mid {
  position: relative;
  aspect-ratio: 2/0.7;
}
.map-mid iframe,
.map-mid img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .map-mid {
    aspect-ratio: 9/16;
  }
}
/* ========================================
   21. 联系我们页面 - 结束
   ======================================== */
/* ========================================
   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;
  text-shadow: 0 6px 40px rgba(11, 27, 49, 0.5);
}
.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;
  }
  .page-banner-kuang img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.pro-nav-mid {
  background: #fff;
  border-radius: 0.25rem 0.25rem 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-mid {
  background: #fafafa;
}

.pro-nav-kuang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.95rem;
}

.pro-nav-tabs {
  display: flex;
  height: 100%;
  padding-left: 0rem;
  gap: 0.7rem;
}

.pro-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  height: 100%;
  font-size: var(--font-size-18);
  color: #666;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.pro-nav-item .iconfont {
  font-size: var(--font-size-24);
  font-weight: 500;
  transition: transform 0.3s ease;
}
.pro-nav-item::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 0;
  height: 0.03rem;
  background: var(--color-vi);
  opacity: 1;
  transition: width 0.5s;
}
.pro-nav-item .pro-nav-drop {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: max(1.8rem, 140px);
  padding: 0.08rem 0;
  background: #fff;
  border-radius: 0 0 0.08rem 0.08rem;
  box-shadow: 0 0.12rem 0.3rem rgba(10, 38, 85, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 5;
}
.pro-nav-item .pro-nav-drop a {
  display: block;
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-16);
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
.pro-nav-item .pro-nav-drop a:hover {
  color: #093090;
  background: #F4F7FB;
}
@media screen and (min-width: 992px) {
  .pro-nav-item:hover, .pro-nav-item:focus-within {
    color: #093090;
  }
  .pro-nav-item:hover .iconfont, .pro-nav-item:focus-within .iconfont {
    transform: rotate(180deg);
  }
  .pro-nav-item:hover .pro-nav-drop, .pro-nav-item:focus-within .pro-nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.pro-nav-item.open {
  color: #093090;
}
.pro-nav-item.open .iconfont {
  transform: rotate(180deg);
}
.pro-nav-item.open .pro-nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pro-nav-item.active, .pro-nav-item:hover {
  color: #093090;
}
.pro-nav-item.active::after, .pro-nav-item:hover::after {
  width: 80%;
}

.pro-nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: var(--color-vi);
  border-radius: 1rem;
  color: #fff;
  font-size: var(--font-size-16);
  text-decoration: none;
  transition: background 0.3s ease;
  padding: 0.1rem 0.2rem;
}
.pro-nav-contact p {
  color: #fff;
}
.pro-nav-contact img {
  width: max(0.18rem, 14px);
  height: max(0.18rem, 14px);
  position: relative;
  top: 0.02rem;
}
.pro-nav-contact:hover {
  background: var(--color-link);
}

.pro-group {
  margin-bottom: 0.8rem;
}

.pro-group-title {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  font-size: var(--font-size-36);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.pro-group-icon {
  width: max(0.4rem, 30px);
}

.pro-card-list {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.19rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pro-card {
  position: relative;
  display: block;
  min-height: 4.55rem;
  border-radius: max(0.08rem, 8px);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}
.pro-card .pro-card-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-card .pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-card:hover .pro-card-more {
  background: var(--color-link);
  color: #fff;
  transform: rotate(-90deg);
}
.pro-card:hover img {
  transform: scale(1.05);
}

.pro-card-more {
  position: absolute;
  top: 0.5rem;
  right: 0.35rem;
  width: max(0.56rem, 32px);
  height: max(0.56rem, 32px);
  padding: 0.1rem;
  transform: rotate(0deg);
  border: max(0.02rem, 2px) solid var(--color-link);
  border-radius: 50%;
  line-height: 1;
  color: var(--color-link);
  transition: transform 0.5s;
}

.pro-card-info {
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}

.pro-card-name {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.pro-card-en {
  margin-top: 0.1rem;
  font-size: var(--font-size-16);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #093090;
}

@media screen and (max-width: 991px) {
  .pro-nav-mid {
    border-radius: 0.12rem 0.12rem 0 0;
  }
  .pro-nav-kuang {
    height: auto;
    flex-wrap: wrap;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .pro-nav-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .pro-nav-tabs {
    height: auto;
    flex-wrap: wrap;
    gap: 0 0.3rem;
  }
  .pro-nav-contact {
    margin-left: auto;
  }
  .pro-card-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .pro-card {
    min-height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .pro-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pro-cta-mid {
  position: relative;
  min-height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.pro-cta-mid .pro-cta-img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-cta-mid .pro-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-cta-mid .annnu-gd {
  margin-top: 1rem;
}
.pro-cta-mid:hover img {
  transform: scale(1.05);
}

.pro-cta-txt {
  position: relative;
  z-index: 1;
}

.pro-cta-kuang {
  padding: 0.2rem;
}

.pro-cta-title {
  font-size: var(--font-size-48);
  font-family: "sscm";
  font-weight: 500;
  color: #fff;
}

.pro-cta-sub {
  margin-top: 0.18rem;
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #fff;
}

/* 产品 end */
.nl-tabs {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border-bottom: 1px solid #EEF1F5;
  box-shadow: 0 0.06rem 0.2rem -0.16rem rgba(10, 38, 85, 0.4);
}

.nl-tabs-kuang {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}

.nl-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-18);
  padding-top: max(0.2rem, 16px);
  padding-bottom: max(0.2rem, 16px);
  padding-right: 0.48rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nl-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: max(0.03rem, 3px);
  background: #3C6FE3;
  width: 0px;
  transition: width 0.5s;
}
.nl-tab:hover, .nl-tab.active {
  color: #093090;
}
.nl-tab:hover::after, .nl-tab.active::after {
  width: calc(100% - 0.48rem);
}

.nl-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.26rem 0.2rem;
  margin-top: 0.6rem;
}

.nl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  box-shadow: 0 0.02rem 0.5rem rgba(0, 74, 132, 0.11);
  text-decoration: none;
  -webkit-filter: drop-shadow(1px 2px 60.6px rgba(0, 74, 132, 0.11));
          filter: drop-shadow(1px 2px 60.6px rgba(0, 74, 132, 0.11));
}
.nl-card:hover img {
  transform: scale(1.05);
}

.nl-card-pic {
  width: 100%;
  aspect-ratio: 52/30;
  overflow: hidden;
}
.nl-card-pic img, .nl-card-pic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-card-body {
  padding: 0.3rem 0.28rem;
}

.nl-card-date {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  font-size: var(--font-size-14);
  color: #666;
}
.nl-card-date .iconfont {
  font-size: var(--font-size-12);
}

.nl-card-tit {
  margin-top: 0.14rem;
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  line-height: 1.35;
  color: #222;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: max(0.64rem, 44px);
}

.nl-card-desc {
  margin-top: 0.14rem;
  font-size: var(--font-size-18);
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-card-more {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: auto;
  font-size: var(--font-size-20);
  color: #666;
  margin-top: 0.24rem;
}

.nl-card::after {
  content: "";
  position: absolute;
  bottom: 0px;
  background: #3C6FE3;
  height: max(0.03rem, 3px);
  width: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nl-card:hover .nl-card-tit {
  color: #093090;
}
.nl-card:hover::after {
  width: 85%;
}

@media screen and (max-width: 991px) {
  .nl-list {
    margin-top: 0.5rem;
  }
  .nl-card-more {
    align-items: flex-end;
  }
  .nl-card-more .iconfont {
    position: relative;
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .nl-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .nl-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* crumbs start */
.crumbs-mid {
  font-size: var(--font-size-16);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  color: #666;
}
.crumbs-mid a:hover {
  color: var(--color-link);
}
.crumbs-mid.active {
  background: #F1F6FD;
}

/* crumbs end */
/* 产品 start */
.pro-xq-title {
  font-size: var(--font-size-36);
  position: relative;
  padding-left: max(0.16rem, 16px);
}
.pro-xq-title::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: max(0.04rem, 4px);
  height: 60%;
  background: var(--color-vi);
}

.pro-xq-text {
  font-size: var(--font-size-20);
  color: var(--color-text);
  margin-top: 0.1rem;
  line-height: 1.8;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.pro-xq-text p {
  color: var(--color-text);
}

.pro-xq-s1-kuang {
  margin-bottom: 0.6rem;
}

.pro-xq-s1-mid {
  margin-top: 0.4rem;
}

.pro-xq-text-right {
  font-size: var(--font-size-20);
  padding: 0.08rem 0.2rem;
  background: var(--color-vi);
  color: #fff;
  gap: 0.1rem;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.pro-xq-text-right .iconfont {
  font-size: var(--font-size-20);
  transition: transform 0.3s ease;
}
.pro-xq-text-right {
  display: inline-flex;
}
.pro-xq-text-right .pro-xq-more-drop {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 3.38rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.12rem 0.3rem rgba(10, 38, 85, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 5;
}
.pro-xq-text-right .pro-xq-more-drop a {
  display: block;
  padding: 0.34rem 0.3rem;
  font-size: var(--font-size-18);
  color: #666;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  transition: color 0.3s ease, background 0.3s ease;
  border-bottom: max(0.01rem, 1px) dotted rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.1rem;
}
.pro-xq-text-right .pro-xq-more-drop a:last-child {
  border-bottom: 0px;
}
.pro-xq-text-right .pro-xq-more-drop a:hover {
  color: var(--color-vi);
  background: #EFF6FF;
}
.pro-xq-text-right .pro-xq-more-drop a:hover svg {
  transform: rotate(-90deg);
}
.pro-xq-text-right .pro-xq-more-drop a svg {
  width: max(0.22rem, 18px);
  transition: transform 0.5s;
}
@media screen and (min-width: 992px) {
  .pro-xq-text-right:hover .iconfont {
    transform: rotate(180deg);
  }
  .pro-xq-text-right:hover .pro-xq-more-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.pro-xq-text-right.open .iconfont {
  transform: rotate(180deg);
}
.pro-xq-text-right.open .pro-xq-more-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pro-xq-text-right p {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .pro-xq-text-right .pro-xq-more-drop {
    left: 0px;
    right: auto;
  }
}
.pro-xq-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 500px;
  margin-top: 0.5rem;
}
.pro-xq-table th {
  font-size: var(--font-size-24);
  color: #093090;
  border-top: 1px solid #3C6FE3;
  border-bottom: 1px solid #3C6FE3;
  padding: 0.4rem 0.5rem;
  font-weight: 400;
}
.pro-xq-table tbody tr td {
  font-size: var(--font-size-18);
  color: #222;
  line-height: 1.6;
  padding: 0.2rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.pro-xq-table th:nth-child(1),
.pro-xq-table td:nth-child(1) {
  width: max(1.8rem, 130px);
}
.pro-xq-table th:nth-child(2),
.pro-xq-table td:nth-child(2) {
  width: max(3rem, 200px);
}
.pro-xq-table th:nth-child(3),
.pro-xq-table td:nth-child(3) {
  width: max(1.7rem, 100px);
}
.pro-xq-table th:nth-child(4),
.pro-xq-table td:nth-child(4) {
  width: max(2.2rem, 180px);
}
.pro-xq-table th:nth-child(5),
.pro-xq-table td:nth-child(5) {
  width: max(1rem, 100px);
}
.pro-xq-table tbody tr {
  background: #fff;
  border-bottom: 1px solid rgba(60, 111, 227, 0.2);
  transition: background 0.3s ease;
}
.pro-xq-table tbody tr:hover {
  background: #EFF6FF;
}
.pro-xq-table tbody tr:hover .pro-xq-row-dl {
  background: #3C6FE3;
  color: #fff;
}

.pro-xq-row-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.08rem 0.16rem;
  padding-right: 0.2rem;
  background: #F0F0F0;
  color: #093090;
  font-size: var(--font-size-16);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.pro-xq-row-dl:hover {
  background: #093090;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .pro-xq-table table {
    min-width: 700px;
  }
  .pro-xq-table table tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* ========================================
   30. 投资者关系页（设计稿 833_4956 1:1 还原，1920 基准 1px=0.01rem）
   ======================================== */
.inv-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.inv-banner-img {
  position: relative;
  max-width: 100%;
  min-height: 300px;
  margin: 0 auto;
}
.inv-banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inv-banner-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.4rem;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.inv-banner-inner .banner-text {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  position: unset;
  transform: none;
}
.inv-banner-inner .banner-text ul {
  margin-top: 0.7rem;
}
.inv-banner-inner .banner-text li {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  font-family: "ssb";
  font-size: var(--font-size-32);
  line-height: 1;
  margin-bottom: 0.31rem;
}
.inv-banner-inner .banner-text li:last-child {
  margin-bottom: 0;
}
.inv-banner-inner .banner-text li p {
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.inv-banner-inner .banner-text li a:hover {
  text-decoration: underline;
}

.inv-ico {
  flex: none;
  display: flex;
  width: max(0.46rem, 30px);
  height: max(0.46rem, 30px);
}
.inv-ico img {
  width: 100%;
  height: 100%;
}

.inv-stock-card {
  width: auto;
  margin: 0;
  padding: 0.43rem 0.27rem;
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid #EEF1F5;
  outline-offset: -1px;
  box-shadow: 0 0.18rem 0.5rem -0.38rem rgba(10, 38, 85, 0.4);
  color: #fff;
  font-family: "sscm";
  transition: transform 0.5s;
}
.inv-stock-card p {
  margin: 0;
  font-size: var(--font-size-36);
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
}
.inv-stock-card p strong {
  font-weight: normal;
  color: #fff;
}
.inv-stock-card p + p {
  margin-top: 0.12rem;
}
.inv-stock-card:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 991px) {
  .inv-banner-inner {
    position: relative;
    left: 0px;
    transform: none;
    z-index: 2;
    flex-wrap: wrap;
    padding-top: 70px;
    padding-bottom: 0.4rem;
  }
  .inv-banner-img picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .inv-banner-inner .banner-text li,
  .inv-stock-card p {
    font-size: var(--font-size-20);
  }
}
.inv-mid {
  background: #fff;
  padding-bottom: 1rem;
}

.inv-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
  padding-top: 0.8rem;
}

.inv-card {
  position: relative;
  display: block;
  min-height: 3.8rem;
  overflow: hidden;
  background: #E8E8E8;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}
.inv-card .inv-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.inv-card .inv-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.inv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1A3991 0%, rgba(26, 57, 145, 0) 100%);
  pointer-events: none;
}
.inv-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.inv-card .inv-card-txt {
  position: relative;
  z-index: 2;
  padding: 0.6rem 0.54rem;
}
.inv-card .inv-card-title {
  margin: 0;
  color: #fff;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-40);
  line-height: 1.2;
}
.inv-card .inv-card-sub {
  margin: 0;
  margin-top: 0.15rem;
  color: #fff;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.4;
}
.inv-card:hover .inv-card-img img {
  transform: scale(1.08);
}

.inv-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  margin-top: 0.7rem;
  padding: 0.2rem 0.32rem;
  border: 1px solid #fff;
  color: #fff;
  font-family: "sscm";
  font-size: var(--font-size-20);
  line-height: 1;
  transition: all 0.3s ease;
}
.inv-card-more em {
  display: flex;
}
.inv-card-more img {
  display: block;
  width: 0.1rem;
  height: 0.16rem;
}
.inv-card-more:hover {
  background: rgba(255, 255, 255, 0.12);
}
.inv-card-more.annnu-gd {
  background: transparent;
}

@media screen and (max-width: 520px) {
  .inv-card-list {
    padding-top: 0.4rem;
    grid-template-columns: 1fr;
  }
}
/* ========================================
   31. 加入我们页（设计稿 833_6294 1:1 还原，1920 基准 1px=0.01rem）
   ======================================== */
.join-s1 {
  padding-top: 0.6rem;
  padding-bottom: 0.97rem;
}

.join-s1-kuang .ty-top-title {
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-60);
  line-height: 1;
}
.join-s1-kuang .ty-top-ertitle {
  margin-top: 0.24rem;
  font-size: var(--font-size-20);
}

.join-s1-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0.71rem;
}

.join-s1-item {
  flex: none;
}
.join-s1-item:nth-child(2n) {
  margin-top: 1.35rem;
}

.join-s1-pic {
  position: relative;
  width: 2.36rem;
  height: 4.34rem;
  background: #DCDDE1;
  overflow: hidden;
  transition: transform 0.5s;
  overflow: hidden;
}
.join-s1-pic > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-s1-pic:hover img {
  transform: scale(1.05);
}
.join-s1-pic:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.join-s1-name {
  margin-top: 0.24rem;
  text-align: center;
  font-family: "sscr";
  font-size: var(--font-size-24);
  color: #222222;
}

.join-s1-ico {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.join-s1-ico img {
  width: max(0.76rem, 50px);
}

.join-s2 {
  padding-top: 0.86rem;
}

.join-s2-filter {
  display: flex;
  align-items: center;
  margin-top: 0.7rem;
}

.join-filter-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max(2.2rem, 160px);
  padding: 0.2rem 0.24rem;
  border: 1px solid #DCDDE1;
  border-radius: 0.08rem;
  cursor: pointer;
  font-family: "sscr";
  font-size: var(--font-size-20);
  color: #999999;
  margin-right: 0.24rem;
}

.join-filter-txt {
  margin: 0;
  font-family: "sscr";
  font-size: var(--font-size-20);
  color: #999999;
}

.join-filter-on .join-filter-txt {
  color: #222222;
}

.join-filter-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.16rem, 16px);
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.join-filter-ico img {
  width: 100%;
}

.join-filter-item.open .join-filter-ico {
  transform: rotate(0deg);
}

.join-filter-drop {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 20;
  width: 100%;
  max-height: 3.2rem;
  overflow-y: auto;
  margin-top: 0.06rem;
  background: #fff;
  border: 1px solid #DCDDE1;
  border-radius: 0.08rem;
  box-shadow: 0 0.12rem 0.3rem -0.18rem rgba(10, 38, 85, 0.4);
}

.join-filter-item.open .join-filter-drop {
  display: block;
}

.join-filter-opt {
  margin: 0;
  padding: 0.12rem 0.25rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.join-filter-opt:hover {
  color: #093090;
  background: #F5F7FA;
}

.join-filter-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 4.46rem;
  padding: 0.2rem 0px;
  margin-left: auto;
  border: 1px solid #DCDDE1;
  border-radius: 0.08rem;
}
.join-filter-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  height: 100%;
  width: 100%;
  outline: none;
  background: transparent;
  font-family: "sscr";
  font-size: var(--font-size-20);
  color: #222222;
  padding-left: 0.24rem;
}
.join-filter-search input::-webkit-input-placeholder {
  color: #999999;
}
.join-filter-search input:-ms-input-placeholder {
  color: #999999;
}
.join-filter-search input::placeholder {
  color: #999999;
}
.join-filter-search button {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.6rem, 30px);
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}
.join-filter-search .join-filter-ico {
  width: max(0.24rem, 20px);
}

.join-s2-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem 0.2rem;
  margin-top: 0.24rem;
}

.join-job {
  display: flex;
  flex-direction: column;
  min-height: 3.64rem;
  padding-top: 0.34rem;
  padding-bottom: 0.5rem;
  padding-left: 0.22rem;
  padding-right: 0.22rem;
  border: 1px solid #DCDDE1;
  border-radius: 0.08rem;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.join-job:hover {
  box-shadow: 0 0.1rem 0.3rem -0.2rem rgba(10, 38, 85, 0.4);
}

.join-job-name {
  font-family: "sscr";
  font-weight: normal;
  font-size: var(--font-size-28);
  color: #222222;
}

.join-job-meta {
  display: flex;
  align-items: center;
  margin-top: 0.13rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  color: #666666;
}

.join-job-line {
  flex: none;
  width: 1px;
  height: 0.18rem;
  margin: 0 0.08rem;
  background: currentColor;
  opacity: 0.6;
}

.join-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem;
  margin-top: 0.26rem;
}

.join-job-tag {
  display: flex;
  align-items: center;
  padding: 0.08rem 0.15rem;
  border: 1px solid #DCDDE1;
  border-radius: 0.08rem;
  font-family: "sscr";
  font-size: var(--font-size-16);
  color: #666666;
}

.join-job-more {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.6rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  color: #093090;
}
.join-job-more .iconfont {
  font-size: var(--font-size-14);
  font-weight: bold;
  color: var(--color-link);
}

.join-job:hover {
  background: #093090;
  border-color: #093090;
}
.join-job:hover .join-job-name,
.join-job:hover .join-job-meta,
.join-job:hover .join-job-more,
.join-job:hover .iconfont {
  color: #fff;
}
.join-job:hover .join-job-tag {
  color: #fff;
  border-color: #fff;
}

.join-s3 {
  padding-bottom: 0.05rem;
}

.join-s3-kuang {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.join-channel {
  display: flex;
  align-items: center;
  padding: 0.1rem 0.2rem;
  border: 1px solid #DCDDE1;
  border-radius: max(0.08rem, 8px);
  background: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.join-channel:hover {
  transform: translateY(-8px);
}

.join-channel-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.67rem;
  height: 0.67rem;
}
.join-channel-logo img {
  width: 100%;
}

.join-channel-txt {
  margin-left: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  width: 100%;
}

.join-channel-txt-right {
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.24rem, 24px);
  height: max(0.24rem, 24px);
  background: #D2D2D2;
  color: #fff;
  padding: 0.03rem;
}

.join-channel-name {
  font-family: "sscm";
  font-size: var(--font-size-24);
  color: #222222;
}

.join-channel-desc {
  margin-top: 0.05rem;
  font-family: "sscr";
  font-size: var(--font-size-16);
  color: #666666;
}

@media screen and (max-width: 991px) {
  .join-s1-list {
    gap: 0.2rem;
  }
  .join-s2-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .join-s1-list {
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
  .join-s1-list .join-s1-item,
  .join-s1-list .join-s1-pic {
    width: 100%;
    height: auto;
  }
  .join-s1-item:nth-child(2n) {
    margin-top: 0px;
  }
  .join-s2-filter {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
  }
  .join-filter-item {
    width: 49%;
    margin: 0px;
  }
  .join-filter-search {
    width: 100%;
  }
  .join-s2-list {
    grid-template-columns: 1fr;
  }
  .join-s3-kuang {
    flex-direction: column;
    gap: 0.16rem;
  }
  .join-filter-item {
    width: 49%;
  }
}
.join-xq-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.24rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.join-xq-main {
  flex: 0 0 auto;
  width: 11.78rem;
  background: #fff;
  box-shadow: 0 0.04rem 0.18rem rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.45rem 0.8rem;
}

.join-xq-title {
  font-size: var(--font-size-40);
  font-family: "Source Han Serif SC", "Noto Serif SC", "SimSun", serif;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

.join-xq-sep {
  flex: none;
  display: block;
  width: 1px;
  height: 0.18rem;
  background: #666;
}

.join-xq-meta {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.12rem;
  font-size: var(--font-size-18);
  color: #666;
}

.join-xq-deadline {
  margin-top: 0.35rem;
  padding-bottom: 0.21rem;
  border-bottom: 1px solid #DCDDE1;
  font-size: var(--font-size-18);
  color: #666;
}

.join-xq-sec {
  margin-top: 0.32rem;
}

.join-xq-sec-title {
  font-size: var(--font-size-24);
  font-family: "sscm";
  font-weight: 500;
  color: #222;
}

.join-xq-sec-text {
  margin-top: 0.12rem;
  font-size: var(--font-size-18);
  line-height: 1.8;
  color: #666;
}

.join-xq-apply {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  width: 1.69rem;
  height: 0.64rem;
  outline: 1px solid #093090;
  outline-offset: -1px;
  background: #fff;
  color: #093090;
  font-size: var(--font-size-20);
  font-family: "sscm";
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.join-xq-apply:hover {
  background: #093090;
  color: #fff;
}

.join-xq-ico {
  flex: none;
  display: flex;
}
.join-xq-ico img {
  width: 0.16rem;
  height: 0.16rem;
}

.join-xq-side {
  flex: 1 1 auto;
  min-width: 0;
}

.join-xq-rel {
  background: #fff;
  box-shadow: 0 0.04rem 0.18rem rgba(0, 0, 0, 0.12);
  padding: 0.45rem 0.32rem 0.3rem;
}

.join-xq-rel-item {
  display: block;
  padding: 0.12rem 0 0.28rem;
  border-bottom: 1px dotted #DCDDE1;
  text-decoration: none;
}
.join-xq-rel-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.join-xq-rel-name {
  font-size: var(--font-size-20);
  color: #222;
  font-weight: 400;
  transition: color 0.3s ease;
}

.join-xq-rel-item:hover .join-xq-rel-name,
.join-xq-rel-name.active {
  color: #093090;
}

.join-xq-rel-meta {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.1rem;
  font-size: var(--font-size-18);
  color: #666;
}

.join-xq-back {
  margin-top: 0.32rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  width: 1.69rem;
  height: 0.64rem;
  outline: 1px solid #093090;
  outline-offset: -1px;
  background: #fff;
  color: #093090;
  font-size: var(--font-size-20);
  font-family: "sscm";
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.join-xq-back:hover {
  background: #093090;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .join-xq-wrap {
    flex-direction: column;
  }
  .join-xq-main {
    width: 100%;
  }
  .join-xq-side {
    width: 100%;
  }
}
/* ========================================
   32. 下载中心页
   ======================================== */
.down-s1-mid {
  padding-top: 0.44rem;
  padding-bottom: 0.6rem;
}

.down-s1-kuang-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.down-s1-search {
  margin: 0;
  font-family: "sscr";
  font-size: var(--font-size-20);
  color: #093090;
  white-space: nowrap;
}

.down-s1-table {
  margin-top: 0.16rem;
}

.down-s1-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 500px;
}

.down-s1-table th,
.down-s1-table td {
  padding: 0;
  text-align: left;
  vertical-align: middle;
}

.down-s1-table th:first-child,
.down-s1-table td:first-child {
  padding-left: 0.7rem;
}

.down-s1-table thead th {
  padding: 0.26rem 0.2rem;
  font-family: "sscr";
  font-weight: normal;
  font-size: var(--font-size-24);
  color: #093090;
  border-top: 1px solid #3C6FE3;
  border-bottom: 1px solid #3C6FE3;
  text-align: center;
}
.down-s1-table thead th:first-child {
  text-align: left;
}

.down-s1-table table tbody td {
  font-family: "sscr";
  font-size: var(--font-size-18);
  padding: 0.18rem 0.2rem;
  color: #222222;
  border-bottom: 1px solid rgba(60, 111, 227, 0.2);
  text-align: center;
}
.down-s1-table table tbody td:first-child {
  text-align: left;
}

.down-s1-table thead th:first-child,
.down-s1-table table tbody td:first-child {
  width: 50%;
}

.down-s1-table tbody tr:last-child td {
  border-bottom: 0;
}

.down-s1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.16rem;
  border-radius: 0.5rem;
  background: #F0F0F0;
  font-family: "sscr";
  font-size: var(--font-size-16);
  line-height: 1.2;
  color: #3C6FE3;
  text-decoration: none;
  transition: all 0.3s ease;
}
.down-s1-btn:hover {
  background: #3C6FE3;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .down-s1-table th:first-child,
  .down-s1-table td:first-child {
    padding-left: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .down-s1-table table {
    table-layout: auto;
  }
  .down-s1-table thead th:first-child,
  .down-s1-table table tbody td:first-child {
    width: 30%;
  }
}
.page-banner-ertitle {
  margin-top: 0.2rem;
}

/* ========================================
   33. 可持续发展页
   ======================================== */
.sec-title {
  font-family: "sscm";
  font-weight: normal;
  font-size: var(--font-size-48);
  line-height: 1.53;
  color: #1A1A2E;
  position: relative;
  padding-bottom: 0.32rem;
}
.sec-title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: max(0.6rem, 40px);
  height: max(0.04rem, 4px);
  background: linear-gradient(270deg, #00A1E9 -13.3%, #093090 94.18%);
  border-radius: max(0.02rem, 2px);
}

/* --------------------------------------------------
   33.1 可持续发展理念（s1，设计稿 748~1522）
   -------------------------------------------------- */
.sust-s1 {
  background: #F1F6FD;
}

.sust-s1-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sust-s1-left {
  width: 7.6rem;
}

.sust-s1-txt {
  width: 7.42rem;
  margin-top: 0.32rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.8;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0.4rem;
}

.sust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.3rem;
  gap: 0.1rem;
  background: var(--color-primary);
  color: #fff;
  font-family: "sscm";
  font-size: var(--font-size-20);
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.sust-btn:hover {
  background: var(--color-vi);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

.sust-btn:hover .sust-btn-ico {
  transform: translateX(4px);
  -webkit-transform: translateX(4px);
}

.sust-s1-right {
  flex: none;
  width: 5.6rem;
  height: 5.6rem;
  margin-right: 1.6rem;
}

.sust-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.sust-ring-c1,
.sust-ring-c2,
.sust-ring-c3 {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
}

.sust-ring-c1 {
  width: 5.55rem;
  height: 5.55rem;
  margin: -2.775rem 0 0 -2.775rem;
}

.sust-ring-c2,
.sust-ring-c3 {
  border: 1px solid rgba(60, 111, 227, 0.5);
}

.sust-ring-c2 {
  width: 4.23rem;
  height: 4.23rem;
  margin: -2.115rem 0 0 -2.115rem;
}

.sust-ring-c3 {
  width: 2.27rem;
  height: 2.27rem;
  margin: -1.135rem 0 0 -1.135rem;
}

.sust-ring-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.86rem;
  height: 1.86rem;
  padding: 0.1rem;
  margin: -0.93rem 0 0 -0.93rem;
  text-align: center;
  background: linear-gradient(180deg, #00A1E9 0%, #093090 100%);
  box-shadow: 0 0.06rem 0.2rem -0.16rem rgba(5, 44, 109, 0.4);
  border-radius: 50%;
}
.sust-ring-core p {
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  line-height: 1.5;
  color: #fff;
}

.sust-orbit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: sust-orbit-spin 36s linear infinite;
          animation: sust-orbit-spin 36s linear infinite;
}

.sust-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.9rem, 60px);
  height: max(0.9rem, 60px);
  margin: -0.45rem 0 0 -0.45rem;
  background: #fff;
  box-shadow: 0 0.02rem 0.1rem rgba(26, 57, 145, 0.12);
  border-radius: 50%;
}

.sust-node1 {
  transform: rotate(0deg) translateY(-2.11rem) rotate(0deg);
  -webkit-transform: rotate(0deg) translateY(-2.11rem) rotate(0deg);
}

.sust-node2 {
  transform: rotate(60deg) translateY(-2.11rem) rotate(-60deg);
  -webkit-transform: rotate(60deg) translateY(-2.11rem) rotate(-60deg);
}

.sust-node3 {
  transform: rotate(120deg) translateY(-2.11rem) rotate(-120deg);
  -webkit-transform: rotate(120deg) translateY(-2.11rem) rotate(-120deg);
}

.sust-node4 {
  transform: rotate(180deg) translateY(-2.11rem) rotate(-180deg);
  -webkit-transform: rotate(180deg) translateY(-2.11rem) rotate(-180deg);
}

.sust-node5 {
  transform: rotate(240deg) translateY(-2.11rem) rotate(-240deg);
  -webkit-transform: rotate(240deg) translateY(-2.11rem) rotate(-240deg);
}

.sust-node6 {
  transform: rotate(300deg) translateY(-2.11rem) rotate(-300deg);
  -webkit-transform: rotate(300deg) translateY(-2.11rem) rotate(-300deg);
}

.sust-node-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-animation: sust-orbit-spin-rev 36s linear infinite;
          animation: sust-orbit-spin-rev 36s linear infinite;
}

.sust-node-ico {
  display: flex;
  width: max(0.32rem, 20px);
  height: max(0.32rem, 20px);
}
.sust-node-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sust-node-name {
  margin-top: 0.04rem;
  font-family: "sscm";
  font-size: var(--font-size-14);
  line-height: 1.4;
  color: #222222;
  white-space: nowrap;
}

.sust-ring:hover .sust-orbit,
.sust-ring:hover .sust-node-in {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes sust-orbit-spin {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sust-orbit-spin {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sust-orbit-spin-rev {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes sust-orbit-spin-rev {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
@media screen and (max-width: 991px) {
  .sust-s1 {
    padding: 0.6rem 0;
  }
  .sust-s1-mid {
    flex-direction: column;
  }
  .sust-s1-left,
  .sust-s1-txt {
    width: 100%;
  }
  .sust-s1-right {
    margin: 0.5rem auto 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sust-orbit,
  .sust-node-in {
    -webkit-animation: none;
            animation: none;
  }
}
/* --------------------------------------------------
   33.2 环境责任
   -------------------------------------------------- */
.sust-s2 {
  position: relative;
  width: 100%;
  min-height: 7.63rem;
  background: #222222;
  overflow: hidden;
}

.sust-s2-pic {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.sust-s2-pic-l,
.sust-s2-pic-r {
  height: 100%;
  overflow: hidden;
}
.sust-s2-pic-l img,
.sust-s2-pic-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sust-s2-pic-l {
  position: relative;
  width: 53.125%;
}
.sust-s2-pic-l::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.5);
}

.sust-s2-pic-r {
  width: 46.875%;
}

.sust-s2-con {
  position: relative;
  z-index: 2;
}

.sust-s2-title {
  color: #fff;
}
.sust-s2-title::before {
  background: #fff;
}

.sust-s2-txt {
  width: 7.42rem;
  margin-top: 0.32rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.8;
  color: #fff;
}

.sust-s2-list {
  display: flex;
  justify-content: space-between;
  width: 7.94rem;
  margin-top: 0.73rem;
}

.sust-env-item {
  position: relative;
  width: 1.6rem;
  text-align: center;
  transition: transform 0.5s;
}
.sust-env-item:hover {
  transform: translateY(-10px);
}

.sust-env-item + .sust-env-item::before {
  content: "";
  position: absolute;
  left: -0.26rem;
  top: 0.09rem;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
}

.sust-env-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  height: max(0.87rem, 60px);
  width: max(0.87rem, 60px);
  margin: auto;
}

.sust-env-ico img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sust-env-name {
  margin-top: 0.2rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  line-height: 1.6;
  color: #fff;
}

.sust-env-desc {
  margin-top: 0.1rem;
  font-family: "sscr";
  font-size: var(--font-size-16);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .sust-s2-pic-r {
    position: relative;
  }
  .sust-s2-pic-r::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
  }
}
@media screen and (max-width: 991px) {
  .sust-s2 {
    min-height: 0;
    padding-bottom: 0.5rem;
  }
  .sust-s2-con {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .sust-s2-txt {
    width: 100%;
  }
  .sust-s2-list {
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.4rem;
  }
  .sust-env-item {
    width: 50%;
    margin-bottom: 0.4rem;
  }
  .sust-env-item + .sust-env-item::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sust-env-item {
    width: 100%;
  }
  .sust-env-desc {
    width: 100%;
  }
}
/* --------------------------------------------------
   33.3 社会责任
   -------------------------------------------------- */
.sust-s3 {
  background: #fff;
}

.sust-s3-title {
  padding-bottom: 0px;
}
.sust-s3-title::before {
  display: none;
}

.sust-social-list {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}

.sust-social-card {
  width: 100%;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0.02rem 0.16rem rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.sust-social-card:hover {
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  box-shadow: 0 0.12rem 0.32rem rgba(0, 0, 0, 0.12);
}

.sust-social-pic {
  position: relative;
  width: 100%;
  aspect-ratio: 380/240;
  overflow: hidden;
}
.sust-social-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sust-social-pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.sust-social-txt {
  padding: 0.28rem 0.24rem;
}

.sust-social-head {
  display: flex;
  align-items: center;
}
.sust-social-head .sust-social-name {
  padding-left: 0.13rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: #222222;
  position: relative;
}
.sust-social-head .sust-social-name::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: max(0.03rem, 3px);
  height: 80%;
  border-radius: max(0.2rem, 20px);
  background: var(--color-vi);
}

.sust-social-desc {
  margin-top: 0.11rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  line-height: 1.6;
  color: #666666;
}

@media screen and (max-width: 991px) {
  .sust-s3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .sust-social-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .sust-social-list {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------------
   33.4 公司治理
   -------------------------------------------------- */
.sust-s4 {
  position: relative;
  min-height: 5.84rem;
  background: #0B1B31;
  overflow: hidden;
}

.sust-s4-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sust-s4-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sust-s4-con {
  position: relative;
  z-index: 2;
}

.sust-s4-title {
  color: #fff;
  padding-bottom: 0px;
}
.sust-s4-title::before {
  display: none;
}

.sust-s4-list {
  display: flex;
  justify-content: space-between;
  width: 9.5rem;
  margin-top: 0.96rem;
}

.sust-s4-item {
  position: relative;
  width: 1.7rem;
}

.sust-s4-item + .sust-s4-item::before {
  content: "";
  position: absolute;
  left: -0.51rem;
  top: 0;
  width: max(0.01rem, 1px);
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
}

.sust-s4-head {
  display: flex;
  align-items: flex-start;
}
.sust-s4-head .sust-s4-ico {
  flex: none;
  display: flex;
  width: max(0.56rem, 30px);
  height: max(0.56rem, 30px);
}
.sust-s4-head .sust-s4-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sust-s4-head .sust-s4-name {
  margin-top: 0.26rem;
  margin-left: 0.07rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: #fff;
}

.sust-s4-desc {
  margin-top: 0.22rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .sust-s4 {
    min-height: 0;
  }
  .sust-s4-list {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.4rem;
  }
  .sust-s4-item {
    width: 49%;
    margin-bottom: 0.4rem;
  }
  .sust-s4-item + .sust-s4-item::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sust-s4-item {
    width: 100%;
  }
  .sust-s4-desc {
    width: 100%;
  }
}
/* --------------------------------------------------
   33.5 可持续发展管理
   -------------------------------------------------- */
.sust-s5-title {
  margin-bottom: 0.6rem;
}

.sust-mg-list {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.6rem;
}
.sust-mg-list .iconfont {
  flex-shrink: 0;
  font-weight: bold;
  color: #1565C0;
  font-size: var(--font-size-30);
  margin-left: 0.08rem;
  margin-right: 0.08rem;
}

.sust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sust-mg-item {
  position: relative;
  width: 100%;
}

.sust-mg-card {
  position: relative;
  height: 100%;
  padding: 0.4rem 0.28rem 0.36rem;
  background: #fff;
  box-shadow: 0 0.02rem 0.16rem rgba(0, 0, 0, 0.05);
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.sust-mg-item:hover .sust-mg-card {
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  box-shadow: 0 0.12rem 0.32rem rgba(0, 0, 0, 0.1);
}

.sust-mg-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.48rem, 40px);
  height: max(0.48rem, 40px);
  background: var(--color-vi);
  box-shadow: 0 0.04rem 0.12rem rgba(21, 101, 192, 0.3);
  border-radius: 50%;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-18);
  color: #fff;
}

.sust-mg-name {
  margin-top: 0.11rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  line-height: 1.6;
  color: #1A1A2E;
}

.sust-mg-desc {
  margin-top: 0.11rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  line-height: 1.6;
  color: #555555;
}

@media screen and (max-width: 991px) {
  .sust-mg-list {
    flex-wrap: wrap;
    row-gap: 0.2rem;
    justify-content: space-between;
  }
  .sust-mg-list .iconfont {
    display: none;
  }
  .sust-mg-item {
    width: calc(50% - 0.1rem);
  }
  .sust-icon {
    display: none;
  }
  .sust-s5 {
    padding: 0.5rem 0px;
  }
}
@media screen and (max-width: 450px) {
  .sust-mg-item {
    width: 100%;
  }
}
/* --------------------------------------------------
   33.6 ESG绩效
   -------------------------------------------------- */
.sust-s6 {
  padding: 1rem 0;
  background: #F1F6FD;
}

.sust-s6-title {
  margin-bottom: 0.56rem;
  padding-bottom: 0px;
}
.sust-s6-title::before {
  display: none;
}

.sust-esg-list {
  display: flex;
  align-items: flex-start;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.sust-esg-item {
  flex: 1;
  text-align: center;
}

.sust-esg-num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-48);
  line-height: 1;
  color: var(--color-primary);
}

.sust-esg-val {
  font-style: normal;
}

.sust-esg-unit {
  margin-left: 0.06rem;
  padding-bottom: 0.04rem;
  font-style: normal;
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-18);
  color: var(--color-primary);
}

.sust-esg-name {
  margin-top: 0.1rem;
  font-family: "sscr";
  font-size: var(--font-size-18);
  line-height: 1.2;
  color: #666666;
}

@media screen and (max-width: 991px) {
  .sust-s6 {
    padding: 0.5rem 0px;
  }
  .sust-esg-list {
    flex-wrap: wrap;
  }
  .sust-esg-item {
    flex: none;
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .sust-esg-item {
    width: 50%;
  }
}
/* ========================================
   34. 关于我们页
   ======================================== */
.font64 {
  font-size: 0.64rem;
}

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

/* --------------------------------------------------
   34.1 董事长寄语
   -------------------------------------------------- */
.about-s1 {
  position: relative;
}

.about-s1-wm {
  position: absolute;
  top: 0.44rem;
  left: 0px;
  width: 100%;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}
.about-s1-wm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s1-mid {
  position: relative;
  z-index: 2;
}

.about-s1-title {
  text-align: center;
}

.about-s1-row {
  display: flex;
  margin-top: 0.6rem;
  justify-content: space-between;
}

.about-s1-card {
  position: relative;
  flex: none;
  width: 21.25%;
  min-height: 4.65rem;
  background: linear-gradient(155deg, #0A2655 0%, #15539E 100%);
  box-shadow: 0 0.36rem 0.7rem -0.42rem rgba(10, 38, 85, 0.5);
  overflow: hidden;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-s1-card-mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(52deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 3%, rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0) 5%);
}

.about-s1-card-ico {
  width: max(1.3rem, 80px);
}

.about-s1-card-name {
  font-family: "ssb";
  font-size: var(--font-size-22);
  letter-spacing: 0.88px;
  color: #fff;
}

.about-s1-card-job {
  font-family: "sscr";
  font-size: var(--font-size-14);
  color: #7FD0F5;
}

.about-s1-txt {
  width: 74.1875%;
  margin-left: 0.83rem;
  padding-top: 0.03rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-s1-quote {
  display: block;
  width: max(0.36rem, 24px);
  height: max(0.36rem, 24px);
  margin-bottom: 0.15rem;
}
.about-s1-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-s1-body {
  font-family: "sscr";
  font-size: var(--font-size-18);
  line-height: 1.45;
  color: #46536A;
}

.about-s1-sign-row {
  display: flex;
  align-items: center;
  margin-top: 0.41rem;
}

.about-s1-line {
  flex: 1;
  height: 1px;
  background: #DCDDE1;
}

.about-s1-sign {
  flex: none;
  margin-left: 0.16rem;
  font-family: "sscm";
  font-size: var(--font-size-18);
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .about-s1-row {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .about-s1-txt {
    width: 100%;
  }
  .about-s1-card {
    width: 100%;
    min-height: auto;
    text-align: center;
  }
  .about-s1-card-ico {
    margin: auto;
  }
  .about-s1-txt {
    margin: 0px;
  }
}
/* --------------------------------------------------
   34.2 企业概况（s2，设计稿 1638~2718）
   -------------------------------------------------- */
.about-s2 {
  position: relative;
  min-height: 10.8rem;
  background: #0A2655;
  overflow: hidden;
}

.about-s2-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-s2-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s2-cover {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s2-con {
  position: relative;
  z-index: 2;
  padding-top: 1.77rem;
  padding-bottom: 1.2rem;
}

.about-s2-title {
  color: #fff;
}

.about-s2-txt {
  width: 8.3rem;
  padding-right: 0.2rem;
  margin-top: 0.4rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.7;
  color: #DCDDE1;
  max-height: 4.36rem;
  font-weight: 400;
}
.about-s2-txt p {
  color: #DCDDE1;
}

.about-s2-nums {
  display: flex;
  margin-top: 0.6rem;
}

.about-s2-num {
  width: 2.81rem;
  flex: none;
}

.about-s2-num-val {
  display: flex;
  align-items: flex-end;
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-60);
  line-height: 1;
  color: #fff;
}
.about-s2-num-val em {
  margin-left: 0.04rem;
  padding-bottom: 0.1rem;
  font-style: normal;
  font-size: var(--font-size-32);
}

.about-s2-num-name {
  margin-top: 0.14rem;
  font-family: "sscr";
  font-size: var(--font-size-14);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .about-s2 {
    min-height: 0;
  }
  .about-s2-con {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .about-s2-txt {
    width: 100%;
  }
  .about-s2-nums {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .about-s2-num {
    text-align: center;
  }
  .about-s2-num-val {
    justify-content: center;
  }
  .about-s2-cover {
    background: rgba(9, 48, 144, 0.5);
  }
}
/* --------------------------------------------------
   34.3 研发创新（s3，设计稿 2718~3716）
   -------------------------------------------------- */
.about-s3 {
  position: relative;
  min-height: 9.98rem;
  background: #FAFCFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-s3-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-s3-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s3-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(9, 48, 144, 0.94) 0%, rgba(9, 48, 144, 0.66) 100%);
  pointer-events: none;
}

.about-s3-title {
  color: #fff;
}

.about-s3-txt {
  width: 7.02rem;
  margin-top: 0.38rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.6;
  color: #fff;
}
.about-s3-txt p {
  color: #fff;
}
.about-s3-txt p + p {
  margin-top: 0.27rem;
}
.about-s3-txt em {
  font-style: normal;
  color: var(--color-link);
}

.about-s3-nums {
  display: flex;
  margin-top: 0.5rem;
}

.about-s3-num {
  flex: none;
  min-width: max(2.2rem, 200px);
  margin-right: 0.2rem;
  padding: 0.26rem 0.27rem 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #EEF1F5;
  border-radius: max(0.08rem, 8px);
  box-shadow: 0 0.18rem 0.5rem -0.38rem rgba(10, 38, 85, 0.4);
  position: relative;
  transition: all 0.5s;
  padding: 0.3rem 0.26rem;
}
.about-s3-num::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.about-s3-num:last-child {
  margin-right: 0;
}
.about-s3-num:hover {
  transform: translateY(-10px);
}

.about-s3-num-val {
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-40);
  line-height: 1.2;
  color: var(--color-link);
  position: relative;
  z-index: 1;
}

.about-s3-num-name {
  margin-top: 0.03rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-14);
  color: #fff;
  text-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .about-s3 {
    min-height: 0;
  }
  .about-s3-txt {
    width: 100%;
  }
  .about-s3-nums {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .about-s3-num {
    width: 100%;
    height: auto;
    padding-bottom: 0.26rem;
  }
}
/* --------------------------------------------------
   34.4 企业荣誉（s4，设计稿 3716~4924）
   -------------------------------------------------- */
.about-s4 {
  position: relative;
  background: #fff;
}

.about-s4-top {
  position: relative;
  overflow: hidden;
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-top-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.about-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s4-top-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-s4-top-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s4-top-mid {
  position: relative;
  z-index: 2;
}

.about-s4-title {
  text-align: left;
  color: #222222;
}

.about-s4-sub {
  width: 5.94rem;
  margin-top: 0.2rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.6;
  color: #666666;
}

.about-s4-body {
  padding-bottom: 0.3rem;
}

.about-s4-line {
  height: max(0.01rem, 1px);
  margin-top: 0.46rem;
  margin-bottom: 0.46rem;
  background: #DCDDE1;
}

.about-honor-swiper {
  width: 84.08%;
}

@media screen and (max-width: 1599px) {
  .about-honor-swiper {
    width: 90%;
  }
}
.about-honor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #F2F3F5;
  border-radius: max(0.08rem, 8px);
  padding: 0.3rem;
  aspect-ratio: 290/383;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.about-honor-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.about-honor-card:hover {
  background: #fff;
  box-shadow: 0 0.04rem 0.38rem rgba(174, 174, 174, 0.25);
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}

.about-honor-swiper .swiper-pagination {
  margin-top: 0.45rem;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-honor-swiper .swiper-pagination .swiper-pagination-bullet {
  width: max(0.14rem, 10px);
  height: max(0.14rem, 10px);
  margin: 0px 0.08rem;
  background: #C9D3E4;
  opacity: 1;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.about-honor-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-vi);
}

/* --------------------------------------------------
   34.5 质量管理
   -------------------------------------------------- */
.about-s5 {
  background: #F4F7FB;
}

.about-s5-title {
  text-align: center;
  color: #0C1C33;
}

.about-s5-sub {
  margin-top: 0.24rem;
  text-align: center;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.6;
  color: #46536A;
}

.about-q-list {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  gap: 0.24rem;
  width: 100%;
}

.about-q-card {
  position: relative;
  flex: 1;
  padding: 0.4rem 0.3rem;
  background: #fff;
  border: 1px solid #EEF1F5;
  border-radius: 0.08rem;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 18px 50px -38px rgba(10, 38, 85, 0.4);
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.about-q-card:hover {
  transform: translateY(-14px);
  -webkit-transform: translateY(-14px);
  border-width: max(0.03rem, 3px);
  border-color: #0282D1;
}
.about-q-card:hover::before {
  opacity: 1;
}
.about-q-card:hover .about-q-name {
  color: #093090;
}
.about-q-card:hover .about-q-deco {
  opacity: 1;
}

.about-q-deco {
  position: absolute;
  right: 0px;
  top: 0;
  width: 2.8rem;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.about-q-deco img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-q-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(0.52rem, 50px);
  height: max(0.52rem, 50px);
  background: rgba(60, 111, 227, 0.1);
  border-radius: 0.13rem;
  padding: 0.1rem;
}
.about-q-ico img {
  height: auto;
  object-fit: contain;
}

.about-q-name {
  margin-top: 0.35rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-32);
  line-height: 1.2;
  color: #0C1C33;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.about-q-desc {
  margin-top: 0.19rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.6;
  color: #6A7588;
}

@media screen and (max-width: 768px) {
  .about-q-list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
    row-gap: 0.2rem;
  }
  .about-q-card {
    width: 49%;
    flex: none;
  }
}
@media screen and (max-width: 480px) {
  .about-q-card {
    width: 100%;
    flex: none;
  }
}
/* --------------------------------------------------
   34.6 发展历程（s6，设计稿 5701~6781）
   -------------------------------------------------- */
.about-s6 {
  position: relative;
  height: 10.8rem;
  overflow: hidden;
}

.about-s6-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-s6-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s6-mid {
  height: 100%;
}

.about-his-swiper {
  width: 100%;
  padding-left: 1rem;
  cursor: -webkit-grab;
  cursor: grab;
}
.about-his-swiper .swiper-slide {
  position: relative;
  width: 6.87rem;
  margin-right: 1rem;
  border: 0.01rem solid #fff;
}
.about-his-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 0;
}
.about-his-swiper .swiper-slide:nth-child(2n) {
  margin-top: 1rem;
}

.about-his-item {
  position: relative;
  color: #fff;
  padding: 0.4rem 0.5rem;
}

.about-his-item-div {
  position: relative;
  padding-left: 0.5rem;
  z-index: 1;
}

.about-his-item-div::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #fff;
}

.about-s6-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-his-year {
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-96);
  line-height: 1;
  color: #fff;
}

.about-his-txt {
  width: 4.29rem;
  margin-top: 0.3rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0.06rem 0.4rem rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
  .about-his-item::before {
    left: 0.9rem;
  }
  .about-his-txt {
    width: 100%;
  }
  .about-his-swiper {
    padding-left: 20px;
  }
}
/* --------------------------------------------------
   34.7 企业风采（s7，设计稿 6781~7861）
   -------------------------------------------------- */
.about-s7 {
  background: #F4F7FB;
}

.about-s7-title {
  text-align: center;
  color: #0C1C33;
}

.about-cul-list {
  display: flex;
  justify-content: space-between;
  margin-top: 0.67rem;
}

.about-cul-col {
  display: flex;
  flex-direction: column;
}

.about-cul-col1 {
  width: 42.8125%;
}

.about-cul-col2,
.about-cul-col3 {
  width: 27.125%;
}

.about-cul-col2 {
  gap: 0.18rem;
}

.about-cul-col3 {
  gap: 0.24rem;
}

.about-cul-card {
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}
.about-cul-card:hover img {
  transform: scale(1.05);
}

.about-cul-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about-cul-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cul-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cul-name {
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-32);
  line-height: 1.2;
  color: #fff;
}

.about-cul-txt {
  z-index: 2;
  position: relative;
  padding-top: max(0.1rem, 10px);
  padding-bottom: max(0.1rem, 10px);
}
.about-cul-txt p {
  margin-top: 0.21rem;
  font-family: "sscr";
  font-size: var(--font-size-20);
  line-height: 1.6;
  color: #fff;
}

.about-cul-mission {
  min-height: 6.29rem;
}
.about-cul-mission .about-cul-pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgba(26, 57, 145, 0.8) 0%, rgba(60, 111, 227, 0) 100%);
}
.about-cul-mission {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.about-cul-mission .about-cul-txt {
  width: 90%;
  margin: auto;
  margin-bottom: 0.5rem;
}

.about-cul-vision {
  min-height: 3.97rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.about-cul-vision .about-cul-pat {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
}
.about-cul-vision .about-cul-pat img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-cul-vision .about-cul-txt {
  top: 0.5rem;
  width: 90%;
}

.about-cul-value {
  min-height: 2.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cul-value .about-cul-pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgba(26, 57, 145, 0.8) 0%, rgba(60, 111, 227, 0) 100%);
}
.about-cul-value .about-cul-txt {
  width: 90%;
}

.about-cul-photo-a {
  height: 2.14rem;
}

.about-cul-photo-b {
  height: 3.91rem;
}

@media screen and (max-width: 991px) {
  .about-cul-list {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .about-cul-col1,
  .about-cul-col2,
  .about-cul-col3 {
    width: 100%;
  }
  .about-cul-value,
  .about-cul-photo-a {
    min-height: 200px;
  }
}
/* --------------------------------------------------
   34.8 合作伙伴
   -------------------------------------------------- */
.about-s8 {
  position: relative;
  height: 8.4rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #E8F4FF 100%);
  overflow: hidden;
}

.about-pt-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-pt-core,
.about-pt-ring,
.about-pt-orbit {
  position: absolute;
  left: 50%;
  top: 8.92rem;
}

.about-pt-core {
  width: 6.4rem;
  height: 6.4rem;
  margin: -3.2rem 0 0 -3.2rem;
  background: #3C6FE3;
  border-radius: 50%;
}

.about-pt-ring {
  border: 1px solid #093090;
  border-radius: 50%;
  opacity: 0.5;
}

.about-pt-ring-a {
  width: 10.7rem;
  height: 10.7rem;
  margin: -5.35rem 0 0 -5.35rem;
}

.about-pt-ring-b {
  width: 14.56rem;
  height: 14.56rem;
  margin: -7.28rem 0 0 -7.28rem;
}

.about-pt-tit {
  position: absolute;
  left: 50%;
  top: 6.6rem;
  transform: translateX(-50%);
  text-align: center;
}

.about-pt-num {
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-48);
  line-height: 1;
  color: #fff;
}

.about-pt-name {
  margin-top: 0.04rem;
  color: #fff;
}

.about-pt-orbit {
  width: 0;
  height: 0;
}

.about-pt-orbit-a {
  -webkit-animation: about-pt-spin 70s linear infinite;
          animation: about-pt-spin 70s linear infinite;
}

.about-pt-orbit-b {
  -webkit-animation: about-pt-spin-rev 96s linear infinite;
          animation: about-pt-spin-rev 96s linear infinite;
}

.about-pt-orbit-a .about-pt-node-in {
  -webkit-animation: about-pt-spin-rev 70s linear infinite;
          animation: about-pt-spin-rev 70s linear infinite;
}

.about-pt-orbit-b .about-pt-node-in {
  -webkit-animation: about-pt-spin 96s linear infinite;
          animation: about-pt-spin 96s linear infinite;
}

.about-pt-node {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.36rem;
  height: 1.36rem;
  margin: -0.68rem 0 0 -0.68rem;
  background: #fff;
  border: 1px solid #EAEFF5;
  border-radius: 50%;
  transition: all 0s;
}

.about-pt-node-in {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-pt-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}
.about-pt-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.about-pt-logo-name {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-family: "sscm";
  font-size: var(--font-size-16);
  line-height: 1.3;
  color: #5A6678;
  opacity: 0;
  pointer-events: none;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.about-pt-node:hover .about-pt-logo {
  opacity: 0;
}

.about-pt-node:hover {
  background: var(--color-vi);
  border-color: transparent;
  box-shadow: 0 0.04rem 0.2rem rgba(10, 38, 85, 0.18);
}

.about-pt-node:hover .about-pt-logo-name {
  color: #fff;
  opacity: 1;
}

.about-s8:has(.about-pt-node:hover) .about-pt-orbit,
.about-s8:has(.about-pt-node:hover) .about-pt-node-in {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.about-pt-orbit-a {
  --r: 5.1rem;
  --step: 18deg;
  --start: 0deg;
}

.about-pt-orbit-b {
  --r: 7.1rem;
  --step: 20deg;
  --start: 30deg;
}

.about-pt-orbit .about-pt-node:nth-child(1) {
  transform: rotate(calc(var(--start) + var(--step) * 0)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 0) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 0)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 0) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(2) {
  transform: rotate(calc(var(--start) + var(--step) * 1)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 1) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 1)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 1) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(3) {
  transform: rotate(calc(var(--start) + var(--step) * 2)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 2) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 2)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 2) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(4) {
  transform: rotate(calc(var(--start) + var(--step) * 3)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 3) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 3)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 3) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(5) {
  transform: rotate(calc(var(--start) + var(--step) * 4)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 4) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 4)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 4) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(6) {
  transform: rotate(calc(var(--start) + var(--step) * 5)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 5) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 5)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 5) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(7) {
  transform: rotate(calc(var(--start) + var(--step) * 6)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 6) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 6)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 6) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(8) {
  transform: rotate(calc(var(--start) + var(--step) * 7)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 7) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 7)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 7) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(9) {
  transform: rotate(calc(var(--start) + var(--step) * 8)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 8) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 8)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 8) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(10) {
  transform: rotate(calc(var(--start) + var(--step) * 9)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 9) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 9)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 9) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(11) {
  transform: rotate(calc(var(--start) + var(--step) * 10)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 10) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 10)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 10) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(12) {
  transform: rotate(calc(var(--start) + var(--step) * 11)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 11) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 11)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 11) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(13) {
  transform: rotate(calc(var(--start) + var(--step) * 12)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 12) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 12)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 12) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(14) {
  transform: rotate(calc(var(--start) + var(--step) * 13)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 13) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 13)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 13) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(15) {
  transform: rotate(calc(var(--start) + var(--step) * 14)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 14) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 14)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 14) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(16) {
  transform: rotate(calc(var(--start) + var(--step) * 15)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 15) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 15)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 15) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(17) {
  transform: rotate(calc(var(--start) + var(--step) * 16)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 16) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 16)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 16) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(18) {
  transform: rotate(calc(var(--start) + var(--step) * 17)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 17) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 17)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 17) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(19) {
  transform: rotate(calc(var(--start) + var(--step) * 18)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 18) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 18)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 18) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(20) {
  transform: rotate(calc(var(--start) + var(--step) * 19)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 19) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 19)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 19) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(21) {
  transform: rotate(calc(var(--start) + var(--step) * 20)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 20) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 20)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 20) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(22) {
  transform: rotate(calc(var(--start) + var(--step) * 21)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 21) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 21)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 21) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(23) {
  transform: rotate(calc(var(--start) + var(--step) * 22)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 22) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 22)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 22) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(24) {
  transform: rotate(calc(var(--start) + var(--step) * 23)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 23) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 23)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 23) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(25) {
  transform: rotate(calc(var(--start) + var(--step) * 24)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 24) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 24)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 24) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(26) {
  transform: rotate(calc(var(--start) + var(--step) * 25)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 25) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 25)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 25) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(27) {
  transform: rotate(calc(var(--start) + var(--step) * 26)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 26) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 26)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 26) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(28) {
  transform: rotate(calc(var(--start) + var(--step) * 27)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 27) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 27)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 27) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(29) {
  transform: rotate(calc(var(--start) + var(--step) * 28)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 28) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 28)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 28) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(30) {
  transform: rotate(calc(var(--start) + var(--step) * 29)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 29) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 29)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 29) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(31) {
  transform: rotate(calc(var(--start) + var(--step) * 30)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 30) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 30)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 30) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(32) {
  transform: rotate(calc(var(--start) + var(--step) * 31)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 31) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 31)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 31) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(33) {
  transform: rotate(calc(var(--start) + var(--step) * 32)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 32) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 32)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 32) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(34) {
  transform: rotate(calc(var(--start) + var(--step) * 33)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 33) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 33)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 33) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(35) {
  transform: rotate(calc(var(--start) + var(--step) * 34)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 34) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 34)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 34) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(36) {
  transform: rotate(calc(var(--start) + var(--step) * 35)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 35) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 35)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 35) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(37) {
  transform: rotate(calc(var(--start) + var(--step) * 36)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 36) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 36)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 36) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(38) {
  transform: rotate(calc(var(--start) + var(--step) * 37)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 37) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 37)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 37) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(39) {
  transform: rotate(calc(var(--start) + var(--step) * 38)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 38) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 38)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 38) * -1));
}

.about-pt-orbit .about-pt-node:nth-child(40) {
  transform: rotate(calc(var(--start) + var(--step) * 39)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 39) * -1));
  -webkit-transform: rotate(calc(var(--start) + var(--step) * 39)) translateY(calc(var(--r) * -1)) rotate(calc((var(--start) + var(--step) * 39) * -1));
}

@-webkit-keyframes about-pt-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes about-pt-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes about-pt-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes about-pt-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-pt-orbit,
  .about-pt-node-in {
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (max-width: 768px) {
  .about-pt-logo-name {
    font-size: 12px;
  }
  .about-s8 {
    height: 5.3rem;
  }
  .about-pt-core,
  .about-pt-ring,
  .about-pt-orbit {
    top: 5.65rem;
  }
  .about-pt-core {
    width: 4rem;
    height: 4rem;
    margin: -2rem 0 0 -2rem;
  }
  .about-pt-ring-a {
    width: 6.3rem;
    height: 6.3rem;
    margin: -3.15rem 0 0 -3.15rem;
  }
  .about-pt-ring-b {
    width: 9rem;
    height: 9rem;
    margin: -4.5rem 0 0 -4.5rem;
  }
  .about-pt-tit {
    top: max(3.65rem, 200px);
  }
  .about-pt-orbit-a {
    --r: 3rem;
  }
  .about-pt-orbit-b {
    --r: 4.4rem;
  }
  .about-pt-node {
    width: max(0.8rem, 60px);
    height: max(0.8rem, 60px);
    margin: calc(max(0.8rem, 60px) * -0.5) 0 0 calc(max(0.8rem, 60px) * -0.5);
  }
  .about-pt-big {
    width: max(1rem, 73px);
    height: max(1rem, 73px);
    margin: calc(max(1rem, 73px) * -0.5) 0 0 calc(max(1rem, 73px) * -0.5);
  }
  .about-pt-orbit-b .about-pt-node:nth-child(even) {
    display: none;
  }
  .about-pt-node-in {
    width: 100%;
    height: 100%;
  }
  .about-pt-name {
    font-size: 26px;
  }
}
/* ========================================
   35. 联系我们 / 分支机构页
   ======================================== */
/* --------------------------------------------------
   35.1 分支机构（地图 + 省域定点 + 悬浮城市胶囊 + 地址卡）
   -------------------------------------------------- */
.contact-s1 {
  padding: 0.83rem 0 1.31rem;
  background: #fff;
}

.contact-s1-mid {
  position: relative;
}

.contact-map {
  position: relative;
}

.contact-map-pic {
  width: 100%;
  position: relative;
  z-index: 0;
}
.contact-map-pic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-pin {
  position: absolute;
  width: 0.26rem;
  height: 0.26rem;
}

.contact-pin1 {
  left: 32.375%;
  top: 45.221%;
}

.contact-pin2 {
  left: 42.875%;
  top: 31.935%;
}

.contact-pin3 {
  left: 37.75%;
  top: 38.112%;
}

.contact-pin4 {
  left: 35.6875%;
  top: 42.541%;
}

.contact-pin5 {
  left: 35.4375%;
  top: 34.382%;
}

.contact-dot {
  position: relative;
  display: block;
  width: max(0.26rem, 18px);
  height: max(0.26rem, 18px);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}
.contact-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 111, 227, 0.32);
  border-radius: 50%;
  -webkit-animation: contact-dot-breath 2.4s ease-in-out infinite;
          animation: contact-dot-breath 2.4s ease-in-out infinite;
}
.contact-dot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: max(0.08rem, 6px);
  height: max(0.08rem, 6px);
  margin: auto;
  background: var(--color-primary);
  border-radius: 50%;
  -webkit-animation: contact-dot-breath 2.4s ease-in-out infinite;
          animation: contact-dot-breath 2.4s ease-in-out infinite;
}
.contact-dot:hover {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
}

@-webkit-keyframes contact-dot-breath {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

@keyframes contact-dot-breath {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}
.contact-pin2 .contact-dot::before,
.contact-pin2 .contact-dot::after {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.contact-pin3 .contact-dot::before,
.contact-pin3 .contact-dot::after {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.contact-pin4 .contact-dot::before,
.contact-pin4 .contact-dot::after {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.contact-pin5 .contact-dot::before,
.contact-pin5 .contact-dot::after {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

@media (prefers-reduced-motion: reduce) {
  .contact-dot::before,
  .contact-dot::after {
    -webkit-animation: none;
            animation: none;
  }
}
.contact-pop {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.06rem, 4px) max(0.1rem, 6px);
  padding-right: max(0.16rem, 12px);
  background: #fff;
  box-shadow: 0 0 0.18rem rgba(60, 111, 227, 0.5);
  border-radius: 0.32rem;
  font-family: "sscm";
  font-size: var(--font-size-18);
  line-height: 1;
  color: var(--color-vi);
  white-space: nowrap;
  z-index: 1;
  cursor: pointer;
  transition: all 550ms;
  -webkit-transition: all 550ms;
}

.contact-pop-ico {
  flex: none;
  display: flex;
  width: max(0.24rem, 16px);
  height: max(0.24rem, 16px);
  margin-right: 0.06rem;
}
.contact-pop-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-pin1 .contact-pop {
  left: -1.15rem;
  top: -0.08rem;
}

.contact-pin2 .contact-pop {
  left: -0.02rem;
  top: -0.49rem;
}

.contact-pin3 .contact-pop {
  left: 0.34rem;
  top: -0.08rem;
}

.contact-pin4 .contact-pop {
  left: 0.05rem;
  top: 0.31rem;
}

.contact-pin5 .contact-pop {
  left: -0.77rem;
  top: -0.5rem;
}

.contact-pin:hover .contact-pop,
.contact-pin:focus-within .contact-pop,
.contact-pin.is-active .contact-pop {
  background: var(--color-vi);
  box-shadow: 0 0 0.18rem rgba(60, 111, 227, 0.8);
  color: #fff;
}
.contact-pin:hover .contact-pop .contact-pop-ico img,
.contact-pin:focus-within .contact-pop .contact-pop-ico img,
.contact-pin.is-active .contact-pop .contact-pop-ico img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.contact-pin.is-active {
  z-index: 5;
}

.contact-pin:hover,
.contact-pin:focus-within {
  z-index: 6;
}

.contact-card {
  position: absolute;
  left: -5.226rem;
  top: 0.425rem;
  display: none;
  background: #fff;
  box-shadow: 0 0 0.06rem rgba(0, 0, 0, 0.18);
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .contact-pin:hover .contact-card,
  .contact-pin:focus-within .contact-card,
  .contact-pin.is-active .contact-card {
    display: block;
  }
}
.contact-card-in {
  padding: 0.18rem 0.16rem 0;
  padding-bottom: 0.26rem;
}

.contact-card-item + .contact-card-item {
  margin-top: 0.2rem;
}

.contact-card-name {
  font-family: "sscm";
  font-weight: 500;
  font-size: var(--font-size-20);
  line-height: 1.2;
  color: var(--color-primary);
}

.contact-card-txt {
  margin-top: 0.14rem;
  font-family: "sscr";
  font-size: var(--font-size-16);
  line-height: 1.2;
  color: #666666;
}

.contact-card-tel {
  display: grid;
  grid-template-columns: 2.17rem auto;
  margin-top: 0.09rem;
}
.contact-card-tel em {
  font-style: normal;
  font-family: "sscr";
  font-size: var(--font-size-16);
  line-height: 1.5;
  color: #666666;
}

@media screen and (max-width: 991px) {
  .contact-s1 {
    padding: 0.5rem 0 0.6rem;
  }
  .contact-card {
    height: auto;
    min-height: 2.6rem;
  }
  .contact-card-in {
    padding: 0.2rem 0.2rem 0;
  }
}
.contact-modal {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.5);
}

.contact-modal-in {
  position: relative;
  width: 84vw;
  max-width: 6.4rem;
  max-height: 80vh;
  padding: 0.36rem 0.3rem 0.4rem;
  background: #fff;
  border-radius: 0.1rem;
  overflow-y: auto;
  text-align: left;
}

.contact-modal-title {
  margin-bottom: 0.26rem;
  font-family: "ssb";
  font-weight: normal;
  font-size: var(--font-size-24);
  color: var(--color-primary);
  text-align: center;
}

.contact-modal .contact-card-in {
  padding: 0;
}

@media screen and (min-width: 769px) {
  .contact-modal {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .contact-modal-in {
    width: 86vw;
  }
}
/* --------------------------------------------------
   35.2 立即联系（表单）
   -------------------------------------------------- */
.contact-s2 {
  padding: 0 0 0.8rem;
  background: #fff;
}

.contact-s2-title {
  text-align: center;
  padding-bottom: 0;
  color: #222222;
}
.contact-s2-title::before {
  display: none;
}

.contact-form {
  margin-top: 0.42rem;
}

.contact-form-btn {
  display: flex;
  justify-content: center;
  margin-top: 0.46rem;
}

@media screen and (max-width: 991px) {
  .contact-s2 {
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-form-btn button {
    width: 100%;
  }
}