 /* ========== 首屏 Swiper 背景 ========== */
    .hero-slide {
      background-image: url("/web/default/static/0481bc13951bfbc4d0eb410cfa911457.jpg");
      background-size: cover;
      background-position: center;
      height: 991px;
      position: relative;
    }

    /* ========== 本质 Swiper ========== */
    .essence-swiper {
      width: 60%;
      height: 300px;
      border: 1px solid #f8f8f8;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin: 0 auto 40px;
    }

    .essence-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

    .left-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .chinese-text {
      font-weight: 300;
      font-size: 100px;
      color: rgba(255, 0, 0, 1);
      line-height: 1;
      letter-spacing: 2px;
      text-align: center;
      position: relative;
      display: inline-block;
      padding: 200px 0;
      z-index: 3;
    }

    .chinese-text span {
      display: block;
      position: relative;
      z-index: 4;
    }

    .chinese-text::before,
    .chinese-text::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
      pointer-events: none;
    }

    .chinese-text::before {
      width: 150px;
      height: 150px;
      background: rgba(255, 250, 250, 1);
      z-index: 1;
    }

    .chinese-text::after {
      width: 110px;
      height: 110px;
      background: #ffffff;
      z-index: 2;
    }

    .right-content {
      flex: 1;
      padding-left: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .main-title {
      font-size: 24px;
      font-weight: bold;
      color: #000;
      margin-bottom: 10px;
    }

    .sub-title {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
    }

    /* ========== 内容区块 ========== */
    .section {
      text-align: center;
      padding: 60px 0;
    }

    .culture-section,
    .inner-wealth-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f5f5f5;
      min-height: 500px;
      padding: 60px 8%;
    }

    .culture-text h1 {
      color: rgba(255, 0, 0, 1);
      font-size: 48px;
      margin: 0 0 40px 0;
      font-weight: 600;
    }

    .culture-text h2 {
      color: #333;
      font-size: 28px;
      margin: 0 0 20px 0;
      font-weight: 600;
    }

    .culture-text p {
      color: #666;
      font-size: 16px;
      line-height: 1.8;
      margin: 0 0 30px 0;
    }

    /* ========= 文化 & 内心富足 图片区通用规则 ========= */
    .culture-image,
    .inner-wealth-image {
      flex: 0 0 50%;
      max-width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .culture-image img,
    .inner-wealth-image img {
      width: 100%;
      height: auto;
      max-height: 800px;
      object-fit: contain; /* 关键：不裁剪，完整显示 */
      border-right: 1px solid #ccc;
    }

    .inner-wealth-text {
      flex: 0 0 50%;
      padding-left: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
   
    .inner-wealth-text > div:first-child {
      color: rgba(255, 0, 0, 1);
      font-size: 48px;
      font-weight: bold;
      line-height: 1.2;
    }

    .inner-wealth-text > div:last-child {
      margin-top: 20px;
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .mission-section {
      min-height: 800px;
      background-image: url('/web/default/static/a136f26fd9144f9390faa9e2faf3998c.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      position: relative;
    }

    .mission-content {
      z-index: 2;
      margin-top: -500px;
    }

    .mission-content h1 {
      color: rgba(255, 0, 0, 1);
      font-size: 28px;
      margin: 0;
      font-weight: 600;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .mission-content p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      margin-top: 8px;
      line-height: 1.6;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* ========== 响应式优化 ========== */
    @media (max-width: 768px) {
      .essence-swiper {
        width: 90%;
      }

      .culture-section,
      .inner-wealth-section {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
      }

      .culture-image,
      .inner-wealth-image {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0;
      }

      .culture-image img,
      .inner-wealth-image img {
        border-right: none;
        border-bottom: 1px solid #ccc;
        height: auto;
        max-height: none;
      }

      .inner-wealth-text {
        flex: 1;
        width: 100%;
        padding-left: 0;
        margin-top: 0;
      }
    }