/* 关于我们页面样式 */

.about {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 12px;
}

.about-section {
  margin-bottom: 60px;
  text-align: center;
}

.about-title {
  font-size: 28px;
  color: #333;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--cta);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* 移除阴影（除首页外不使用阴影） */
  box-shadow: none;
}

