

    .section-news-events {
      max-width: 1172px;
      width: 100%;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 0px;
    /*  box-shadow: 0 18px 36px -12px rgba(0, 60, 100, 0.2);*/
      padding: 32px 10px;
    }

    .two-col-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 30px;
      align-items: stretch;      /* 保证两侧等高 */
    }

    /* ----- 左侧新闻区 ----- */
    .news-section {
      display: flex;
      flex-direction: column;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 22px;
      border-bottom: 3px solid #006BB6;
      padding-bottom: 8px;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #0a2540;
    }

    .more-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: #006BB6;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }

    /* hover 改为酒红色 */
    .more-link:hover {
      color: #A52A2A;   /* 深酒红 */
    }

    .more-link::after {
      content: "›";
      font-size: 1.4rem;
      line-height: 1;
      margin-left: 2px;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
      flex: 1;
    }

    .news-item {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      background: #ffffff;
      border-radius: 8px;
    }

    .news-img {
      width: 200px;
      height: 135px;
      flex-shrink: 0;
      border-radius: 5%;
      overflow: hidden;
      background-color: #e1e9f2;
      box-shadow: 0 6px 12px rgba(0, 40, 70, 0.08);
    }

    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .news-img img:hover {
      transform: scale(1.1);
      cursor: pointer;
    }

    .news-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .news-title {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.4;
      color: #1e2f4a;
    }

    .news-summary {
      font-size: 0.94rem;
      line-height: 1.5;
      color: #5b687c;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ----- 右侧开班动态 (5条，日子缩小，间距再缩) ----- */
    .events-section {
      display: flex;
      flex-direction: column;
    }

    .events-section .section-header {
      border-bottom-color: #006BB6;
    }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 8px;                     /* 原12px → 8px 更紧凑 */
      flex: 1;
    }

    .event-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      border-bottom: 1px solid rgba(0, 107, 182, 0.1);
      padding-bottom: 4px;           /* 原8px → 4px */
    }

    .event-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .time-block {
      background-color: #006BB6;
      color: white;
      border-radius: 5%;
      min-width: 88px;
      padding: 10px 0;               /* 稍微压缩内边距 */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.2;
      box-shadow: 0 6px 12px rgba(0, 107, 182, 0.2);
      flex-shrink: 0;
    }

    .time-day {
      font-size: 1.7rem;              /* 原2rem → 1.7rem 日子更小 */
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 2px;
    }

    .time-my {
      font-size: 0.8rem;              /* 微调年月字号 */
      font-weight: 400;
      text-transform: uppercase;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 3px 8px;
      border-radius: 20px;
      margin-top: 4px;
      letter-spacing: 0.3px;
    }

    .event-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;                       /* 保持极小间隙 */
      padding-top: 2px;
    }

    .event-title {
      font-size: 1.0rem;
      font-weight: 400;
      color: #1f2f47;
      line-height: 1.3;
    }

    .event-desc {
      font-size: 0.9rem;
      color: #5a6b82;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 响应式调整 */
    @media screen and (max-width: 900px) {
      .news-img {
        width: 160px;
        height: 108px;
      }
      .time-block {
        min-width: 78px;
        padding: 8px 0;
      }
      .time-day {
        font-size: 1.5rem;          /* 小屏再缩小一点 */
      }
    }

    @media screen and (max-width: 720px) {
      .two-col-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .section-news-events {
        padding: 24px 18px;
      }
      .section-title {
        font-size: 1.5rem;
      }
      .news-img {
        width: 180px;
        height: 120px;
      }
    }

    @media screen and (max-width: 480px) {
      .news-item {
        flex-direction: column;
        gap: 14px;
      }
      .news-img {
        width: 100%;
        height: auto;
        aspect-ratio: 200/135;
      }
      .time-block {
        min-width: 70px;
        padding: 6px 0;
      }
      .time-day {
        font-size: 1.4rem;
      }
    }
