@charset "UTF-8";
/**
 * Cookie Banner Style 1 - Glassmorphism Card
 * 玻璃拟态风格
 * 特点：浅色玻璃效果、渐变图标、底部居中
 */
.cookie-style-1 {
  /* Style 1 Mobile Responsive */
}
.cookie-style-1 .cookie-v1.cookiecookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0.2rem;
  -moz-transform: translateY(100%);
   -ms-transform: translateY(100%);
       transform: translateY(100%);
  -moz-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-style-1 .cookie-v1.cookiecookie.active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.cookie-style-1 .cookie-backdrop {
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  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: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       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: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.24rem;
  -moz-box-flex: 1;
       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: -moz-linear-gradient(315deg, var(--color-link) 0%, #764ba2 100%);
  background: linear-gradient(135deg, var(--color-link) 0%, #764ba2 100%);
  border-radius: 0.14rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-linear-gradient(315deg, var(--color-link) 0%, #764ba2 100%);
  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;
     -moz-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);
  }
}
@-moz-keyframes iconGlow {
  0% {
    opacity: 0.2;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  100% {
    opacity: 0.4;
    -moz-transform: scale(1.05);
         transform: scale(1.05);
  }
}
@keyframes iconGlow {
  0% {
    opacity: 0.2;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  100% {
    opacity: 0.4;
    -moz-transform: scale(1.05);
         transform: scale(1.05);
  }
}
.cookie-style-1 .cookie-text {
  -moz-box-flex: 1;
       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;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cookie-style-1 .cookie-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: -moz-linear-gradient(left, var(--color-link) 0%, #764ba2 100%);
  background: linear-gradient(90deg, var(--color-link) 0%, #764ba2 100%);
  -moz-transition: width 0.3s ease;
  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: -moz-box;
  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;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-linear-gradient(315deg, var(--color-link) 0%, #764ba2 100%);
  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;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -moz-linear-gradient(315deg, #764ba2 0%, var(--color-link) 100%);
  background: linear-gradient(135deg, #764ba2 0%, var(--color-link) 100%);
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cookie-style-1 .cookie-btn-primary:hover {
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       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 {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.cookie-style-1 .cookie-btn-primary:active {
  -moz-transform: translateY(-1px);
   -ms-transform: translateY(-1px);
       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);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
}
.cookie-style-1 .cookie-btn-secondary:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .cookie-style-1 .cookie-v1.cookiecookie {
    padding: 0.15rem;
  }
  .cookie-style-1 .cookie-container {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.24rem;
    padding: 0.24rem;
    text-align: center;
  }
  .cookie-style-1 .cookie-content {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: center;
         align-items: center;
  }
  .cookie-style-1 .cookie-text {
    max-width: 4rem;
  }
  .cookie-style-1 .cookie-actions {
    width: 100%;
    -moz-box-pack: center;
         justify-content: center;
  }
  .cookie-style-1 .cookie-btn {
    -moz-box-flex: 1;
         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 {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         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 V2 Mobile Responsive */
}
.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%;
  -moz-transform: translateX(120%);
   -ms-transform: translateX(120%);
       transform: translateX(120%);
  -moz-transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -moz-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -moz-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-style-2 .cookie-cookie-v2.active {
  -moz-transform: translateX(0);
   -ms-transform: translateX(0);
       transform: translateX(0);
}
.cookie-style-2 .cookie-card-v2 {
  position: relative;
  background: -moz-linear-gradient(305deg, #1e1e2e 0%, #2a2a3e 100%);
  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: -moz-linear-gradient(left, transparent 0%, var(--color-link) 50%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, var(--color-link) 50%, transparent 100%);
  -webkit-animation: decorationSlide 2s ease-in-out infinite;
     -moz-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);
  }
}
@-moz-keyframes decorationSlide {
  0%, 100% {
    opacity: 0.3;
    -moz-transform: scaleX(0.8);
         transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    -moz-transform: scaleX(1);
         transform: scaleX(1);
  }
}
@keyframes decorationSlide {
  0%, 100% {
    opacity: 0.3;
    -moz-transform: scaleX(0.8);
         transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    -moz-transform: scaleX(1);
         transform: scaleX(1);
  }
}
.cookie-style-2 .cookie-content-v2 {
  position: relative;
  z-index: 1;
}
.cookie-style-2 .cookie-header-v2 {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       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: -moz-linear-gradient(315deg, var(--color-link) 0%, #00d4ff 100%);
  background: linear-gradient(135deg, var(--color-link) 0%, #00d4ff 100%);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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;
     -moz-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);
  }
}
@-moz-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;
  -moz-transition: all 0.3s ease;
  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: -moz-box;
  display: flex;
  -moz-box-align: center;
       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;
  -moz-transition: all 0.3s ease;
  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: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-flex: 1;
       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: -moz-box;
  display: flex;
  gap: 0.12rem;
}
.cookie-style-2 .cookie-btn-v2 {
  -moz-box-flex: 1;
       flex: 1;
  padding: 0.14rem 0.2rem;
  border-radius: 0.08rem;
  font-size: var(--font-size-13);
  font-weight: 500;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  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: -moz-linear-gradient(315deg, var(--color-link) 0%, #00d4ff 100%);
  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 {
  -moz-transform: translateY(-0.02rem);
   -ms-transform: translateY(-0.02rem);
       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 {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
@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 {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         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 {
  /* Logo Section */
  /* Content Section */
  /* Cookie Options */
  /* Toggle Switch */
  /* Action Buttons */
  /* Cookie V3 Mobile Responsive */
}
.cookie-style-3 .cookie-cookie-v3 {
  position: fixed;
  bottom: 0.3rem;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(120%);
   -ms-transform: translateX(-50%) translateY(120%);
       transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  max-width: max(9rem, 900px);
  width: 90%;
  -moz-transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -moz-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -moz-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-style-3 .cookie-cookie-v3.active {
  -moz-transform: translateX(-50%) translateY(0);
   -ms-transform: translateX(-50%) translateY(0);
       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: -moz-box;
  display: flex;
  -webkit-animation: cookieSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
     -moz-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);
  }
}
@-moz-keyframes cookieSlideUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
         transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes cookieSlideUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
         transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
.cookie-style-3 .cookie-logo-section {
  flex-shrink: 0;
  width: 1.6rem;
  background: -moz-linear-gradient(top, var(--color-primary) 0%, #065a58 100%);
  background: linear-gradient(180deg, var(--color-primary) 0%, #065a58 100%);
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-radial-gradient(20% 80%, circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%), -moz-radial-gradient(80% 20%, circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  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: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-align: center;
       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 .cookie-content-v3 {
  -moz-box-flex: 1;
       flex: 1;
  padding: 0.32rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       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;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cookie-style-3 .cookie-link-v3:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-style-3 .cookie-options-v3 {
  margin-bottom: 0.24rem;
}
.cookie-style-3 .cookie-option-v3 {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.16rem;
  background: var(--pp-bg-light);
  border-radius: 0.1rem;
  margin-bottom: 0.08rem;
  -moz-transition: all 0.3s ease;
  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: -moz-linear-gradient(315deg, var(--color-primary) 0%, var(--color-link) 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-link) 100%);
  border-radius: 0.08rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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 {
  -moz-box-flex: 1;
       flex: 1;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       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 .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;
  -moz-transition: all 0.3s ease;
  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%;
  -moz-transition: all 0.3s ease;
  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 .cookie-actions-v3 {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  margin-top: auto;
}
.cookie-style-3 .cookie-btn-v3 {
  -moz-box-flex: 1;
       flex: 1;
  padding: 0.14rem 0.24rem;
  border-radius: 0.1rem;
  font-size: var(--font-size-13);
  font-weight: 500;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-linear-gradient(315deg, var(--color-primary) 0%, var(--color-link) 100%);
  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 {
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.cookie-style-3 .cookie-btn-accept-v3:hover {
  -moz-transform: translateY(-0.02rem);
   -ms-transform: translateY(-0.02rem);
       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 {
  -moz-transform: translateX(0.02rem);
   -ms-transform: translateX(0.02rem);
       transform: translateX(0.02rem);
}
.cookie-style-3 .cookie-btn-accept-v3:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
  box-shadow: 0 0.02rem 0.08rem rgba(8, 106, 103, 0.3);
}
@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 {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .cookie-style-3 .cookie-logo-section {
    width: 100%;
    padding: 0.24rem 0.2rem;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
         flex-direction: row;
    -moz-box-pack: start;
         justify-content: flex-start;
    gap: 0.16rem;
  }
  .cookie-style-3 .cookie-logo-section::before {
    background: -moz-radial-gradient(80% 50%, circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    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 {
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
         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 {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .cookie-style-3 .cookie-btn-v3 {
    width: 100%;
    padding: 0.16rem 0.2rem;
  }
}

/* ========================================
   1. 基础样式 - 开始
   ======================================== */
* {
  margin: 0px;
  padding: 0px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

.pcbanner {
  display: block;
}

.phonebanner {
  display: none;
}

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

a {
  text-decoration: none;
  outline: none;
  -moz-transition: all 550ms;
  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);
}

/*
@font-face {
	font-family: 'SourceHanSerifCN-Light';
	src: url('../fonts/SOURCEHANSERIFCN-LIGHT-5.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SourceHanSerifCN-ExtraLight';
	src: url('../fonts/SOURCEHANSERIFCN-EXTRALIGHT-3.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SourceHanSansCN-Light';
	src: url('../fonts/思源黑体CN-LIGHT.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
*/
body {
  font-size: var(--font-size-16);
  font-family: "SourceHanSansCN-Light", Arial, Helvetica, "Microsoft YaHei", sans-serif;
  --theme-color: #086a67;
  --primary-color: #c1dedd;
  /* 主题色 */
  --color-primary: #9c0a00;
  --color-huang: #682d03;
  /* 文本色 */
  --color-text: #111111;
  --color-link: #9c0a00;
  --color-vi: #9c0a00;
  /* 导航高度 */
  --header-height: 0.98rem;
  line-height: 1.5;
  --font-size-72: max(0.72rem, 24px);
  --font-size-60: max(0.6rem, 26px);
  --font-size-48: max(0.48rem, 26px);
  --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: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

main {
  display: block;
  -moz-box-flex: 1;
       flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

p {
  color: #111111;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "SourceHanSansCN-Light";
  color: #111;
  font-weight: 100;
}

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

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: -moz-calc(var(--size-letter) / 6) solid var(--c2);
  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);
  -moz-transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}
.slice > .text {
  font-weight: 700;
  color: var(--c2);
  position: relative;
  z-index: 1;
  -moz-transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

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

hr {
  -moz-box-sizing: content-box;
       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 {
  -moz-box-sizing: border-box;
       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] {
  -moz-box-sizing: border-box;
       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;
}

.w1800 {
  width: 93.75%;
  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);
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  z-index: 9999;
}

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

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

.video-popup iframe,
.video-popup video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-popup iframe,
.video-popup video {
  aspect-ratio: 16/9;
  max-height: 90vh;
  object-fit: contain;
}

.video-popup video {
  display: none;
  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 底部组件 - 开始
   ======================================== */
.footer-mid {
  background: #111;
  padding-top: 0.92rem;
  width: 100%;
}

.footer-kuang-bottom {
  padding-top: 0.62rem;
  padding-bottom: 0.55rem;
  font-size: var(--font-size-14);
  border-top: max(0.01rem, 1px) solid rgba(255, 255, 255, 0.1);
}

.footer-kuang-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.footer-kuang-bottom a:hover {
  color: var(--color-primary);
}
.footer-kuang-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-kuang-bottom-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.5rem;
}
.footer-kuang-bottom-right a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
}

.footer-kuang-top {
  padding-bottom: 0.55rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.footer-kuang-left {
  width: 22.2222222222%;
}

.footer-kuang-right {
  width: 72.2222222222%;
}

.footer-kuang-right-list {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
}

.footer-kuang-left-title {
  font-size: var(--font-size-24);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.footer-tj {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.33rem;
  position: relative;
  margin-bottom: 0.48rem;
}
.footer-tj input {
  width: 100%;
  background: transparent;
  border: 0px;
  border-bottom: max(0.01rem, 1px) solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-16);
  color: #fff;
  outline: none;
  padding-bottom: 0.24rem;
}
.footer-tj input::-webkit-input-placeholder {
  font-size: var(--font-size-14);
  color: #fff;
  opacity: 0.7;
}
.footer-tj input:-ms-input-placeholder {
  font-size: var(--font-size-14);
  color: #fff;
  opacity: 0.7;
}
.footer-tj input::placeholder {
  font-size: var(--font-size-14);
  color: #fff;
  opacity: 0.7;
}

.tijiaoyouxiang {
  right: 0px;
  width: max(0.4rem, 40px);
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: absolute;
  padding-bottom: 0.24rem;
}
.tijiaoyouxiang:hover i {
  color: var(--color-primary);
}
.tijiaoyouxiang input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  padding-bottom: 0px;
  border: 0px;
  cursor: pointer;
}
.tijiaoyouxiang i {
  position: absolute;
  color: #595959;
  font-size: var(--font-size-28);
  pointer-events: none;
}

.index-jieshao {
  margin-top: 1.5rem;
}

.index-jieshao-list {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  gap: max(0.1rem, 10px);
  row-gap: 0px;
}
.index-jieshao-list .index-jieshao-div {
  width: 100%;
}

.index-jieshao-div {
  margin-bottom: 0.2rem;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.2rem;
}
.index-jieshao-div .index-jieshao-name {
  margin-bottom: 0px;
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.8);
}
.index-jieshao-div .index-jieshao-name span {
  color: #fff;
  margin-bottom: 0.1rem;
  font-size: var(--font-size-18);
  margin-right: 0.1rem;
}
.index-jieshao-div a:hover {
  color: var(--color-primary);
}

.index-jieshao-name {
  color: #fff;
  margin-bottom: 0.1rem;
  font-size: var(--font-size-18);
}

.index-jieshao-text {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.8);
}

.index-jieshao-fxzj {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.12rem;
}
.index-jieshao-fxzj .fxzj-item {
  position: relative;
  width: max(0.5rem, 40px);
  height: max(0.5rem, 40px);
  padding: max(0.1rem, 10px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  cursor: pointer;
}
.index-jieshao-fxzj .fxzj-item img {
  opacity: 0.5;
}
.index-jieshao-fxzj .fxzj-item:hover {
  background: var(--color-primary);
}
.index-jieshao-fxzj .fxzj-item:hover i {
  color: #fff;
}
.index-jieshao-fxzj .fxzj-item:hover img {
  opacity: 1;
}
.index-jieshao-fxzj .fxzj-item i {
  font-size: var(--font-size-30);
  color: rgba(255, 255, 255, 0.5);
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}
.index-jieshao-fxzj .fxzj-qrcode {
  position: absolute;
  top: -moz-calc(100% + 0.12rem);
  top: calc(100% + 0.12rem);
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-0.08rem);
   -ms-transform: translateX(-50%) translateY(-0.08rem);
       transform: translateX(-50%) translateY(-0.08rem);
  width: max(1.2rem, 120px);
  padding: 0.08rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.06rem 0.2rem rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -moz-transition: opacity 0.3s, transform 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, -moz-transform 0.3s;
  z-index: 20;
}
.index-jieshao-fxzj .fxzj-qrcode::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  border-width: 0.06rem;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.index-jieshao-fxzj .fxzj-qrcode img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  border-radius: 0.04rem;
}
.index-jieshao-fxzj .fxzj-item:hover .fxzj-qrcode,
.index-jieshao-fxzj .fxzj-item:focus-visible .fxzj-qrcode {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(-50%) translateY(0);
   -ms-transform: translateX(-50%) translateY(0);
       transform: translateX(-50%) translateY(0);
}
.index-jieshao-fxzj .fxzj-item:first-child .fxzj-qrcode {
  left: 0;
  -moz-transform: translateX(0) translateY(-0.08rem);
   -ms-transform: translateX(0) translateY(-0.08rem);
       transform: translateX(0) translateY(-0.08rem);
}
.index-jieshao-fxzj .fxzj-item:first-child .fxzj-qrcode::after {
  left: max(0.25rem, 20px);
}
.index-jieshao-fxzj .fxzj-item:first-child:hover .fxzj-qrcode, .index-jieshao-fxzj .fxzj-item:first-child:focus-visible .fxzj-qrcode, .index-jieshao-fxzj .fxzj-item:first-child.active .fxzj-qrcode {
  -moz-transform: translateX(0) translateY(0);
   -ms-transform: translateX(0) translateY(0);
       transform: translateX(0) translateY(0);
}

@media screen and (max-width: 991px) {
  .index-jieshao-fxzj .fxzj-item {
    cursor: pointer;
  }
  .index-jieshao-fxzj .fxzj-item .fxzj-qrcode {
    top: -moz-calc(100% + 0.12rem);
    top: calc(100% + 0.12rem);
    width: max(1.2rem, 120px);
    opacity: 0;
    visibility: hidden;
    -moz-transform: translateX(-50%) translateY(-0.08rem);
     -ms-transform: translateX(-50%) translateY(-0.08rem);
         transform: translateX(-50%) translateY(-0.08rem);
    pointer-events: none;
  }
  .index-jieshao-fxzj .fxzj-item.active .fxzj-qrcode {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateX(-50%) translateY(0);
     -ms-transform: translateX(-50%) translateY(0);
         transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .index-jieshao-fxzj .fxzj-item:first-child .fxzj-qrcode {
    left: 0;
    -moz-transform: translateX(0) translateY(-0.08rem);
     -ms-transform: translateX(0) translateY(-0.08rem);
         transform: translateX(0) translateY(-0.08rem);
  }
  .index-jieshao-fxzj .fxzj-item:first-child .fxzj-qrcode::after {
    left: max(0.25rem, 20px);
  }
  .index-jieshao-fxzj .fxzj-item:first-child.active .fxzj-qrcode {
    -moz-transform: translateX(0) translateY(0);
     -ms-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
.footer-item-title {
  letter-spacing: 1px;
  color: #fff;
  font-size: var(--font-size-18);
  margin-bottom: 0.26rem;
  display: block;
}

.footer-kuang-right-item ul {
  margin-bottom: 0.3rem;
}
.footer-kuang-right-item ul a:hover {
  color: var(--color-primary);
}
.footer-kuang-right-item ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-14);
  margin-bottom: 0.06rem;
}
.footer-kuang-right-item ul li:first-child {
  margin-bottom: 0.08rem;
}
.footer-kuang-right-item ul .footer-item-teshu {
  font-size: var(--font-size-14);
  color: #fff;
}
.footer-kuang-right-item:last-child {
  width: 220px;
}

/* ========================================
   3. Footer 底部组件 - 结束
   ======================================== */
/* ========================================
   4. 导航组件 - 开始
   ======================================== */
::-moz-selection {
  color: #fff;
  background: #829d94;
}
::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: 0.12rem;
  text-align: left;
}

.m-muban-nav {
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}

.m-muban-mid-logo {
  display: block;
  font-size: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  width: max(1.4rem, 120px);
}
.m-muban-mid-logo img {
  width: auto;
}
.m-muban-mid-logo span {
  font-size: var(--font-size-14);
  color: #FFFFFF;
  display: block;
  margin-left: 8px;
}

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

.m-muban-mid-center {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
}
.m-muban-mid-center > ul {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.m-muban-mid-center > ul li.active > a {
  color: var(--color-primary);
}
.m-muban-mid-center > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0.12rem;
}
.m-muban-mid-center > ul > li:hover > a {
  color: var(--color-primary);
}
.m-muban-mid-center > ul > li {
  position: relative;
}
.m-muban-mid-center > ul > li > a {
  display: block;
  font-size: var(--font-size-16);
  font-family: "SourceHanSerifCN-ExtraLight";
  color: #682d03;
  padding: 0.3rem 0.5rem;
  position: relative;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.m-muban-mid-center > ul > li ul {
  width: auto;
  min-width: 220px;
}
.m-muban-mid-center > 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;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.m-muban-mid-center > 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;
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-center > ul > li > ul > li {
  padding: 0;
  position: relative;
}
.m-muban-mid-center > ul > li > ul > li a {
  display: block;
  color: #333;
  font-size: var(--font-size-16);
  line-height: 1.5;
  padding: 0.12rem 0.24rem;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.m-muban-mid-center > ul > li > ul > li a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
  padding-left: 0.32rem;
}
.m-muban-mid-center > ul > li > ul > li:first-child a {
  border-radius: 4px 4px 0 0;
}
.m-muban-mid-center > ul > li > ul > li:last-child a {
  border-radius: 0 0 4px 4px;
}
.m-muban-mid-center > 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;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
}
.m-muban-mid-center > 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;
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-center > ul > li > ul > li > ul > li {
  padding: 0;
}
.m-muban-mid-center > ul > li > ul > li > ul > li > a {
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-14);
}
.m-muban-mid-center > ul > li > ul > li > ul > li > a:hover {
  padding-left: 0.28rem;
}
.m-muban-mid-center > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-left: 0.12rem;
}
.m-muban-mid-center > ul > li > ul > li.has-submenu > a {
  position: relative;
  padding-right: 0.4rem;
}
.m-muban-mid-center > ul > li > ul > li.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  font-size: var(--font-size-18);
  color: #999;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.m-muban-mid-center > ul > li > ul > li.has-submenu:hover > a::after {
  color: var(--color-link);
  right: 0.12rem;
}

.m-muban-mid-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.5rem;
}

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

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

.m-mobilenav {
  display: none;
}

@media screen and (max-width: 991px) {
  .mbnav-wp_seach {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
  }
  .mbnav-wp_seach > form > .box-form {
    display: -moz-box;
    display: flex;
    height: 100%;
    height: 40px;
    -moz-box-pack: justify;
         justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
  }
  .mbnav-wp_seach > form > .box-form > .box-text {
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    border: 0px;
    height: 100%;
    padding-left: 10px;
    -moz-box-sizing: border-box;
         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;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 11;
  }
  .m-mobilenav .mbnav-btn {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 4%;
    left: auto;
    padding: 4px;
    border-radius: 4px;
    overflow: hidden;
    width: 34px;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-btn.active {
    background-color: #fff;
  }
  .m-mobilenav .mbnav-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    -moz-transition: 0.5s;
    transition: 0.5s;
  }
  .m-mobilenav .mbnav-btn.active .line {
    background-color: #FFFFFF;
    background-color: transparent;
  }
  .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 {
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
    background-color: var(--color-primary);
    top: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-btn.active .line3 {
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
    background-color: var(--color-primary);
    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: 100vh;
    opacity: 1;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-item > a {
    opacity: 1;
    color: #FFFFFF;
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    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;
    -moz-transition: all 550ms;
    transition: all 550ms;
    opacity: 0;
  }
  .m-mobilenav .mbnav-fix {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
    width: 100%;
    -moz-box-sizing: border-box;
    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;
    -moz-transform: scale(1.1) translate(60px, -35px);
    -ms-transform: scale(1.1) translate(60px, -35px);
    transform: scale(1.1) translate(60px, -35px);
    opacity: 0;
    -moz-transition: 0.5s 0.1s;
    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%;
    -moz-transition: all 550ms;
    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 {
    -moz-transition-delay: 250ms;
    transition-delay: 250ms;
  }
  .m-mobilenav .mbnav-item:nth-child(2) > a {
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .m-mobilenav .mbnav-item:nth-child(3) > a {
    -moz-transition-delay: 350ms;
    transition-delay: 350ms;
  }
  .m-mobilenav .mbnav-item:nth-child(4) > a {
    -moz-transition-delay: 400ms;
    transition-delay: 400ms;
  }
  .m-mobilenav .mbnav-item:nth-child(5) > a {
    -moz-transition-delay: 450ms;
    transition-delay: 450ms;
  }
  .m-mobilenav .mbnav-item:nth-child(6) > a {
    -moz-transition-delay: 500ms;
    transition-delay: 500ms;
  }
  .m-mobilenav .mbnav-item:nth-child(7) > a {
    -moz-transition-delay: 550ms;
    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;
  -moz-transition: all 0.5s;
  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-huang);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: 0.5s;
  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: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  -moz-transition: 0.5s;
  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: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: absolute;
  right: -1000px;
  top: 0;
  z-index: -1;
  background-color: var(--color-vi);
  -moz-transition: 0.5s;
  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;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

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

/* --- 5.10 邮箱按钮 --- */
.kf-youxiang {
  background: var(--kf-color);
}

/* --- 5.11 响应式 --- */
/* 平板：隐藏 tooltip 文字 */
@media screen and (max-width: 999px) {
  .contact-footer li span {
    display: none;
  }
}
/* 手机：变为底部固定栏 */
@media screen and (max-width: 768px) {
  .contact-footer li:hover {
    -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
         transform: scale(1.1);
  }
  .contact-footer.xs {
    right: 0;
  }
  .contact-footer {
    width: 100%;
    bottom: 0;
    right: 0;
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
         align-items: center;
    -moz-box-pack: 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:first-child {
    display: none;
  }
  .contact-footer li a,
  .contact-footer li p {
    border-radius: 0;
  }
  .contact-footer li:hover .ewm {
    left: 0;
    bottom: 140px;
  }
  .ewm {
    display: none;
    top: -100px;
    left: 0;
  }
}
/* ========================================
   5. 右侧客服组件 - 结束
   ======================================== */
/* ========================================
   6. 弹窗组件 - 开始
   ======================================== */
/* // tanchuang start */
.tanchuang {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: stretch;
       align-items: stretch;
  -moz-box-pack: start;
       justify-content: flex-start;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -moz-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tanchuang.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tanchuang.active .tabchuang-mid {
  -moz-transform: translateX(0);
   -ms-transform: translateX(0);
       transform: translateX(0);
}

.tabchuang-mid {
  max-width: max(6rem, 320px);
  max-height: 100vh;
  overflow-y: auto;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 7rem, 700px;
  padding: var(--font-size-40);
  text-align: left;
  background: #efe9dd;
  border-radius: 0 10px 10px 0;
  position: relative;
  -moz-transform: translateX(-100%);
   -ms-transform: translateX(-100%);
       transform: translateX(-100%);
  -moz-transition: transform 0.4s ease, -moz-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -moz-transform 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.tabchuang-mid::-webkit-scrollbar {
  width: 2px;
}

.guanbi {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  border: 0px;
  border-radius: 50%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: max(0.4rem, 40px);
  height: max(0.4rem, 40px);
  background: var(--color-vi);
  font-size: var(--font-size-20);
  font-weight: bold;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: #fff;
}
.guanbi i {
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
}

.tabchuang-mid form div {
  text-align: left;
}

.tabchuang-mid form p {
  width: 100%;
  height: max(0.5rem, 34px);
  margin-bottom: var(--font-size-30);
}
.tabchuang-mid form p input {
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
}
.tabchuang-mid form p textarea {
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
  border: 0px;
  padding-top: 10px;
  height: 100%;
  overflow: hidden;
}
.tabchuang-mid form p.tea {
  height: max(1rem, 80px);
}
.error-msg {
  color: red;
  font-size: 12px;
  line-height: 18px;
  visibility: hidden;
  opacity: 1;
  text-align: left;
  padding-left: 0px;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.1rem;
}
.error-msg a {
  -moz-transition: 0s;
  transition: 0s;
  text-decoration: underline;
  color: red;
}

.input-error {
  border: 1px solid red !important;
}

input:invalid:focus + .error-msg,
textarea:invalid:focus + .error-msg {
  visibility: visible;
}

.input-error {
  border: 1px solid red !important;
}

.tabchuang-mid > form p.tea {
  height: 1rem;
}
.tabchuang-mid > form p.tea .error-msg {
  position: relative;
  top: -4px;
}

.stbtanc {
  padding: max(0.1rem, 10px) max(0.2rem, 20px);
  border-radius: 10px;
  border: 0px;
  color: #fff;
  background: var(--color-vi);
  border: solid 1px var(--color-vi);
  cursor: pointer;
}

.stbtanc:hover {
  background: var(--color-c);
  color: #222;
}

.gb-title {
  font-size: var(--font-size-30);
}

.gb-neirong > p {
  margin-top: var(--font-size-20);
  height: auto;
  margin-bottom: var(--font-size-20);
}

@media screen and (max-width: 768px) {
  .tabchuang-mid {
    padding: 20px;
  }
  .gb-neirong > p {
    font-size: var(--font-size-14);
    margin-top: 0.1rem;
    height: auto;
    margin-bottom: 0.1rem;
  }
}
/* // tanchuang end */
/* ========================================
   6. 弹窗组件 - 结束
   ======================================== */
/* ========================================
   10. 动效工具类 - 开始
   ======================================== */
.xieleftright {
  position: relative;
}

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

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

/* ========================================
   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 {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

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

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -moz-transform: translate3d(0px, 0, 0);
       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;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -moz-transform;
  display: block;
}

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

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

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

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

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

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

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

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -moz-transform-style: preserve-3d;
       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;
  -moz-box-ordinal-group: 10000;
       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);
     -moz-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: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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;
  -moz-transform-origin: 50%;
   -ms-transform-origin: 50%;
       transform-origin: 50%;
  -moz-box-sizing: border-box;
       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;
     -moz-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);
  }
}

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

@keyframes swiper-preloader-spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -moz-transform: translateZ(0);
       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: -moz-calc(var(--swiper-navigation-size) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: -moz-calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 2;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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;
  -moz-transform-origin: center;
   -ms-transform-origin: center;
       transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       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;
  -moz-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -moz-transform: translate3d(0, 0, 0);
       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 {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
  position: relative;
}

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       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;
  -moz-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%;
  -moz-transform: translate3d(0px, -50%, 0);
       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%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-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;
  -moz-transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
}

.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%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-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 {
  -moz-transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
}

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

.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%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  -moz-transform-origin: left top;
   -ms-transform-origin: left top;
       transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -moz-transform-origin: right top;
   -ms-transform-origin: right top;
       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: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  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: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  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: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: 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 {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
  margin: 0 auto;
}

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

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

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

.swiper-fade .swiper-slide {
  pointer-events: none;
  -moz-transition-property: opacity;
  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;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -moz-transform-origin: 0 0;
   -ms-transform-origin: 0 0;
       transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

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

.swiper-cube.swiper-rtl .swiper-slide {
  -moz-transform-origin: 100% 0;
   -ms-transform-origin: 100% 0;
       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;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

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

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-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;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

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

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

.swiper-cards .swiper-slide {
  -moz-transform-origin: center bottom;
   -ms-transform-origin: center bottom;
       transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  -moz-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);
  -moz-transition: opacity 0.5s ease;
  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;
  -moz-transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
}

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

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  -moz-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;
  }
}
@-moz-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;
  }
}
@-moz-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: -moz-calc(50% - 30px);
  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;
  -moz-transition: background-color 0.4s ease;
  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: -moz-calc(2% + 6px);
  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;
  -moz-animation: bounce 2s infinite ease-in-out;
       animation: bounce 2s infinite ease-in-out;
}

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

@-webkit-keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@-moz-keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
/* ========================================
   12. baguetteBox 灯箱库 - 结束
   ======================================== */
/* ========================================
   13. 图标字体 iconfont - 开始
   ======================================== */
@font-face {
  font-family: "iconfont";
  /* Project id 5103927 */
  src: url("../fonts/iconfont.woff2?t=1786000186386") format("woff2"), url("../fonts/iconfont.woff?t=1786000186386") format("woff"), url("../fonts/iconfont.ttf?t=1786000186386") format("truetype");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: var(--font-size-16);
  line-height: 1;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-fasong:before {
  content: "\e603";
}

.icon-weibo:before {
  content: "\e619";
}

.icon-xiaohongshu:before {
  content: "\e643";
}

.icon-shipinhao:before {
  content: "\e60d";
}

.icon-douyin1:before {
  content: "\e66c";
}

.icon-youxiang1:before {
  content: "\e604";
}

.icon-address1:before {
  content: "\e7c3";
}

.icon-24gl-mailboxFull:before {
  content: "\e948";
}

.icon-jia:before {
  content: "\e65b";
}

.icon-xiangshangjiantou:before {
  content: "\e65d";
}

.icon-xiangxiajiantou:before {
  content: "\e65e";
}

.icon-xiazai:before {
  content: "\e823";
}

.icon-dianhua:before {
  content: "\e881";
}

.icon-dizhi:before {
  content: "\e606";
}

.icon-jian:before {
  content: "\e620";
}

.icon-youjiantou:before {
  content: "\e625";
}

.icon-zuojiantou:before {
  content: "\e626";
}

.icon-zuoyoujiantou:before {
  content: "\e623";
}

.icon-bofang:before {
  content: "\e61e";
}

.icon-tishi:before {
  content: "\e63a";
}

.icon-shangxiajiantou:before {
  content: "\e609";
}

.icon-dizhiguanli:before {
  content: "\e63f";
}

.icon-youtube1:before {
  content: "\e6d6";
}

.icon-fangzi:before {
  content: "\e8ff";
}

.icon-youxiang:before {
  content: "\e908";
}

.icon-instagram:before {
  content: "\e87f";
}

.icon-address:before {
  content: "\e66b";
}

.icon-wenti:before {
  content: "\e613";
}

.icon-facebook:before {
  content: "\e8e7";
}

.icon-whatsapp1:before {
  content: "\e7c1";
}

.icon-calendar:before {
  content: "\e7e1";
}

.icon-zuoyoujiantou1:before {
  content: "\e600";
}

.icon-huida:before {
  content: "\e61f";
}

.icon-xiajiantou:before {
  content: "\e602";
}

.icon-shejiaotubiao-14:before {
  content: "\e642";
}

.icon-sousuo:before {
  content: "\e6d2";
}

.icon-yuyan:before {
  content: "\e85f";
}

.icon-shijian:before {
  content: "\e610";
}

.icon-whatsapp11:before {
  content: "\e758";
}

.icon-yooxi:before {
  content: "\e60c";
}

.icon-top2:before {
  content: "\e608";
}

.icon-top02:before {
  content: "\e6f5";
}

.icon-top:before {
  content: "\e615";
}

.icon-top1:before {
  content: "\e61d";
}

.icon-10:before {
  content: "\e624";
}

.icon-youtube:before {
  content: "\e8a7";
}

.icon-Youtube:before {
  content: "\e880";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-weixin:before {
  content: "\e601";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-Youtube-fill:before {
  content: "\e883";
}

.icon-Facebook:before {
  content: "\e607";
}

.icon-skype1:before {
  content: "\e7c9";
}

.icon-douyin:before {
  content: "\e8db";
}

.icon-tuite:before {
  content: "\e60b";
}

.icon-whatsapp:before {
  content: "\e69c";
}

/* ========================================
   13. 图标字体 iconfont - 结束
   ======================================== */
/* ========================================
   15. 语言切换下拉 - 开始
   ======================================== */
.morenyuyan {
  color: #fff;
  cursor: pointer;
  width: auto;
  height: auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-right: 0.2rem;
  padding: 0.08rem 0.14rem;
  border-radius: 0.08rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0.06rem;
  font-size: var(--font-size-14);
  font-weight: 500;
}
.morenyuyan i {
  font-size: var(--font-size-20);
}
.morenyuyan .current-lang {
  min-width: 0.3rem;
  text-align: center;
}
.morenyuyan::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.06rem solid transparent;
  border-right: 0.06rem solid transparent;
  border-top: 0.06rem solid rgba(255, 255, 255, 0.8);
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
  margin-left: 2px;
}
.morenyuyan:hover {
  background: rgba(255, 255, 255, 0.15);
}

.duoyuyan {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: relative;
}
.duoyuyan.active .morenyuyan::after {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.douyuyanxiala {
  min-width: 100px;
  padding: 0.08rem 0;
  position: absolute;
  top: -moz-calc(100% + 0.08rem);
  top: calc(100% + 0.08rem);
  left: 50%;
  -moz-transform: translateX(-50%) scaleY(0);
   -ms-transform: translateX(-50%) scaleY(0);
       transform: translateX(-50%) scaleY(0);
  -moz-transform-origin: top;
   -ms-transform-origin: top;
       transform-origin: top;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.douyuyanxiala::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.duoyuyan.active .douyuyanxiala {
  -moz-transform: translateX(-50%) scaleY(1);
   -ms-transform: translateX(-50%) scaleY(1);
       transform: translateX(-50%) scaleY(1);
  opacity: 1;
  visibility: visible;
}

.douyuyanxiala a {
  color: #333;
  padding: 0.1rem 0.2rem;
  display: block;
  font-size: var(--font-size-14);
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.douyuyanxiala a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
}
.douyuyanxiala a:first-child {
  border-radius: 4px 4px 0 0;
}
.douyuyanxiala a:last-child {
  border-radius: 0 0 4px 4px;
}
.douyuyanxiala a.active {
  color: var(--color-link);
  font-weight: 500;
  background: rgba(36, 133, 222, 0.12);
}

/* ========================================
   15. 语言切换下拉 - 结束
   ======================================== */
/* ========================================
   16. 搜索组件 - 开始
   ======================================== */
.sousuo-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: relative;
  z-index: 20;
}

.sousuo-text {
  color: var(--color-huang);
  white-space: nowrap;
  margin-left: 0.2rem;
}

.sousuo {
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: transparent;
  border: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousuo i {
  font-size: var(--font-size-24);
  color: var(--color-huang);
}
.sousuo:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.m-muban-nav-item {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  flex-wrap: wrap;
  gap: max(0.08rem, 8px);
}

.m-muban-right-nav {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  color: var(--color-huang);
  gap: 0.16rem;
  cursor: pointer;
}

.m-muban-nav-item span:first-child {
  width: max(0.32rem, 30px);
  height: max(0.02rem, 2px);
  background: var(--color-huang);
  display: block;
  margin-left: auto;
}

.m-muban-nav-item span:last-child {
  width: max(0.17rem, 17px);
  height: max(0.02rem, 2px);
  background: var(--color-huang);
  display: block;
  margin-left: auto;
}

.header-keywords {
  font-size: var(--font-size-16);
  margin-top: var(--font-size-20);
  color: var(--pp-text-muted);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.header-keywords a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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);
}

@media screen and (max-width: 991px) {
  .m-muban-right-nav {
    display: none;
  }
  .m-muban-mid-right {
    margin-right: 50px;
    gap: 0.2rem;
  }
  .sousuo i {
    font-size: 20px;
  }
  .sousuo-text {
    font-size: 18px;
  }
}
.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: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.search-suggestions .suggest-list a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       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;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-suggestions .suggest-list a:hover {
  background: var(--color-link);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
}

.sousou-kuang.active {
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.sousou-kuang {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 2rem;
  right: 0px;
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  height: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  z-index: 999;
}
.sousou-kuang .sousou-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: max(0.44rem, 36px);
  height: max(0.44rem, 36px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  border: 0px solid rgba(17, 17, 17, 0.2);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .sousou-close i {
  font-size: var(--font-size-20);
  color: var(--color-text);
  -moz-transform: rotate(220deg);
   -ms-transform: rotate(220deg);
       transform: rotate(220deg);
}
.sousou-kuang .sousou-close:hover {
  border-color: var(--color-primary);
  -moz-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
       transform: rotate(90deg);
}
.sousou-kuang .sousou-close:hover i {
  color: var(--color-primary);
}
.sousou-kuang .form-sousuo {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 100%;
  height: 0.56rem;
  min-height: 44px;
  border-bottom: max(0.02rem, 2px) solid var(--color-huang);
  border-radius: 0;
  padding: 0 0.08rem 0 0;
  background: transparent;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .form-sousuo:focus-within {
  border-bottom-color: var(--color-primary);
}
.sousou-kuang .form-sousuo i {
  color: var(--color-huang);
}
.sousou-kuang form {
  flex-wrap: wrap;
  max-width: 9rem;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
}
.sousou-kuang form input[type=text] {
  -moz-box-flex: 1;
       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);
  letter-spacing: 0.02em;
}
.sousou-kuang form input[type=text]::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.45);
}
.sousou-kuang form input[type=text]:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.45);
}
.sousou-kuang form input[type=text]::placeholder {
  color: rgba(17, 17, 17, 0.45);
}
.sousou-kuang form input[type=text]:focus::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.sousou-kuang form input[type=text]:focus:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.sousou-kuang form input[type=text]:focus::placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.sousou-kuang form .tj {
  width: 0.44rem;
  min-width: 36px;
  height: 0.44rem;
  min-height: 36px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: 0px;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang form .tj i {
  font-size: var(--font-size-20);
  color: var(--color-huang);
}
.sousou-kuang form .tj:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.sousou-kuang form .tj:hover i {
  color: #fff;
}
.sousou-kuang form .tj:active {
  -moz-transform: scale(0.95);
   -ms-transform: scale(0.95);
       transform: scale(0.95);
}

/* ========================================
   16. 搜索组件 - 结束
   ======================================== */
/* ========================================
   17. 分页组件 - 开始
   ======================================== */
.m-muban-pagebox {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.m-muban-pagebox .m-muban-next,
.m-muban-pagebox .m-muban-prev {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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 {
  min-width: 40px;
  width: 0.4rem;
  min-height: 40px;
  height: 0.4rem;
  background: #f3eee6;
  display: block;
  text-align: center;
  font-size: var(--font-size-16);
  color: #333333;
  font-weight: bold;
  margin: 0.04rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: 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: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: 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;
    -moz-box-pack: center;
    justify-content: center;
  }
}
/* ========================================
   17. 分页组件 - 结束
   ======================================== */
/* ========================================
   18. Banner 轮播 - 开始
   ======================================== */
.banner-mid {
  width: 100%;
  overflow: hidden;
  height: 100svh;
}
.banner-mid .bannerswiper,
.banner-mid .aboutusswiper {
  width: 100%;
}
.banner-mid .bannerswiper .swiper-pagination,
.banner-mid .aboutusswiper .swiper-pagination {
  text-align: center;
  bottom: 0.4rem;
}
.banner-mid .bannerswiper .swiper-pagination .swiper-pagination-bullet,
.banner-mid .aboutusswiper .swiper-pagination .swiper-pagination-bullet {
  background: #FDF4CB;
  opacity: 0.3;
}
.banner-mid .bannerswiper .swiper-pagination .swiper-pagination-bullet-active,
.banner-mid .aboutusswiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

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

.font56 {
  font-size: 0.56rem;
}

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

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

.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;
     -moz-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@-moz-keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}

.annnu-gd {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  background: #fff;
  border-radius: 1rem;
  color: var(--color-text);
  height: max(0.44rem, 40px);
  padding: 0.1rem 0.3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.annnu-gd:hover {
  background: var(--color-link);
  color: #fff;
}

.annu-banner {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.16rem;
}
.annu-banner p {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 0.16rem;
  width: max(0.44rem, 40px);
  height: max(0.44rem, 40px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  cursor: pointer;
  width: auto;
}
.annu-banner p:hover {
  background: var(--color-primary);
}
.annu-banner p img {
  position: unset;
}

.banner-img {
  position: relative;
  width: 100%;
  height: 100svh;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.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-ertitle {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
}

.bannerswiper .swiper-pagination,
.aboutusswiper .swiper-pagination,
.productswiper .swiper-pagination {
  width: 84.08%;
  bottom: 1rem;
  text-align: center;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet,
.aboutusswiper .swiper-pagination .swiper-pagination-bullet,
.productswiper .swiper-pagination .swiper-pagination-bullet {
  width: var(--font-size-16);
  border-radius: 0.2rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: #FDF4CB;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet-active,
.aboutusswiper .swiper-pagination .swiper-pagination-bullet-active,
.productswiper .swiper-pagination .swiper-pagination-bullet-active {
  width: var(--font-size-32);
  border-radius: 0.2rem;
}

.banner-text {
  position: absolute;
  width: 6.5rem;
  left: 3%;
  bottom: 1rem;
  text-align: left;
  z-index: 10;
}
.banner-text h1,
.banner-text .banner-title {
  color: #fff;
  font-weight: 100;
  font-size: var(--font-size-48);
  margin-bottom: 0.4rem;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.banner-text p,
.banner-text .banner-ertitle {
  color: #fff;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
}
.banner-text a {
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}
.banner-text.animate-in h1,
.banner-text.animate-in .banner-title,
.banner-text.animate-in p,
.banner-text.animate-in .banner-ertitle,
.banner-text.animate-in a {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.banner-text.righttop {
  left: auto;
  top: max(1rem, 70px);
  right: 3%;
  text-align: right;
  z-index: 0;
  bottom: auto;
}
.banner-text.righttop .banner-right-top-title {
  font-size: 0.72rem;
  color: var(--color-primary);
}
.banner-text.righttop .banner-right-top-ertitle {
  font-size: var(--font-size-18);
  color: #fff;
  opacity: 0.9;
}

.page-banner-mid {
  margin-top: max(0.8rem, 60px);
  position: relative;
}
.page-banner-mid .banner-img {
  min-height: unset;
}

@media screen and (max-width: 991px) {
  .bannerswiper .swiper-pagination,
  .aboutusswiper .swiper-pagination {
    bottom: 1rem;
  }
}
.banner-youxia {
  position: absolute;
  z-index: 1;
  bottom: 0.3rem;
  right: 0px;
  color: #fff;
  width: 5rem;
}
.banner-youxia a {
  cursor: pointer;
}
.banner-youxia img {
  position: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-youxia .swiper {
  height: 2.34rem;
  margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
  .banner-youxia {
    display: none;
  }
}
/* ========================================
   18. Banner 轮播 - 结束
   ======================================== */
/* ========================================
   20. 隐私协议页面 - 开始
   ======================================== */
.privacy-s1 {
  padding-top: 0.6rem;
  padding-bottom: 1rem;
}

.privacy-content {
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem;
  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. 隐私协议页面 - 结束
   ======================================== */
/* ========================================
   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;
  -moz-transition: all 550ms;
  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 优化 - 结束
   ======================================== */
.annu-red {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.1rem;
  background: var(--color-primary);
  border-radius: 1rem;
  color: var(--color-text);
  height: max(0.44rem, 34px);
  padding: 0.1rem 0.3rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  font-family: "SourceHanSansCN-Light";
  -moz-transition: background 0.5s;
  transition: background 0.5s;
  flex-shrink: 0;
}
.annu-red:hover {
  background: var(--color-huang);
  color: #fff;
}
.annu-red i {
  font-size: var(--font-size-28);
}
.annu-red.white {
  background: #fff;
  color: var(--color-primary);
}
.annu-red.white i {
  color: var(--color-primary);
}

.index-about-mid {
  padding-top: 0.6rem;
  overflow: hidden;
}

.index-about-title {
  font-size: var(--font-size-48);
}

.index-about-ertitle {
  font-size: var(--font-size-24);
  line-height: 1.2;
  margin-top: 0.2rem;
}

.index-about-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.index-about-top.center {
  -moz-box-align: center;
       align-items: center;
}

.indexaboutswiper {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.indexaboutswiper .swiper-slide:nth-child(n) img {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexaboutswiper .swiper-slide:nth-child(n):hover .swiperyuan, .indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active .swiperyuan {
  opacity: 0;
}
.indexaboutswiper .swiper-slide:nth-child(n):hover img, .indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active img {
  opacity: 1;
}
.indexaboutswiper .swiper-slide:nth-child(n):hover .index-math,
.indexaboutswiper .swiper-slide:nth-child(n):hover .indexabout-text,
.indexaboutswiper .swiper-slide:nth-child(n):hover sup, .indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active .index-math,
.indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active .indexabout-text,
.indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active sup {
  color: #873819;
}
.indexaboutswiper .swiper-slide:nth-child(n):hover .indexabout-item-k, .indexaboutswiper .swiper-slide:nth-child(n).swiper-slide-active .indexabout-item-k {
  border-color: transparent;
}
.indexaboutswiper .swiper-slide:nth-child(n) .indexabout-item:nth-child(2) {
  opacity: 0;
}
.indexaboutswiper .swiper-slide:nth-child(2n) .swiperyuan {
  bottom: auto;
  top: 0px;
}
.indexaboutswiper .swiper-slide:nth-child(2n) .indexabout-item:nth-child(1) {
  opacity: 0;
  height: max(1.78rem, 111px);
}
.indexaboutswiper .swiper-slide:nth-child(2n) .indexabout-item:nth-child(2) {
  opacity: 1;
  padding-top: 0.6rem;
  height: max(2.14rem, 145px);
}

.swiperyuan {
  position: absolute;
  bottom: 0px;
  background-color: #fbfaff;
  border: solid 1px #111111;
  width: max(0.18rem, 18px);
  height: max(0.18rem, 18px);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.swiperyuan .swiperyuanxin {
  background: #111;
  border-radius: 50%;
  width: max(0.04rem, 4px);
  height: max(0.04rem, 4px);
  display: inline-block;
}

.indexaboutswiper::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: max(0.01rem, 1px);
  background: #000000;
  top: max(1.86rem, 120px);
}

.indexabout-item {
  height: max(1.96rem, 128px);
  padding: 0.3rem;
  padding-top: 0px;
  position: relative;
}
.indexabout-item .indexabout-item-k {
  padding-top: 0.15rem;
  border-top: 0.01rem solid rgba(0, 0, 0, 0.2);
}

.indexabout-num {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.indexabout-num sup {
  font-family: "SourceHanSerifCN-Light";
  font-size: var(--font-size-18);
  margin-left: 0.01rem;
}

.index-math {
  font-size: var(--font-size-72);
  font-family: "SourceHanSerifCN-Light";
  line-height: 1;
}

.indexabout-text {
  margin-top: 0.2rem;
  white-space: nowrap;
}

.index-about-bottom {
  padding-left: 0.6rem;
  margin-right: 0.6rem;
  font-size: var(--font-size-18);
  max-width: 12rem;
  line-height: 1.9;
}

.swiper-annu .swiper-button-prev,
.swiper-annu .swiper-button-next {
  width: max(0.45rem, 34px);
  height: max(0.45rem, 34px);
  border-radius: 50%;
  border: max(0.01rem, 1px) solid rgba(17, 17, 17, 0.22);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.swiper-annu .swiper-button-prev::after,
.swiper-annu .swiper-button-next::after {
  display: none;
}
.swiper-annu .swiper-button-prev i,
.swiper-annu .swiper-button-next i {
  font-size: var(--font-size-28);
  color: rgb(17, 17, 17);
}
.swiper-annu .swiper-button-prev:hover,
.swiper-annu .swiper-button-next:hover {
  background: var(--color-primary);
  border-color: transparent;
}
.swiper-annu .swiper-button-prev:hover i,
.swiper-annu .swiper-button-next:hover i {
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  margin: 0px;
  width: max(0.45rem, 34px);
  height: max(0.45rem, 34px);
  border-radius: 50%;
  border: max(0.01rem, 1px) solid rgba(17, 17, 17, 0.22);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev i,
.swiper-button-next i {
  font-size: var(--font-size-28);
  color: rgba(17, 17, 17, 0.4);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-primary);
  border-color: transparent;
}
.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  color: #fff;
}

/* ========================================
   indevideo  start
   ======================================== */
.index-video-mid {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.index-video-kuang {
  position: relative;
  aspect-ratio: 1920/960;
}
.index-video-kuang video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-zanting {
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  width: max(0.7rem, 50px);
  height: max(0.7rem, 50px);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.index-zanting img {
  width: max(0.2rem, 20px);
}

@media screen and (max-width: 480px) {
  .index-video-kuang {
    aspect-ratio: 4/3;
  }
  .index-video-mid {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
/* ========================================
   indevideo  end
   ======================================== */
/* ========================================
   产品系列 swiper
   ======================================== */
.productswiper .banner-img img {
  position: unset;
}

.indexproductswiper {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.indexproductswiper .swiper-slide {
  -moz-transform: scale(0.8);
   -ms-transform: scale(0.8);
       transform: scale(0.8);
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.indexproductswiper .swiper-slide-next,
.indexproductswiper .swiper-slide-prev {
  -moz-transform: scale(0.94);
   -ms-transform: scale(0.94);
       transform: scale(0.94);
}
.indexproductswiper .swiper-slide-next {
  position: relative;
  left: max(0.3rem, 30px);
}
.indexproductswiper .swiper-slide-prev {
  position: relative;
  right: max(0.3rem, 30px);
}
.indexproductswiper .swiper-slide-active {
  -moz-transform: scale(1.15);
   -ms-transform: scale(1.15);
       transform: scale(1.15);
}

.indexproduct-img {
  overflow: hidden;
}
.indexproduct-img s img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indexproduct-item {
  display: block;
}
.indexproduct-item:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.indexproduct-item:hover .indexproduct-name i {
  opacity: 1;
}

.indexproduct-name {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.1rem;
  font-family: "SourceHanSansCN-Light";
  font-size: var(--font-size-30);
  margin-top: 0.22rem;
}
.indexproduct-name i {
  font-size: var(--font-size-30);
  font-weight: bold;
  opacity: 0;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.index-about-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.3rem;
}
.index-about-right .swiper-annu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.2rem;
}
.index-about-right .swiper-button-next,
.index-about-right .swiper-button-prev {
  position: unset;
  margin: 0px;
  z-index: 1;
}
.index-about-right .swiper-button-next i,
.index-about-right .swiper-button-prev i {
  color: rgba(17, 17, 17, 0.22);
}

@media screen and (max-width: 991px) {
  .indexproductswiper .swiper-slide-prev,
  .indexproductswiper .swiper-slide-next {
    position: unset;
  }
  .indexproductswiper .swiper-slide-active {
    -moz-transform: scale(1);
     -ms-transform: scale(1);
         transform: scale(1);
  }
  .indexproductswiper .swiper-slide-prev,
  .indexproductswiper .swiper-slide-next {
    -moz-transform: scale(0.8);
     -ms-transform: scale(0.8);
         transform: scale(0.8);
  }
}
/* indexgongyi start */
.index-gongyi-title {
  font-size: 0.72rem;
  text-align: center;
  line-height: 1;
}
.index-gongyi-title.white {
  color: #fff;
}

.index-gongyi-mid {
  padding: 1rem 0px;
  position: relative;
}
.index-gongyi-mid::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

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

.index-gongyi {
  overflow: hidden;
}

.gongyiswiper {
  overflow: visible;
  margin-top: 0.65rem;
}
.gongyiswiper img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.gongyiswiper .swiper-slide {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  padding: 0.2rem;
  border: solid 2px rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.3);
}
.gongyiswiper .swiper-slide-active {
  background: rgb(255, 255, 255);
}
.gongyiswiper .index-about-right {
  width: 100%;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.24rem;
  margin-top: 0.5rem;
}
.gongyiswiper .index-about-right .swiper-button-next,
.gongyiswiper .index-about-right .swiper-button-prev {
  border-color: #776e67;
}
.gongyiswiper .index-about-right .swiper-button-next i,
.gongyiswiper .index-about-right .swiper-button-prev i {
  color: #776e67;
}
.gongyiswiper .index-about-right .swiper-button-next:hover,
.gongyiswiper .index-about-right .swiper-button-prev:hover {
  border-color: var(--color-primary);
}
.gongyiswiper .index-about-right .swiper-button-next:hover i,
.gongyiswiper .index-about-right .swiper-button-prev:hover i {
  color: #fff;
}

.index-gy-title {
  font-size: var(--font-size-36);
  color: #111;
}

.index-gy-content {
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.7);
}
.index-gy-content P {
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.7);
}

.index-gongyi-left {
  width: 8.02rem;
  overflow: hidden;
}
.index-gongyi-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-gongyi-right {
  width: 5.9rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-between;
}

.index-gongyi-right-bottom p {
  overflow: hidden;
  width: 2.08rem;
  aspect-ratio: 208/145;
}

@media screen and (max-width: 768px) {
  .index-gy-content {
    margin-top: 0.1rem;
  }
  .gongyiswiper .swiper-slide {
    flex-wrap: wrap;
  }
  .index-gongyi-left,
  .index-gongyi-right {
    width: 100%;
  }
}
/* indexgongyi end*/
/* index-yishuguan start */
.index-yishuguan-mid {
  position: relative;
  height: 100vh;
}
.index-yishuguan-mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-yishuguan-kuang {
  width: 7.3rem;
  position: absolute;
  left: 3%;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
}
.index-yishuguan-kuang p {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.3rem;
  color: #fff;
}
.index-yishuguan-kuang p i {
  font-size: var(--font-size-50);
}
.index-yishuguan-kuang .index-about-title {
  line-height: 1.4;
  font-family: "SourceHanSerifCN-Light";
}

.index-yishuguan-content {
  margin-top: 0.7rem;
  font-family: "SourceHanSerifCN-Light";
  font-size: var(--font-size-20);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .index-yishuguan-kuang {
    width: auto;
    right: 3%;
  }
}
/* ========================================
   通用滚动入场动画：渐入上移
   用法：给元素加 .fade-up（+ .delay-1~5 可选延迟）
   ======================================== */
.fade-up {
  opacity: 0;
  -moz-transform: translateY(40px);
   -ms-transform: translateY(40px);
       transform: translateY(40px);
  -moz-transition: opacity 0.9s ease, transform 0.9s ease, -moz-transform 0.9s ease;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition: opacity 0.9s ease, transform 0.9s ease, -moz-transform 0.9s ease;
  will-change: opacity, transform;
}
.fade-up.delay-1 {
  -moz-transition-delay: 0.1s;
       transition-delay: 0.1s;
}
.fade-up.delay-2 {
  -moz-transition-delay: 0.2s;
       transition-delay: 0.2s;
}
.fade-up.delay-3 {
  -moz-transition-delay: 0.3s;
       transition-delay: 0.3s;
}
.fade-up.delay-4 {
  -moz-transition-delay: 0.4s;
       transition-delay: 0.4s;
}
.fade-up.delay-5 {
  -moz-transition-delay: 0.5s;
       transition-delay: 0.5s;
}
.fade-up.animate-in {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.no-js .fade-up,
.fade-up.animate-in {
  opacity: 1;
}

/* index-yishuguan end*/
/* index-new start */
.index-news-mid {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background: #fff;
}
.index-news-mid p {
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}

.index-news-left-img {
  overflow: hidden;
  height: 5.2rem;
}
.index-news-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-news-left {
  display: block;
  width: 50.5555555556%;
}
.index-news-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.index-news-left:hover .index-news-left-title {
  color: var(--color-primary);
}
.index-news-left:hover .index-news-left-icon {
  background: var(--color-primary);
  color: #fff;
}

.index-news-left-item {
  display: block;
}

.index-news-kk-list {
  margin-top: 0.4rem;
}

.index-news-kk {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.6rem;
}

/* 新闻 tab 切换动画：淡入 + 上移 */
.news-kk-anim {
  -webkit-animation: newsKkIn 0.4s ease both;
     -moz-animation: newsKkIn 0.4s ease both;
          animation: newsKkIn 0.4s ease both;
}

@-webkit-keyframes newsKkIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-moz-keyframes newsKkIn {
  from {
    opacity: 0;
    -moz-transform: translateY(20px);
         transform: translateY(20px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}

@keyframes newsKkIn {
  from {
    opacity: 0;
    -moz-transform: translateY(20px);
         transform: translateY(20px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
.index-news-left-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #111111;
  margin-bottom: 0.14rem;
  font-size: var(--font-size-30);
  margin-top: 0.24rem;
}

.index-news-left-ertitle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 0.2rem;
}

.index-news-left-date {
  color: rgba(17, 17, 17, 0.7);
}

.index-news-left-icon {
  width: max(0.45rem, 38px);
  height: max(0.45rem, 38px);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-right: 0.1rem;
  flex-shrink: 0;
}
.index-news-left-icon i {
  font-size: var(--font-size-28);
}

.index-news-left-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.index-news-right-item {
  display: block;
  border-bottom: max(0.01rem, 1px) solid #ccc;
  padding-bottom: 0.6rem;
  padding-top: 0.5rem;
  padding-left: 0.27rem;
}
.index-news-right-item:hover .index-news-right-item-title {
  color: var(--color-primary);
}
.index-news-right-item:first-child {
  padding-top: 0.3rem;
}
.index-news-right-item:last-child {
  border-bottom: 0px;
}

.index-news-right-item-top {
  font-size: var(--font-size-30);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  width: 100%;
  margin-bottom: 0.28rem;
}

.index-news-right {
  border-left: max(0.01rem, 1px) solid #ccc;
  width: 45.5555555556%;
}

.index-news-right-item-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.index-news-right-item-date {
  white-space: nowrap;
  font-style: italic;
}

.index-news-bottom {
  color: rgba(17, 17, 17, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-about-tab {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.6rem;
  font-size: var(--font-size-18);
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}
.index-about-tab p {
  color: #747474;
  cursor: pointer;
}
.index-about-tab p.active, .index-about-tab p:hover {
  color: #111111;
}

@media screen and (max-width: 991px) {
  .index-news-kk {
    flex-wrap: wrap;
  }
  .index-news-left,
  .index-news-right {
    width: 100%;
  }
  .footer-kuang-top {
    flex-wrap: wrap;
  }
  .index-jieshao {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .footer-kuang-right {
    width: 100%;
  }
  .footer-kuang-right .footer-kuang-right-item {
    display: none;
  }
  .footer-kuang-right .footer-kuang-right-item:last-child {
    display: block;
    width: 100%;
  }
  .index-jieshao-list {
    width: 100%;
  }
  .footer-kuang-left {
    max-width: 500px;
    width: 100%;
  }
  .index-jieshao-list .index-jieshao-div {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .footer-mid {
    padding-bottom: 40px;
  }
  .index-jieshao-list .index-jieshao-div {
    width: 100%;
  }
}
/* index-new end*/
/* Breadcrumb start */
.crumbs-kuang {
  color: rgba(17, 17, 17, 0.5);
  font-size: var(--font-size-16);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
}
.crumbs-kuang p {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.crumbs-kuang p img {
  width: max(0.16rem, 14px);
  height: max(0.16rem, 14px);
}
.crumbs-kuang .hengxian {
  display: inline-block;
  width: 0.26rem;
  height: max(0.01rem, 1px);
  background: rgba(17, 17, 17, 0.5);
}
.crumbs-kuang a:hover {
  color: var(--color-primary);
}
.crumbs-kuang span.active {
  color: var(--color-text);
}

/* Breadcrumb end*/
/* newslist start*/
.news-maodian-mid {
  margin-top: 0.5rem;
}

.news-maodian-kuang {
  border-top: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.3);
  border-bottom: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.8rem;
  overflow-x: auto;
  margin-bottom: 0.6rem;
}
.news-maodian-kuang a {
  font-size: var(--font-size-18);
  color: rgba(17, 17, 17, 0.5);
  white-space: nowrap;
}
.news-maodian-kuang a:hover, .news-maodian-kuang a.active {
  color: var(--color-text);
}

@media screen and (max-width: 991px) {
  .news-maodian-kuang {
    gap: 0.3rem;
  }
}
.news-list-kuang {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  row-gap: 0.5rem;
}

.news-list-item-img {
  overflow: hidden;
  aspect-ratio: 580/376;
}
.news-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-item {
  display: block;
}
.news-list-item:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.news-list-item:hover .news-list-item-title {
  color: var(--color-primary);
}

.news-list-item-title {
  font-size: var(--font-size-30);
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 0.27rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: max(0.75rem, 52px);
}

.news-list-item-bottom {
  margin-top: 0.51rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem;
  color: rgba(17, 17, 17, 0.5);
}
.news-list-item-bottom p {
  color: rgba(17, 17, 17, 0.5);
}

.news-list-mid {
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  .news-list-kuang {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-list-kuang {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-axgy-mid {
  -moz-transform: scale(0.5);
   -ms-transform: scale(0.5);
       transform: scale(0.5);
  will-change: transform;
}
.news-axgy-mid .news-axgy-kuang {
  min-height: 7.5rem;
}

.news-axgy-kuang {
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.news-axgy-kuang img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-axgy-kk {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 65.8888888889%;
  padding: 0.3rem 0px;
}
.news-axgy-kk .news-axgy-title,
.news-axgy-kk .news-axgy-text {
  opacity: 0;
  -moz-transform: translateY(24px);
   -ms-transform: translateY(24px);
       transform: translateY(24px);
  -moz-transition: opacity 0.8s ease, transform 0.8s ease, -moz-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -moz-transform 0.8s ease;
}
.news-axgy-kk.show .news-axgy-title {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.news-axgy-kk.show .news-axgy-text {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
  -moz-transition-delay: 0.25s;
       transition-delay: 0.25s;
}

.news-axgy-title {
  font-size: var(--font-size-48);
  color: #fff;
  margin-bottom: 0.5rem;
}

.news-axgy-top {
  margin-bottom: 0.4rem;
}
.news-axgy-top .news-axgy-title {
  margin-bottom: 0px;
}
.news-axgy-top .title-en.white {
  padding: 0px;
}

.news-axgy-text {
  font-size: var(--font-size-18);
  line-height: 1.9;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .news-axgy-kk {
    width: 90%;
  }
}
.news-qywh-mid {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.news-qywh-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 1.68rem;
}

.news-qywh-left {
  width: 59.4444444444%;
  overflow: hidden;
}
.news-qywh-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.news-qywh-right {
  width: 23.7777777778%;
}

.news-qywh-top {
  margin-bottom: 0.4rem;
}

.news-qywh-text {
  font-size: var(--font-size-18);
  line-height: 2;
}

@media screen and (max-width: 991px) {
  .news-qywh-kuang {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .news-qywh-right {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .news-qywh-left,
  .news-qywh-right {
    width: 100%;
  }
}
/* newslist end*/
/* products start */
.products-cp-mid {
  padding-top: 0.4rem;
  padding-bottom: 1.5rem;
}

.procp-div-bottom {
  text-align: center;
  gap: 0.3rem;
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 0.2rem 0.26rem;
}
.procp-div-bottom i {
  display: inline-block;
  color: var(--color-link);
  font-size: var(--font-size-30);
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  color: #DB3731;
}

.procp-div-title {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  text-align: center;
  width: 100%;
  font-size: var(--font-size-26);
  color: #916750;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.procp-div-en {
  color: #916750;
  font-size: var(--font-size-18);
}

.procp-div {
  display: block;
  position: relative;
}
.procp-div .annu-red {
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -moz-transform 0.3s;
}
.procp-div i {
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -moz-transform 0.3s;
}

.procp-div:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.procp-div:hover .annu-red {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.procp-div:hover i {
  -moz-transform: rotate(0deg);
   -ms-transform: rotate(0deg);
       transform: rotate(0deg);
}

.procp-div-img {
  overflow: hidden;
  aspect-ratio: 36/63;
}
.procp-div-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procpswiper .swiper-button-next,
.procpswiper .swiper-button-prev {
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
}
.procpswiper .swiper-slide .procp-div {
  margin-top: 1.5rem;
}
.procpswiper .swiper-slide:nth-child(2n) .procp-div {
  margin-top: 0;
}

.products-lunbo-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.products-lunbo-left {
  width: 50%;
}

.products-lunbo-right {
  max-width: max(7.2rem, 660px);
  padding: 0.6rem;
}

.probig-img {
  aspect-ratio: 45/36;
  cursor: pointer;
}
.probig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.probig-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.probig-img:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.prosmall-img {
  aspect-ratio: 118/85;
  cursor: pointer;
}
.prosmall-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-lunbo-right-title {
  margin-bottom: 0.28rem;
}

.products-lunbo-right-text {
  line-height: 1.8;
  color: var(--color-text);
  font-size: var(--font-size-18);
  opacity: 0.7;
  min-height: 1.2rem;
  margin-bottom: 0.34rem;
}

.annu-qiehuan {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.2rem;
}
.annu-qiehuan .swiper-button-prev {
  position: unset;
}
.annu-qiehuan .swiper-button-next {
  position: unset;
}

.products-lunbo-right-bottom .annu-qiehuan {
  margin-bottom: 0.9rem;
}

.products-lunbo-kuang {
  margin-bottom: 0.5rem;
}
.products-lunbo-kuang .products-lunbo-item:nth-child(2n) {
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
       flex-flow: row-reverse;
  -moz-box-pack: justify;
       justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .products-lunbo-right {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .products-lunbo-item {
    flex-wrap: wrap;
  }
  .products-lunbo-kuang .products-lunbo-item:nth-child(2n) {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-flow: column;
  }
  .products-lunbo-left,
  .products-lunbo-right {
    width: 100%;
    max-width: 100%;
  }
  .products-lunbo-right-text {
    min-height: unset;
  }
  .products-lunbo-right-bottom .annu-qiehuan {
    margin-bottom: 20px;
  }
  .products-lunbo-right {
    padding: 0.2rem 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .procp-div-bottom {
    padding: 10px;
  }
}
.pro-cpxl {
  margin-top: 1rem;
  padding-bottom: 0.4rem;
}
.pro-cpxl .news-axgy-kuang {
  -moz-box-align: unset;
       align-items: unset;
  width: 100%;
  position: relative;
  aspect-ratio: 1920/1080;
}
.pro-cpxl .news-axgy-kuang video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-cpxl .news-axgy-kk {
  padding-top: 1.5rem;
  display: -moz-box;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-bottom: 0.5rem;
  z-index: 2;
  position: relative;
}
.pro-cpxl .news-axgy-mid {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pro-cpxl-title {
  line-height: 1.2;
  color: #fff;
  font-size: var(--font-size-48);
  width: 100%;
}

.pro-cpxl-xh {
  color: #fff;
  width: 100%;
  font-size: var(--font-size-30);
}

.pro-cpxl-annu {
  padding: 0.4rem 0px;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  display: -moz-box;
  display: flex;
  gap: 0.3rem;
  font-size: var(--font-size-18);
  cursor: pointer;
}
.pro-cpxl-annu img {
  width: max(0.26rem, 22px);
}
.pro-cpxl-annu:hover {
  color: var(--color-primary);
}

/* products end*/
/* newsxq start*/
.muban-newsxq-mid {
  padding-top: 0.9rem;
}

.muban-newsxq-title {
  font-size: var(--font-size-48);
  font-weight: 100;
  line-height: 1.1;
}

.muban-newsxq-kuang {
  max-width: 16rem;
  width: 100%;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin: auto;
  text-align: center;
}

.muban-newsxq-content {
  border-top: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.2);
  border-bottom: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.2);
  margin-top: 0.7rem;
  padding-top: 0.47rem;
  margin-bottom: 0.47rem;
}

.muban-newsxq-con-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.newsxq-con-shemei {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  gap: 0.16rem;
}
.newsxq-con-shemei p,
.newsxq-con-shemei a {
  cursor: pointer;
  display: block;
  color: rgba(17, 17, 17, 0.5);
}
.newsxq-con-shemei p i,
.newsxq-con-shemei a i {
  font-size: var(--font-size-24);
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}
.newsxq-con-shemei p:hover i,
.newsxq-con-shemei a:hover i {
  color: var(--color-primary);
}

.muban-newsxq-con-center {
  font-size: var(--font-size-18);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 2;
}
.muban-newsxq-con-center img {
  display: inline-block;
  width: auto;
}
.muban-newsxq-con-center p,
.muban-newsxq-con-center a,
.muban-newsxq-con-center span {
  color: rgba(17, 17, 17, 0.5);
}
.muban-newsxq-con-center a:hover {
  color: var(--color-primary);
}

.muban-newsxq-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
}
.muban-newsxq-bottom .leftzuo {
  max-width: 45%;
  width: 100%;
  text-align: left;
}
.muban-newsxq-bottom .rightyou {
  max-width: 45%;
  width: 100%;
  text-align: right;
}
.muban-newsxq-bottom p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.9);
}
.muban-newsxq-bottom a:hover {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .muban-newsxq-bottom {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
  }
  .muban-newsxq-bottom .rightyou,
  .muban-newsxq-bottom .leftzuo {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.muban-fhlb {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-shrink: 0;
  gap: 0.1rem;
  color: rgba(17, 17, 17, 0.9);
}
.muban-fhlb img {
  width: max(0.16rem, 16px);
}
.muban-fhlb:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(12%) sepia(95%) saturate(4200%) hue-rotate(355deg) brightness(70%) contrast(110%);
          filter: brightness(0) saturate(100%) invert(12%) sepia(95%) saturate(4200%) hue-rotate(355deg) brightness(70%) contrast(110%);
}

.muban-tuijian {
  margin-top: 1.26rem;
}

.tuijian-date {
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 0.15rem;
}

.tujian-title {
  font-size: var(--font-size-30);
  color: var(--color-text);
  line-height: 1.2;
}

.tuijian-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.5rem;
  gap: 0.8rem;
  padding-bottom: 1rem;
}

.muban-tuijiannews {
  max-width: 16rem;
  width: 100%;
  margin: auto;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.tuijian-item {
  border-right: max(0.01rem, 1px) solid rgba(87, 46, 33, 0.22);
  padding-right: 0.6rem;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.tuijian-item:last-child {
  border-right-color: transparent;
}
.tuijian-item:hover .tujian-title {
  color: var(--color-primary);
}

.tujian-gengduo {
  margin-top: 0.53rem;
  color: rgba(17, 17, 17, 0.5);
}

@media screen and (max-width: 768px) {
  .muban-newsxq-kuang,
  .muban-tuijiannews {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .newsxq-con-shemei {
    gap: 16px;
  }
  .newsxq-con-shemei a i {
    font-size: 24px;
  }
  .tuijian-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .tuijian-list {
    grid-template-columns: 1fr;
  }
  .tuijian-item {
    border-right: 0px;
    padding-right: 0px;
  }
}
/* newsxq end*/
.font48 {
  font-size: var(--font-size-48);
}

.about-ppjs-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.7rem;
}

.about-ppjs-left {
  width: 37%;
  padding: 0.2rem 0px;
}

.about-ppjs-text {
  margin-top: 0.4rem;
  opacity: 0.7;
  line-height: 2;
  font-size: var(--font-size-18);
}

.about-ppjs-right {
  width: 57.6666666667%;
  overflow: hidden;
}
.about-ppjs-right:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .about-ppjs-kuang {
    flex-wrap: wrap;
  }
  .about-ppjs-left,
  .about-ppjs-right {
    width: 100%;
  }
}
.about-ppfw-kuang {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}
.about-ppfw-kuang .about-ppfw-top {
  text-align: center;
  margin-bottom: 0.4rem;
}
.about-ppfw-kuang .about-ppfw-title {
  text-align: center;
}

.about-ppfw-div-title {
  font-size: 0.42rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.about-ppfw-list {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.18rem;
}

.about-ppfw-item {
  -moz-box-flex: 1;
       flex: 1;
  height: 9.4rem;
  position: relative;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: flex 0.5s, -moz-box-flex 0.5s;
  transition: flex 0.5s;
  transition: flex 0.5s, -moz-box-flex 0.5s;
}
.about-ppfw-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-ppfw-item::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.about-ppfw-item.active {
  -moz-box-flex: 3;
       flex: 3;
}
.about-ppfw-item.active .about-ppfw-div-ertitle {
  display: block;
  opacity: 1;
}

.about-ppfw-div {
  position: relative;
  z-index: 1;
  padding: 0.5rem;
  text-align: center;
}

.about-ppfw-div-ertitle {
  font-size: var(--font-size-16);
  line-height: 2;
  color: #fff;
  opacity: 0.7;
  height: 1rem;
  opacity: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  .about-ppfw-list {
    flex-wrap: wrap;
  }
  .about-ppfw-item {
    -moz-box-flex: 2;
         flex: 2;
  }
  .about-ppfw-div-ertitle {
    display: block;
    opacity: 1;
    height: unset;
  }
  .about-ppfw-item {
    -moz-box-flex: unset;
         flex: unset;
    height: auto;
  }
  .about-ppfw-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .about-ppfw-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-yfsc-mid {
  margin-top: 1rem;
}

.about-yfsc-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.2rem;
}

.about-yfsc-left {
  width: 47.7777777778%;
  overflow: hidden;
}
.about-yfsc-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.about-yfsc-right {
  width: 46.6666666667%;
}

@media screen and (max-width: 991px) {
  .about-yfsc-kuang {
    flex-wrap: wrap;
  }
  .about-yfsc-left,
  .about-yfsc-right {
    width: 100%;
  }
}
.about-zby-mid {
  margin-top: 1.86rem;
}

.about-zby-div {
  background: -moz-linear-gradient(top, #fff, transparent);
  background: linear-gradient(to bottom, #fff, transparent);
}

.about-zby-div-left {
  width: 43%;
  z-index: 3;
  top: -0.5rem;
  padding-bottom: 3rem;
  z-index: 3;
  position: relative;
}

.about-zby-title {
  margin-bottom: 0.1rem;
}

.about-zby-yinying {
  width: auto;
}
.about-zby-yinying img {
  width: auto;
}

.about-zby-kuang {
  height: 100%;
  width: 100%;
  position: relative;
  min-height: 9.6rem;
  position: relative;
}

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

.about-zby-bj {
  position: absolute;
  height: 100%;
  z-index: 2;
  width: 100%;
  top: 0px;
}

@media screen and (max-width: 1280px) {
  .about-zby-div-left {
    width: 94%;
  }
}
@media screen and (max-width: 991px) {
  .about-zby-div-left {
    width: 100%;
    left: 0px;
    height: 100%;
    padding-bottom: 1rem;
  }
  .about-zby-kuang {
    position: relative;
  }
  .about-zby-kuang::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 2;
  }
}
/* about-zscq start */
.about-zscq-mid {
  padding-top: 1rem;
}

.about-zscq-kuang {
  width: 14.28rem;
  margin: auto;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
.about-zscq-kuang > img {
  position: absolute;
  width: auto;
  height: auto;
  left: 0px;
  z-index: 0;
  bottom: 0.2rem;
}

.about-zscq-ertitle {
  font-size: var(--font-size-18);
  color: rgba(17, 17, 17, 0.8);
  line-height: 2;
  margin-top: 0.22rem;
  margin-bottom: 0.4rem;
}

.about-zscq-num {
  font-size: 0.64rem;
  font-family: "SourceHanSerifCN-Light";
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}
.about-zscq-num span {
  font-size: 0.64rem;
  line-height: 1;
}
.about-zscq-num sup {
  left: 0.04rem;
  position: relative;
  top: -0.3rem;
  font-size: var(--font-size-16);
}

.about-zscq-text {
  margin-top: 0rem;
  font-size: var(--font-size-14);
}

.about-zscq-kuang-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
  z-index: 1;
}

.about-zscq-kuang-top {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0.6rem;
}

.about-zscq-div:hover .about-zscq-num {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .about-zscq-kuang {
    width: 93.75%;
    padding: 0px;
    margin-bottom: 0.5rem;
  }
  .about-zscq-kuang > img {
    display: none;
  }
  .about-zscq-kuang-bottom {
    gap: 0.5rem;
  }
}
/* about-zscq end*/
/* about-zcgm  start*/
.aboutus-ztgm-title {
  font-size: var(--font-size-48);
  color: #fff;
}

.about-ztgm {
  margin-top: 0.5rem;
}

.about-ztgm-mid {
  height: 100svh;
  overflow: hidden;
  position: relative;
  margin-top: 0.1rem;
}

.ztgm-div {
  height: 100%;
  width: 100%;
  aspect-ratio: 4/2.7;
}
.ztgm-div::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.ztgm-div .ztgm-div-text {
  width: 100%;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  position: absolute;
  z-index: 2;
  bottom: max(1.8rem, 140px);
  text-align: center;
}
.ztgm-div .ztgm-div-text p {
  color: rgb(255, 255, 255);
}

.ztgm-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutus-ztgm-title {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  z-index: 2;
}

.ztgm-div-text {
  line-height: 2;
  font-size: var(--font-size-18);
}

.about-ztgm-kuang {
  height: 100%;
}

.swiperzhanting {
  height: 100%;
}
.swiperzhanting .swiper-button-prev {
  left: max(0.6rem, 44px);
}
.swiperzhanting .swiper-button-next {
  right: max(0.6rem, 44px);
}
.swiperzhanting .swiper-button-prev,
.swiperzhanting .swiper-button-next {
  background: #fff;
}
.swiperzhanting .swiper-button-prev i,
.swiperzhanting .swiper-button-next i {
  color: var(--color-text);
}
.swiperzhanting .swiper-button-prev:hover,
.swiperzhanting .swiper-button-next:hover {
  background: var(--color-primary);
}
.swiperzhanting .swiper-button-prev:hover i,
.swiperzhanting .swiper-button-next:hover i {
  color: #fff;
}

.swiperzhantingsmall {
  width: max(4.5rem, 450px);
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  bottom: 0.56rem;
  z-index: 3;
}
.swiperzhantingsmall .swiper-slide {
  cursor: pointer;
}
.swiperzhantingsmall .swiper-slide-thumb-active .ztgm-div {
  border: solid 2px rgb(156, 10, 0);
}
.swiperzhantingsmall .ztgm-div {
  border: solid 2px transparent;
}
.swiperzhantingsmall .ztgm-div::before {
  background: transparent;
}

@media screen and (max-width: 768px) {
  .swiperzhantingsmall {
    width: 90%;
  }
  .ztgm-div .ztgm-div-text {
    bottom: 18%;
  }
  .swiperzhanting {
    height: 100%;
  }
  .swiperzhanting .swiper-button-prev {
    left: 20px;
  }
  .swiperzhanting .swiper-button-next {
    right: 20px;
  }
}
/* about-zcgm  end*/
.about-yyzz-mid {
  position: relative;
  padding-top: 0.8rem;
  padding-bottom: 0.3rem;
}
.about-yyzz-mid > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.about-yyzz-mid::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(227, 217, 201, 0.7);
  opacity: 0;
}

.ryzsswiper {
  max-width: max(5rem, 500px);
  text-align: center;
  margin-top: 0.5rem;
  margin: 0px;
}

.ryzs-div-title {
  font-size: var(--font-size-30);
  line-height: 1.2;
  margin-top: 0.5rem;
  padding-right: 0.3rem;
  padding-left: 0.3rem;
}

.about-yyzz-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.2rem;
}
.about-yyzz-bottom .swiper-button-prev,
.about-yyzz-bottom .swiper-button-next {
  position: unset;
  display: -moz-box;
  display: flex;
  border-color: #000;
  margin-bottom: 0.1rem;
  flex-shrink: 0;
}
.about-yyzz-bottom .swiper-button-prev i,
.about-yyzz-bottom .swiper-button-next i {
  color: #000;
}
.about-yyzz-bottom .swiper-button-prev:hover,
.about-yyzz-bottom .swiper-button-next:hover {
  border-color: var(--color-primary);
}
.about-yyzz-bottom .swiper-button-prev:hover i,
.about-yyzz-bottom .swiper-button-next:hover i {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .about-yyzz-mid::before {
    opacity: 1;
  }
  .about-yyzz-bottom {
    gap: 0.2rem;
  }
  .about-yyzz-bottom {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ryzs-div-title {
    font-size: 14px;
  }
}
/*about fzlc start */
.about-fzlc-mid {
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  background-color: rgb(244, 244, 244);
  border-top-left-radius: 0.35rem;
  border-top-right-radius: 0.35rem;
}

.fzlc-swiper-left {
  width: 4.4rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.fzlc-swiper-right {
  width: 73.3333333333%;
  position: relative;
}

.fzlc-swiper-img {
  width: 8.26rem;
  position: relative;
  height: 5rem;
}

.fzlc-swiper-img img:nth-child(1) {
  width: 6.08rem;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.fzlc-swiper-img img:nth-child(2) {
  width: 80%;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  right: 0px;
}

.fzlcswipertop .swiper-slide {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.3rem;
}

.fzlc-swiper-left-title {
  font-size: var(--font-size-24);
  margin-bottom: 0.4rem;
}

.fzlc-swiper-left-desc {
  font-size: var(--font-size-16);
  line-height: 2;
  color: rgba(17, 17, 17, 0.7);
}

.fzlc-swiper-nianfen {
  position: absolute;
  right: 0px;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  font-size: 2.7rem;
  font-family: "SourceHanSerifCN-regular";
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke: 3px #8a1a1a;
  -webkit-text-fill-color: transparent;
  paint-order: stroke fill;
  line-height: 1;
  z-index: 2;
}
.fzlc-swiper-nianfen sup {
  font-size: 0.4rem;
  line-height: 1;
  position: relative;
  top: -0.7rem;
  vertical-align: super;
  font-family: "SourceHanSansCN-Light";
  -webkit-text-stroke-width: 1px;
}

.about-fzlc-k-bottom {
  background-repeat: repeat-x;
  background-position: bottom;
  padding-left: 3%;
  padding-right: 3%;
}

.fzlcswiperbottom {
  margin-top: 1rem;
  cursor: pointer;
}
.fzlcswiperbottom .fazlc-botoom-img {
  padding: 0.1rem;
  background: #d9c6b6;
  border-right: max(0.01rem, 1px) solid rgba(255, 255, 255, 0.3);
  aspect-ratio: 4/3;
}
.fzlcswiperbottom .fazlc-botoom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: max(0.02rem, 2px) solid transparent;
}
.fzlcswiperbottom .swiper-slide-thumb-active .fazlc-botoom-img img {
  border: 2px solid var(--color-primary);
}
.fzlcswiperbottom .swiper-slide-thumb-active .fazlc-botoom-name {
  opacity: 1;
}

.fzlc-annu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.2rem;
  margin-top: -0.14rem;
}
.fzlc-annu .swiper-button-next,
.fzlc-annu .swiper-button-prev {
  position: unset;
}

.fazlc-botoom-name {
  text-align: center;
  font-size: var(--font-size-16);
  color: var(--color-text);
  opacity: 0.5;
  margin-top: 0.1rem;
  margin-bottom: max(0.2rem, 20px);
}

@media screen and (max-width: 991px) {
  .fzlc-swiper-nianfen {
    font-size: 1.5rem;
  }
  .fzlcswipertop .swiper-slide {
    flex-wrap: wrap;
  }
  .fzlc-swiper-right,
  .fzlc-swiper-left {
    width: 100%;
  }
  .fzlc-annu {
    margin-top: 10px;
  }
  .fzlcswiperbottom {
    margin-top: 10px;
  }
  .fzlc-swiper-img {
    width: 100%;
  }
  .fzlc-swiper-img img:nth-child(1) {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .fzlc-swiper-img img:nth-child(1) {
    width: 80%;
  }
}
/*about fzlc end */
/* yishuguan start */
.banner-yishuguan-div {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}

.yishuguan-title {
  font-size: 0.7rem;
  color: #fff;
  width: 6.5rem;
  font-family: "SourceHanSerifCN-Light";
  font-weight: 100;
}

.yishuguan-content {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.9);
  width: max(4.7rem, 350px);
  line-height: 1.8;
}

.huangjinyishuguan-main {
  background: #ece3d5;
}

.yishuguanswiper .banner-img {
  height: unset;
  aspect-ratio: 192/119;
}
.yishuguanswiper .swiper-pagination {
  font-size: var(--font-size-18);
  color: #fff;
  bottom: 50%;
  height: auto;
  text-align: left;
  width: 93.75%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: max(0.01rem, 1px) solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.yishuguanswiper .swiper-pagination .swiper-pagination-current {
  font-size: var(--font-size-36);
}

.huangjinannu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  z-index: 4;
  bottom: 2rem;
  gap: 0.1rem;
}
.huangjinannu .swiper-button-next,
.huangjinannu .swiper-button-prev {
  position: unset;
  border: max(0.01rem, 1px) solid rgba(255, 255, 255, 0.2);
  margin: 0px;
}
.huangjinannu .swiper-button-next i,
.huangjinannu .swiper-button-prev i {
  font-size: var(--font-size-16);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .yishuguan-content {
    width: 50%;
  }
  .yishuguanswiper .swiper-pagination {
    bottom: 60%;
  }
  .banner-yishuguan-div {
    top: 42%;
  }
}
@media screen and (max-width: 768px) {
  .yishuguanswiper .swiper-pagination {
    display: none;
  }
  .huangjinannu {
    bottom: 50px;
  }
  .banner-yishuguan-div {
    flex-wrap: wrap;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
  }
  .yishuguanswiper .banner-img {
    height: 100svh;
  }
  .yishuguan-title {
    margin-bottom: 20px;
  }
  .yishuguan-content {
    width: 100%;
  }
}
.hjysg-top {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hjysg-top-title {
  font-size: 0.6rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  font-family: "SourceHanSerifCN-Light";
}

.hjysg-top-ertitle {
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.9);
  max-width: max(9.9rem, 990px);
  line-height: 1.9;
  letter-spacing: 1px;
  margin: auto;
  background: transparent;
  font-family: "SourceHanSerifCN-Light";
}

.jingdian-div {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0px;
  padding: 0px 0.5rem;
}

.jingdian-div-top .title-en {
  font-size: var(--font-size-14);
}

.jingdian-div-title {
  font-family: "SourceHanSerifCN-Light";
  font-size: var(--font-size-32);
  line-height: 1.2;
}

.jingdian-div:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.jingdian-div-title,
.jingdian-div-content p {
  color: #f7e5a0;
  font-family: "SourceHanSerifCN-Light";
}

.jingdian-div-content {
  margin-top: 0.14rem;
  color: #f7e5a0;
  border-top: max(0.01rem, 1px) solid #c69a65;
  padding-top: 0.3rem;
  position: relative;
}
.jingdian-div-content::after {
  content: "";
  position: absolute;
  left: max(-0.06rem, -6px);
  top: max(-0.04rem, -6px);
  width: max(0.06rem, 6px);
  height: max(0.06rem, 6px);
  border-radius: 50%;
  border: 1px solid #c69a65;
}
.jingdian-div-content::before {
  content: "";
  position: absolute;
  right: max(-0.06rem, -6px);
  top: max(-0.04rem, -4px);
  width: max(0.06rem, 6px);
  height: max(0.06rem, 6px);
  border-radius: 50%;
  border: 1px solid #c69a65;
}

.jingdian-div-content p {
  letter-spacing: 1px;
  color: #f7e5a0;
  font-family: "SourceHanSerifCN-Light";
  line-height: 2;
}

.jingdian-biaoqian {
  display: inline-block;
  font-size: var(--font-size-16);
  font-weight: bold;
  color: #873819;
  background: url(../images/dashi.webp) no-repeat;
  background-size: 100% 100%;
  padding: 0.04rem 0.1rem;
}

.hjysg-mid {
  overflow: hidden;
  position: relative;
  margin-top: -2.6rem;
  z-index: 2;
  background-size: cover;
}
.hjysg-mid > img {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hjysg-kuang {
  padding-top: 1.6rem;
}

.jingdianswiper {
  overflow: visible;
  width: 100%;
  margin-top: 0.68rem;
}
.jingdianswiper .swiper-slide {
  -moz-transform: scale(0.8);
   -ms-transform: scale(0.8);
       transform: scale(0.8);
}
.jingdianswiper .swiper-slide-active {
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}
.jingdianswiper .swiper-button-next {
  right: 1.8rem;
}
.jingdianswiper .swiper-button-prev {
  left: 1.8rem;
}
.jingdianswiper .swiper-button-next,
.jingdianswiper .swiper-button-prev {
  width: 0.74rem;
  height: 0.74rem;
  border: max(0.02rem, 2px) solid #fff;
}
.jingdianswiper .swiper-button-next i,
.jingdianswiper .swiper-button-prev i {
  font-size: var(--font-size-34);
  color: #fff;
}
.jingdianswiper .swiper-button-next:hover,
.jingdianswiper .swiper-button-prev:hover {
  border-color: var(--color-primary);
}

.jingdian-div-left {
  overflow: hidden;
  width: 5.5rem;
  aspect-ratio: 537/732;
  overflow: hidden;
}
.jingdian-div-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jingdian-div-right {
  width: 5.87rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  background: #bb844e;
  padding: 0.5rem;
  min-height: 6rem;
  gap: 0.6rem;
}

@media screen and (max-width: 1280px) {
  .hjysg-mid {
    background-size: contain;
  }
}
@media screen and (max-width: 991px) {
  .jingdianswiper .swiper-button-next {
    right: 1.4rem;
  }
  .jingdianswiper .swiper-button-prev {
    left: 1.4rem;
  }
  .hjysg-mid {
    background-size: contain;
    margin-top: -2.2rem;
  }
  .jingdian-div {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .jingdian-div .jingdian-div-left,
  .jingdian-div .jingdian-div-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .jingdianswiper .swiper-button-next {
    right: 0px;
  }
  .jingdianswiper .swiper-button-prev {
    left: 0px;
  }
  .hjysg-kuang {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 450px) {
  .jingdian-div {
    flex-wrap: wrap;
    background: -moz-linear-gradient(top, #ece3d5 0 20%, #873819 20% 100%);
    background: linear-gradient(to bottom, #ece3d5 0 20%, #873819 20% 100%);
    padding-bottom: 20px;
  }
  .jingdian-div-content {
    overflow-y: auto;
    overflow-x: hidden;
  }
  .jingdian-div-left {
    width: 100%;
  }
  .jingdian-div-right {
    width: 100%;
  }
  .jingdianswiper {
    margin-top: 20px;
  }
}
.huangjin-video {
  padding-top: 1rem;
  max-width: 16.2rem;
  margin: auto;
  padding-left: max(0.1rem, 10px);
  padding-right: max(0.1rem, 10px);
}

.huangjin-wh-kuang {
  margin-bottom: 0.4rem;
}

.huangjin-wh-mid {
  padding-top: 1rem;
  position: relative;
}
.huangjin-wh-mid > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.huangjin-wh-item {
  width: 47.6666666667%;
}

.huangjin-wh-img {
  overflow: hidden;
}
.huangjin-wh-img:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.huangjin-wh-content {
  padding: 0.5rem 0.8rem;
  text-align: center;
}

.huangjin-wh-con-title {
  font-size: var(--font-size-30);
  color: var(--color-text);
  margin-bottom: 0.32rem;
}

.huangjin-wh-con-ertitle {
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.9);
  line-height: 2;
}

.huangjin-wh-list {
  margin-top: 0.8rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.8rem;
}
.huangjin-wh-list .hengxian {
  width: max(0.88rem, 88px);
  height: max(0.02rem, 2px);
  background: var(--color-text);
  margin: auto;
  margin-bottom: 0.3rem;
}

.huangjin-wh-item:nth-child(2n) {
  margin-top: 1.4rem;
}

.hjysg-top-whcc {
  margin-left: 0px;
}

@media screen and (max-width: 991px) {
  .huangjin-wh-content {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .huangjin-wh-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .huangjin-wh-item {
    width: 100%;
  }
  .huangjin-wh-item:nth-child(2n) {
    margin-top: 0px;
  }
}
.jx-div {
  aspect-ratio: 57/34;
  overflow: hidden;
}
.jx-div:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.jx-div img, .jx-div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jxswiper {
  margin-top: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: max(0.01rem, 1px) dashed #fff;
}
.jxswiper .swiper-button-next,
.jxswiper .swiper-button-prev {
  position: unset;
  border-color: rgba(255, 255, 255, 0.7);
}
.jxswiper .swiper-button-next i,
.jxswiper .swiper-button-prev i {
  color: rgba(255, 255, 255, 0.7);
}
.jxswiper .swiper-button-next:hover,
.jxswiper .swiper-button-prev:hover {
  border-color: var(--color-primary);
}

.shouhu-annu {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.hjysg-jx-mid {
  background-size: cover;
  padding-top: 2.4rem;
  position: relative;
}

.wuding-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  text-align: center;
}
.wuding-img img {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0 auto;
}

.hjysg-jx-kuang {
  margin-top: -0.4rem;
}
.hjysg-jx-kuang .hjysg-top-title {
  color: #fff;
}
.hjysg-jx-kuang .hjysg-top-ertitle {
  color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 991px) {
  .hjysg-jx-kuang {
    background: #bb844e;
  }
  .hjysg-jx-mid {
    background-position: top center;
  }
}
@media screen and (max-width: 580px) {
  .hjysg-jx-mid {
    padding-top: 70px;
  }
}
.hjysg-lp-mid {
  padding-top: 1rem;
  padding-bottom: 0.84rem;
  background: #bb844e;
  overflow: hidden;
  position: relative;
}

.hjysg-lp-kuang {
  text-align: center;
}
.hjysg-lp-kuang .hjysg-top-title {
  color: #fff;
}
.hjysg-lp-kuang .hjysg-top-ertitle {
  color: rgba(255, 255, 255, 0.9);
}

.jinqi-img {
  aspect-ratio: 2/1;
  overflow: hidden;
}
.jinqi-img:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.jinqi-img img, .jinqi-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jinqi-title {
  font-size: var(--font-size-24);
  font-family: "SourceHanSerifCN-Light";
  line-height: 2;
  color: #fff;
  margin-top: 0.4rem;
}

.jinqiswiper {
  margin-top: 1rem;
  overflow: visible;
}

/* yishuguan end*/
/* lxwm start*/
.contactus-s1-mid {
  padding-top: 0.4rem;
  text-align: center;
}

.contactus-img {
  width: max(0.8rem, 60px);
  height: max(0.8rem, 60px);
  border: max(0.02rem, 2px) solid var(--color-primary);
  margin: auto;
  border-radius: 50%;
  padding: 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-bottom: 0.5rem;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}

.content-title {
  font-size: var(--font-size-18);
  margin-bottom: 0.2rem;
}

.content-text {
  font-size: var(--font-size-20);
}

.contactus-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.6rem;
}

.contactus-item {
  max-width: max(3.2rem, 320px);
  width: 100%;
}
.contactus-item .content-text {
  font-size: var(--font-size-24);
  margin-bottom: 0.3rem;
}
.contactus-item a:hover {
  color: var(--color-primary);
}
.contactus-item:first-child .content-text {
  font-size: var(--font-size-20);
}
.contactus-item:hover .contactus-img {
  -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
       transform: translateY(-10px);
}

.contantus-kk-img {
  width: max(2.7rem, 160px);
  height: max(2.7rem, 160px);
  overflow: hidden;
  border-radius: 50%;
  background-color: #efe9dd;
  padding: max(0.5rem, 40px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.contantus-kk-img img {
  width: auto;
}

.contactus-kk-title {
  font-size: var(--font-size-24);
  margin-top: 0.4rem;
}

.contactus-list {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 0.8rem;
}

.jys-lxfs-title {
  font-size: var(--font-size-18);
  color: #efe9dd;
  margin-bottom: 0.1rem;
}

.jys-lxfs-text {
  font-size: var(--font-size-30);
  color: #efe9dd;
}

.jys-left {
  width: max(0.66rem, 40px);
  height: max(0.66rem, 40px);
  border: max(0.02rem, 2px) solid #fff;
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.jys-left img {
  width: max(0.32rem, 24px);
}

.jys-lxfs {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.24rem;
  text-align: left;
}

.contact-jys {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-jys-div {
  max-width: max(3.4rem, 300px);
  position: absolute;
  left: 0.5rem;
  top: 0.9rem;
}

.jys-title {
  text-align: left;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 991px) {
  .contact-jys {
    min-height: 400px;
  }
  .contact-jys > img {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-jys-div {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .contactus-list {
    gap: 0.6rem;
  }
}
/* lxwm end*/
/* qywh start*/
.company-s1-top {
  margin-bottom: 0.7rem;
}

.company-s1-title {
  font-size: var(--font-size-48);
  font-family: "SourceHanSansCN-Light";
  font-weight: 100;
}

.company-s1-div {
  padding: 0.4rem 0.26rem;
}

.company-s1-div-title {
  font-size: var(--font-size-36);
  margin-bottom: 0.1rem;
  color: #fff;
}

.company-s1-div-neirong {
  font-size: var(--font-size-16);
  color: #fff;
}

.company-s1-list {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.2rem;
}

.company-s1-item {
  position: relative;
  height: 5.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: start;
       justify-content: flex-start;
  overflow: hidden;
}
.company-s1-item::before {
  content: "";
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.55), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.company-s1-item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.company-s1-item .company-s1-div {
  position: relative;
  z-index: 2;
}
.company-s1-item:hover > img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.company-s1-item.item-e {
  grid-column: 2/span 2;
}

@media screen and (max-width: 768px) {
  .company-s1-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .company-s1-item.item-e {
    grid-column: auto;
  }
}
.company-s1-kuang {
  padding-bottom: 0.9rem;
  border-bottom: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.5);
}

.company-s1-ertitle {
  font-size: var(--font-size-18);
  line-height: 2;
  margin-top: 0.4rem;
}

.company-s1-top {
  max-width: max(9rem, 900px);
}

.company-s2-mid {
  padding-top: 0.8rem;
}

.company-s2-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}

.company-s2-kuang {
  padding-bottom: 0.9rem;
  border-bottom: max(0.01rem, 1px) solid rgba(0, 0, 0, 0.5);
}

.company-s2-img {
  overflow: hidden;
  aspect-ratio: 44/21;
}
.company-s2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-s2-img:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.company-s4 .company-s2-img {
  aspect-ratio: 44/29;
}

@media screen and (max-width: 580px) {
  .company-s2-list {
    grid-template-columns: 1fr;
  }
}
.gh-left {
  width: 49.4444444444%;
}

.gh-swiper-div {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.4rem;
}

.gh-right {
  width: 44.4444444444%;
  font-size: var(--font-size-18);
  line-height: 2;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.unst-annu {
  position: unset;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.unst-annu .swiper-button-next,
.unst-annu .swiper-button-prev {
  position: unset;
}

@media screen and (max-width: 768px) {
  .gh-swiper-div {
    flex-wrap: wrap;
  }
  .gh-left,
  .gh-right {
    width: 100%;
  }
}
.company-s4-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.17rem;
}

@media screen and (max-width: 768px) {
  .company-s4-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.17rem;
  }
}
/* qywh end*/
/* gongyihuodong start */
.aixin-div-text {
  margin-top: 0.4rem;
  font-size: var(--font-size-18);
  line-height: 2;
  opacity: 0.6;
  border-top: max(0.01rem, 1px) solid rgba(17, 17, 17, 0.11);
  padding-top: 0.4rem;
}

.aixin-div {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.6rem;
}
.aixin-div .aixin-div-left {
  width: 53.3333333333%;
  overflow: hidden;
}
.aixin-div .aixin-div-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.aixin-div .aixin-div-right {
  width: 43.1666666667%;
  padding-bottom: max(0.5rem, 40px);
}

.aixinswiper {
  margin-bottom: 1rem;
}
.aixinswiper .swiper-pagination {
  width: auto;
  left: 57%;
  bottom: 0px;
}
.aixinswiper .swiper-pagination .swiper-pagination-total {
  font-size: var(--font-size-24);
}
.aixinswiper .swiper-pagination .swiper-pagination-current {
  font-size: var(--font-size-36);
  font-weight: 700;
}
.aixinswiper .swiper-button-next {
  bottom: 0px;
  top: auto;
}
.aixinswiper .swiper-button-prev {
  bottom: 0px;
  top: auto;
  left: auto;
  right: max(0.8rem, 50px);
}

@media screen and (max-width: 991px) {
  .aixin-div {
    flex-wrap: wrap;
  }
  .aixin-div .aixin-div-left,
  .aixin-div .aixin-div-right {
    width: 100%;
  }
  .aixinswiper .swiper-pagination {
    left: 0px;
  }
}
/* gongyihuodong end*/
/* newslits-mid start */
.company-news-item {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 0.9rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: max(0.01rem, 1px) solid rgba(17, 17, 17, 0.3);
}
.company-news-item:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.company-news-item:hover .company-news-title {
  color: var(--color-primary);
}
.company-news-item:last-child {
  border-color: transparent;
  margin-bottom: 0px;
}

.company-news-left {
  width: 29.4444444444%;
  aspect-ratio: 530/316;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  overflow: hidden;
}
.company-news-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-news-right {
  width: 65%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  align-content: space-between;
}

.company-news-right-top {
  width: 100%;
}

.company-news-date {
  margin-bottom: 0.1rem;
}

.company-news-date,
.company-news-more {
  font-size: var(--font-size-16);
  color: rgba(17, 17, 17, 0.5);
}

.company-news-title {
  font-size: var(--font-size-30);
  color: rgb(17, 17, 17);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.27rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.company-news-desc {
  font-size: var(--font-size-18);
  color: rgba(0, 0, 0, 0.5);
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 991px) {
  .company-news-item {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .company-news-left,
  .company-news-right {
    width: 100%;
  }
}
/* newslits-mid end*/
/* ========================================
   全屏导航面板 - 开始
   ======================================== */
.m-muban-mid {
  position: relative;
}
.m-muban-mid::before {
  content: "";
  display: table;
  display: none;
}

.m-muban-nav {
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.m-muban-nav.nav-open {
  background-color: #f5efe7 !important;
}
.m-muban-nav.nav-open .m-muban-mid {
  -moz-box-align: start;
       align-items: flex-start;
}

.fullscreen-nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 100vw;
  margin-left: -moz-calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  background-color: #f5efe7;
  z-index: 97;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -moz-transition: max-height 0.5s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: max-height 0.5s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.fullscreen-nav-panel.active {
  max-height: 50rem;
  opacity: 1;
  visibility: visible;
}

.fullscreen-nav-inner {
  max-width: 14rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: center;
       justify-content: center;
  padding-top: 1rem;
}

.fullscreen-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.fullscreen-nav-item {
  position: relative;
  margin-bottom: 0.35rem;
}
.fullscreen-nav-item > a {
  font-size: 0.44rem;
  color: #333;
  font-family: var(--font-regular);
  text-decoration: none;
  display: block;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.fullscreen-nav-item > a:hover {
  color: var(--color-primary);
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-row {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-title {
  font-size: 0.44rem;
  color: #333;
  font-family: var(--font-regular);
  text-decoration: none;
  flex-shrink: 0;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-title:hover {
  color: var(--color-primary);
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-submenu {
  display: -moz-box;
  display: flex;
  gap: 0.5rem;
  -moz-box-align: center;
       align-items: center;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(51, 51, 51, 0.2);
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-submenu .submenu-item {
  font-size: 0.16rem;
  color: #666;
  text-decoration: none;
  padding: 0.08rem 0.16rem;
  border-bottom: 2px solid transparent;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-submenu .submenu-item:hover, .fullscreen-nav-item.has-submenu .fullscreen-nav-submenu .submenu-item.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-images {
  display: -moz-box;
  display: flex;
  gap: 0.15rem;
  flex-shrink: 0;
}
.fullscreen-nav-item.has-submenu .fullscreen-nav-images img {
  width: 1.5rem;
  height: 1rem;
  object-fit: cover;
  border-radius: 0.04rem;
}
.fullscreen-nav-item:last-child {
  margin-bottom: 0;
}

.m-muban-right-nav.active .m-muban-nav-item span:first-child {
  -moz-transform: rotate(45deg) translate(3px, 3px);
   -ms-transform: rotate(45deg) translate(3px, 3px);
       transform: rotate(45deg) translate(3px, 3px);
}
.m-muban-right-nav.active .m-muban-nav-item span:last-child {
  -moz-transform: rotate(-45deg) translate(3px, -3px);
   -ms-transform: rotate(-45deg) translate(3px, -3px);
       transform: rotate(-45deg) translate(3px, -3px);
}

@media screen and (max-width: 991px) {
  .fullscreen-nav-inner {
    padding: 1.5rem 1rem;
  }
  .fullscreen-nav-item {
    margin-bottom: 0.3rem;
  }
  .fullscreen-nav-item > a {
    font-size: 0.36rem;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-row {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 0.25rem;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-title {
    font-size: 0.36rem;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-submenu {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
    gap: 0.25rem;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(51, 51, 51, 0.15);
    padding-top: 0.2rem;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-submenu .submenu-item {
    font-size: 0.14rem;
    padding: 0.06rem 0.12rem;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-images {
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
         flex-direction: row;
    -moz-box-pack: center;
         justify-content: center;
  }
  .fullscreen-nav-item.has-submenu .fullscreen-nav-images img {
    width: 48%;
    height: auto;
  }
}
/* ========================================
   全屏导航面板 - 结束
   ======================================== */
.title-en {
  font-size: var(--font-size-24);
  color: var(--color-text);
}
.title-en.white {
  color: #fff;
  text-align: center;
  padding-top: 12px;
}
.title-en.huang {
  color: #f7e5a0;
}

.index-about-title .title-en {
  color: #fff;
  padding-bottom: 12px;
}

/* fzlc xiugai start */
.fzlc-two-kk {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.2rem;
}

.fzlc-two-left {
  width: 34%;
}

.fzlc-two-right {
  width: 62%;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  text-align: center;
  height: 4.3rem;
  position: relative;
}
.fzlc-two-right img {
  width: auto;
}
.fzlc-two-right .swiper-button-prev {
  left: 0px;
  padding: 0px;
}
.fzlc-two-right .swiper-button-next {
  right: 0px;
}
.fzlc-two-right .swiper-button-prev,
.fzlc-two-right .swiper-button-next {
  width: auto;
  height: auto;
  border: 0px;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
}
.fzlc-two-right .swiper-button-prev i,
.fzlc-two-right .swiper-button-next i {
  font-size: 2rem;
  font-weight: 100;
  color: var(--color-link);
}
.fzlc-two-right .swiper-button-prev:hover,
.fzlc-two-right .swiper-button-next:hover {
  background: transparent;
}

.fzlc-two-nf {
  font-size: var(--font-size-28);
  color: #752F24;
  font-weight: 900;
  font-family: "SourceHanSansCN-Light";
  flex-shrink: 0;
  position: relative;
}

.fzlc-two-sj {
  line-height: 1.2;
  color: #752F24;
  font-size: var(--font-size-32);
  padding-left: 0.2rem;
  border-left: max(0.01rem, 1px) solid #9A6B64;
}

.fzlc-two-left-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: max(0.01rem, 1px) solid #A1756E;
  position: relative;
}
.fzlc-two-left-top::before {
  content: "";
  position: absolute;
  bottom: -0.022rem;
  left: 0px;
  width: 0.88rem;
  height: max(0.04rem, 4px);
  background: #752f24;
}

.fzlc-two-left-bottom {
  margin-top: 0.3rem;
  font-size: var(--font-size-28);
}

.falc-two-yuan {
  width: max(0.12rem, 12px);
  height: max(0.12rem, 12px);
  margin: auto;
  background: #8e2629;
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.falc-two-yuan::before {
  content: "";
  position: absolute;
  left: 0px;
  top: max(0.06rem, 6px);
  width: 100%;
  height: max(0.02rem, 2px);
  background: #8e2629;
}

@media screen and (max-width: 991px) {
  .fzlc-two-kk {
    flex-wrap: wrap;
  }
  .fzlc-two-left,
  .fzlc-two-right {
    width: 100%;
    height: auto;
  }
  .fzlc-two-right .swiper-button-prev,
  .fzlc-two-right .swiper-button-next {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fzlc-two-left-bottom {
    font-size: 16px;
  }
  .fzlc-two-sj {
    font-size: 16px;
  }
  .fzlc-two-nf {
    font-size: 20px;
  }
}
/* fzlc xiugai end*/
/* zhengshu xiugai start */
.ryzsswiper .swiper-slide {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  height: auto;
}
.ryzsswiper .ryzs-div {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 100%;
  height: 4rem;
  overflow: hidden;
}
.ryzsswiper .ryzs-div img {
  position: unset;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* zhengshu xiugai end */
.yuyan {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.04rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font-size-18);
}
.yuyan a {
  color: rgba(0, 0, 0, 0.4);
}
.yuyan a:hover, .yuyan a.active {
  color: var(--color-huang);
}
.yuyan p {
  color: var(--color-huang);
}

.aboutu-yyzz-bj img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.nav-xiala-fiexd {
  position: fixed;
  width: 100%;
  background: #efe9dd;
  left: 0px;
  padding: 0.2rem 0 0.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 99;
}

/* nav-list-xiala */
.nav-xiala-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}
.nav-xiala-list a {
  display: inline-block;
  font-size: var(--font-size-16);
  color: #682d03;
  white-space: nowrap;
  padding: 0.1rem 0px;
  padding-bottom: 0.05rem;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  margin-bottom: 0.1rem;
}
.nav-xiala-list a:hover {
  color: var(--color-primary);
}
.nav-xiala-list a:hover::before {
  right: inherit;
  width: 100%;
}
.nav-xiala-list a::before {
  content: "";
  position: absolute;
  background: var(--color-link);
  height: max(0.01rem, 1px);
  bottom: 0px;
  left: inherit;
  right: 0%;
  width: 0%;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.m-muban-mid-logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.m-muban-mid-center > ul > li > a {
  color: #fff;
}

.yuyan {
  color: #fff;
}
.yuyan p, .yuyan a {
  color: #fff;
}
.yuyan a {
  opacity: 0.8;
}

.sousuo i, .sousuo .sousuo-text {
  color: #fff;
}

.m-muban-nav:hover,
.m-muban-nav.active,
.m-muban-nav.pagenav {
  background: #efe9dd;
}
.m-muban-nav:hover .yuyan,
.m-muban-nav.active .yuyan,
.m-muban-nav.pagenav .yuyan {
  color: var(--color-huang);
}
.m-muban-nav:hover .yuyan p, .m-muban-nav:hover .yuyan a,
.m-muban-nav.active .yuyan p,
.m-muban-nav.active .yuyan a,
.m-muban-nav.pagenav .yuyan p,
.m-muban-nav.pagenav .yuyan a {
  color: var(--color-huang);
}
.m-muban-nav:hover .yuyan a:hover,
.m-muban-nav.active .yuyan a:hover,
.m-muban-nav.pagenav .yuyan a:hover {
  opacity: 1;
  color: var(--color-link);
}
.m-muban-nav:hover .sousuo i, .m-muban-nav:hover .sousuo .sousuo-text,
.m-muban-nav.active .sousuo i,
.m-muban-nav.active .sousuo .sousuo-text,
.m-muban-nav.pagenav .sousuo i,
.m-muban-nav.pagenav .sousuo .sousuo-text {
  color: var(--color-huang);
}
.m-muban-nav:hover .m-muban-mid-logo img,
.m-muban-nav.active .m-muban-mid-logo img,
.m-muban-nav.pagenav .m-muban-mid-logo img {
  -webkit-filter: unset;
          filter: unset;
}
.m-muban-nav:hover .m-muban-mid-center > ul li > a,
.m-muban-nav.active .m-muban-mid-center > ul li > a,
.m-muban-nav.pagenav .m-muban-mid-center > ul li > a {
  color: #682d03;
}
.m-muban-nav:hover .m-muban-mid-center > ul li > a:hover,
.m-muban-nav.active .m-muban-mid-center > ul li > a:hover,
.m-muban-nav.pagenav .m-muban-mid-center > ul li > a:hover {
  color: var(--color-link);
}
.m-muban-nav:hover .m-muban-mid-center > ul li:hover > a,
.m-muban-nav.active .m-muban-mid-center > ul li:hover > a,
.m-muban-nav.pagenav .m-muban-mid-center > ul li:hover > a {
  color: var(--color-link);
}
.m-muban-nav:hover .m-muban-mid-center > ul > li.active > a,
.m-muban-nav.active .m-muban-mid-center > ul > li.active > a,
.m-muban-nav.pagenav .m-muban-mid-center > ul > li.active > a {
  color: var(--color-link);
}

.footer-kuang-right-item:last-child {
  width: 3rem;
}

.muban-newsxq-mid {
  padding-bottom: 1rem;
}

.muban-newsxq-kuang {
  max-width: 9rem;
  margin: 0px;
  padding: 0px;
}

.muban-newsxq-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: stretch;
       align-items: stretch;
  gap: 0.3rem;
  -moz-box-pack: center;
       justify-content: center;
}

.muban-tuijiannews {
  width: 30%;
  max-width: unset;
  margin: 0px;
}

.muban-tuijiannew-kk {
  position: -webkit-sticky;
  position: sticky;
  top: max(1rem, 60px);
  z-index: 2;
}

.tuijian-list {
  width: 100%;
  margin: 0px;
  gap: 0.2rem;
  margin-top: 0.2rem;
  grid-template-columns: repeat(1, 1fr);
}

.tuijian-item {
  padding-right: 0px;
  border: 0px;
  border-bottom: max(0.01rem, 1px) solid #e5e5e5;
  padding-bottom: 0.2rem;
}

.tujian-gengduo {
  margin-top: 0.1rem;
}

.tujian-item-top {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .muban-newsxq-mid {
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }
  .muban-newsxq-kuang, .muban-tuijiannews {
    width: 100%;
    padding: 0px;
  }
}