/* 关于我们页面样式 */
.about-section {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #0c56aa;
}

.about-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-content p {
  margin-bottom: 20px;
}

/* 特色功能列表 */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 32px;
  margin-right: 15px;
}

.feature-text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #0c56aa;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 办公环境 */
.office-info {
  margin: 40px 0;
}

.office-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.office-images {
  margin-top: 20px;
}

.office-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 团队介绍 */
.team-intro {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.team-intro h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* 岗位职责样式 */
.duty-section {
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.duty-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.duty-section h3 {
  font-size: 20px;
  font-weight: bold;
  color: #0c56aa;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0c56aa;
}

.duty-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.duty-section li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.duty-section li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #0c56aa;
  border-radius: 50%;
}

/* 页面主体布局 */
.page-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.sidebar {
  width: 240px;
  flex-shrink: 0;
}

.main-content {
  flex: 1;
  min-width: 0; /* 防止内容溢出 */
}

.content-body {
  width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .page-content {
    flex-direction: column;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .about-content {
    font-size: 15px;
  }

  .duty-section {
    padding: 20px;
  }

  .duty-section h3 {
    font-size: 18px;
  }

  .duty-section li {
    font-size: 14px;
  }
} 