
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    .container {
      max-width: 1200px;
      width: 100%;

      
      overflow: hidden;

      animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 0;
      align-items: stretch;
      min-height: 500px;
      padding: 40px 0;
      /* 新增上下40px的留白 */
      margin: 20px 0;
      /* 可选：如果需要额外的外边距 */
    }

   .content-wrapper-s {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 0;
      align-items: stretch;
      min-height: 500px;
      padding: 40px 0;
      /* 新增上下40px的留白 */
      margin: 20px 0;
      /* 可选：如果需要额外的外边距 */
    }

    .image-section {
      position: relative;
      height: 100%;

      overflow: hidden;
      background: linear-gradient(45deg, #e3e9f3, #f0f4f8);
    }

    .image-section-newsrelease {
      position: relative;
      max-height: 400px;
      overflow: hidden;

    }

    .image-section-newsrelease img {
      width: 100%;
      height: auto !important;
      object-fit: cover;
      transition: transform 0.6s ease;
    }


    .image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .image-section:hover img {
      transform: scale(1.05);
    }

    .image-section-newsrelease:hover img {
      transform: scale(1.05);
    }

    .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      pointer-events: none;
    }

    .text-section {
      padding: 60px;
      background: white;
      height: 100%;
      /* 添加高度100% */
      display: flex;
      /* 添加flex布局 */
      flex-direction: column;
      /* 垂直排列子元素 */
      justify-content: center;
      /* 垂直居中内容 */
    }

    .subtitle {
      color: #c7c5ba;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.3s forwards;
    }

    h1 {
      font-size: 48px;
      font-weight: 300;
      color: #f8a056;
      margin-bottom: 30px;
      letter-spacing: -1px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
    }

    h1 strong {
      font-weight: 500;
    }

    .description {
      font-size: 18px;
      line-height: 1.8;
      color: #546e7a;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.5s forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    .btn-read-more {
      display: inline-flex;
      align-items: center;
      padding: 16px 36px;
      
      
      text-decoration: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
     
      animation: fadeIn 1s ease-out 0.8s forwards;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
           width: auto;
          
      /* 确保宽度自适应内容 */
      text-align: center;
      justify-content: center;
      margin: 0 auto;
      /* 新增：水平居中 */


 background: linear-gradient(135deg, #ed8936, #f9ca92);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(237, 137, 54, 0.3);
            position: relative;
            overflow: hidden;
           


    }



    .btn-read-more::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .btn-read-more:hover::before {
      left: 100%;
    }

    .btn-read-more:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(219, 130, 22, 0.4);
      color: white
      
    }

    .btn-read-more span {
      margin-right: 8px;
    }

    .btn-read-more svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .btn-read-more:hover svg {
      transform: translateX(5px);
    }

    @media (max-width: 968px) {
      .content-wrapper {
        grid-template-columns: 1fr;
      }

      .image-section {
        min-height: 300px;
      }

      .text-section {
        padding: 40px;
      }

      h1 {
        font-size: 36px;
      }

      .description {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .text-section {
        padding: 30px;
      }

      h1 {
        font-size: 28px;
      }

      .btn-read-more {
        padding: 14px 28px;
        font-size: 14px;
      }
    }
