  .section {
    /* padding: 0 20px; */
    margin-bottom: 20px;
  }
  .container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .container::before {
    content: "";
    display: block;
    padding-top: calc(414/1200*100%);
  }

  .wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 12px;
  }

  /* 轮播 */
  .carousel {
    flex: 2;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }
  .carousel-images {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
  }
  .carousel-images-box{
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  .carousel-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
  }

  .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 15px 15px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 2;
  }
  .carousel-title {
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .carousel-date {
    display: flex;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease-in-out;
  }
  .prev { left: -50px; }
  .next { right: -50px; }

  .carousel:hover{
    .carousel-item img{
      transform: scale(1.3);
    }
    .prev { left: 10px; }
    .next { right: 10px; }
  }

  .dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
  }
  .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
  }
  .dot.active {
    background: #fff;
  }

  /* 右侧卡片核心 */
  .grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }
  .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* 强制高度占满，不收缩 */
    cursor: pointer;
  }
  .card:hover{
    .card-img img {
      transform: scale(1.3);
    }
  }
  .card-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    flex: 1;
  }
  .card-img::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .card-img img {
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* 卡片标题：单行、固定高度、永远不变、字号16px、行高22px、内边距15px */
  .card-text {
    height: 77px;
    box-sizing: border-box;
    background: #061438;
    /* font-weight: bold; */
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    /* padding: 15px; */
    text-align: left;
  }

  .carousel_right_item_text_title{
    margin: 15px;
    box-sizing: border-box;
  }

  /* ------------------------------
     小于768：布局变，但卡片高度不变
  ------------------------------ */
  @media (max-width: 767px) {
    .container {position: static;}
    .container::before {display: none;}
    .wrap {position: static;flex-direction: column;height: auto;}
    .carousel {height: 280px;}
    .grid {
      grid-template-columns: 1fr 1fr;
      margin-top: 12px;
    }
    /* 关键：高度、样式 100% 不变 */
    .card-text {
      height: 52px !important;
      font-size: 16px !important;
      line-height: 22px !important;
      white-space: nowrap !important;
    }
    .card {
      height: 100% !important;
    }
  }

  /* 手机 <575 */
  @media (max-width: 575px) {
    /* .section {padding:0 15px;} */
    .container {position: static;}
    .container::before {display: none;}
    .wrap {position: static;flex-direction: column;height: auto;}
    .carousel {height:0;padding-top:calc(150/345*100%);position:relative;}
    .carousel-images {position:absolute;top:0;left:0;width:100%;height:100%;}
    .grid {display:none;}
    .carousel-date {display:none;}
    .carousel-title {font-size:16px;} /* 移动端轮播标题16px */
  }