/* 公共样式文件 */
div {
  box-sizing: border-box;
}

html,
body {
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* 确保只有一个滚动条 */
html {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

/* 让底部内容充满整个视口高度 */
.main-container,
.about-main-container,
.core-business-main-container,
.cooperation-main-container,
.reputation-main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 确保底部内容充满剩余空间 */
.footer-section,
.about-footer-frame,
.core-business-footer-frame,
.cooperation-footer-frame,
.reputation-footer-frame {
  margin-top: auto;
}

/* 确保备案信息可见 */
.footer-copyright,
.about-footer-copyright,
.core-business-footer-copyright,
.cooperation-footer-copyright,
.reputation-footer-copyright {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1000 !important;
}

.footer-copyright-text,
.about-footer-copyright-text,
.core-business-footer-copyright-text,
.cooperation-footer-copyright-text,
.reputation-footer-copyright-text {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1001 !important;
  color: #FFFFFF !important;
}

.layer {
  position: absolute;
}

.one-line {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.multi-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
}

.multi-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
}

.multi-line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
}

.multi-line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
}

.image {
  flex-shrink: 0;
  background-repeat: no-repeat;
}

.inner-border {
  position: relative;
  border-radius: var(--border-radius, 0px);
}

.layer.inner-border {
  position: absolute;
}

.inner-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: var(--border-width, 0px);
  border-color: var(--border-color, transparent);
  border-style: var(--border-style, solid);
  border-radius: inherit;
}

.independent-inner-border {
  position: relative;
  border-radius: var(--border-radius-tl, 0px) var(--border-radius-tr, 0px)
    var(--border-radius-br, 0px) var(--border-radius-bl, 0px);
}

.layer.independent-inner-border {
  position: absolute;
}

.independent-inner-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-style: var(--border-style, solid);
  border-color: var(--border-color, transparent);
  border-width: var(--border-width-top, 0px) var(--border-width-right, 0px)
    var(--border-width-bottom, 0px) var(--border-width-left, 0px);
  border-radius: inherit;
}

.outer-border {
  position: relative;
  border-radius: var(--border-radius, 0px);
}

.layer.outer-border {
  position: absolute;
}

.outer-border::after {
  content: "";
  position: absolute;
  top: calc(0px - var(--border-width, 0px));
  left: calc(0px - var(--border-width, 0px));
  right: calc(0px - var(--border-width, 0px));
  bottom: calc(0px - var(--border-width, 0px));
  border-width: var(--border-width, 0px);
  border-color: var(--border-color, #000000);
  border-style: var(--border-style, solid);
  border-radius: calc(var(--border-radius, 0px) + var(--border-width, 0px));
}

.independent-outer-border {
  position: relative;
  border-radius: var(--border-radius-tl, 0px) var(--border-radius-tr, 0px)
    var(--border-radius-br, 0px) var(--border-radius-bl, 0px);
}

.layer.independent-outer-border {
  position: absolute;
}

.independent-outer-border::after {
  content: "";
  position: absolute;
  top: calc(0px - var(--border-width-top, 0px));
  left: calc(0px - var(--border-width-left, 0px));
  right: calc(0px - var(--border-width-right, 0px));
  bottom: calc(0px - var(--border-width-bottom, 0px));
  border-width: var(--border-width-top, 0px) var(--border-width-right, 0px)
    var(--border-width-bottom, 0px) var(--border-width-left, 0px);
  border-color: var(--border-color, #000000);
  border-style: var(--border-style, solid);
  border-radius: calc(
      var(--border-radius-tl, 0px) + var(--border-width-top, 0px)
    )
    calc(var(--border-radius-tr, 0px) + var(--border-width-right, 0px))
    calc(var(--border-radius-br, 0px) + var(--border-width-bottom, 0px))
    calc(var(--border-radius-bl, 0px) + var(--border-width-left, 0px));
}

.center-border {
  position: relative;
  border-radius: var(--border-radius, 0px);
}

.layer.center-border {
  position: absolute;
}

.center-border::after {
  content: "";
  position: absolute;
  top: calc(0px - var(--border-width, 0px) / 2);
  left: calc(0px - var(--border-width, 0px) / 2);
  right: calc(0px - var(--border-width, 0px) / 2);
  bottom: calc(0px - var(--border-width, 0px) / 2);
  border-width: var(--border-width, 0px);
  border-color: var(--border-color, #000000);
  border-style: var(--border-style, solid);
  border-radius: calc(var(--border-radius, 0px) + var(--border-width, 0px) / 2);
}

.independent-center-border {
  position: relative;
  border-radius: var(--border-radius-tl, 0px) var(--border-radius-tr, 0px)
    var(--border-radius-br, 0px) var(--border-radius-bl, 0px);
}

.layer.independent-center-border {
  position: absolute;
}

.independent-center-border::after {
  content: "";
  position: absolute;
  top: calc(0px - var(--border-width-top, 0px) / 2);
  left: calc(0px - var(--border-width-left, 0px) / 2);
  right: calc(0px - var(--border-width-right, 0px) / 2);
  bottom: calc(0px - var(--border-width-bottom, 0px) / 2);
  pointer-events: none;
  border-style: var(--border-style, solid);
  border-color: var(--border-color, transparent);
  border-width: var(--border-width-top, 0px) var(--border-width-right, 0px)
    var(--border-width-bottom, 0px) var(--border-width-left, 0px);
  border-radius: calc(
      var(--border-radius-tl, 0px) + var(--border-width-top, 0px) / 2
    )
    calc(var(--border-radius-tr, 0px) + var(--border-width-right, 0px) / 2)
    calc(var(--border-radius-br, 0px) + var(--border-width-bottom, 0px) / 2)
    calc(var(--border-radius-bl, 0px) + var(--border-width-left, 0px) / 2);
}

/* 浮动层样式 */
.floating {
  position: absolute;
}

/* 列表项样式 */
.list-item {
  cursor: pointer;
}

/* 框架组件样式 */
.FRAME {
  width: 100%;
}

/* 剪辑内容样式 */
.clips-content {
  background-size: cover;
}

/* 响应式设计 */
@media (max-width: 1920px) {
  .main-container,
  .about-main-container,
  .core-business-main-container,
  .cooperation-main-container,
  .reputation-main-container {
    width: 100%;
    max-width: 100vw;
  }
  
  .background-container,
  .background-image,
  .main-layer,
  .header-overlay,
  .header-background,
  .navigation-bar,
  .main-content-background,
  .product-intro-background,
  .footer-background,
  .bottom-background-image,
  .about-background,
  .about-main-layer,
  .about-header-background,
  .about-footer-background,
  .about-navigation-bar,
  .about-page-title,
  .about-contact-background,
  .core-business-background,
  .core-business-header-overlay,
  .core-business-header-background,
  .core-business-navigation-bar,
  .core-business-page-title,
  .core-business-product-intro-background,
  .core-business-product-highlights-background,
  .core-business-product-highlights-container,
  .core-business-products-background,
  .core-business-footer-background,
  .cooperation-background-container,
  .cooperation-header-background,
  .cooperation-footer-background,
  .cooperation-floating-background,
  .reputation-background,
  .reputation-header-background,
  .reputation-navigation-bar,
  .reputation-page-title,
  .reputation-footer-background {
    width: 100%;
  }
  
  /* 调整内边距和外边距以适应较小屏幕 */
  .main-title {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
  
  .subtitle {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
  
  .business-title-container {
    padding-left: 5%;
  }
  
  .product-intro-title,
  .product-intro-description {
    padding-left: 5%;
  }
  
  .reputation-section {
    margin-left: 5%;
    margin-right: 5%;
  }
  
  .footer-content {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  /* 修复备案信息在小屏幕上的显示问题 */
  .footer-copyright,
  .about-footer-copyright,
  .core-business-footer-copyright,
  .cooperation-footer-copyright,
  .reputation-footer-copyright {
    padding-left: 5%;
    padding-right: 5%;
    margin-left: 0;
    margin-right: 0;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  html, body {
    font-size: 14px;
    overflow-x: hidden;
  }
  
  .layer {
    position: relative;
  }
  
  .floating {
    position: relative;
  }
  
  /* 移动端优化 */
  .nav-menu {
    margin-right: 20px;
    gap: 20px;
  }
  
  /* 移动端备案信息优化 */
  .footer-copyright,
  .about-footer-copyright,
  .core-business-footer-copyright,
  .cooperation-footer-copyright,
  .reputation-footer-copyright {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .footer-copyright-text,
  .about-footer-copyright-text,
  .core-business-footer-copyright-text,
  .cooperation-footer-copyright-text,
  .reputation-footer-copyright-text {
    font-size: 12px;
    line-height: 16px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #FFFFFF !important;
  }
  
  .circle-button-left,
  .circle-button-right {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .main-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 2px;
  }
  
  .subtitle {
    font-size: 18px;
    letter-spacing: 5px;
  }

  /* 移动端轮播图样式 */
  .core-business-product-highlights-section {
    min-height: 500px;
  }

  .core-business-carousel-container {
    height: 500px;
  }

  .core-business-carousel-content {
    padding: 40px 20px 30px;
  }

  .core-business-carousel-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .core-business-carousel-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .core-business-carousel-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .core-business-carousel-prev {
    left: 10px;
  }

  .core-business-carousel-next {
    right: 10px;
  }

  .core-business-carousel-indicators {
    bottom: 15px;
  }

  .core-business-carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

/* ===== 第一批抽取的样式：基础布局和导航 ===== */

/* 主容器样式 */
.main-container {
  position: relative;
  border-radius: 0px;
  overflow: visible;
  font-style: normal;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 背景容器 */
.background-container {
  background: #FFFFFF;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 1px;
}

/* 背景图片 */
.background-image {
  background-size: cover;
  width: 100%;
  min-height: 722px;
  margin-left: 0;
}

/* 底部背景区域 */
.bottom-background {
  background: #F3F4F6;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  padding-top: 80px;
}

/* 底部背景图片 */
.bottom-background-image {
  background-image: url('images/bottom-background-image.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  min-height: 349px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 主层容器 */
.main-layer {
  top: 0px;
  width: 100%;
  overflow: visible;
  gap: 19px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 内容容器 */
.content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 头部区域 */
.header-section {
  background: #E5E7EB;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  min-height: 935px;
}

/* 头部遮罩 */
.header-overlay {
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  width: 100%;
  align-items: flex-start;
  min-height: 935px;
}

/* 导航栏 */
.navigation-bar {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* 导航菜单 */
.nav-menu {
  margin-right: 158px;
  gap: 99px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 导航项 */
.nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 8px;
  min-height: 24px;
}

/* 首页导航项（激活状态） */
.nav-item-home {
  width: 32px;
  margin-top: 0;
}

/* 圆形按钮 - 已移至首页HTML中的内联样式 */

/* 按钮图标 */
.button-icon {
  width: 24px;
  min-height: 24px;
  background-size: cover;
}

/* 圆形按钮样式 */
.circle-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  margin: 0 40px;
}

.circle-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.circle-button .button-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.circle-button:hover .button-icon {
  transform: scale(1.1);
}

/* 分隔线 */
.divider-line {
  width: 84px;
  min-height: 12px;
  margin-top: 391.5px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* ===== 第二批抽取的样式：主要内容区域 ===== */

/* 主要内容区域 */
.main-content-section {
  background: #F9FAFB;
  display: flex;
  align-items: flex-start;
  min-height: 935px;
}

/* 主要内容背景 */
.main-content-background {
  background-image: url('images/main-content-background.png');
  background-size: cover;
  width: 100%;
  min-height: 935px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 主标题 */
.main-title {
  width: 100%;
  max-width: 1600px;
  color: #303030;
  font-family: 'Source Han Serif SC';
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 6px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 333px;
  margin-left: auto;
  margin-right: auto;
  min-height: 120px;
}

/* 标题装饰线 */
.title-decoration {
  width: 176px;
  min-height: 24px;
  margin-top: 0.75px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 副标题 */
.subtitle {
  width: 100%;
  max-width: 1600px;
  color: #4B5563;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 23.00px;
  margin-bottom: 363.25px;
  margin-left: auto;
  margin-right: auto;
  min-height: 31px;
}

/* 业务介绍区域 */
.business-intro-section {
  background: #FFFFFF;
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 1px;
}

/* 业务标题容器 */
.business-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
}

/* 业务标题背景 */
.business-title-background {
  background-image: url('images/business-title-background.png');
  background-size: cover;
  width: 387px;
  min-height: 68px;
  display: flex;
  align-items: flex-start;
  min-height: 68px;
  padding-left: 112px;
  padding-top: 15.75px;
}

/* 业务标题文本 */
.business-title-text {
  width: 144px;
  align-items: center;
  text-overflow: ellipsis;
  min-height: 40px;
}

/* 标题文字样式 */
.title-text-blue {
  color: #246DC5;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.title-text-black {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

/* 产品介绍区域 */
.product-intro-section {
  /* background: #E5E7EB; */
  display: flex;
  align-items: flex-start;
  min-height: 750px;
}

/* 产品介绍内容 */
.product-intro-content {
  background: transparent;
  width: 100%;
  max-width: 1170px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 产品介绍标题 */
.product-intro-title {
  width: 100%;
  max-width: 1170px;
  margin-top: 210px;
  display: flex;
  align-items: flex-start;
  min-height: 30px;
  padding-left: 160px;
}

.product-intro-title-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  width: 120px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 30px;
}

/* 产品介绍描述 */
.product-intro-description {
  width: 100%;
  max-width: 1170px;
  margin-bottom: 246px;
  display: flex;
  align-items: flex-start;
  min-height: 230px;
  padding-left: 160px;
}

.product-intro-description-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product-intro-paragraph {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 78px;
}

.product-intro-paragraph-2 {
  width: 549px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-right: 1px;
  min-height: 52px;
}

.product-intro-paragraph-3 {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 52px;
}

/* ===== 第三批抽取的样式：企业文化和用户口碑 ===== */

/* 企业文化标题 */
.culture-title {
  justify-content: center;
  align-items: center;
  text-overflow: ellipsis;
  margin-top: 90px;
  margin-left: 888px;
  margin-right: 888px;
  min-height: 40px;
  text-align: center;
}

/* 企业文化内容区域 */
.culture-content {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  width: 100%;
  min-height: 722px;
  margin-left: 0;
  gap: 0;
  justify-content: stretch;
}

/* 企业文化卡片 */
.culture-card {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 23px;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.culture-card-2 {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 23px;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.culture-card-3 {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 23px;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.culture-card-4 {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 23px;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 企业文化卡片悬停效果 */
.culture-card:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.culture-card-2:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.culture-card-3:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.culture-card-4:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 企业文化标题文本 */
.culture-card-title {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  width: auto;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 32px;
  text-align: center;
  justify-content: center;
}

.culture-card-title-2 {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  width: auto;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 32px;
  text-align: center;
  justify-content: center;
}

.culture-card-title-3 {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  width: auto;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 32px;
  text-align: center;
  justify-content: center;
}

/* 企业文化描述 */
.culture-card-description {
  width: auto;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 52px;
  text-align: center;
  justify-content: center;
  padding: 0 20px;
}

/* 分隔线 */
.culture-divider {
  background: rgba(255, 255, 255, 0.30);
  width: 0.5px;
  height: 100%;
  align-self: stretch;
  margin: 0 2px;
}

.culture-divider-2 {
  background: rgba(255, 255, 255, 0.30);
  width: 0.5px;
  height: 100%;
  align-self: stretch;
  margin: 0 2px;
}

/* 用户口碑区域 */
.reputation-section {
  margin-top: 77px;
  margin-left: 160px;
  margin-right: 160px;
  gap: 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑标题 */
.reputation-title {
  align-items: center;
  text-overflow: ellipsis;
  margin-left: 728px;
  margin-right: 728px;
  min-height: 40px;
}

/* 用户口碑标签 */
.reputation-tabs {
  gap: 48px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 用户口碑标签项 */
.reputation-tab {
  background: linear-gradient(180deg, #FFE4A6 0%, rgba(255, 228, 166, 0.00) 100%);
  border-radius: 9999px;
  display: flex;
  width: 128px;
  justify-content: center;
  align-items: center;
  margin-left: 591.98px;
  padding-left: 32.00px;
  padding-right: 32.00px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.reputation-tab-text {
  color: #111111;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.reputation-tab-inactive {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 12px;
  min-height: 24px;
}

.reputation-tab-inactive-2 {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 12px;
  margin-left: 32.00px;
  min-height: 24px;
}

/* 用户口碑内容区域 */
.reputation-content {
  background: #E5E7EB;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 770px;
  padding-right: 770px;
  padding-top: 232px;
  padding-bottom: 232px;
}

.reputation-content-text {
  color: #6B7280;
  font-family: 'Source Han Serif SC';
  font-size: 30px;
  line-height: 36px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 36px;
}

/* 用户口碑描述 */
.reputation-description {
  width: 885.09px;
  color: #6B7280;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 48px;
}

/* 用户名字 */
.user-name {
  width: 28px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 16px;
}

/* ===== 第四批抽取的样式：发展历程和页脚 ===== */

/* 发展历程区域 */
.timeline-section {
  background: #FFFFFF;
  display: flex;
  align-items: stretch;
  margin-top: 55px;
  gap: 8px;
  flex-direction: column;
}

/* 发展历程标题 */
.timeline-title {
  align-items: center;
  text-overflow: ellipsis;
  margin-top: 97px;
  margin-left: 888px;
  margin-right: 888px;
  min-height: 40px;
}

/* 时间线指示器 */
.timeline-indicator {
  background: #F5C350;
  border-radius: 9999px 9999px 0px 0px;
  width: 40px;
  min-height: 20px;
}

/* 年份显示 */
.year-display {
  color: #5297EB;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  width: 152px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 96px;
}

.year-display-2 {
  color: #5297EB;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  width: 169px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 96px;
}

/* 时间线内容区域 */
.timeline-content {
  gap: 278px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.timeline-content-2 {
  margin-top: 10.0px;
  margin-left: 282px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.timeline-content-3 {
  margin-left: 0.5px;
  gap: 11px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.timeline-content-4 {
  margin-top: 1.5px;
  gap: 430px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 时间线项目 */
.timeline-item {
  width: 320px;
  display: flex;
  align-items: flex-start;
  min-height: 20.0px;
}

.timeline-item-2 {
  width: 320px;
  margin-top: 8.0px;
  display: flex;
  align-items: flex-start;
  min-height: 96.0px;
}

.timeline-item-3 {
  width: 401.01px;
  display: flex;
  align-items: flex-start;
  min-height: 48.0px;
  padding-left: 0.5px;
}

.timeline-item-4 {
  width: 401.01px;
  margin-top: 0.5px;
  min-height: 96px;
}

.timeline-item-5 {
  width: 401.01px;
  margin-left: 0.5px;
  min-height: 96px;
}

.timeline-item-6 {
  min-height: 48.0px;
  padding-left: 160px;
}

.timeline-item-7 {
  margin-top: 3.5px;
  margin-bottom: 157px;
  min-height: 96px;
  padding-left: 160px;
  width: 550px;
}

/* 时间线标题 */
.timeline-item-title {
  color: #333333;
  font-family: 'Source Han Serif SC';
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  width: 320px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 48px;
}

.timeline-item-title-2 {
  color: #333333;
  font-family: 'Source Han Serif SC';
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  width: 352px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 48px;
}

/* 时间线描述 */
.timeline-item-description {
  color: #666666;
  font-weight: 400;
  line-height: 24px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 96px;
}

/* 页脚区域 */
.footer-section {
  background: #5297EB;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 22px;
}

/* 页脚背景 */
.footer-background {
  width: 100%;
  min-height: 210px;
  background-size: cover;
}

/* 页脚内容容器 */
.footer-content {
  width: 100%;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 页脚标题 */
.footer-title {
  width: 756px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 54px;
  font-weight: 700;
  align-items: center;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 页脚分隔线 */
.footer-divider {
  width: 1600px;
  min-height: 1px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 页脚导航 */
.footer-navigation {
  gap: 76px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 页脚导航项 */
.footer-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 28px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 28px;
}

.footer-nav-item-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 32px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.footer-nav-item-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

/* 页脚导航组 */
.footer-nav-group {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-nav-group-2 {
  margin-top: 33px;
  margin-left: 404px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-nav-group-3 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 页脚图标 */
.footer-icon {
  background: #FFFFFF;
  width: 100px;
  min-height: 100px;
}

.footer-icon-2 {
  background: #FFFFFF;
  width: 100px;
  min-height: 100px;
  margin-left: 288px;
}

/* 页脚浮动元素 */
.footer-floating {
  width: 250px;
  min-height: 50px;
  top: -19px;
  left: 160px;
  background-size: cover;
}

.footer-floating-text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  left: 704px;
  top: -19px;
  min-height: 28px;
}

/* 新的页脚主布局 */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 160px;
  gap: 60px;
}

/* 页脚左侧区域 */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.footer-logo img {
  max-width: 250px;
  height: auto;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hotline {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-phone {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

/* 页脚中间区域 */
.footer-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.footer-quick-nav h4 {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.footer-nav-links a {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-links a:hover {
  color: #F5C350;
}

/* 页脚右侧区域 */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  align-items: flex-end;
}

.footer-wechat h4 {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.footer-qr-code {
  display: flex;
  justify-content: center;
}

.footer-qr-code img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-nav-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 页脚底部信息 */
.footer-bottom {
  gap: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 页脚联系信息 */
.footer-contact {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 32px;
}

/* 页脚链接 */
.footer-link {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  min-height: 24px;
}

.footer-link-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 32px;
  min-height: 24px;
}

.footer-link-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 112px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  margin-left: 1095px;
  min-height: 24px;
}

.footer-link-4 {
  color: #FFFFFF;
  line-height: 24px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  min-height: 24px;
}

/* 页脚版权信息 */
.footer-copyright {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  margin-top: 111px;
  min-height: 45px;
  padding-bottom: 0.5px;
  position: relative;
  z-index: 1000;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-copyright-text {
  color: #FFFFFF !important;
  font-family: 'Source Han Serif SC';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex !important;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 20px;
  position: relative;
  z-index: 1001;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 备案链接样式 */
.beian-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.beian-link:hover {
  color: #F5C350;
}

/* ===== 关于我们页面第一批抽取的样式：基础布局和导航 ===== */

/* 关于我们主容器 */
.about-main-container {
  position: relative;
  border-radius: 0px;
  overflow: visible;
  font-style: normal;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 关于我们背景 */
.about-background {
  background: #FFFFFF;
  width: 100%;
  min-height: 2100px;
}

/* 关于我们主层 */
.about-main-layer {
  top: 0px;
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 关于我们头部区域 */
.about-header-section {
  background: #9CA3AF;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
}

/* 关于我们头部背景 */
.about-header-background {
  background-image: url('images/about-header-background.png');
  background-size: 100% 100%;
  width: 100%;
  min-height: 500px;
  gap: 125px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 关于我们导航栏 */
.about-navigation-bar {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* 关于我们导航菜单 */
.about-nav-menu {
  margin-right: 158px;
  gap: 99px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 关于我们导航项 */
.about-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 8px;
  min-height: 24px;
}

/* 关于我们导航项（首页） */
.about-nav-item-home {
  width: 32px;
  margin-top: 9px;
}

/* 关于我们导航项（激活状态） */
.about-nav-item-active {
  width: 64px;
  margin-top: 8px;
  min-height: 42px;
  padding-top: 8px;
}

/* 关于我们页面标题 */
.about-page-title {
  width: 100%;
  margin-bottom: 207px;
  display: flex;
  align-items: flex-start;
  min-height: 102px;
  padding-left: 176px;
}

.about-page-title-text {
  width: 264px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 600;
  line-height: 40px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 102px;
}

/* ===== 关于我们页面第二批抽取的样式：主要内容区域 ===== */

/* 关于我们简介标题 */
.about-intro-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 64px;
  margin-left: 0;
  margin-right: 0;
  min-height: 32px;
  width: 100%;
}

/* 关于我们简介内容区域 */
.about-intro-content {
  margin-top: 50px;
  gap: 40px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 关于我们简介图片 */
.about-intro-image {
  background: url('images/about-intro-image.jpg') center center no-repeat;
  background-size: contain;
  border-radius: 10px;
  display: flex;
  width: 100%;
  max-width: 540px;
  justify-content: center;
  align-items: center;
  height: 400px;
  overflow: visible;
  margin-left: 200px;
}

.about-intro-image-text {
  color: #6B7280;
  font-family: 'Source Han Serif SC';
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  width: 40px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 28px;
}

/* 关于我们简介描述 */
.about-intro-description {
  margin-top: 49.5px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.about-intro-paragraph {
  width: 90%;
  color: #374151;
  font-weight: 400;
  line-height: 28px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 56px;
}

.about-intro-paragraph-2 {
  width: 721.01px;
  color: #374151;
  font-weight: 400;
  line-height: 28px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-right: 16.00px;
  min-height: 56px;
}

/* 办公环境区域 */
.about-office-section {
  background: #F3F4F6;
  margin-top: 74px;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 办公环境标题 */
.about-office-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 64px;
  min-height: 32px;
}

/* 办公环境图片区域 */
.about-office-images {
  margin-bottom: 74px;
  gap: 31px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 办公环境图片 */
.about-office-image {
  background: #D1D5DB;
  border-radius: 10px;
  width: 100%;
  max-width: 499px;
  height: 280px;
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  min-height: 280px;
}

.about-office-image-2 {
  background: #D1D5DB;
  border-radius: 10px;
  width: 100%;
  max-width: 499px;
  height: 280px;
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  min-height: 280px;
}

.about-office-image-3 {
  background: #D1D5DB;
  border-radius: 10px;
  width: 100%;
  max-width: 499px;
  height: 280px;
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  min-height: 280px;
}

/* 办公环境图片内容 */
.about-office-image-content {
  background-size: 100% 100%;
  width: 100%;
  height: 300px;
  margin-bottom: -120px;
}

.about-office-image-content-2 {
  background-size: 100% 100%;
  width: 100%;
  height: 300px;
  margin-bottom: -120px;
}

.about-office-image-content-3 {
  background-size: 100% 100%;
  width: 100%;
  height: 300px;
  margin-bottom: -120px;
}

/* 联系我们标题 */
.about-contact-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 64px;
  min-height: 32px;
}

/* 联系我们背景图 */
.about-contact-background {
  width: 100%;
  height: 366px;
  margin-top: 620px;
  background-size: cover;
}

/* ===== 关于我们页面第三批抽取的样式：页脚和浮动元素 ===== */

/* 关于我们页脚框架 */
.about-footer-frame {
  background: #5297EB;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 22px;
}

/* 关于我们页脚背景 */
.about-footer-background {
  width: 100%;
  height: 210px;
  background-size: cover;
}

/* 关于我们页脚内容容器 */
.about-footer-content-container {
  width: 100%;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 关于我们页脚标题区域 */
.about-footer-title-section {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  min-height: 36px;
  padding-left: 160px;
}

/* 关于我们页脚标题 */
.about-footer-title {
  width: 756px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 54px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 关于我们页脚分隔线 */
.about-footer-divider {
  width: 1600px;
  height: 1px;
  margin-bottom: 73px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 关于我们页脚导航区域 */
.about-footer-navigation {
  margin-top: 14px;
  gap: 76px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 关于我们页脚导航项 */
.about-footer-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 28px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 71.1px;
  margin-left: 160px;
  min-height: 28px;
}

/* 关于我们页脚导航组1 */
.about-footer-nav-group-1 {
  margin-top: 33px;
  margin-left: 404px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 关于我们页脚导航组2 */
.about-footer-nav-group-2 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 关于我们页脚导航组3 */
.about-footer-nav-group-3 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 关于我们页脚导航子项 */
.about-footer-nav-sub-item {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.about-footer-nav-sub-item-home {
  width: 32px;
  margin-right: 32px;
}

/* 关于我们页脚图标 */
.about-footer-icon {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
  margin-left: 288px;
}

.about-footer-icon-2 {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
}

/* 关于我们页脚浮动导航 */
.about-footer-floating-nav {
  width: 240px;
  height: 66.1px;
  top: -19px;
  left: 160px;
  background-size: cover;
}

/* 关于我们页脚浮动文本 */
.about-footer-floating-text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  left: 704px;
  top: -19px;
  min-height: 28px;
}

/* 关于我们页脚底部区域 */
.about-footer-bottom {
  margin-top: 3px;
  gap: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 关于我们页脚联系方式 */
.about-footer-contact {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  width: 151px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-left: 160px;
  min-height: 32px;
}

/* 关于我们页脚链接 */
.about-footer-link {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 313px;
  min-height: 24px;
}

.about-footer-link-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 32px;
  min-height: 24px;
}

.about-footer-link-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 112px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  margin-left: 278px;
  min-height: 24px;
}

.about-footer-link-4 {
  color: #FFFFFF;
  line-height: 24px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  min-height: 24px;
}

/* 关于我们页脚版权区域 */
.about-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 111px;
  margin-left: 160px;
  margin-right: 160px;
  min-height: 45px;
  padding-left: 593px;
  padding-right: 593px;
  padding-bottom: 0.5px;
  position: relative;
  z-index: 1000;
}

/* 关于我们页脚版权文本 */
.about-footer-copyright-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 20px;
}

/* 关于我们浮动图片 */
.about-floating-image {
  border-radius: 10px;
  background-size: cover;
  width: 748px;
  height: 300px;
  top: 646px;
  left: 192px;
  margin-right: -0.01px;
}

/* 关于我们浮动背景 */
.about-floating-background {
  width: 1560px;
  height: 600px;
  left: 180px;
  bottom: 876px;
  background-size: cover;
} 

/* ===== 核心业务页面第一批抽取的样式：基础布局和导航 ===== */

/* 核心业务主容器 */
.core-business-main-container {
  position: relative;
  border-radius: 0px;
  overflow: visible;
  font-style: normal;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 核心业务主层 */
.core-business-main-layer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 核心业务内容容器 */
.core-business-content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 核心业务头部区域 */
.core-business-header-section {
  background: #D1D5DB;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
}

/* 核心业务头部遮罩 */
.core-business-header-overlay {
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  width: 100%;
  align-items: flex-start;
  min-height: 500px;
}

/* 核心业务头部背景 */
.core-business-header-background {
  background-image: url('images/core-business-header-background.png');
  background-size: 100% 100%;
  width: 100%;
  min-height: 500px;
  gap: 143px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 核心业务导航栏 */
.core-business-navigation-bar {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* 核心业务导航菜单 */
.core-business-nav-menu {
  margin-right: 158px;
  gap: 99px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 核心业务导航项 */
.core-business-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 8px;
  min-height: 24px;
}

/* 核心业务导航项（首页） */
.core-business-nav-item-home {
  width: 32px;
  margin-top: 9px;
}

/* 核心业务导航项（激活状态） */
.core-business-nav-item-active {
  width: 64px;
  margin-top: 8px;
  min-height: 42px;
  padding-top: 8px;
}

/* 核心业务页面标题 */
.core-business-page-title {
  width: 100%;
  margin-bottom: 208px;
  display: flex;
  align-items: flex-start;
  min-height: 83px;
  padding-left: 164px;
}

.core-business-page-title-text {
  width: 257px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 600;
  line-height: 40px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 83px;
} 

/* ===== 核心业务页面第二批抽取的样式：业务介绍和产品介绍 ===== */

/* 业务介绍区域 */
.core-business-intro-section {
  background: #FFFFFF;
  gap: 46px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 业务介绍标题 */
.core-business-intro-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  min-height: 36px;
}

/* 业务介绍标签区域 */
.core-business-intro-tabs {
  margin-bottom: 64px;
  gap: 48px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}

/* 业务介绍激活标签 */
.core-business-intro-tab-active {
  background: linear-gradient(180deg, #FFE4A6 0%, rgba(255, 228, 166, 0.00) 100%);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.core-business-intro-tab-active-text {
  color: #111111;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

/* 业务介绍非激活标签 */
.core-business-intro-tab-inactive {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 112px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 12px;
  min-height: 24px;
}

.core-business-intro-tab-inactive-2 {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 12px;
  margin-left: 32px;
  min-height: 24px;
}

.core-business-intro-tab-inactive-3 {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
/* ext-overflow: ellips */
  margin-top: 12px;
  margin-left: 32px;
  min-height: 24px;
}

/* 产品介绍区域 */
.core-business-product-intro-section {
  /* background: #E5E7EB; */
  display: flex;
  align-items: flex-start;
  min-height: 750px;
}

/* 产品介绍背景 */
.core-business-product-intro-background {
  background-size: contain;
  width: 100%;
  height: 750px;
  display: flex;
  align-items: flex-start;
  min-height: 750px;
}

/* 产品介绍内容 */
.core-business-product-intro-content {
  background: transparent;
  width: 1170px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 产品介绍标题 */
.core-business-product-intro-title {
  width: 1170px;
  margin-top: 217px;
  display: flex;
  align-items: flex-start;
  min-height: 30px;
  padding-left: 160px;
}

.core-business-product-intro-title-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  width: 120px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 30px;
}

/* 产品介绍描述 */
.core-business-product-intro-description {
  width: 1170px;
  display: flex;
  align-items: flex-start;
  min-height: 230px;
  padding-left: 160px;
}

.core-business-product-intro-description-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.core-business-product-intro-paragraph {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 78px;
}

.core-business-product-intro-paragraph-2 {
  width: 549px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-right: 1px;
  min-height: 52px;
}

.core-business-product-intro-paragraph-3 {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 52px;
}

/* ===== 核心业务页面第三批抽取的样式：产品亮点和在售商品 ===== */

/* 产品亮点区域 */
.core-business-product-highlights-section {
  background: #E5E7EB;
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  min-height: 750px;
  position: relative;
}

/* 核心业务页面轮播图容器 */
.core-business-carousel-container {
  width: 100%;
  height: 750px;
  position: relative;
  overflow: hidden;
}

.core-business-carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.core-business-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.core-business-carousel-slide.active {
  opacity: 1;
}

.core-business-carousel-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.core-business-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 60px 40px 40px;
  text-align: center;
}

.core-business-carousel-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Source Han Serif SC', serif;
}

.core-business-carousel-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* 核心业务轮播图按钮 */
.core-business-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.core-business-carousel-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.core-business-carousel-prev {
  left: 20px;
}

.core-business-carousel-next {
  right: 20px;
}

/* 核心业务轮播图指示器 */
.core-business-carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.core-business-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.core-business-carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.core-business-carousel-indicator.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* 产品亮点背景 */
.core-business-product-highlights-background {
  width: 100%;
  height: 750px;
  background-size: cover;
}

/* 产品亮点内容容器 */
.core-business-product-highlights-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 750px;
  position: relative;
}

/* 产品亮点内容 */
.core-business-product-highlights-content {
  background: transparent;
  width: 1170px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 产品亮点标题 */
.core-business-product-highlights-title {
  width: 1170px;
  margin-top: 217px;
  display: flex;
  align-items: flex-start;
  min-height: 30px;
  padding-left: 877px;
}

.core-business-product-highlights-title-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  width: 120px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 30px;
}

/* 产品亮点描述 */
.core-business-product-highlights-description {
  width: 1170px;
  display: flex;
  align-items: flex-start;
  min-height: 230px;
  padding-left: 448px;
}

.core-business-product-highlights-description-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.core-business-product-highlights-paragraph {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 78px;
}

.core-business-product-highlights-paragraph-2 {
  width: 549px;
  color: #FFFFFF;
  line-height: 26px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-right: 1px;
  min-height: 52px;
}

.core-business-product-highlights-paragraph-3 {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 52px;
}

/* 产品亮点分隔线 */
.core-business-product-highlights-divider {
  width: 1170px;
  margin-top: 134px;
  margin-bottom: 59px;
  display: flex;
  align-items: flex-start;
  min-height: 12px;
  padding-left: 216px;
}

.core-business-product-highlights-divider-icon {
  width: 84px;
  height: 12px;
  background-size: cover;
}

/* 在售商品区域 */
.core-business-products-section {
  background: #F9FAFB;
  gap: 54px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 62px;
}

/* 在售商品标题 */
.core-business-products-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 在售商品内容区域 */
.core-business-products-content-section {
  display: flex;
  align-items: flex-start;
}

/* 在售商品背景 */
.core-business-products-background {
  width: 100%;
  height: 750px;
  background-size: cover;
}

/* 在售商品内容容器 */
.core-business-products-content-container {
  width: 100%;
  gap: 578px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 在售商品内容 */
.core-business-products-content {
  background: transparent;
  width: 1170px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 在售商品标题 */
.core-business-products-content-title {
  width: 1170px;
  margin-top: 305px;
  display: flex;
  align-items: flex-start;
  min-height: 30px;
  padding-left: 160px;
}

.core-business-products-content-title-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  width: 120px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 30px;
}

/* 在售商品描述 */
.core-business-products-description {
  width: 1170px;
  margin-bottom: 303px;
  display: flex;
  align-items: flex-start;
  min-height: 78px;
  padding-left: 160px;
}

.core-business-products-description-text {
  width: 550px;
  color: #FFFFFF;
  line-height: 26px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 78px;
}

/* 在售商品分隔线 */
.core-business-products-divider {
  width: 12px;
  height: 84px;
  margin-top: 333px;
  margin-bottom: 333px;
  background-size: cover;
} 

/* ===== 核心业务页面第四批抽取的样式：页脚 ===== */

/* 核心业务页脚框架 */
.core-business-footer-frame {
  background: #5297EB;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 22px;
}

/* 核心业务页脚背景 */
.core-business-footer-background {
  width: 100%;
  height: 210px;
  background-size: cover;
}

/* 核心业务页脚内容容器 */
.core-business-footer-content-container {
  width: 100%;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 核心业务页脚标题区域 */
.core-business-footer-title-section {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  min-height: 36px;
  padding-left: 160px;
}

/* 核心业务页脚标题 */
.core-business-footer-title {
  width: 756px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 54px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 核心业务页脚分隔线 */
.core-business-footer-divider {
  width: 1600px;
  height: 1px;
  margin-bottom: 73px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 核心业务页脚导航区域 */
.core-business-footer-navigation {
  margin-top: 14px;
  gap: 76px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 核心业务页脚导航项 */
.core-business-footer-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 28px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 71.1px;
  margin-left: 160px;
  min-height: 28px;
}

/* 核心业务页脚导航组1 */
.core-business-footer-nav-group-1 {
  margin-top: 33px;
  margin-left: 404px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 核心业务页脚导航组2 */
.core-business-footer-nav-group-2 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 核心业务页脚导航组3 */
.core-business-footer-nav-group-3 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 核心业务页脚导航子项 */
.core-business-footer-nav-sub-item {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.core-business-footer-nav-sub-item-home {
  width: 32px;
  margin-right: 32px;
}

/* 核心业务页脚图标 */
.core-business-footer-icon {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
  margin-left: 288px;
}

.core-business-footer-icon-2 {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
}

/* 核心业务页脚浮动导航 */
.core-business-footer-floating-nav {
  width: 240px;
  height: 66.1px;
  top: -19px;
  left: 160px;
  background-size: cover;
}

/* 核心业务页脚浮动文本 */
.core-business-footer-floating-text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  left: 704px;
  top: -19px;
  min-height: 28px;
}

/* 核心业务页脚底部区域 */
.core-business-footer-bottom {
  margin-top: 3px;
  gap: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 核心业务页脚联系方式 */
.core-business-footer-contact {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  width: 151px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-left: 160px;
  min-height: 32px;
}

/* 核心业务页脚链接 */
.core-business-footer-link {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 313px;
  min-height: 24px;
}

.core-business-footer-link-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 32px;
  min-height: 24px;
}

.core-business-footer-link-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 112px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  margin-left: 278px;
  min-height: 24px;
}

.core-business-footer-link-4 {
  color: #FFFFFF;
  line-height: 24px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  min-height: 24px;
}

/* 核心业务页脚版权区域 */
.core-business-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 111px;
  margin-left: 160px;
  margin-right: 160px;
  min-height: 45px;
  padding-left: 593px;
  padding-right: 593px;
  padding-bottom: 0.5px;
  position: relative;
  z-index: 1000;
}

/* 核心业务页脚版权文本 */
.core-business-footer-copyright-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 20px;
}

/* ===== 商务合作页面第一批抽取的样式：基础布局和导航 ===== */

/* 商务合作主容器 */
.cooperation-main-container {
  position: relative;
  border-radius: 0px;
  overflow: visible;
  font-style: normal;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 商务合作背景容器 */
.cooperation-background-container {
  background: #FFFFFF;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  gap: 21px;
}

/* 商务合作头部背景图片 */
.cooperation-header-background {
  background-image: url('images/cooperation-header-background-image.png');
  background-size: 100% 100%;
  width: 100%;
  min-height: 500px;
  gap: 147px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 商务合作导航栏 */
.cooperation-navigation-bar {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* 商务合作导航菜单 */
.cooperation-nav-menu {
  margin-right: 158px;
  gap: 99px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 商务合作导航项 */
.cooperation-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 8px;
  min-height: 24px;
}

/* 商务合作导航项（首页） */
.cooperation-nav-item-home {
  width: 32px;
  margin-top: 9px;
}

/* 商务合作导航项（激活状态） */
.cooperation-nav-item-active {
  width: 64px;
  margin-top: 8px;
  min-height: 42px;
  padding-top: 8px;
}

/* 商务合作页面标题 */
.cooperation-page-title {
  margin-top: 0.5px;
  margin-bottom: 238.5px;
  display: flex;
  align-items: flex-start;
  min-height: 48.0px;
  padding-left: 163px;
}

.cooperation-page-title-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 600;
  line-height: 48px;
  width: 256px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 48px;
}

/* ===== 商务合作页面第二批抽取的样式：主要内容区域 ===== */

/* 商务合作主标题 */
.cooperation-main-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 48px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  min-height: 40px;
}

/* 商务合作副标题 */
.cooperation-subtitle {
  color: #4B5563;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  min-height: 28px;
}

/* 商务合作说明文字 */
.cooperation-description {
  color: #111111;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 39px;
  margin-left: auto;
  margin-right: auto;
  min-height: 60px;
}

/* 商务合作二维码容器 */
.cooperation-qr-container {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  width: 200px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

/* 商务合作二维码图片 */
.cooperation-qr-image {
  border-radius: 6px;
  background-image: url('images/cooperation-qr-image.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

/* ===== 商务合作页面第三批抽取的样式：页脚 ===== */

/* 商务合作页脚框架 */
.cooperation-footer-frame {
  background: #5297EB;
  margin-top: 281px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 22px;
}

/* 商务合作页脚背景 */
.cooperation-footer-background {
  width: 100%;
  height: 210px;
  background-size: cover;
}

/* 商务合作页脚内容容器 */
.cooperation-footer-content-container {
  width: 100%;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 商务合作页脚标题区域 */
.cooperation-footer-title-section {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  min-height: 36px;
  padding-left: 160px;
}

/* 商务合作页脚标题 */
.cooperation-footer-title {
  width: 756px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 54px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 商务合作页脚分隔线 */
.cooperation-footer-divider {
  width: 1600px;
  height: 1px;
  margin-bottom: 73px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 商务合作页脚导航区域 */
.cooperation-footer-navigation {
  margin-top: 14px;
  gap: 76px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 商务合作页脚导航项 */
.cooperation-footer-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 28px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 71.1px;
  margin-left: 160px;
  min-height: 28px;
}

/* 商务合作页脚导航组1 */
.cooperation-footer-nav-group-1 {
  margin-top: 33px;
  margin-left: 404px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 商务合作页脚导航组2 */
.cooperation-footer-nav-group-2 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 商务合作页脚导航组3 */
.cooperation-footer-nav-group-3 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 商务合作页脚导航子项 */
.cooperation-footer-nav-sub-item {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.cooperation-footer-nav-sub-item-home {
  width: 32px;
  margin-right: 32px;
}

/* 商务合作页脚图标 */
.cooperation-footer-icon {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
  margin-left: 288px;
}

.cooperation-footer-icon-2 {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
}

/* 商务合作页脚浮动导航 */
.cooperation-footer-floating-nav {
  width: 240px;
  height: 66.1px;
  top: -19px;
  left: 160px;
  background-size: cover;
}

/* 商务合作页脚浮动文本 */
.cooperation-footer-floating-text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  left: 704px;
  top: -19px;
  min-height: 28px;
}

/* 商务合作页脚底部区域 */
.cooperation-footer-bottom {
  margin-top: 3px;
  gap: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 商务合作页脚联系方式 */
.cooperation-footer-contact {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  width: 151px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-left: 160px;
  min-height: 32px;
}

/* 商务合作页脚链接 */
.cooperation-footer-link {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 313px;
  min-height: 24px;
}

.cooperation-footer-link-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 32px;
  min-height: 24px;
}

.cooperation-footer-link-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 112px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  margin-left: 278px;
  min-height: 24px;
}

.cooperation-footer-link-4 {
  color: #FFFFFF;
  line-height: 24px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  min-height: 24px;
}

/* 商务合作页脚版权区域 */
.cooperation-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 111px;
  margin-left: 160px;
  margin-right: 160px;
  min-height: 45px;
  padding-left: 593px;
  padding-right: 593px;
  padding-bottom: 0.5px;
  position: relative;
  z-index: 1000;
}

/* 商务合作页脚版权文本 */
.cooperation-footer-copyright-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 20px;
}

/* 商务合作浮动背景 */
.cooperation-floating-background {
  width: 100%;
  height: 366px;
  bottom: 540px;
  background-size: cover;
}

/* ===== 用户口碑页面第一批抽取的样式：基础布局和导航 ===== */

/* 用户口碑主容器 */
.reputation-main-container {
  position: relative;
  border-radius: 0px;
  overflow: visible;
  font-style: normal;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 用户口碑背景 */
.reputation-background {
  background: #FFFFFF;
  width: 100%;
  overflow: visible;
}

/* 用户口碑主层 */
.reputation-main-layer {
  width: 100%;
  gap: 19px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 用户口碑头部区域 */
.reputation-header-section {
  background: #D1D5DB;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
}

/* 用户口碑头部背景 */
.reputation-header-background {
  background-image: url('images/reputation-header-background.png');
  background-size: 100% 100%;
  width: 100%;
  min-height: 500px;
  gap: 100px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑导航栏 */
.reputation-navigation-bar {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* 用户口碑导航菜单 */
.reputation-nav-menu {
  margin-right: 158px;
  gap: 99px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 用户口碑导航项 */
.reputation-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 8px;
  min-height: 24px;
}

/* 用户口碑导航项（首页） */
.reputation-nav-item-home {
  width: 32px;
  margin-top: 9px;
}

/* 用户口碑导航项（激活状态） */
.reputation-nav-item-active {
  width: 64px;
  margin-top: 8px;
  min-height: 42px;
  padding-top: 8px;
}

/* 用户口碑页面标题 */
.reputation-page-title {
  width: 100%;
  margin-bottom: 221px;
  display: flex;
  align-items: flex-start;
  min-height: 113px;
  padding-left: 164px;
}

.reputation-page-title-text {
  width: 259px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 64px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 113px;
}

/* ===== 用户口碑页面第二批抽取的样式：主要内容区域 ===== */

/* 用户口碑内容区域 */
.reputation-content-section {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑主标题 */
.reputation-main-title {
  color: #111111;
  font-family: 'Source Han Serif SC';
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  text-overflow: ellipsis;
  min-height: 40px;
}

/* 用户口碑标签区域 */
.reputation-tabs-section {
  gap: 16px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 用户口碑激活标签 */
.reputation-tab-active {
  background: linear-gradient(180deg, #FFE4A6 0%, rgba(255, 228, 166, 0.00) 100%);
  border-radius: 9999px;
  display: flex;
  width: 128px;
  justify-content: center;
  align-items: center;
  margin-left: 591.98px;
  padding-left: 32.00px;
  padding-right: 32.00px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.reputation-tab-active-text {
  color: #111111;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

/* 用户口碑非激活标签 */
.reputation-tab-inactive {
  background: #FFFFFF;
  border-radius: 9999px;
  display: flex;
  width: 128px;
  justify-content: center;
  align-items: center;
  padding-left: 32.00px;
  padding-right: 32.00px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.reputation-tab-inactive-text {
  color: #666666;
  line-height: 24px;
  text-align: center;
  width: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

/* 用户口碑内容展示区域 */
.reputation-display-section {
  background: #E5E7EB;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
}

/* 用户口碑内容图片 */
.reputation-display-image {
  width: 1600px;
  height: 500px;
  background-size: cover;
}

/* ===== 用户口碑页面第三批抽取的样式：用户口碑特定样式 ===== */

/* 用户口碑描述区域 */
.reputation-description-section {
  margin-top: 28.5px;
  display: flex;
  align-items: flex-start;
  min-height: 48.0px;
  padding-left: 512px;
}

.reputation-description-text {
  width: 885.09px;
  color: #6B7280;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 48px;
}

/* 用户名字区域 */
.reputation-user-name-section {
  margin-top: 0.5px;
  display: flex;
  align-items: flex-start;
  min-height: 16px;
  padding-left: 941px;
}

.reputation-user-name-text {
  width: 28px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 16px;
}

/* ===== 用户口碑页面第四批抽取的样式：页脚 ===== */

/* 用户口碑页脚框架 */
.reputation-footer-frame {
  background: #5297EB;
  margin-top: 264px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 22px;
}

/* 用户口碑页脚背景 */
.reputation-footer-background {
  width: 100%;
  height: 210px;
  background-size: cover;
}

/* 用户口碑页脚内容容器 */
.reputation-footer-content-container {
  width: 100%;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

/* 用户口碑页脚标题区域 */
.reputation-footer-title-section {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  min-height: 36px;
  padding-left: 160px;
}

/* 用户口碑页脚标题 */
.reputation-footer-title {
  width: 756px;
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 54px;
  font-weight: 700;
  line-height: 36px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 36px;
}

/* 用户口碑页脚分隔线 */
.reputation-footer-divider {
  width: 1600px;
  height: 1px;
  margin-bottom: 73px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
}

/* 用户口碑页脚导航区域 */
.reputation-footer-navigation {
  margin-top: 14px;
  gap: 76px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}

/* 用户口碑页脚导航项 */
.reputation-footer-nav-item {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  line-height: 28px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 71.1px;
  margin-left: 160px;
  min-height: 28px;
}

/* 用户口碑页脚导航组1 */
.reputation-footer-nav-group-1 {
  margin-top: 33px;
  margin-left: 404px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑页脚导航组2 */
.reputation-footer-nav-group-2 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑页脚导航组3 */
.reputation-footer-nav-group-3 {
  margin-top: 33px;
  margin-left: 36px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* 用户口碑页脚导航子项 */
.reputation-footer-nav-sub-item {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  min-height: 24px;
}

.reputation-footer-nav-sub-item-home {
  width: 32px;
  margin-right: 32px;
}

/* 用户口碑页脚图标 */
.reputation-footer-icon {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
  margin-left: 288px;
}

.reputation-footer-icon-2 {
  background: #FFFFFF;
  width: 100px;
  height: 100px;
}

/* 用户口碑页脚浮动导航 */
.reputation-footer-floating-nav {
  width: 240px;
  height: 66.1px;
  top: -19px;
  left: 160px;
  background-size: cover;
}

/* 用户口碑页脚浮动文本 */
.reputation-footer-floating-text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  left: 704px;
  top: -19px;
  min-height: 28px;
}

/* 用户口碑页脚底部区域 */
.reputation-footer-bottom {
  margin-top: 3px;
  gap: 80px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* 用户口碑页脚联系方式 */
.reputation-footer-contact {
  color: #F5C350;
  font-family: 'Source Han Serif SC';
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  width: 151px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-left: 160px;
  min-height: 32px;
}

/* 用户口碑页脚链接 */
.reputation-footer-link {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 313px;
  min-height: 24px;
}

.reputation-footer-link-2 {
  color: #FFFFFF;
  line-height: 24px;
  width: 64px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-left: 32px;
  min-height: 24px;
}

.reputation-footer-link-3 {
  color: #FFFFFF;
  line-height: 24px;
  width: 112px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  margin-left: 278px;
  min-height: 24px;
}

.reputation-footer-link-4 {
  color: #FFFFFF;
  line-height: 24px;
  width: 80px;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  margin-top: 11px;
  min-height: 24px;
}

/* 用户口碑页脚版权区域 */
.reputation-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 111px;
  margin-left: 160px;
  margin-right: 160px;
  min-height: 45px;
  padding-left: 593px;
  padding-right: 593px;
  padding-bottom: 0.5px;
  position: relative;
  z-index: 1000;
}

/* 用户口碑页脚版权文本 */
.reputation-footer-copyright-text {
  color: #FFFFFF;
  font-family: 'Source Han Serif SC';
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  text-overflow: ellipsis;
  flex-grow: 1;
  min-height: 20px;
}

/* ===== 导航链接样式 ===== */

/* 通用导航链接样式 */
.nav-item a,
.reputation-nav-item a,
.core-business-nav-item a,
.cooperation-nav-item a,
.about-nav-item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 首页导航链接样式 */
.nav-item-home a,
.reputation-nav-item-home a,
.core-business-nav-item-home a,
.cooperation-nav-item-home a,
.about-nav-item-home a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 导航链接悬停效果 */
.nav-item a:hover,
.reputation-nav-item a:hover,
.core-business-nav-item a:hover,
.cooperation-nav-item a:hover,
.about-nav-item a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* 确保激活状态的导航项不受链接样式影响 */
.nav-item-active,
.reputation-nav-item-active,
.core-business-nav-item-active,
.cooperation-nav-item-active,
.about-nav-item-active {
  pointer-events: none;
}

/* 页脚导航链接样式 */
.footer-nav-item a,
.reputation-footer-nav-item a,
.about-footer-nav-item a,
.core-business-footer-nav-item a,
.cooperation-footer-nav-item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.footer-nav-sub-item a,
.reputation-footer-nav-sub-item a,
.about-footer-nav-sub-item a,
.core-business-footer-nav-sub-item a,
.cooperation-footer-nav-sub-item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 页脚导航链接悬停效果 */
.footer-nav-item a:hover,
.reputation-footer-nav-item a:hover,
.about-footer-nav-item a:hover,
.core-business-footer-nav-item a:hover,
.cooperation-footer-nav-item a:hover,
.footer-nav-sub-item a:hover,
.reputation-footer-nav-sub-item a:hover,
.about-footer-nav-sub-item a:hover,
.core-business-footer-nav-sub-item a:hover,
.cooperation-footer-nav-sub-item a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* 去掉导航菜单A标签的默认下划线 */
.nav-menu a,
.reputation-nav-menu a,
.core-business-nav-menu a,
.cooperation-nav-menu a,
.about-nav-menu a {
  text-decoration: none;
}

/* 去掉所有A标签的默认下划线 */
a {
  text-decoration: none;
}

/* 去掉页脚导航A标签的默认下划线 */
.footer-navigation a {
  text-decoration: none;
}

/* 企业文化内容区域背景切换类 */
.culture-content.bg-mission {
  background-image: url('images/culture-content-1.jpg');
}

.culture-content.bg-vision {
  background-image: url('images/culture-content-2.jpg');
}

.culture-content.bg-values {
  background-image: url('images/culture-content-3.jpg');
}

.culture-content.bg-slogan {
  background-image: url('images/culture-content-4.jpg');
}

/* 通用轮播图样式 - 用于核心业务页面 */
.carousel-container {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .carousel-container {
    height: 400px;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

/* 在售商品轮播图样式 */
.products-carousel-container {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.products-carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.products-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.products-carousel-slide.active {
  opacity: 1;
}

.products-carousel-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.products-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 80px;
  border-radius: 0 0 12px 12px;
}

.products-carousel-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.products-carousel-description {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.products-carousel-button {
  position: absolute;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.products-carousel-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.products-carousel-prev {
  left: calc(50% - 60px);
}

.products-carousel-next {
  right: calc(50% - 60px);
}

/* 竖向轮播图指示器 */
.products-carousel-indicators {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.products-carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.products-carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.products-carousel-indicator.active {
  background: #F5C350;
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* 在售商品轮播图响应式设计 */
@media (max-width: 768px) {
  .products-carousel-container {
    height: 400px;
  }
  
  .products-carousel-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
  }
  
  .products-carousel-prev {
    left: calc(50% - 50px);
  }
  
  .products-carousel-next {
    right: calc(50% - 50px);
  }
  
  .products-carousel-indicators {
    right: 20px;
    gap: 12px;
    padding: 15px 8px;
  }
  
  .products-carousel-indicator {
    width: 12px;
    height: 12px;
  }
  
  .products-carousel-content {
    padding: 30px 20px 70px;
  }
  
  .products-carousel-title {
    font-size: 20px;
  }
  
  .products-carousel-description {
    font-size: 14px;
  }
}

/* ===== 首页页面轮播图样式 ===== */

/* 头部轮播图样式 - 使用transform滑动方式 */
.header-carousel-container {
    position: relative;
    width: 100%;
    min-height: 935px;
    overflow: hidden;
}

.header-carousel-slides {
    display: flex;
    width: 400%;
    transition: transform 0.5s ease-in-out;
}

.header-carousel-slide {
    width: 25%;
    min-height: 935px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-carousel-slide-1 {
    background-image: url('images/header-carousel-slide-1.jpg');
}

.header-carousel-slide-2 {
    background-image: url('images/header-carousel-slide-2.jpg');
}

.header-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.header-carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header-carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.header-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header-carousel-indicator.active {
    background: #F5C350;
}

.header-circle-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.header-circle-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.header-circle-button:active {
    transform: scale(0.95);
}

.header-circle-button .button-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.header-circle-button:hover .button-icon {
    transform: scale(1.1);
}

/* 核心业务区域轮播图样式 */
.product-intro-carousel-container {
    position: relative;
    width: 100%;
    min-height: 750px;
    overflow: hidden;
    /* 设置固定高度，避免aspect-ratio冲突 */
    height: 750px;
    /* 添加平滑过渡效果 */
    transition: height 0.3s ease;
    /* 确保在不同设备上都有良好的显示效果 */
    box-sizing: border-box;
}

.product-intro-carousel-slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.product-intro-carousel-slide {
    width: 33.333%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* 确保图片等比缩放 */
    object-fit: cover;
    /* 添加平滑过渡效果 */
    transition: all 0.3s ease;
    /* 确保内容正确定位 */
    position: relative;
    /* 调试样式 - 确保轮播图可见 */
    min-height: 400px;
}

@media (max-width: 768px) {
    .product-intro-carousel-container {
        height: 400px;
        min-height: 400px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-intro-carousel-container {
        height: 600px;
        min-height: 600px;
    }
}

/* 核心业务轮播图响应式内容样式 */
.product-intro-content-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
    /* 确保内容可见 */
    pointer-events: none;
}

.product-intro-title-responsive {
    margin-bottom: 30px;
}

.product-intro-title-text {
    color: #FFFFFF;
    font-family: 'Source Han Serif SC';
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-intro-description-responsive {
    max-width: 500px;
}

.product-intro-paragraph,
.product-intro-paragraph-2 {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
    .product-intro-content-responsive {
        padding: 0 5%;
        justify-content: flex-end;
        padding-bottom: 80px;
        /* 确保在移动端内容可见 */
        z-index: 10;
    }
    
    .product-intro-title-text {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .product-intro-paragraph,
    .product-intro-paragraph-2 {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .product-intro-description-responsive {
        max-width: 100%;
    }
}

/* 响应式设计 - 平板 */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-intro-content-responsive {
        padding: 0 8%;
    }
    
    .product-intro-title-text {
        font-size: 30px;
    }
    
    .product-intro-paragraph,
    .product-intro-paragraph-2 {
        font-size: 15px;
    }
    
    .product-intro-description-responsive {
        max-width: 400px;
    }
}

/* 响应式设计 - 大屏幕 */
@media (min-width: 1025px) {
    .product-intro-content-responsive {
        padding: 0 10%;
    }
    
    .product-intro-title-text {
        font-size: 36px;
    }
    
    .product-intro-paragraph,
    .product-intro-paragraph-2 {
        font-size: 16px;
    }
    
    .product-intro-description-responsive {
        max-width: 500px;
    }
}

.product-intro-slide-1 {
    background-image: url('images/core-business-product-intro-background-1.jpg');
}

.product-intro-slide-2 {
    background-image: url('images/core-business-product-intro-background-2.jpg');
}

/* 竖向轮播图指示器 */
.product-intro-carousel-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.product-intro-carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-intro-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.product-intro-carousel-indicator.active {
    background: #F5C350;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* 轮播图控制按钮 */
.product-intro-carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.product-intro-circle-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.product-intro-circle-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.product-intro-circle-button:active {
    transform: scale(0.95);
}

.product-intro-circle-button .button-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.product-intro-circle-button:hover .button-icon {
    transform: scale(1.1);
}

/* 用户口碑轮播图样式 */
.testimonial-carousel-container {
    position: relative;
    width: calc(100% - 320px);
    min-height: 500px;
    margin-top: 45px;
    margin-bottom: 200px;
    margin-left: 160px;
    overflow: hidden;
}

.testimonial-carousel-slides {
    display: flex;
    width: 400%;
    transition: transform 0.6s ease-in-out;
}

.testimonial-carousel-slide {
    width: 25%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 用户口碑轮播图指示器 */
.testimonial-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.testimonial-carousel-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.testimonial-carousel-indicator.active {
    background: #F5C350;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* 用户口碑轮播图控制按钮 */
.testimonial-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.testimonial-circle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.testimonial-circle-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.testimonial-circle-button:active {
    transform: scale(0.95);
}

.testimonial-circle-button .button-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.testimonial-circle-button:hover .button-icon {
    transform: scale(1.1);
}

/* 首页轮播图响应式设计 */
@media (max-width: 768px) {
    .header-carousel-container {
        min-height: 600px;
    }
    
    .header-carousel-slide {
        min-height: 600px;
    }
    
    .header-carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .header-carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .header-circle-button {
        width: 40px;
        height: 40px;
    }
    
    .header-circle-button .button-icon {
        width: 18px;
        height: 18px;
    }
    
    /* 核心业务轮播图移动端适配 */
    .product-intro-carousel-container {
        min-height: 400px;
        aspect-ratio: 4/3;
    }
    
    .product-intro-carousel-slide {
        min-height: 400px;
    }
    
    .product-intro-carousel-indicators {
        right: 15px;
        gap: 10px;
        padding: 12px 6px;
    }
    
    .product-intro-carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .product-intro-circle-button {
        width: 36px;
        height: 36px;
    }
    
    .product-intro-circle-button .button-icon {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-carousel-container {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        min-height: 400px;
    }
    
    .testimonial-carousel-slide {
        min-height: 400px;
    }
    
    .testimonial-carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .testimonial-carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .testimonial-circle-button {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-circle-button .button-icon {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-carousel-controls {
        padding: 0 20px;
    }
}

/* 平板设备适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-intro-carousel-container {
        min-height: 600px;
        aspect-ratio: 3/2;
    }
    
    .product-intro-carousel-slide {
        min-height: 600px;
    }
    
    .product-intro-carousel-indicators {
        right: 25px;
        gap: 14px;
        padding: 18px 8px;
    }
    
    .product-intro-carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .product-intro-circle-button {
        width: 48px;
        height: 48px;
    }
    
    .product-intro-circle-button .button-icon {
        width: 20px;
        height: 20px;
    }
}

/* 大屏幕设备优化 */
@media (min-width: 1025px) {
    .product-intro-carousel-container {
        min-height: 750px;
        aspect-ratio: 16/9;
    }
    
    .product-intro-carousel-slide {
        min-height: 750px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .product-intro-circle-button {
        min-width: 44px;
        min-height: 44px;
        /* 确保触摸目标足够大 */
    }
    
    .product-intro-carousel-indicator {
        min-width: 16px;
        min-height: 16px;
        /* 确保指示器在触摸设备上容易点击 */
    }
    
    .product-intro-carousel-controls {
        /* 增加触摸区域 */
        padding: 10px 0;
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-intro-carousel-slide {
        /* 确保在高分辨率屏幕上图片清晰 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}