/* 关于我们页面专用样式 */

/* 容器居中限制最大宽度 */
.about-container {
  max-width: 800px;
  margin: 0 auto;
}

/* 页面标题样式 */
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 2px;
}

/* 关于我们卡片样式 */
.about-card {
  padding: 36px 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(39, 174, 96, 0.06);
  margin-bottom: 32px;
}

/* 关于我们头部区域 */
.about-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about-header i {
  font-size: 2.1rem;
  color: #27ae60;
}

.about-header span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #27ae60;
}

/* 描述文字样式 */
.about-description {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* 特色功能列表 */
.about-features {
  margin: 18px 0;
  color: #333;
  font-size: 1rem;
  line-height: 2;
  list-style: none;
  padding: 0;
}

.about-features li {
  margin-bottom: 8px;
}

.about-features i {
  color: #27ae60;
  margin-right: 7px;
}

/* 联系我们卡片样式 */
.contact-card {
  padding: 32px;
  background: #e8f5e9;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(39, 174, 96, 0.06);
}

/* 联系我们头部区域 */
.contact-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-header i {
  font-size: 1.5rem;
  color: #219150;
}

.contact-header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #219150;
}

/* 联系方式列表 */
.contact-list {
  margin-top: 10px;
  font-size: 1rem;
  list-style: none;
  padding: 0;
}

.contact-list i {
  color: #219150;
  margin-right: 7px;
}

.contact-list a {
  color: #219150;
  text-decoration: underline;
}

.contact-list a:hover {
  color: #1e8449;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .about-container {
    padding: 0 16px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-card,
  .contact-card {
    padding: 24px 20px;
  }
  
  .about-header,
  .contact-header {
    gap: 12px;
  }
  
  .about-header i {
    font-size: 1.8rem;
  }
  
  .contact-header i {
    font-size: 1.3rem;
  }
}