/* 关于我们页面样式 - 极简风格 */

/* 基础样式 */
:root {
  --primary-color: #000000;
  --secondary-color: #f5f5f5;
  --text-color: #333333;
  --light-text: #999999;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
}

body {
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 大图展示区域 */
.hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}

.banner-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 3.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--light-text);
}

.banner-number {
  font-size: 2.5rem;
  font-weight: 300;
  margin-top: 10px;
}

.banner-label {
  font-size: 1rem;
  color: var(--light-text);
}

/* 数字统计区域 */
.stats-section {
  padding: 80px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.stats-container {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 300;
  vertical-align: top;
}

.stat-label {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.stat-sublabel {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* 关于我们内容区域 */
.about-content {
  padding: 80px 0;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.about-section {
  flex: 1;
}

.about-section:first-child {
  border-right: 1px solid var(--border-color);
  padding-right: 60px;
}

.about-section:last-child {
  padding-left: 0;
}

/* 工作方式区域 */
.work-method {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.work-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.work-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* 合作区域 */
.cooperation {
  padding: 80px 0;
}

.coop-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.coop-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* 页脚版权 */
.footer-copyright {
  padding: 20px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  text-align: left;
  font-size: 0.9rem;
  color: var(--light-text);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .banner-overlay {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .banner-overlay {
    width: 60%;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-section:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 500px;
  }
  
  .banner-overlay {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .stats-container {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat-item {
    width: 45%;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 400px;
  }
  
  .banner-title {
    font-size: 1.5rem;
  }
  
  .banner-subtitle {
    font-size: 1rem;
  }
  
  .stat-item {
    width: 100%;
  }
}