/* ============================================================
       CSS Variables — WHPU Design Tokens
       Primary: #d20b17 (school red)  Secondary: #1a3a6e (navy blue)
    ============================================================ */
    :root {
      --red:        #d20b17;
      --red-dark:   #a80810;
      --red-light:  #f5d0d2;
      --navy:       #1a3a6e;
      --navy-dark:  #122a52;
      --navy-light: #2a5096;
      --gold:       #c8a44a;
      --white:      #ffffff;
      --bg:         #f6f7f9;
      --bg2:        #eef0f4;
      --text-main:  #1a1a1a;
      --text-body:  #3a3a3a;
      --text-muted: #888;
      --border:     #dce0e8;
      --shadow:     0 2px 12px rgba(26,58,110,.10);
      --shadow-md:  0 4px 24px rgba(26,58,110,.14);
      --radius:     4px;
      --radius-lg:  8px;
      --transition: .25s ease;
    }

    /* ============================================================
       Reset & Base
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
      font-size: 14px;
      color: var(--text-body);
      background: var(--white);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ============================================================
       Top Info Bar
    ============================================================ */
    .top-bar {
      background: var(--navy-dark);
      color: rgba(255,255,255,.75);
      font-size: 12px;
      height: 34px;
      display: flex;
      align-items: center;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar a:hover { color: #fff; }
    .top-bar .top-links { display: flex; gap: 0; }
    .top-bar .top-links a {
      padding: 0 12px;
      border-right: 1px solid rgba(255,255,255,.2);
      line-height: 34px;
      transition: var(--transition);
    }
    .top-bar .top-links a:first-child { border-left: 1px solid rgba(255,255,255,.2); }
    .top-bar .top-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
    .top-bar .top-audience { display: flex; gap: 18px; }
    .top-bar .top-audience a { opacity: .75; }
    .top-bar .top-audience a:hover { opacity: 1; color: var(--gold); }

    /* ============================================================
       Header — Logo + Search
    ============================================================ */
    .header {
      background: var(--white);
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow);
    }
    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo-block { display: flex; align-items: center; gap: 16px; }
    .logo-img-link {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .logo-full {
      height: 56px;
      width: auto;
      max-width: none;
      display: block;
    }
    .logo-divider {
      width: 1px;
      height: 50px;
      background: var(--border);
      margin: 0 20px;
    }
    .logo-dept { display: flex; flex-direction: column; }
    .logo-dept .dept-cn {
      font-size: 20px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 1px;
    }
    .logo-dept .dept-en {
      font-size: 11px;
      color: var(--navy);
      letter-spacing: .5px;
      margin-top: 2px;
    }
    .header-search {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .search-box {
      display: flex;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      height: 34px;
    }
    .search-box input {
      border: none;
      outline: none;
      padding: 0 12px;
      font-size: 13px;
      width: 180px;
      color: var(--text-main);
      background: var(--bg);
    }
    .search-box button {
      background: var(--red);
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 0 14px;
      font-size: 13px;
      transition: var(--transition);
    }
    .search-box button:hover { background: var(--red-dark); }

    /* ============================================================
       Navigation
    ============================================================ */
    .nav-bar {
      background: var(--navy);
      position: relative;
      z-index: 99;
    }
    .nav-bar .container { position: relative; }
    .nav-bar > .container > ul {
      display: flex;
      align-items: center;
    }
    .nav-bar > .container > ul > li { position: relative; }
    .nav-bar > .container > ul > li > a {
      display: block;
      color: rgba(255,255,255,.88);
      padding: 0 14px;
      height: 46px;
      line-height: 46px;
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition);
      white-space: nowrap;
    }
    .nav-bar > .container > ul > li > a:hover,
    .nav-bar > .container > ul > li.active > a {
      background: var(--red);
      color: #fff;
    }
    /* dropdown */
    .nav-bar .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 160px;
      background: var(--white);
      box-shadow: var(--shadow-md);
      border-top: 3px solid var(--red);
      z-index: 200;
    }
    .nav-bar > .container > ul > li:hover .dropdown { display: block; }
    .nav-bar .dropdown a {
      display: block;
      padding: 10px 18px;
      color: var(--text-body);
      font-size: 13px;
      border-bottom: 1px solid var(--bg);
      transition: var(--transition);
    }
    .nav-bar .dropdown a:hover {
      background: var(--red);
      color: #fff;
      padding-left: 24px;
    }
    /* red accent bar bottom */
    .nav-bar::after {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(to right, var(--red), var(--gold));
    }

    /* ============================================================
       Container Utility
    ============================================================ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ============================================================
       Hero Banner / Carousel
    ============================================================ */
    .banner {
      position: relative;
      overflow: hidden;
      height: 560px;
      background: var(--navy-dark);
    }
    .banner-slides {
      display: flex;
      height: 100%;
      transition: transform .8s cubic-bezier(.4,0,.2,1);
    }
    .banner-slide {
      min-width: 100%;
      position: relative;
      overflow: hidden;
    }
    .banner-slide .bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s linear;
    }
    .banner-slide.active .bg-img { transform: scale(1.06); }
    /* Gradient mask left */
    /* Banner Controls */
    .banner-ctrl {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .banner-dot {
      width: 28px;
      height: 5px;
      background: rgba(255,255,255,.4);
      border-radius: 3px;
      cursor: pointer;
      transition: var(--transition);
    }
    .banner-dot.active { background: var(--red); width: 44px; }
    .banner-arrows {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      z-index: 10;
      pointer-events: none;
    }
    .banner-arr {
      pointer-events: all;
      background: rgba(0,0,0,.3);
      color: #fff;
      border: none;
      width: 42px;
      height: 42px;
      cursor: pointer;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .banner-arr:hover { background: var(--red); }

    /* ============================================================
       Section Common Styles
    ============================================================ */
    .section { padding: 54px 0; }
    .section-alt { background: var(--bg); }
    .section-title {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--border);
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--red);
    }
    .section-title .title-left { display: flex; align-items: center; gap: 12px; }
    .section-title .title-cn {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
    }
    .section-title .title-en {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      background: var(--bg2);
      padding: 3px 10px;
      border-radius: 2px;
    }
    .section-title .more-link {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: var(--transition);
    }
    .section-title .more-link:hover { color: var(--red); }
    .section-title .more-link::after { content: '»'; }

    /* ============================================================
       News + Notice Grid
    ============================================================ */
    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .news-grid > div {
      display: flex;
      flex-direction: column;
    }
    .news-grid .notice-tab-content {
      flex: 1;
    }

    /* News Card List */
    .news-featured {
      margin-bottom: 18px;
    }
    .news-featured-img {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      height: 180px;
      background: var(--bg2);
    }
    .news-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .news-featured-img:hover img { transform: scale(1.04); }
    .news-featured-img .news-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 2px;
    }
    .news-featured-title {
      margin-top: 12px;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.5;
    }
    .news-featured-title:hover { color: var(--red); }

    /* News list items */
    .news-list { display: flex; flex-direction: column; }
    .news-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border);
      transition: var(--transition);
    }
    .news-item:last-child { border-bottom: none; }
    .news-item:hover { background: var(--bg); border-radius: var(--radius); padding: 10px 8px; margin: 0 -8px; }
    .news-date {
      flex-shrink: 0;
      width: 56px;
      background: var(--bg2);
      border-radius: var(--radius);
      text-align: center;
      padding: 6px 4px;
      border-left: 3px solid var(--navy);
      transition: var(--transition);
    }
    .news-date .day {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .news-date .month {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .news-item:hover .news-date { border-left-color: var(--red); }
    .news-item:hover .news-date .day { color: var(--red); }
    .news-title {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-title:hover { color: var(--red); }

    /* ============================================================
       Notice / Announcement Panel
    ============================================================ */
    .notice-tab-content { padding-top: 14px; }
    .notice-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border);
      transition: var(--transition);
    }
    .notice-item:last-child { border-bottom: none; }
    .notice-item:hover { padding-left: 8px; }
    .notice-date-block {
      flex-shrink: 0;
      background: var(--navy);
      color: #fff;
      width: 52px;
      text-align: center;
      border-radius: var(--radius);
      padding: 5px 0;
    }
    .notice-date-block .nday {
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
    }
    .notice-date-block .nmonth {
      font-size: 10px;
      opacity: .7;
      margin-top: 2px;
    }
    .notice-title {
      font-size: 13px;
      color: var(--text-body);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .notice-title:hover { color: var(--red); }
    .notice-excerpt {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.5;
    }

    /* ============================================================
       3-column Content Block
    ============================================================ */
    .cols3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .cols2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    /* Hospital Card — pure image link */
    .hospital-card {
      display: block;
      border-radius: var(--radius-lg);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 14px rgba(0,0,0,.12);
      transition: transform .25s, box-shadow .25s;
    }
    .hospital-card .hc-img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform .5s ease;
    }
    .hospital-card:hover .hc-img { transform: scale(1.04); }
    .hospital-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(0,0,0,.2);
    }
    .content-panel {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .content-panel .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      background: var(--navy);
      color: #fff;
    }
    .content-panel .panel-head .ph-title {
      font-size: 16px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .content-panel .panel-head .ph-title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 16px;
      background: var(--gold);
      border-radius: 2px;
    }
    .content-panel .panel-head .ph-more {
      font-size: 12px;
      color: rgba(255,255,255,.65);
      transition: var(--transition);
    }
    .content-panel .panel-head .ph-more:hover { color: var(--gold); }
    .content-panel .panel-body { padding: 12px 20px; }
    .simple-list-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px dashed var(--border);
      gap: 12px;
    }
    .simple-list-item:last-child { border-bottom: none; }
    .simple-list-item::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .simple-list-item a {
      flex: 1;
      font-size: 13px;
      color: var(--text-body);
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: var(--transition);
    }
    .simple-list-item a:hover { color: var(--red); }
    .simple-list-item .item-date {
      flex-shrink: 0;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ============================================================
       Feature Cards — College Intro
    ============================================================ */
    .intro-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }
    .intro-section::before {
      content: '';
      position: absolute;
      right: -80px; top: -80px;
      width: 400px; height: 400px;
      border: 60px solid rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .intro-section::after {
      content: '';
      position: absolute;
      right: 120px; bottom: -120px;
      width: 280px; height: 280px;
      border: 40px solid rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 52px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .intro-text h2 {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }
    .intro-text .subtitle {
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 2px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .intro-text p {
      color: rgba(255,255,255,.8);
      font-size: 14px;
      line-height: 1.9;
      margin-bottom: 16px;
    }
    .intro-text .intro-btn {
      display: inline-block;
      margin-top: 8px;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 9px 28px;
      border-radius: var(--radius);
      font-size: 14px;
      transition: var(--transition);
    }
    .intro-text .intro-btn:hover {
      background: var(--gold);
      color: var(--navy-dark);
    }
    .intro-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .intro-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 22px 20px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .intro-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
    }
    .intro-card:hover {
      background: rgba(255,255,255,.14);
      transform: translateY(-2px);
    }
    .intro-card .ic-num {
      font-size: 32px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .intro-card .ic-num span { font-size: 16px; font-weight: 400; }
    .intro-card .ic-label {
      font-size: 13px;
      color: rgba(255,255,255,.75);
      margin-top: 6px;
    }

    /* ============================================================
       Faculty Section
    ============================================================ */
    .faculty-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .faculty-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .faculty-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .faculty-photo {
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--bg2) 0%, var(--border) 100%);
      position: relative;
    }
    .faculty-photo img { width: 100%; height: 100%; object-fit: cover; }
    .faculty-photo .photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .faculty-photo .photo-placeholder svg { width: 72px; height: 72px; fill: rgba(26,58,110,.2); }
    .faculty-info { padding: 16px; }
    .faculty-info .f-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
    }
    .faculty-info .f-title {
      font-size: 12px;
      color: var(--red);
      margin-top: 4px;
    }
    .faculty-info .f-tags {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .faculty-info .f-tag {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 2px;
      background: var(--bg2);
      color: var(--text-muted);
      border: 1px solid var(--border);
    }

    /* ============================================================
       Image Link Cards — 精品课程/实训中心/康养研究院/政策法规
    ============================================================ */
    .img-link-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .img-link-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 220px;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .img-link-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .img-link-card .ilc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s ease;
    }
    .img-link-card:hover .ilc-bg { transform: scale(1.08); }
    .img-link-card .ilc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18,42,82,.78) 0%, rgba(18,42,82,.15) 100%);
      z-index: 1;
      transition: var(--transition);
    }
    .img-link-card:hover .ilc-overlay { background: linear-gradient(to top, rgba(210,11,23,.75) 0%, rgba(210,11,23,.12) 100%); }
    .img-link-card .ilc-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      z-index: 2;
    }
    .img-link-card .ilc-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }
    .img-link-card .ilc-icon svg { width: 18px; height: 18px; fill: #fff; }
    .img-link-card .ilc-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
    }
    .img-link-card .ilc-sub {
      font-size: 12px;
      color: rgba(255,255,255,.7);
      margin-top: 4px;
      letter-spacing: .5px;
    }

    /* ============================================================
       Footer
    ============================================================ */
    .footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,.75);
      padding: 44px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }
    .footer-brand .f-logo-text {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      letter-spacing: 1px;
    }
    .footer-brand .f-sub {
      font-size: 12px;
      color: rgba(255,255,255,.5);
      letter-spacing: 1px;
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.9;
      color: rgba(255,255,255,.65);
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .footer-col ul li {
      padding: 6px 0;
      border-bottom: 1px dashed rgba(255,255,255,.08);
    }
    .footer-col ul li:last-child { border-bottom: none; }
    .footer-col ul a {
      font-size: 13px;
      color: rgba(255,255,255,.65);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    .footer-col ul a::before {
      content: '›';
      color: var(--gold);
    }
    .footer-col ul a:hover { color: #fff; padding-left: 4px; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 13px;
      color: rgba(255,255,255,.65);
      border-bottom: 1px dashed rgba(255,255,255,.08);
    }
    .footer-contact-item:last-child { border-bottom: none; }
    .footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .footer-bottom {
      background: rgba(0,0,0,.2);
      padding: 14px 0;
      margin-top: 0;
    }
    .footer-bottom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255,255,255,.45);
    }
    .footer-bottom a:hover { color: var(--gold); }
    .footer-bottom .f-links { display: flex; gap: 16px; }

    /* ============================================================
       Breadcrumb
    ============================================================ */
    .breadcrumb {
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumb .container {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .breadcrumb a:hover { color: var(--red); }
    .breadcrumb .sep { opacity: .4; }
    .breadcrumb .current { color: var(--red); }

    /* ============================================================
       Tab Panel Switching (JS target)
    ============================================================ */
    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    /* ============================================================
       Responsive
    ============================================================ */
    @media (max-width: 1024px) {
      .news-grid { grid-template-columns: 1fr; }
      .cols3 { grid-template-columns: 1fr 1fr; }
      .faculty-cards { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .intro-grid { grid-template-columns: 1fr; }
      .intro-cards { grid-template-columns: repeat(4, 1fr); }
      .img-link-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .banner { height: 380px; }
      .cols3, .cols2 { grid-template-columns: 1fr; }
      .header .header-search { display: none; }
      .intro-cards { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .img-link-grid { grid-template-columns: 1fr; }
      .top-bar .top-audience { display: none; }
      .news-layout { grid-template-columns: 1fr !important; }
      .article-sidebar { position: static !important; }
    }

    /* ============================================================
       News List Page — 新闻列表页
    ============================================================ */
    .page-banner {
      position: relative;
      height: 200px;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
      overflow: hidden;
    }
    .page-banner::before {
      content: '';
      position: absolute;
      right: -60px; top: -60px;
      width: 300px; height: 300px;
      border: 40px solid rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .page-banner::after {
      content: '';
      position: absolute;
      left: 80px; bottom: -80px;
      width: 200px; height: 200px;
      border: 30px solid rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .page-banner-title {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
    }
    .page-banner-title .pbt-cn {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 2px;
      text-shadow: 0 2px 8px rgba(0,0,0,.3);
    }
    .page-banner-title .pbt-en {
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 3px;
      margin-top: 8px;
      text-transform: uppercase;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 36px;
      align-items: start;
    }

    /* News list items */
    .news-list-page {
      display: flex;
      flex-direction: column;
    }
    .nlp-item {
      display: flex;
      gap: 20px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }
    .nlp-item:first-child { padding-top: 0; }
    .nlp-item:hover { padding-left: 8px; }
    .nlp-date {
      flex-shrink: 0;
      width: 72px;
      text-align: center;
      background: var(--bg);
      border-radius: var(--radius);
      padding: 12px 6px;
      border-top: 3px solid var(--navy);
      transition: var(--transition);
    }
    .nlp-item:hover .nlp-date { border-top-color: var(--red); background: var(--red-light); }
    .nlp-date .nd-day {
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      transition: var(--transition);
    }
    .nlp-item:hover .nlp-date .nd-day { color: var(--red); }
    .nlp-date .nd-month {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .nlp-body { flex: 1; min-width: 0; }
    .nlp-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.5;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: var(--transition);
    }
    .nlp-item:hover .nlp-title { color: var(--red); }
    .nlp-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .nlp-tags {
      display: flex;
      gap: 8px;
      margin-top: 10px;
    }
    .nlp-tag {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 2px;
      background: var(--bg2);
      color: var(--text-muted);
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 36px;
      padding-top: 24px;
    }
    .pagination a, .pagination span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 13px;
      color: var(--text-body);
      transition: var(--transition);
      text-decoration: none;
    }
    .pagination a:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }
    .pagination .pg-active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }
    .pagination .pg-disabled {
      color: var(--text-muted);
      opacity: .5;
      cursor: not-allowed;
    }

    /* Sidebar */
    .article-sidebar {
      position: sticky;
      top: 90px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .sidebar-block {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .sidebar-head {
      background: var(--navy);
      color: #fff;
      padding: 12px 18px;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-head::before {
      content: '';
      width: 4px;
      height: 16px;
      background: var(--gold);
      border-radius: 2px;
    }
    .sidebar-body { padding: 14px 18px; }
    .hot-news-item {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border);
    }
    .hot-news-item:last-child { border-bottom: none; }
    .hot-news-rank {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 3px;
      background: var(--bg2);
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hot-news-item:nth-child(1) .hot-news-rank { background: var(--red); color: #fff; }
    .hot-news-item:nth-child(2) .hot-news-rank { background: #e8783a; color: #fff; }
    .hot-news-item:nth-child(3) .hot-news-rank { background: var(--gold); color: #fff; }
    .hot-news-title {
      font-size: 13px;
      color: var(--text-body);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: var(--transition);
    }
    .hot-news-title:hover { color: var(--red); }
    .cat-list { display: flex; flex-direction: column; }
    .cat-list a {
      padding: 10px 0;
      font-size: 14px;
      color: var(--text-body);
      border-bottom: 1px dashed var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }
    .cat-list a:last-child { border-bottom: none; }
    .cat-list a:hover { color: var(--red); padding-left: 6px; }
    .cat-list a .cat-count {
      font-size: 12px;
      color: var(--text-muted);
      background: var(--bg2);
      padding: 1px 8px;
      border-radius: 10px;
    }

    /* ============================================================
       News Detail Page — 新闻详情页
    ============================================================ */
    .article-wrap {
      max-width: 860px;
      margin: 0 auto;
    }
    .article-header {
      text-align: center;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 30px;
    }
    .article-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .article-meta {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .article-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .article-meta svg { width: 14px; height: 14px; fill: var(--text-muted); }
    .article-body {
      font-size: 15px;
      line-height: 2;
      color: var(--text-body);
    }
    .article-body p { margin-bottom: 18px; text-indent: 2em; }
    .article-body h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      margin: 28px 0 14px;
      padding-left: 12px;
      border-left: 4px solid var(--red);
    }
    .article-body img {
      width: 100%;
      border-radius: var(--radius-lg);
      margin: 20px 0;
      box-shadow: var(--shadow);
    }
    .article-body .img-caption {
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: -12px;
      margin-bottom: 20px;
      text-indent: 0;
    }
    .article-body blockquote {
      background: var(--bg);
      border-left: 4px solid var(--navy);
      padding: 14px 20px;
      margin: 20px 0;
      border-radius: 0 var(--radius) var(--radius) 0;
      color: var(--text-body);
      text-indent: 0;
      font-size: 14px;
    }

    .article-footer {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .article-tags .at-label {
      font-size: 13px;
      color: var(--text-muted);
      align-self: center;
    }
    .article-tags a {
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 2px;
      background: var(--bg2);
      color: var(--text-body);
      transition: var(--transition);
    }
    .article-tags a:hover { background: var(--navy); color: #fff; }
    .article-share { display: flex; gap: 8px; align-items: center; }
    .article-share .as-label { font-size: 13px; color: var(--text-muted); }
    .article-share a {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .article-share a:hover { background: var(--red); }
    .article-share a svg { width: 15px; height: 15px; fill: var(--text-muted); transition: var(--transition); }
    .article-share a:hover svg { fill: #fff; }

    .article-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px;
    }
    .an-item {
      padding: 16px 20px;
      background: var(--bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .an-item:hover { background: var(--white); box-shadow: var(--shadow); border-color: transparent; }
    .an-item.an-next { text-align: right; }
    .an-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .an-title {
      font-size: 14px;
      color: var(--text-main);
      font-weight: 500;
      transition: var(--transition);
    }
    .an-item:hover .an-title { color: var(--red); }

    .back-to-list {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 24px;
      padding: 8px 20px;
      background: var(--navy);
      color: #fff;
      border-radius: var(--radius);
      font-size: 13px;
      transition: var(--transition);
    }
    .back-to-list:hover { background: var(--red); }
