
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: '微软雅黑', '宋体', 'Segoe UI', Roboto, sans-serif;
            background-color: #f4f6f9;
            color: #1e2a2f;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部导航 */
        .header {
            background: #f8f9fc;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e9ecef;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            padding: 12px 0;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-icon {
            font-size: 30px;
            font-weight: bold;
            color: #2c3e4e;
        }

        .logo-text h1 {
            font-size: 22px;
            font-weight: 700;
            color: #1e2f3a;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .logo-text p {
            font-size: 11px;
            color: #5b6f82;
            white-space: nowrap;
        }

        .nav-menu {
            flex-shrink: 1;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: thin;
        }
        .nav-menu ul {
            display: inline-flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .nav-menu > ul > li {
            position: relative;
            margin: 0 4px;
            display: inline-block;
        }

        .nav-menu > ul > li > a {
            display: inline-block;
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #2c3e4e;
            text-decoration: none;
            transition: 0.25s;
            border-radius: 6px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .nav-menu > ul > li > a:hover {
            background-color: #e9ecef;
            color: #000000;
        }

        .nav-menu ul li .submenu {
            position: absolute;
            top: 44px;
            left: 0;
            background: #ffffff;
            min-width: 210px;
            border-radius: 10px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
            list-style: none;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
            z-index: 200;
            border: 1px solid #eef2f6;
        }

        .nav-menu ul li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-menu ul li .submenu li a {
            display: block;
            padding: 10px 22px;
            font-size: 13.5px;
            color: #2c3e4e;
            text-decoration: none;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .nav-menu ul li .submenu li a:hover {
            background-color: #f0f3f8;
            color: #000;
        }

        .nav-menu > ul > li:has(.submenu) > a::after {
            content: " \25BE";
            font-size: 12px;
            display: inline-block;
            margin-left: 4px;
            opacity: 0.7;
        }

        /* 大图 */
        .banner-area {
            width: 100%;
            background: #e9ecef;
            overflow: hidden;
        }
        .banner-img {
            width: 100%;
            display: block;
            object-fit: cover;
            max-height: 380px;
        }
        .banner-placeholder {
            background: linear-gradient(135deg, #d4dce6, #bdc4ce);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e4e;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
        }

        /* 卡片区域 */
        .section { padding:56px 0;
        }
        /* 全屏白色背景行 */
        .row-bg-white {
            background-color: #ffffff;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
            padding-top: 40px;
            padding-bottom: 40px;
        }
        /* 全屏浅灰背景行（五个系同色） */
        .row-bg-gray {
            background-color: #F5F7F6;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
            padding-top: 40px;
            padding-bottom: 40px;
        }
        /* 带背景图的区块（第一行：动态新闻等） */
        .row-bg-img {
            background-image: url(../images/main_1_bj.jpg);
            background-repeat: no-repeat;
            background-position: center bottom;
            background-size: cover;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
            padding-top: 40px;
            padding-bottom: 40px;
        }
        /* 行内容居中限宽 */
        .row-bg-white > .three-col-row,
        .row-bg-white > .research-cards-row,
        .row-bg-white > .section-title,
        .row-bg-white > .section-title-row,
        .row-bg-gray > .three-col-row,
        .row-bg-gray > .research-cards-row,
        .row-bg-gray > .section-title,
        .row-bg-gray > .section-title-row,
        .row-bg-img > .three-col-row,
        .row-bg-img > .research-cards-row,
        .row-bg-img > .section-title,
        .row-bg-img > .section-title-row {
            max-width: 1233px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        html, body { overflow-x: hidden; }
        .row-three {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .row-four {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .card-module {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #edf2f7;
        }
        .card-module:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.1);
        }
        .module-header {
            padding: 18px 22px 10px 22px;
            border-bottom: 2px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }
        .module-header h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a4f8a;
            border-left: 4px solid #1a4f8a;
            padding-left: 12px;
        }
        .more-link {
            font-size: 12px;
            color: #6c7e91;
            text-decoration: none;
        }
        .more-link:hover {
            color: #e32119;
        }
        .module-content {
            padding: 16px 22px 22px 22px;
            flex: 1;
        }
        .news-list {
            list-style: none;
        }
        .news-list li {
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #edf2f7;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .news-list li:last-child {
            border-bottom: none;
        }
        .news-title {
            font-size: 14px;
            font-weight: 500;
            color: #2c3e4e;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .news-title:hover {
            color: #e32119;
        }
        .news-date {
            font-size: 11px;
            color: #8a99aa;
            white-space: nowrap;
        }
        .honor-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 6px;
        }
        .honor-item {
            background: #f8fafd;
            border-radius: 12px;
            padding: 14px 8px;
            text-align: center;
            border: 1px solid #eef2f6;
        }
        .honor-item i {
            font-size: 28px;
            color: #b68b40;
            margin-bottom: 8px;
            display: inline-block;
        }
        .honor-item h4 {
            font-size: 14px;
            font-weight: 700;
            margin: 6px 0 4px;
            color: #1a2c3c;
        }
        .honor-item p {
            font-size: 11px;
            color: #5d6f82;
        }
        .industry-text {
            font-size: 14px;
            line-height: 1.6;
            color: #2c3e4e;
            margin-bottom: 16px;
        }
        .industry-tag {
            display: inline-block;
            background: #eef3fc;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #1e466e;
        }
        .notice-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
            align-items: baseline;
        }
        .notice-date {
            min-width: 65px;
            font-size: 11px;
            background: #eef2f7;
            padding: 2px 8px;
            border-radius: 20px;
            text-align: center;
            font-weight: 500;
            color: #3e5a6b;
        }
        .notice-text {
            font-size: 13px;
            color: #2c3e50;
            text-decoration: none;
        }
        .notice-text:hover {
            text-decoration: underline;
            color: #e32119;
        }

        /* ========= 数媒与艺设实验教学中心 - 新样式 (仿图例卡片列表) ========= */
       /* 科研动态四卡片 */
        .research-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 48px 0;
        }
        .card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 28px -12px rgba(0,0,0,0.15);
        }
        .card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        .card-content {
            padding: 20px 24px 24px;
        }
        .card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #0f3b5c;
        }
        .card-content p {
            color: #475569;
            margin-bottom: 16px;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .card-link {
            color: #1e6f9f;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        /* 兼容无emoji显示，但GB2312下可显示，用户无强制去除emoji，仅去除了fontawesome，保留简单符号 */
        @media (max-width: 992px) {
            .lab-news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* 五大系图片区域 */
        .department-showcase {
            margin: 40px 0 20px;
            background: transparent;
            padding: 0;
        }
        .dept-full-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 3px;
            width: 100%;
        }
        @media (max-width: 780px) {
            .dept-full-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
            .dept-full-grid {
                grid-template-columns: 1fr;
            }
        }
        .dept-item {
            position: relative;
            overflow: hidden;
            background: transparent;
            transition: transform 0.2s;
        }
        .dept-item:hover {
            transform: translateY(-2px);
        }
        .dept-img-wrapper {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: #f0f2f5;
        }
        .dept-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(100%);
            transition: filter 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.3s;
        }
        .dept-item:hover .dept-img-wrapper img {
            filter: grayscale(0%);
            transform: scale(1.02);
        }
        .dept-name {
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: #2c3e4e;
            margin-top: 8px;
            margin-bottom: 4px;
        }

        /* 底部 */
        .foot {
            background: #a0a0a0;
            color: #000;
            padding: 36px 0 28px;
            margin-top: 30px;
            text-align: center;
            font-size: 13px;
        }
        .foot a {
            color: #000;
            text-decoration: none;
        }
        .foot a:hover {
            color: white;
        }

        hr {
            margin: 16px auto;
            width: 60px;
            border: 0;
            height: 1px;
            background: #3e4b5a;
        }

        @media (max-width: 992px) {
            .row-three, .row-four {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 680px) {
            .row-three, .row-four {
                grid-template-columns: 1fr;
            }
            .honor-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 区块大标题（教育教学等模块标题） */
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1e2f3a;
            padding-left: 14px;
            padding-bottom: 10px;
            margin-bottom: 24px;
            letter-spacing: 1px;
            text-align: center;
            border-left: none;
            border-bottom: 4px solid #1a4f8a;
            display: inline-block;
        }
        .section-title span {
            font-size: 1rem;
            color: #7a8fa0;
            font-weight: 400;
            margin-left: 8px;
        }
        /* 标题行：标题 + 更多按钮 居中排列 */
        .section-title-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        /* ====== honor-icon (替代emoji，GB2312安全) ====== */
        .honor-icon {
            font-size: 28px;
            color: #b68b40;
            margin-bottom: 8px;
            display: block;
            line-height: 1;
        }

        /* ====== 教育教学卡片无图占位 ====== */
        .card-img {
            position: relative;
        }
        .card-img-noimg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 13px;
            color: #9aacba;
            pointer-events: none;
        }

        /* ====== 版块进场动画 ====== */
        /* 初始状态：不可见，向下偏移 */
        .anim-block {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        /* 进入视口后：显示 */
        .anim-block.anim-visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* 各块的延迟已在行内 style 中用 animation-delay 指定，
           这里用 transition-delay 兼容处理 */
        .anim-block[style*="animation-delay:0.1s"]  { transition-delay: 0.1s; }
        .anim-block[style*="animation-delay:0.25s"] { transition-delay: 0.25s; }
        .anim-block[style*="animation-delay:0.4s"]  { transition-delay: 0.4s; }
        .anim-block[style*="animation-delay:0.55s"] { transition-delay: 0.55s; }

        /* 首屏第一块立即显示（大图横幅下方第一个section） */
        .section:first-child {
            opacity: 1;
            transform: none;
        }
        /* ====== 三列布局（参照gs学院动态风格）====== */
        .three-col-row {
            display: flex;
            gap: 0;
            max-width: 1233px;
            margin: 0 auto;
        }
        .col-card {
            flex: 1;
            min-width: 0;
            padding: 30px 24px 20px;
        }
        .col-card-border {
            border-left: 1px solid #e0e6ed;
        }
        /* 列标题 */
        .col-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 18px;
            border-bottom: 2px solid #1a4f8a;
            margin-bottom: 20px;
        }
        .col-header-blue {
            border-bottom-color: #1a4f8a;
        }
        .col-title {
            font-size: 20px;
            font-weight: bold;
            color: #1e293b;
            font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
        }
        .col-title em {
            font-style: normal;
            font-size: 12px;
            font-weight: normal;
            color: #94a3b8;
            margin-left: 8px;
            font-family: Arial, Helvetica, sans-serif;
        }
        .col-more {
            font-size: 12px;
            color: #94a3b8;
            text-decoration: none;
        }
        .col-more:hover {
            color: #e6212a;
        }
        /* 灰色底白色+号按钮 */
        .col-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: #8c939a;
            color: #fff;
            font-size: 18px;
            font-weight: 300;
            text-decoration: none;
            border-radius: 4px;
            line-height: 1;
            transition: background 0.2s;
        }
        .col-more-btn:hover {
            background: #e6212a;
            color: #fff;
        }
        /* 新闻行：日期 + 标题 */
        .news-row {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px dashed #e8ecf1;
        }
        .news-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        /* 日期块：参照gs .lay_new_1_date + .lay_new_1_date_topxt */
        .news-date {
            width: 58px;
            flex-shrink: 0;
            text-align: center;
            padding-top: 2px;
            padding-right: 10px;
        }
        .news-date-day {
            font-size: 28px;
            color: #154c8f;
            font-weight: bold;
            font-family: "Century Gothic", Arial, sans-serif;
            line-height: 1.2;
        }
        .col-header-blue .news-date-day {
            color: #1a4f8a;
        }
        .news-date-ym {
	font-size: 11px;
	color: #333333;
	font-family: "Century Gothic", Arial, sans-serif;
        }
        .col-header-blue .news-date-ym {
            color: #1a4f8a;
        }
        /* 标题 */
        .news-title {
            flex: 1;
            min-width: 0;
            line-height: 1.6;
        }
        .news-title a {
            font-size: 15px;
            color: #1e293b;
            text-decoration: none;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }
        .news-title a:hover {
            color: #e6212a;
        }

        /* ====== 旧版样式（轮播图+TAB，已废弃，保留供参考）====== */
        /* Row1: Left News | Right Media - side by side */
        /* Row1: Left Slider | Right Media - side by side */
        .row1-layout {
            display: flex;
            gap: 24px;
            max-width: 1233px;
            margin: 0 auto;
            align-items: stretch;
        }
        .row1-slider {
            position: relative;
            overflow: visible;
            flex: 0 0 48%;
            background: #dce3ea;
            display: flex;
            flex-direction: column;
        }
        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .SLIDE-ITEM-MARKER{
            display: none;
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            text-decoration: none;
        }
        .slide-item {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            display: none;
            opacity: 0;
            /* 切换动画 */
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1.02) translateX(30px);
        }
        .slide-item.active {
            display: block;
            opacity: 1;
            transform: scale(1) translateX(0);
        }
        .slide-item.slide-out-left {
            opacity: 0;
            transform: translateX(-30px) scale(0.97);
        }
        .slide-item.slide-out-right {
            opacity: 0;
            transform: translateX(30px) scale(0.97);
        }
        .slide-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: rgba(0,0,0,0.6);
            color: #fff;
            font-size: 15px;
            padding: 10px 16px;
            text-align: center;
            line-height: 1.4;
            z-index: 3;
        }
        /* slider arrows - 相对 row1-slider 垂直居中 */
        .slider-arrow {
            position: absolute;
            top: calc(50% - 18px);
            transform: translateY(-50%);
            width: 34px; height: 34px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            color: #fff;
            font-size: 14px;
            border: none;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .slider-arrow:hover { background: rgba(0,0,0,0.75); }
        .slider-prev { left: 10px; }
        .slider-next { right: 10px; }
        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.4);
            color: #fff;
            border: none;
            font-size: 22px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 4px;
            z-index: 10;
            line-height: 1;
        }
        .slide-btn:hover { background: rgba(0,0,0,0.7); }
        .slide-prev { left: 8px; }
        .slide-next { right: 8px; }
        /* dots below image */
        /* dots below slider image - always visible */
        .slider-dots-outer {
            position: absolute;
            bottom: 44px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 6;
            line-height: 1;
        }
        .slider-dots-outer .sdot {
            display: inline-block;
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(0,0,0,0.35);
            cursor: pointer;
            margin: 0 5px;
            transition: all 0.25s;
            vertical-align: middle;
        }
        .slider-dots-outer .sdot.active {
            background: #1866e1;
            transform: scale(1.35);
            box-shadow: 0 0 4px rgba(24,102,225,0.35);
        }
        .row1-tabs {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
        }
        @media (max-width: 768px) {
            .row1-layout {
                flex-direction: column;
            }
            .row1-slider { flex: none; width: 100%; }
            .row1-right-tabs { flex: none; width: 100%; }
        }

        /* ====== ad-news-item: img + title + date (like sme news-item) ====== */
        .tab-pane ul.news-list li.ad-news-item {
            display: flex;
            gap: 12px;
            margin-bottom: 10px;
            padding-bottom: 12px;
            border-bottom: 1px solid #edf2f7;
            align-items: flex-start;
        }
        .tab-pane ul.news-list li.ad-news-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .ad-news-img {
            width: 90px;
            height: 62px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
            background: #e2e8f0;
        }
        .ad-news-content {
            flex: 1;
        }
        .ad-news-title {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            text-decoration: none;
            display: block;
            line-height: 1.4;
            margin-bottom: 4px;
        }
        .ad-news-title:hover { color: #e32119; }
        .ad-news-date {
            font-size: 11px;
            color: #8a99aa;
            display: block;
        }

        /* ====== dyn-item: date-block + title + desc (like sme dynamic-item) ====== */
        .dyn-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        /* 3-column grid layout for row2 tabs */
        .dyn-grid-3 {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px 12px;
        }
        .dyn-grid-3 .dyn-item {
            display: flex;
            gap: 8px;
            padding: 6px 8px;
            background: #fafbfd;
            border-radius: 6px;
            align-items: flex-start;
            border: 1px solid #eee;
            overflow: hidden;
            min-width: 0;
        }
        .dyn-grid-3 .dyn-item:hover {
            background: #f0f4ff;
            border-color: #d0d9f0;
        }
        .dyn-grid-3 .dyn-title {
            font-size: 14px;
            margin-bottom: 3px;
        }
        .dyn-grid-3 .dyn-desc {
            font-size: 11px;
            -webkit-line-clamp: 1;
        }

        /* ====== 第二行四个TAB 专属样式（学术动态/榜上有名/通知公告/数字媒体）====== */
        #tab2-xsdt .dyn-grid-3,
        #tab2-honor .dyn-grid-3,
        #tab2-notice .dyn-grid-3,
        #tab2-szcy .dyn-grid-3 {
            gap: 16px 18px;
        }
        #tab2-xsdt .dyn-item,
        #tab2-honor .dyn-item,
        #tab2-notice .dyn-item,
        #tab2-szcy .dyn-item {
            padding: 14px 16px;
            gap: 14px;
            min-height: 80px;
            align-items: center;
        }
        #tab2-xsdt .dyn-title,
        #tab2-honor .dyn-title,
        #tab2-notice .dyn-title,
        #tab2-szcy .dyn-title {
            font-size: 15px;
            margin-bottom: 6px;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        #tab2-xsdt .dyn-desc,
        #tab2-honor .dyn-desc,
        #tab2-notice .dyn-desc,
        #tab2-szcy .dyn-desc {
            font-size: 12px;
            -webkit-line-clamp: 1;
        }

        /* ====== Row1 右：媒体关注 - 标题与内容间距加大 ====== */
        .row1-right-media .dyn-list {
            padding: 16px 20px 18px;
        }
        .row1-right-media .dyn-item {
            display: flex;
            gap: 14px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #edf2f7;
            align-items: flex-start;
        }
        .row1-right-media .dyn-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .row1-right-media .dyn-content {
            flex: 1;
            min-width: 0;
        }
        .row1-right-media .dyn-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            text-decoration: none;
            display: block;
            line-height: 1.45;
            margin-bottom: 8px;
        }
        .dyn-date {
            flex-shrink: 0;
            width: 55px;
            padding-right: 10px;
            text-align: center;
            border-right: 1px solid #ccc;
        }
        .dyn-day {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1866e1;
            line-height: 1.2;
        }
        .dyn-ym {
            font-size: 0.7rem;
            color: #1e2a3e;
            font-weight: 500;
        }
        .dyn-content {
            flex: 1;
            min-width: 0;  /* 防止文字溢出flex */
            overflow: hidden;
        }
        .dyn-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            text-decoration: none;
            display: block;
            line-height: 1.5;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .dyn-title:hover { color: #e32119; }
        .dyn-desc {
            font-size: 12px;
            color: #7a8fa0;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ====== Row1 Right: TAB（动态新闻|媒体关注） ====== */
        .row1-right-tabs {
            flex: 1;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 24px -8px rgba(0,0,0,0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .tab-header-row {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #eef2f8;
            background: #fafbfd;
            padding: 0;
        }
        .r1-tab-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #5b6f82;
            padding: 14px 22px;
            position: relative;
            transition: color 0.2s;
            font-family: inherit;
        }
        .r1-tab-btn::after {
            content: "";
            position: absolute;
            bottom: -2px; left: 0; right: 0;
            height: 3px;
            background: #e32119;
            border-radius: 3px 3px 0 0;
            transform: scaleX(0);
            transition: transform 0.25s;
        }
        .r1-tab-btn.active { color: #e32119; }
        .r1-tab-btn.active::after { transform: scaleX(1); }
        .r1-tab-btn:hover { color: #e32119; }
        .r1-more {
            margin-left: auto;
            font-size: 12px;
            color: #6c7e91;
            text-decoration: none;
            white-space: nowrap;
            padding: 0 16px;
        }
        .r1-more:hover { color: #e32119; }
        .r1-panel { display: none; padding: 16px 20px 18px; flex: 1; overflow-y: auto; }
        .r1-panel.active { display: block; }

        /* ====== TAB card ====== */
        .tab-card {
            background: #ffffff;
            /* removed radius */
            box-shadow: 0 8px 24px -8px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1233px;
            margin: 0 auto;
        }
        .tab-nav {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #eef2f8;
            background: #f8fafd;
            padding: 0 24px;
            flex-wrap: nowrap;
            gap: 0;
        }
        .tab-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #5b6f82;
            padding: 16px 20px;
            position: relative;
            white-space: nowrap;
            transition: color 0.2s;
            font-family: inherit;
        }
        .tab-btn::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0; right: 0;
            height: 3px;
            background: #e32119;
            border-radius: 3px 3px 0 0;
            transform: scaleX(0);
            transition: transform 0.25s;
        }
        .tab-btn.active {
            color: #e32119;
        }
        .tab-btn.active::after {
            transform: scaleX(1);
        }
        .tab-btn:hover {
            color: #e32119;
        }
        .tab-more {
            margin-left: auto;
            font-size: 12px;
            color: #6c7e91;
            text-decoration: none;
            white-space: nowrap;
            padding: 0 4px;
        }
        .tab-more:hover { color: #e32119; }
        /* tab-pane 内容区域 */
        .tab-pane {
            display: none;
            padding: 12px 18px 16px;
        }
        .tab-pane.active {
            display: block;
        }
        /* 第一行TAB面板内新闻列表间距 */
        #tab1-news .dyn-list,
        #tab1-media .dyn-list {
            padding: 8px 12px 10px;
        }
        /* 第一行TAB面板内动态新闻左右布局：日期+内容 */
        #tab1-news .dyn-item,
        #tab1-media .dyn-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #edf2f7;
        }
        #tab1-news .dyn-item:last-child,
        #tab1-media .dyn-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .tab-pane .news-list li {
            border-bottom: 1px solid #edf2f7;
            padding: 10px 0;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .tab-pane .news-list li:last-child { border-bottom: none; }