/* ============================================
   关于我们页 专属样式
   ============================================ */

/* --- 公司介绍 --- */
.about-profile-img {
  border-radius: var(--r-lg);
  min-height: 320px;
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
}

.about-profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.about-profile-img::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(26, 86, 219, 0.12);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.about-info-list {
  margin: var(--sp-lg) 0 var(--sp-xl);
}

.about-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-info-item strong {
  min-width: 100px;
  color: var(--color-gold);
  font-size: var(--fs-sm);
}

.about-info-item span {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

/* --- 使命/愿景/价值观 --- */
.mvv-card {
  text-align: center;
  padding: var(--sp-2xl);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  transition: all var(--t-normal);
}

.mvv-card:hover {
  border-color: rgba(26, 86, 219, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.mvv-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.06);
  border: 1px solid rgba(26, 86, 219, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  color: var(--color-gold);
}

.mvv-card__icon svg {
  display: block;
}

.mvv-card__title {
  font-size: var(--fs-xl);
  color: var(--color-gold);
  margin-bottom: var(--sp-md);
  font-weight: 600;
}

.mvv-card__text {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* --- 时间线 --- */
.timeline {
  position: relative;
  padding: var(--sp-xl) 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), rgba(26, 86, 219, 0.15));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 var(--sp-2xl) var(--sp-2xl);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: var(--sp-3xl);
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: var(--sp-3xl);
}

.timeline-dot {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid #ffffff;
  z-index: 1;
  box-shadow: 0 0 0 2px rgba(26, 86, 219, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-date {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(26, 86, 219, 0.08);
  color: var(--color-gold);
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}

.timeline-title {
  font-size: var(--fs-lg);
  color: var(--color-white);
  margin-bottom: var(--sp-xs);
  font-weight: 600;
}

.timeline-text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* --- 团队 --- */
.team-card {
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  padding: var(--sp-2xl) var(--sp-lg);
  transition: all var(--t-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 86, 219, 0.3);
  box-shadow: var(--shadow-gold);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f0f4f8;
  margin: 0 auto var(--sp-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-gold);
  border: 2px solid rgba(26, 86, 219, 0.15);
}

.team-card__avatar svg {
  display: block;
}

.team-card__name {
  font-size: var(--fs-lg);
  color: var(--color-white);
  margin-bottom: var(--sp-xs);
  font-weight: 600;
}

.team-card__role {
  font-size: var(--fs-sm);
  color: var(--color-gold);
  margin-bottom: var(--sp-md);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* --- 公司优势 --- */
.advantage-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  transition: all var(--t-normal);
}

.advantage-card:hover {
  border-color: rgba(26, 86, 219, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.advantage-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(26, 86, 219, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.advantage-card__icon svg {
  display: block;
}

.advantage-card__title {
  font-size: var(--fs-base);
  color: var(--color-white);
  margin-bottom: var(--sp-xs);
  font-weight: 600;
}

.advantage-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* --- 响应式 --- */
@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }
}
