.junhua-about-culture-one-section {
  padding: var(--spacing-9xl) 0;
  background-color: #fff;
}

.junhua-about-culture-one-container {
  display: flex;
  flex-direction: column;
}

/* 标题区域 */
.junhua-about-culture-one-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-7xl);
}

.junhua-about-culture-one-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  text-align: center;
  color: var(--text-color-strong);
  margin: 0;
}

.junhua-about-culture-one-title-highlight {
  color: var(--primary-color);
}

.junhua-about-culture-one-subtitle {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-title);
  text-align: center;
  color: var(--text-color-strong);
  margin: 0;
}

/* 副标题 */
.junhua-about-culture-one-section-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-body);
  line-height: var(--line-height-title);
  color: var(--text-color-gray-600);
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-5xl);
  padding: 0 3rem;
  padding-bottom: var(--spacing-2xl);
}

.junhua-about-culture-one-section-title::before {
  content: '';
}

/* 主内容区域 */
.junhua-about-culture-one-content {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  padding-top: 1.75rem;
  background: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/0fd35fc6-aea0-48d3-8acd-869d34b9ec8f-ound%202.png')
    no-repeat;
  background-position: center bottom;
  background-size: 100%;
  background-color: var(--primary-color);
}

/* 左侧 */
.junhua-about-culture-one-left {
  flex: 1;
}

.junhua-about-culture-one-left-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-5xl);
  height: 100%;
}

.junhua-about-culture-one-image-wrapper {
  width: 100%;
  transform: translateY(-4rem);
}

.junhua-about-culture-one-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.junhua-about-culture-one-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
  padding-bottom: var(--spacing-base);
}

.junhua-about-culture-one-list-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  padding-bottom: 11px;
  border-bottom: var(--border-width-thin) solid #67c3b6;
}

.junhua-about-culture-one-list-label {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-title);
  color: var(--text-color-white);
}

.junhua-about-culture-one-list-content {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-tiny);
  line-height: var(--line-height-compact);
  color: var(--text-color-white);
}

/* 右侧 */
.junhua-about-culture-one-right {
  flex: 1;
  display: grid;
}

.junhua-about-culture-one-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-4xl);
  height: 100%;
}

.junhua-about-culture-one-card {
  border: var(--border-width-thin) solid #67c3b6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.junhua-about-culture-one-card-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}

.junhua-about-culture-one-card-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}

.junhua-about-culture-one-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.junhua-about-culture-one-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
}

.junhua-about-culture-one-card-label {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-title);
  color: var(--text-color-white);
}

.junhua-about-culture-one-card-desc {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-mini);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .junhua-about-culture-one-header {
    margin-bottom: 1rem;
  }
  .junhua-about-culture-one-section-title {
    display: none;
  }
  .junhua-about-culture-one-left-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .junhua-about-culture-one-image-wrapper {
    transform: none;
  }
  .junhua-about-culture-one-content {
    background: #fff;
  }
  .junhua-about-culture-one-list-label {
    color: #000;
  }

  .junhua-about-culture-one-list-content {
    color: #000;
  }

  .junhua-about-culture-one-list-item {
    border-color: #eee;
  }

  .junhua-about-culture-one-card {
    background-color: var(--primary-color);
  }

  .junhua-about-culture-one-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .junhua-about-culture-one-section {
    background-color: #fff;
  }
  .junhua-about-culture-one-content {
    padding: 0px;
  }
  .junhua-about-culture-one-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
