/* 整体字体与排版 */
.about-section {
  /* padding: 80px 20px; */
  background-color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
  margin: 0 auto;
}

.title-box {
  text-align: center;
  margin-bottom: 50px;
}

.title-box .en {
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-box .cn {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-top: 8px;
}

/* 内容区域 */
.content-box {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.content-box .left,
.content-box .right {
  flex: 1;
  min-width: 300px;
}

.content-box .left img {
  width: 100%;
  border-radius: 8px;
}

.content-box .right h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}

.content-box .right p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* 数字模块 */
.stats-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.stats-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats-list li {
  text-align: center;
  flex: 1 1 200px;
  margin: 20px;
}

.stats-list .num {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}

.stats-list .num em {
  font-size: 18px;
  color: #999;
  margin-left: 4px;
  font-style: normal;
}

.stats-list .tit {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}