 
  /* 主要内容 */
  main {
    flex: 1;
  }
  
 
  .bg-muted {
    background-color: #f9fafb;
  }
  

      /* 品牌介绍部分 - 大图背景样式 */
  .brand-hero {
    position: relative;
    width: 100%;
    height: 900px; /* 增加高度 */
    background-size: cover;
    background-position: center;
  }
  
  .brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%); /* 增加背景透明度，提高文字清晰度 */
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
  }
  
  .brand-content {
  padding: 30px;
  max-width: 800px;
  color: white;
  text-align: center;
  background-color: rgb(36 36 36 / 10%);
  border-radius: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
  .brand-content:hover {
    transform: translateY(-5px); /* 悬停时上移 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* 悬停时添加阴影 */
  }
  
  .brand-title {
    font-size: 3.2rem; /* 增大标题字体 */
    font-weight: 700;
    margin-bottom: 30px; /* 增加下边距 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* 添加文字阴影增加清晰度 */
  }
  
  .brand-content p {
    font-size: 1.2rem; /* 增大正文字体 */
    line-height: 1.8;
    margin-bottom: 20px; /* 段落间距 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* 添加文字阴影增加清晰度 */
  }
  
  .brand-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* 响应式调整 */
  @media (max-width: 768px) {
    .brand-hero {
      height: 400px;
    }
    
    .brand-content {
      padding: 0 30px;
    }
    
    .brand-title {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .brand-hero {
      height: 350px;
    }
    
    .brand-content {
      padding: 0 20px;
    }
    
    .brand-title {
      font-size: 1.8rem;
    }
    
    .brand-description {
      font-size: 1rem;
    }
  }
  /* 使命部分 */
  .mission-section {
    text-align: center;
  }
  
  .mission-header {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  
  h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .mission-content {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .mission-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .mission-item {
    margin-bottom: 24px;
  }
  
  h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  /* MetricsMarquee 部分样式 */
  .metrics-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
  }
  
  .metrics-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .metrics-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .metrics-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .metrics-container {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .metrics-track {
    display: flex;
    gap: 60px;
    padding: 20px 30px;

  white-space: nowrap;

;
    animation: continuous-scroll 15s linear infinite; /* 添加动画属性 */
    /* 移除以下两行，因为它们会阻止滚动效果 */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
  }
  
  /* 添加关键帧动画 */
  @keyframes continuous-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% )); /* 移动一半的距离，因为我们会复制一组元素 */
    }
  }
  
  .metrics-item {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    flex-shrink: 0;
    margin-bottom: 20px; /* 添加底部间距 */
  }
  
  .metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .metric-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    white-space: normal;
    max-width: 200px;
  }
      .view-case-studies {
    display: inline-block;
    margin-top: 10px;
    color: #f59e0b;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .view-case-studies:hover {
    color: #fff;
  }
  /* 历程部分 - 样式 */
  .history-section {
    background-color: #dfe3ec; /* 深绿色背景，类似图片 */
    color: white;
    padding: 80px 0;
  }
  
  .history-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .history-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1c2a4d;
  }
  
  .history-year {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1c2a4d;
  }
  
  .history-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #1c2a4d;
  }
  
  .timeline {
    display: flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
  }
  
  .timeline-line {
    position: absolute;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .timeline-years {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  
  .year-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .year-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1c2a4d;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  
  .year-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1c2a4d;
  }
  
  .year-marker.active .year-dot {
    background-color: #1c2a4d; /* 橙色，活跃状态 */
    transform: scale(1.2);
  }
  
  .year-marker:not(.active) {
    opacity: 0.7;
  }
  
  .year-marker:hover:not(.active) {
    opacity: 1;
  }
  
  .history-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .view-more {
    display: inline-flex;
    align-items: center;
    color: #f59e0b;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  
  .view-more:hover {
    text-decoration: underline;
  }
  
  .view-more svg {
    margin-left: 8px;
  }
  
  /* Meet Our Team 部分 - 样式 */
  .meet-team-section {
    padding: 100px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
  }
  
  .section-title:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #333;
    margin: 20px auto 0;
  }
  
  .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .member {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .member-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-style: italic;
  }
  
  .member-title {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
  }
  
  .member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    color: #444;
  }
  
  .linkedin-icon {
    margin: 10px 0;
    color: #999;
  }
  
  /* 响应式设计 */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 3rem;
    }
    
    .about-intro {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .mission-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  @media (max-width: 767px) {
    .history-container {
      grid-template-columns: 1fr;
    }
    
    .history-image {
      order: -1;
    }
    
    .team-members {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    .timeline-years {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    
    .timeline-line {
      display: none;
    }
    
    /* 删除这两行 */
    .stat-item {
      min-width: 160px;
    }
    
    .category-title {
      text-align: center;
    }
  }

  /* 制造流程部分样式 */
  .manufacturing-section {
    padding: 80px 0;
    background-color: #f9fafb;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #004d33;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* 流程步骤 */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 40px;
  }
  
  .process-step {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  .step-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .step-content {
    padding: 24px;
  }
  
  .step-number {
    display: inline-block;
    background-color: #f59e0b;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #004d33;
  }
  
  .step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  /* 响应式设计 - 制造流程部分 */
  @media (max-width: 768px) {
    .process-steps {
      grid-template-columns: 1fr;
    }
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
  }
  
  .section-title:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #333;
    margin: 20px auto 0;
  }
  
  .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .member {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .member-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-style: italic;
  }
  
  .member-title {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
  }
  
  .member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    color: #444;
  }
  
  .linkedin-icon {
    margin: 10px 0;
    color: #999;
  }
  
  /* 响应式设计 */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 3rem;
    }
    
    .about-intro {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .mission-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  @media (max-width: 767px) {
    .history-container {
      grid-template-columns: 1fr;
    }
    
    .history-image {
      order: -1;
    }
    
    .team-members {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    .timeline-years {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    
    .timeline-line {
      display: none;
    }
    
    /* 删除这两行 */
    .stat-item {
      min-width: 160px;
    }
    
    .category-title {
      text-align: center;
    }
  }

  /* 核心价值观部分样式 */
.core-values-section {
padding: 0;
margin: 80px 0;
}

.values-grid {
position: relative;
width: 100%;
height: 800px;
background-image: url('../images/about/Our Values.jpg');
background-size: cover;
background-position: center;
color: white;
}

.values-overlay {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 1fr);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.1);
}

/* 标题区块特殊样式 */
.header-block {
background-color: #1c2a4d;
cursor: default;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}

.header-content {
text-align: center;
}

.header-block h2 {
font-size: 2rem;
margin-bottom: 15px;
color: white;
}

.header-block p {
font-size: 1rem;
line-height: 1.5;
color: rgba(255, 255, 255, 0.9);
}

/* 普通区块样式 */
.value-block {
position: relative;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
overflow: hidden;
cursor: pointer;
}

.value-block:not(.header-block):hover {
  background-color: rgb(0 30 102 / 80%);
}

.value-title {
font-size: 1.2rem;
font-weight: 600;
text-align: center;
z-index: 2;
transition: transform 0.3s ease;
}

.value-description {
position: absolute;
bottom: -100%;
left: 0;
width: 100%;
height: 70%;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
/* background-color: rgba(0, 77, 51, 0.9);  */
transition: bottom 0.3s ease;
z-index: 1;
}

.value-description p {
font-size: 0.9rem;
line-height: 1.5;
text-align: center;
}

.value-block:not(.header-block):hover .value-title {
transform: translateY(-30px);
}

.value-block:not(.header-block):hover .value-description {
bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.values-overlay {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.values-grid {
  height: 800px;
}
}

@media (max-width: 480px) {
.values-overlay {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(8, 1fr);
}

.values-grid {
  height: 1200px;
}

.header-block {
  padding: 15px;
}

.header-block h2 {
  font-size: 1.5rem;
}
}


.linkedin-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.linkedin-link:hover {
  transform: translateY(-2px);
}

.linkedin-icon svg {
  fill: #0A66C2; /* LinkedIn品牌蓝 */
}


/* 完全独立的样式，无任何冲突风险 */
.static-metrics {
  padding: 60px 0;
  background-color: #1c2a4d;
}
.static-metrics-header {
  text-align: center;
margin-bottom: 60px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 20px;
}
.static-metrics-header h2 {
font-weight: 700;
font-size: 3rem;
color: #fff;
margin-bottom: 20px;
}
.static-metrics-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.static-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.static-metrics-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px; 
}
.static-metrics-item:hover {
  transform: translateY(-5px);
}

.static-metric-number {
  font-size: 1.8em;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.static-metric-text {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

.static-view-case-studies {
  margin-top: 12px;
  display: inline-block;
  padding: 8px 16px;
  background: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  align-self: center;
  transition: background 0.3s ease;
  font-size: 14px;
}
.static-view-case-studies:hover {
  background: #0056b3;
  color: #fff;
}

/* 在原有CSS基础上添加以下响应式规则 */
@media (max-width: 768px) {
.static-metrics-grid {
grid-template-columns: repeat(2, 1fr); /* 小屏幕每行显示2个 */
gap: 15px; /* 缩小间距 */
}

.static-metrics-item {
min-height: 140px; /* 减小最小高度 */
padding: 18px; /* 减小内边距 */
}

.static-metric-number {
font-size: 20px; /* 减小数字字体 */
}

.static-metric-text {
font-size: 13px; /* 减小文本字体 */
}

.static-view-case-studies {
padding: 6px 12px; /* 减小按钮尺寸 */
font-size: 13px;
}
}

@media (max-width: 480px) {
.static-metrics-grid {
grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
}