.green-diamond-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* 在不支持 aspect-ratio 的旧浏览器上的降级方案 (可选) */
  /*
  @supports not (aspect-ratio: 16 / 9) {
    height: 0;
    padding-bottom: 56.25%; // 9 / 16 = 0.5625
  }
  */
  overflow: hidden;
}
.green-diamond-banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.green-diamond-banner .content {
  position: absolute;
  z-index: 2;
  top: 1.57rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 768px) {
  .green-diamond-banner {
    aspect-ratio: auto;
  }
}
.model-01 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.model-01 .title {
  font-size: 26px;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.model-01 .subtitle {
  font-size: 14px;
  letter-spacing: 0.1em;
  /* 增加字母间距，更有设计感 */
  color: #666;
  margin-top: 10px;
  /* 与主标题拉开一点距离 */
  margin-bottom: 34px;
  /* 距下 34px */
}
.model-01 .description {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  /* 增加行高，提升大段文字的可读性 */
  margin-left: auto;
  margin-right: auto;
}
.model-02 {
  display: flex;
  align-items: center;
  width: 100%;
}
.model-02 .feature-item {
  width: 50%;
  /* 精确宽度 541px */
}
.model-02 .feature-item .image {
  width: 100%;
  height: 11.52rem;
}
.model-02 .feature-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-03 {
  display: flex;
  align-items: flex-start;
  margin-top: 2.4rem;
  width: 100%;
}
.model-03 .left-feature-item {
  width: 50%;
  /* 精确宽度 541px */
}
.model-03 .left-feature-item .image {
  width: 100%;
  height: 11.52rem;
}
.model-03 .left-feature-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-03 .left-feature-item .description {
  padding-left: 1.2rem;
  box-sizing: border-box;
  margin-top: 0.2rem;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.model-03 .right-feature-item {
  position: relative;
}
.model-03 .right-feature-item .content {
  position: relative;
  top: 1.842rem;
  left: 1.52rem;
}
.model-03 .right-feature-item .content .image {
  width: 6.53rem;
  height: 7.83rem;
}
.model-03 .right-feature-item .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-03 .right-feature-item .content .description {
  margin-top: 0.2rem;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.model-04 {
  margin-top: 2.4rem;
}
.model-04 .container {
  display: flex;
  justify-content: center;
  gap: 0.32rem;
  /* 间距 32px */
  max-width: 16.8rem;
  margin: 0rem auto;
}
.model-04 .container .product-item {
  width: 8.24rem;
  /* 宽度 824px */
}
.model-04 .container .product-item .image-placeholder {
  width: 100%;
  height: 9.89rem;
  /* 高度 989px */
  margin-bottom: 0.2rem;
  /* 图片和文字的间距 */
}
.model-04 .container .product-item .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-04 .container .product-item .product-caption {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 0.2rem;
  color: #555;
  text-align: left;
}
.model-05 {
  margin-top: 2.4rem;
}
.model-05 .right-feature-item .content .description {
  width: 6.53rem;
}
.model-06 {
  display: flex;
  align-items: flex-start;
  margin-top: 2.4rem;
  margin-bottom: 2.48rem;
  width: 100%;
}
.model-06 .left-feature-item {
  position: relative;
  width: 50%;
}
.model-06 .left-feature-item .content {
  position: relative;
  top: 1.842rem;
  left: 1.55rem;
}
.model-06 .left-feature-item .content .image {
  width: 6.53rem;
  height: 7.83rem;
}
.model-06 .left-feature-item .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-06 .left-feature-item .content .description {
  margin-top: 0.2rem;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.model-06 .right-feature-item {
  width: 50%;
  /* 精确宽度 541px */
}
.model-06 .right-feature-item .image {
  width: 100%;
  height: 11.52rem;
}
.model-06 .right-feature-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-06 .right-feature-item .description {
  margin-top: 0.2rem;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
/*
======================================================
====       男士系列页 - 移动端适配样式 (<= 768px)      ====
======================================================
*/
@media (max-width: 768px) {
  .green-diamond-banner {
    aspect-ratio: 3 / 4;
    min-height: 60vh;
  }
  .model-01 {
    margin: 40px 20px;
    box-sizing: border-box;
  }
  .model-01 .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .model-01 .description {
    font-size: 14px;
    line-height: 1.7;
  }
  .model-02 {
    flex-direction: column;
    margin-top: 40px;
  }
  .model-02 .feature-item {
    width: 100%;
  }
  .model-02 .feature-item .image {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .model-03,
  .model-06 {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .model-03 .left-feature-item,
  .model-06 .left-feature-item,
  .model-03 .right-feature-item,
  .model-06 .right-feature-item {
    width: 100%;
  }
  .model-03 .content,
  .model-06 .content {
    position: static !important;
    top: auto !important;
    left: auto !important;
    padding: 20px;
    box-sizing: border-box;
  }
  .model-03 .left-feature-item .image,
  .model-05 .left-feature-item .image {
    height: auto;
    aspect-ratio: 1/1.2;
  }
  .model-03 .left-feature-item .description,
  .model-05 .left-feature-item .description {
    padding: 20px;
    text-align: center;
  }
  .model-03 .right-feature-item .content .image,
  .model-05 .right-feature-item .content .image {
    width: 100%;
    height: auto;
    aspect-ratio: 653 / 783;
  }
  .model-03 .right-feature-item .content .description,
  .model-05 .right-feature-item .content .description {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }
  .model-06 {
    margin-bottom: 120px;
    flex-direction: column-reverse;
  }
  .model-06 .left-feature-item .content .image {
    width: 100%;
    height: auto;
    aspect-ratio: 653 / 783;
  }
  .model-06 .right-feature-item .image {
    height: auto;
    aspect-ratio: 1/1.2;
  }
  .model-06 .right-feature-item .description {
    padding: 20px;
    text-align: center;
  }
  .model-04 {
    margin-top: 40px;
  }
  .model-04 .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .model-04 .container .product-item {
    width: 90%;
  }
  .model-04 .container .product-item .image-placeholder {
    height: auto;
    aspect-ratio: 824 / 989;
  }
}
