/* ================================================================
   关于我们页
================================================================ */

.about-hero {
  height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 56px;
  width: 100%;
}
.about-hero-inner h1 {
  font-size: 44px;
  font-weight: 800;
  color: #333;
  margin-bottom: 14px;
}
.about-hero-inner p {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  max-width: 470px;
  text-indent: 25px;
  margin-top: 10px;
}

/* 企业文化 */
.culture-section {
  padding: 88px 0;
  background: #fff;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.culture-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.culture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.culture-card:hover img {
  transform: scale(1.07);
}
.culture-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 60, 0.46);
}
.culture-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.culture-label-cn {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.culture-label-en {
  font-size: 12px;
  opacity: 0.75;
  text-transform: uppercase;
}

/* 荣誉资质 */
.honor-section {
  position: relative;
  background: var(--bg-white);
}
.honor-inner {
  max-width: var(--max-w);
  position: absolute;
  width: 100%;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.honor-inner .sec-title {
  color: #fff;
}

/* 联系我们 */
.contact-section {
  padding: 88px 0;
  background: #fff;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.contact-card {
  background: #fff;
  padding: 36px 28px;
  display: flex;
  border-radius: 0px 0px 0px 0px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.32s,
    box-shadow 0.32s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20, 60, 200, 0.1);
}
.contact-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.contact-label {
  font-size: 13px;
  color: var(--text-lt);
  margin-bottom: 8px;
}
.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
