﻿/* ============================================================
   石台政协网 - 主样式表
   红色政务风格，响应式布局
   ============================================================ */

/* 重置 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background: #f5f5f5;
    line-height: 1.8;
}
a { color: #333; text-decoration: none; transition: color 0.2s; }
a:hover { color: #c8161d; }
ul, ol { list-style: none; }
img { max-width: 100%; border: 0; }
.container { width: 1200px; margin: 0 auto; }

/* 头部 */
.header { background: #fff; border-bottom: 3px solid #c8161d; }
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo a { display: flex; align-items: center; }
.logo-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
}
.logo-text h1 { font-size: 24px; color: #c8161d; font-weight: bold; }
.logo-text p { font-size: 14px; color: #666; margin-top: 4px; }
.search-box form { display: flex; }
.search-box input {
    width: 240px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
}
.search-box input:focus { border-color: #c8161d; }
.search-box button {
    height: 36px;
    padding: 0 20px;
    background: #c8161d;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}
.search-box button:hover { background: #a01015; }

/* 导航 */
.nav-wrap { background: #c8161d; }
.nav { display: flex; }
.nav > li { position: relative; }
.nav > li > a {
    display: block;
    padding: 14px 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.nav > li > a:hover,
.nav > li.active > a {
    background: #a01015;
    color: #fff;
}

/* 主体 */
.main { padding: 20px 0; min-height: 500px; }

/* 首页轮播 */
.banner {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a3a5c, #2c5f8a);
}
.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.6s;
}
.banner-slide.active { opacity: 1; }
.banner-slide h2 { font-size: 36px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.banner-slide p { font-size: 18px; opacity: 0.9; }
.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.banner-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.banner-dots span.active { background: #fff; }

/* 首页布局 */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.home-section {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffd700;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.section-title h3 {
    font-size: 18px;
    color: #c8161d;
    padding-left: 12px;
    border-left: 4px solid #c8161d;
}
.section-title a { color: #999; font-size: 13px; }
.section-title a:hover { color: #c8161d; }

/* 文章列表 */
.news-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-list li:last-child { border-bottom: none; }
.news-list li a {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 15px;
    position: relative;
}
.news-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: #c8161d;
    border-radius: 50%;
}
.news-list li a:hover { color: #c8161d; }
.news-list .date { color: #999; font-size: 13px; margin-left: 15px; flex-shrink: 0; }

/* 领导之窗首页 */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.leader-card {
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}
.leader-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.leader-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    overflow: hidden;
}
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h4 { font-size: 16px; color: #333; }
.leader-card p { font-size: 12px; color: #999; margin-top: 4px; }

/* 列表页 */
.list-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
}
.sidebar {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    height: fit-content;
}
.sidebar h3 {
    font-size: 18px;
    color: #c8161d;
    border-bottom: 1px solid #ffd700;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.sidebar-nav li { margin-bottom: 8px; }
.sidebar-nav li a {
    display: block;
    padding: 10px 15px;
    background: #f8f8f8;
    border-radius: 4px;
    transition: all 0.2s;
}
.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    background: #c8161d;
    color: #fff;
}
.list-content {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.breadcrumb {
    color: #999;
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffd700;
}
.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: #c8161d; }

/* 带日期的列表 */
.date-list li {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.date-list .date-box {
    width: 70px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 20px;
}
.date-list .date-box .day {
    font-size: 28px;
    color: #c8161d;
    font-weight: bold;
    line-height: 1.2;
}
.date-list .date-box .ym {
    font-size: 12px;
    color: #999;
}
.date-list .list-info { flex: 1; }
.date-list .list-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.date-list .list-info h4 a:hover { color: #c8161d; }
.date-list .list-info p {
    color: #666;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 分页 */
.pagination {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ffd700;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
}
.pagination a:hover {
    border-color: #c8161d;
    color: #c8161d;
}
.pagination .current {
    background: #c8161d;
    border-color: #c8161d;
    color: #fff;
}

/* 文章详情 */
.article-detail {
    background: #fff;
    border-radius: 6px;
    padding: 30px 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    max-width: 100%;
    overflow: hidden;
}
.article-title {
    font-size: 24px;
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}
.article-meta {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}
.article-meta span { margin: 0 10px; }
.article-content {
    font-size: 16px;
    line-height: 2;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    overflow: hidden;
}
.article-content p { margin-bottom: 15px; text-indent: 2em; word-wrap: break-word; overflow-wrap: break-word; }
.article-content img { display: block; margin: 15px auto; max-width: 100%; height: auto; }
.article-content table { max-width: 100%; overflow-x: auto; display: block; }
.article-content table td, .article-content table th { word-break: break-word; }
.article-content iframe, .article-content video { max-width: 100%; }
.article-content pre { max-width: 100%; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; }
.article-content div, .article-content span, .article-content section { max-width: 100%; }
.article-content a { word-break: break-all; }
.article-content h1, .article-content h2, .article-content h3 {
    margin: 20px 0 10px;
    color: #c8161d;
}
.article-prev-next {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.article-prev-next p {
    padding: 8px 0;
    color: #666;
}
.article-prev-next a { color: #333; }
.article-prev-next a:hover { color: #c8161d; }

/* 领导之窗页面 */
.leaders-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.leader-page-card {
    background: #fff;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.leader-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.leader-page-card .leader-avatar {
    width: 100px; height: 100px;
    font-size: 40px;
    margin-bottom: 15px;
}
.leader-page-card h4 { font-size: 18px; margin-bottom: 8px; }
.leader-page-card .position {
    color: #c8161d;
    font-size: 14px;
    margin-bottom: 10px;
}
.leader-page-card .desc {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

/* 领导详情 */
.leader-detail {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
}
.leader-detail .leader-photo {
    width: 200px;
    flex-shrink: 0;
}
.leader-detail .leader-photo .leader-avatar {
    width: 200px; height: 240px;
    border-radius: 8px;
    font-size: 60px;
}
.leader-detail .leader-info { flex: 1; }
.leader-detail .leader-info h2 {
    font-size: 28px;
    color: #c8161d;
    margin-bottom: 10px;
}
.leader-detail .leader-info .position {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}
.leader-detail .leader-info .meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
}
.leader-detail .leader-info .meta p { color: #666; }
.leader-detail .leader-info .resume {
    font-size: 15px;
    line-height: 2;
    color: #333;
}
.leader-detail .leader-info .resume p { text-indent: 2em; margin-bottom: 10px; }

/* 关于页面 */
.about-content {
    background: #fff;
    border-radius: 6px;
    padding: 30px 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.about-content h2 {
    color: #c8161d;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffd700;
}
.about-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
    text-indent: 2em;
}

/* 搜索结果 */
.search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.search-result-item h4 { font-size: 18px; margin-bottom: 10px; }
.search-result-item h4 a:hover { color: #c8161d; }
.search-result-item .summary {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}
.search-result-item .info {
    color: #999;
    font-size: 13px;
    margin-top: 8px;
}
.search-highlight { color: #c8161d; font-weight: bold; }

/* 页脚 */
.footer {
    background: #2c2c2c;
    color: #999;
    padding: 30px 0;
    margin-top: 30px;
}
.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}
.footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}
.footer-links ul { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer-links a { color: #999; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 13px; margin-bottom: 8px; }
.footer-copyright { text-align: right; font-size: 13px; }
.footer-copyright p { margin-bottom: 8px; }

/* 响应式 */
@media (max-width: 1200px) {
    .container { width: 96%; }
}
@media (max-width: 768px) {
    .header-top { flex-direction: column; gap: 15px; }
    .nav { flex-wrap: wrap; }
    .nav > li > a { padding: 12px 16px; font-size: 14px; }
    .home-grid { grid-template-columns: 1fr; }
    .list-layout { grid-template-columns: 1fr; }
    .leaders-grid, .leaders-page-grid { grid-template-columns: repeat(2, 1fr); }
    .footer .container { grid-template-columns: 1fr; text-align: center; }
    .footer-copyright { text-align: center; }
    .article-detail { padding: 20px; }
    .leader-detail { flex-direction: column; align-items: center; }
}

/* ============================================================
   复刻原网站首页布局
   ============================================================ */

/* 顶部FLASH位置 */
.top-flash {
    width: 100%;
    background: #fff;
    margin-bottom: 15px;
}
.flash-placeholder {
    width: 1200px;
    height: 333px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    border: 1px dashed #ccc;
}

/* 主体容器：左右两栏 */
.main-container {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 15px;
    margin-bottom: 15px;
}
.home-left, .home-right { display: flex; flex-direction: column; gap: 15px; }

/* 焦点新闻 */
.focus-news {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.focus-item a { display: block; }
.focus-main { padding: 15px; }
.focus-main .focus-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f5f5f5;
}
.focus-main .focus-img img { width: 100%; height: 100%; object-fit: cover; }
.focus-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}
.focus-main .focus-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}
.focus-main .focus-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.focus-sub {
    padding: 12px 15px;
    border-top: 1px solid #ffd700;
    display: flex;
    gap: 12px;
    align-items: center;
}
.focus-sub .focus-img {
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}
.focus-sub .focus-img img { width: 100%; height: 100%; object-fit: cover; }
.focus-sub .focus-img-placeholder { font-size: 18px; }
.focus-sub .focus-text h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}
.focus-sub .focus-text p {
    color: #999;
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 排行列表 */
.rank-list li {
    display: flex;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
}
.rank-list li:last-child { border-bottom: none; }
.rank-num {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #ccc;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
}
.rank-num.top3 { background: #c8161d; }
.rank-list li a {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
}
.rank-list li a:hover { color: #c8161d; }

/* 领导横向展示 */
.leaders-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
.leader-mini {
    width: calc(25% - 8px);
    text-align: center;
    text-decoration: none;
}
.leader-mini-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    overflow: hidden;
}
.leader-mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-mini-name {
    display: block;
    font-size: 13px;
    color: #333;
}
.leader-mini:hover .leader-mini-name { color: #c8161d; }

/* 政协简介预览 */
.about-preview {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-indent: 2em;
}
.about-preview .read-more {
    color: #c8161d;
    font-size: 12px;
    text-indent: 0;
}

/* 历次全会 */
.meeting-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.meeting-item {
    width: calc(25% - 8px);
    text-align: center;
    text-decoration: none;
}
.meeting-thumb {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #2c5f8a, #1a3a5c);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 5px;
    overflow: hidden;
}
.meeting-thumb img { width: 100%; height: 100%; object-fit: cover; }
.meeting-title {
    display: block;
    font-size: 12px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.meeting-item:hover .meeting-title { color: #c8161d; }

/* 信息公开链接 */
.info-links li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.info-links li:last-child { border-bottom: none; }
.info-links li a {
    font-size: 14px;
    color: #333;
    padding-left: 12px;
    position: relative;
}
.info-links li a::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #c8161d;
    font-weight: bold;
}
.info-links li a:hover { color: #c8161d; }

/* 通知公告横条 */
.notice-bar {
    width: 100%;
    background: #fff;
    border-top: 2px solid #c8161d;
    margin-bottom: 15px;
}
.notice-bar-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 15px;
}
.notice-label {
    background: #c8161d;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 13px;
    flex-shrink: 0;
}
.notice-scroll {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.notice-scroll a {
    display: inline-block;
    margin-right: 40px;
    font-size: 14px;
    color: #333;
}
.notice-scroll a:hover { color: #c8161d; }
.notice-more {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}
.notice-more:hover { color: #c8161d; }

/* 响应式适配 */
@media (max-width: 1200px) {
    .flash-placeholder, .main-container, .notice-bar-inner { width: 96%; }
}
@media (max-width: 768px) {
    .main-container { grid-template-columns: 1fr; }
    .flash-placeholder { height: 180px; }
    .leader-mini, .meeting-item { width: calc(25% - 8px); }
}

/* ============================================================
   现代政务风格首页
   ============================================================ */

/* 整体调整 */
.container { width: 1200px; }
.main { padding: 0; }

/* 顶部Hero区 */
.hero-section {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #8b0000 0%, #c8161d 50%, #a01015 100%);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 40%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
    background-size: 60px 60px;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-title h1 {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}
.hero-title p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 8px;
}

/* 主体内容 */
.home-main {
    width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
}

/* 区块行 */
.section-row {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

/* 区块标题 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ffd700;
}
.section-header h2 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.header-bar {
    display: inline-block;
    width: 5px;
    height: 22px;
    background: linear-gradient(180deg, #c8161d, #8b0000);
    margin-right: 12px;
    border-radius: 3px;
}
.more-link {
    color: #999;
    font-size: 13px;
    transition: color 0.2s;
}
.more-link:hover { color: #c8161d; }

/* 焦点新闻区 */
.focus-section { flex: 1.5; min-width: 0; }
.focus-slider {
    position: relative;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.focus-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}
.focus-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.focus-slide a { display: block; width: 100%; height: 100%; }
.focus-image {
    width: 100%; height: 100%;
    position: relative;
}
.focus-image img { width: 100%; height: 100%; object-fit: cover; }
.focus-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.focus-icon { font-size: 60px; margin-bottom: 15px; }
.focus-image-placeholder p { font-size: 18px; padding: 0 30px; text-align: center; }
.focus-caption {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}
.focus-caption h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.focus-caption p {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.focus-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.focus-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.focus-dots span.active {
    background: #fff;
    width: 25px;
    border-radius: 5px;
}

/* 通知公告区 */
.notice-section { flex: 1; min-width: 0; }
.notice-list {
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    height: 340px;
    overflow: hidden;
}
.notice-list li {
    padding: 11px 0;
    border-bottom: 1px dashed #eee;
}
.notice-list li:last-child { border-bottom: none; }
.notice-item {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.notice-dot {
    width: 6px; height: 6px;
    background: #c8161d;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.notice-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.notice-item:hover .notice-title { color: #c8161d; }
.notice-date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* 政协领导区 */
.leaders-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.leaders-section .section-header { margin-bottom: 20px; }
.leaders-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.leader-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.3s;
    text-decoration: none;
}
.leader-card:hover {
    background: #fff5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(200,22,29,0.15);
}
.leader-avatar-wrap {
    margin-right: 15px;
    flex-shrink: 0;
}
.leader-avatar {
    width: 65px; height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.leader-avatar-default {
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
}
.leader-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}
.leader-info p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* 工作动态区 */
.news-section { flex: 1.5; min-width: 0; }
.news-list-modern {
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.news-list-modern li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.news-list-modern li:last-child { border-bottom: none; }
.news-list-modern li a {
    display: flex;
    text-decoration: none;
}
.news-date-box {
    width: 60px;
    text-align: center;
    margin-right: 18px;
    flex-shrink: 0;
    border-right: 2px solid #f0f0f0;
    padding-right: 15px;
}
.news-day {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #c8161d;
    line-height: 1;
}
.news-ym {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}
.news-text { flex: 1; min-width: 0; }
.news-text h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.news-list-modern li a:hover .news-text h4 { color: #c8161d; }
.news-text p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 政协简介区 */
.about-section { flex: 1; min-width: 0; }
.about-content-modern {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    height: calc(100% - 52px);
    display: flex;
    flex-direction: column;
}
.about-text {
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-indent: 2em;
    flex: 1;
}
.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.stat-item {
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #c8161d;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

/* 经常性工作 + 委组工作 */
.half-section { flex: 1; min-width: 0; }
.simple-list {
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.simple-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}
.simple-list li:last-child { border-bottom: none; }
.simple-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.list-arrow {
    color: #c8161d;
    font-size: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}
.list-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.simple-list li a:hover .list-title { color: #c8161d; }
.list-date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* 友情链接 */
.links-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.link-item {
    padding: 10px 20px;
    background: #f8f8f8;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.link-item:hover {
    background: #fff5f5;
    color: #c8161d;
    border-color: #c8161d;
    transform: translateY(-2px);
}

/* 空状态 */
.empty-text {
    text-align: center;
    color: #999;
    padding: 30px 0;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .container, .home-main, .hero-content { width: 96%; }
    .leaders-showcase { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .hero-title h1 { font-size: 28px; }
    .hero-title p { font-size: 14px; letter-spacing: 4px; }
    .section-row { flex-direction: column; }
    .leaders-showcase { grid-template-columns: repeat(2, 1fr); }
    .focus-slider { height: 250px; }
    .notice-list { height: auto; }
}

/* ============================================================
   复刻原网站导航样式
   ============================================================ */

/* 顶部LOGO区 */
.header-original {
    background: #fff;
    border-bottom: 3px solid #c8161d;
}
.header-top-original {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo-original a {
    display: flex;
    align-items: center;
}
.logo-icon-original {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8161d, #8b0000);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
}
.logo-text-original h1 {
    font-size: 24px;
    color: #c8161d;
    font-weight: bold;
}
.logo-text-original p {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}
.search-box-original form {
    display: flex;
}
.search-box-original input {
    width: 240px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
}
.search-box-original input:focus {
    border-color: #c8161d;
}
.search-box-original button {
    height: 36px;
    padding: 0 20px;
    background: #c8161d;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}
.search-box-original button:hover {
    background: #a01015;
}

/* 导航栏 - 复刻原网站 */
.nav-original-wrap {
    background: #c8161d;
    height: 46px;
}
.nav-original {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 46px;
}
.nav-original > li {
    position: relative;
    height: 46px;
}
.nav-original > li > a.first-a {
    display: block;
    height: 46px;
    line-height: 46px;
    padding: 0 24px;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
}
.nav-original > li > a.first-a:hover,
.nav-original > li.active > a.first-a {
    background: #a01015;
    color: #fff;
}

/* 下拉菜单 */
.nav-original > li.has-sub > a.first-a::after {
    content: ' ▾';
    font-size: 12px;
}
.nav-original .sub-nav {
    display: none;
    position: absolute;
    top: 46px;
    left: 0;
    background: #c8161d;
    min-width: 150px;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-original > li.has-sub:hover .sub-nav {
    display: block;
}
.nav-original .sub-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-original .sub-nav li:last-child {
    border-bottom: none;
}
.nav-original .sub-nav a.second-a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
.nav-original .sub-nav a.second-a:hover {
    background: #a01015;
}

/* FLASH横幅 */
.flash-banner {
    background: #fff;
    border-bottom: 1px solid #ffd700;
}
.flash-banner .container {
    text-align: center;
}
.flash-banner object {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.flash-fallback {
    width: 1200px;
    height: 333px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 50%, #4a7ab5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.flash-fallback-text h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}
.flash-fallback-text p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    text-align: center;
    letter-spacing: 4px;
}

/* 导航鼠标悬停动画横线 */
.nav-original > li > a.first-a {
    position: relative;
}
.nav-original > li > a.first-a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-original > li > a.first-a:hover::before,
.nav-original > li.active > a.first-a::before {
    width: 80%;
}

/* 导航栏带搜索 */
.nav-with-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
}
.nav-search {
    display: flex;
    align-items: center;
}
.nav-search form {
    display: flex;
}
.nav-search input {
    width: 180px;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size: 13px;
    background: rgba(255,255,255,0.9);
}
.nav-search input:focus {
    background: #fff;
}
.nav-search button {
    height: 30px;
    padding: 0 15px;
    background: #a01015;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 13px;
}
.nav-search button:hover {
    background: #800000;
}

/* 修复导航水平排列 */
.nav-original-wrap {
    background: #c8161d;
    height: 46px;
    width: 100%;
}
.nav-original-wrap .container {
    width: 1200px;
    margin: 0 auto;
    height: 46px;
}
.nav-with-search {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 46px !important;
    width: 100% !important;
}
.nav-original {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 46px !important;
    flex: 1 !important;
}
.nav-original > li {
    position: relative !important;
    height: 46px !important;
    float: none !important;
    display: block !important;
}
.nav-original > li > a.first-a {
    display: block !important;
    height: 46px !important;
    line-height: 46px !important;
    padding: 0 20px !important;
    color: #fff !important;
    font-size: 18px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    float: none !important;
}
.nav-search {
    flex-shrink: 0 !important;
    margin-left: 20px !important;
}

/* 修复搜索框：更紧凑、更靠右、同一行 */
.nav-search {
    flex-shrink: 0 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
}
.nav-search form {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}
.nav-search input {
    width: 150px !important;
    height: 28px !important;
    padding: 0 8px !important;
    border: none !important;
    border-radius: 3px 0 0 3px !important;
    outline: none !important;
    font-size: 12px !important;
    background: rgba(255,255,255,0.9) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}
.nav-search button {
    height: 28px !important;
    padding: 0 12px !important;
    background: #a01015 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 3px 3px 0 !important;
    cursor: pointer !important;
    font-size: 12px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

/* FLASH横幅修复 */
.flash-banner {
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    width: 100% !important;
}
.flash-banner .container {
    padding: 0 !important;
    width: 1200px !important;
    max-width: 1200px !important;
}
.flash-banner object {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* FLASH右上角悬浮搜索框 */
.flash-container {
    position: relative !important;
}
.flash-search {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 100 !important;
}
.flash-search form {
    display: flex !important;
    align-items: center !important;
}
.flash-search input {
    width: 160px !important;
    height: 30px !important;
    padding: 0 10px !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    border-radius: 3px 0 0 3px !important;
    outline: none !important;
    font-size: 13px !important;
    background: rgba(255,255,255,0.85) !important;
}
.flash-search input:focus {
    background: #fff !important;
}
.flash-search button {
    height: 30px !important;
    padding: 0 15px !important;
    background: #c8161d !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 3px 3px 0 !important;
    cursor: pointer !important;
    font-size: 13px !important;
}
.flash-search button:hover {
    background: #a01015 !important;
}

/* 导航栏居中 */
.nav-center {
    justify-content: center !important;
    display: flex !important;
}

/* 现代轮播横幅（替代FLASH） */
.banner-carousel {
    width: 100%;
    background: #fff;
}
.banner-container {
    width: 1200px;
    max-width: 1200px;
    height: 333px;
    overflow: hidden;
    position: relative;
}
.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-slide.active {
    opacity: 1;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.15) 100%);
}
.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}
.banner-logo {
    width: 130px;
    height: 130px;
    margin-right: 30px;
    flex-shrink: 0;
}
.banner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-text h1 {
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    margin: 0 0 12px 0;
    letter-spacing: 2px;
    white-space: nowrap;
    -webkit-text-stroke: 1px #c8161d;
    text-shadow: 
        -1px -1px 0 #c8161d,
        1px -1px 0 #c8161d,
        -1px 1px 0 #c8161d,
        1px 1px 0 #c8161d,
        -2px -2px 6px rgba(0,0,0,0.5),
        2px 2px 6px rgba(0,0,0,0.5);
}
.banner-text p {
    color: #fff;
    font-size: 20px;
    margin: 0;
    letter-spacing: 4px;
    font-weight: bold;
    -webkit-text-stroke: 0.8px #c8161d;
    text-shadow: 
        -1px -1px 0 #c8161d,
        1px -1px 0 #c8161d,
        -1px 1px 0 #c8161d,
        1px 1px 0 #c8161d;
}
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.banner-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}
.banner-search {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}
.banner-search form {
    display: flex;
    align-items: center;
}
.banner-search input {
    width: 180px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 13px;
    background: rgba(255,255,255,0.9);
}
.banner-search input:focus {
    background: #fff;
}
.banner-search button {
    height: 34px;
    padding: 0 18px;
    background: #c8161d;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 13px;
}
.banner-search button:hover {
    background: #a01015;
}

/* Tab切换样式 */
.tab-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 15px;
    position: relative;
}
.tab-title {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}
.tab-title:hover {
    color: #c8161d;
}
.tab-title.active {
    color: #c8161d;
}
.tab-title.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c8161d;
}
.tab-more {
    margin-left: auto;
    font-size: 13px;
    color: #999;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* 政协领导横向滚动 */
.leaders-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.leaders-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.leaders-scroll::-webkit-scrollbar {
    display: none;
}
.leader-card-scroll {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s;
}
.leader-card-scroll:hover {
    transform: translateY(-3px);
}
.leader-card-scroll .leader-avatar-wrap {
    width: 100px;
    height: 120px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 4px;
}
.leader-card-scroll .leader-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader-card-scroll .leader-avatar-default {
    background: linear-gradient(135deg, #c8161d, #a01015);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.leader-card-scroll .leader-info h4 {
    font-size: 15px;
    color: #333;
    margin: 0 0 5px 0;
}
.leader-card-scroll .leader-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}
.scroll-btn {
    width: 36px;
    height: 60px;
    background: rgba(200,22,29,0.8);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.scroll-btn:hover {
    background: #c8161d;
}
.scroll-prev {
    margin-right: 10px;
}
.scroll-next {
    margin-left: 10px;
}

/* 三栏布局 */
.section-row-three {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.third-section {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* 信息公开网格 */
.info-public-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}
.info-public-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    background: #f8f8f8;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: all 0.3s;
    text-align: center;
}
.info-public-item:hover {
    background: #c8161d;
    color: #fff;
    transform: translateY(-2px);
}
.info-public-item .info-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

/* 参考石台县政府网样式优化 */
.home-main {
    padding: 20px 0;
}
.section-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}
.header-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #c8161d;
    margin-right: 10px;
    border-radius: 2px;
}
.more-link {
    margin-left: auto;
    font-size: 13px;
    color: #999;
    text-decoration: none;
}
.more-link:hover {
    color: #c8161d;
}

/* 列表样式优化 */
.simple-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.simple-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.simple-list li:last-child {
    border-bottom: none;
}
.simple-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.simple-list a:hover {
    color: #c8161d;
}
.list-arrow {
    color: #c8161d;
    margin-right: 8px;
    font-size: 16px;
}
.list-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* 全屏Banner（参考石台县政府网） */
.banner-fullscreen {
    width: 100% !important;
    height: 333px;
    position: relative;
    overflow: hidden;
}
.banner-fullscreen .banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-fullscreen .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.banner-fullscreen .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.1) 100%);
}
.banner-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 10;
    text-align: center;
}
.banner-fullscreen .banner-search {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 20;
}
.banner-fullscreen .banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Banner Hero样式（导航叠加底部，渐变淡化） */
.banner-hero {
    width: 100% !important;
    height: 400px;
    position: relative;
    overflow: hidden;
}
.banner-hero .banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-hero .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-hero .banner-slide.active {
    opacity: 1;
}
/* 底部渐变淡化遮罩 */
.banner-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(20,40,80,0.4) 50%, rgba(20,40,80,0.9) 100%);
    z-index: 5;
    pointer-events: none;
}
/* 内容左对齐 */
.banner-content-left {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}
.banner-hero .banner-search {
    position: absolute;
    top: 25px;
    right: 80px;
    z-index: 20;
}
.banner-hero .banner-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
/* 导航叠加在banner底部 */
.nav-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 15 !important;
    background: rgba(200,22,29,0.95) !important;
}
/* 页面背景色，和渐变终点一致 */
body {
    background: #142850 !important;
}
.main {
    background: #fff;
    margin-top: 0 !important;
    padding-top: 30px !important;
    border-radius: 0;
}

/* 完整Banner样式 */
.banner-full {
    width: 100% !important;
    height: 400px;
    position: relative;
    overflow: hidden;
}
.banner-full .banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-full .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-full .banner-slide.active {
    opacity: 1;
}
.banner-full .banner-content-left {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}
.banner-full .banner-search {
    position: absolute;
    top: 25px;
    right: 80px;
    z-index: 20;
}
.banner-full .banner-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
/* 页面背景白色 */
body {
    background: #f5f5f5 !important;
}
.main {
    background: #fff;
    margin-top: 20px !important;
    padding: 30px !important;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Banner带导航（导航在2/3处，下方渐变淡化） */
.banner-with-nav {
    width: 100% !important;
    height: 500px;
    position: relative;
    overflow: visible;
}
.banner-with-nav .banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-with-nav .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-with-nav .banner-slide.active {
    opacity: 1;
}
.banner-with-nav .banner-content-left {
    position: absolute;
    top: 30%;
    left: 80px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}
.banner-with-nav .banner-search {
    position: absolute;
    top: 25px;
    right: 80px;
    z-index: 20;
}
.banner-with-nav .banner-dots {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
/* 导航在2/3处 */
.nav-at-two-thirds {
    position: absolute !important;
    top: 66.6% !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 15 !important;
    background: rgba(200,22,29,0.95) !important;
}
/* 导航下方渐变淡化到白色 */
.banner-fade-after-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0.7) 70%, #fff 100%);
    z-index: 5;
    pointer-events: none;
}
/* 页面背景白色 */
body {
    background: #fff !important;
}
.main {
    background: transparent !important;
    margin-top: -120px !important;
    padding: 20px 0 30px 0 !important;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 20;
    width: 100% !important;
    max-width: 100% !important;
}

/* main内部内容居中限制宽度 */
.main > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* 统一字体大小 - 参考石台县政府网 */
body {
    font-size: 17px !important;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
    color: #333 !important;
    line-height: 1.8 !important;
}

/* 模块标题 */
.section-header h2 {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* 导航栏 */
.nav-original > li > a.first-a {
    font-size: 17px !important;
}

/* 列表项 */
.simple-list a,
.notice-list a,
.news-list-modern h4 {
    font-size: 17px !important;
}

/* 正文段落 */
.article-content p,
.about-text,
.news-list-modern p {
    font-size: 17px !important;
    line-height: 1.8 !important;
}

/* 日期 */
.list-date,
.notice-date,
.news-ym {
    font-size: 14px !important;
}

/* 文章详情标题 */
.article-title {
    font-size: 24px !important;
}

/* 面包屑 */
.breadcrumb {
    font-size: 14px !important;
}

/* 页脚 */
.footer {
    font-size: 14px !important;
}

/* LOGO文字效果 - 参考石台县政府网 */
.banner-content-left {
    position: absolute !important;
    top: 32% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    text-align: center !important;
}
.banner-content-left .banner-text {
    text-align: center !important;
}
.banner-content-left .banner-text h1 {
    color: #c8161d !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    margin: 0 0 15px 0 !important;
    letter-spacing: 3px !important;
    white-space: nowrap !important;
    -webkit-text-stroke: 1px #ffd700 !important;
    text-shadow: 
        -1px -1px 0 #ffd700,
        1px -1px 0 #ffd700,
        -1px 1px 0 #ffd700,
        1px 1px 0 #ffd700,
        -2px -2px 4px rgba(0,0,0,0.6),
        2px 2px 4px rgba(0,0,0,0.6) !important;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif !important;
}
.banner-content-left .banner-text p {
    color: #c8161d !important;
    font-size: 22px !important;
    margin: 10px 0 0 0 !important;
    letter-spacing: 6px !important;
    font-weight: bold !important;
    -webkit-text-stroke: 1px #ffd700 !important;
    text-shadow: 
        -1px -1px 0 #ffd700,
        1px -1px 0 #ffd700,
        -1px 1px 0 #ffd700,
        1px 1px 0 #ffd700,
        -2px -2px 4px rgba(0,0,0,0.5) !important;
}
.banner-content-left .banner-logo {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 15px !important;
    margin-right: 0 !important;
}

/* 左右两栏等高对齐 */
.section-row {
    display: flex !important;
    align-items: stretch !important;
    gap: 25px !important;
}
.section-row > div {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.section-row > div > ul,
.section-row > div > .about-content-modern {
    flex: 1 !important;
}

/* Tab内容区域固定高度，和图片新闻对齐 */
.tab-content {
    height: 280px !important;
    overflow: hidden !important;
}

/* 所有模块字体统一17px */
.leaders-original .leader-name,
.info-grid .info-item a,
.section-header h2 {
    font-size: 17px !important;
}
.leaders-original .leader-desc {
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* 经常性工作、委组工作新闻列表字体统一 */
.news-list-modern li h4,
.news-list-modern li p,
.section-row .news-section li a,
.section-row .news-section li h4,
.section-row .news-section li p {
    font-size: 17px !important;
}

/* 经常性工作、委组工作列表标题强制17px */
.simple-list .list-title,
.simple-list li a,
.simple-list li a span {
    font-size: 17px !important;
}
.simple-list .list-date {
    font-size: 14px !important;
}

/* Tab区域工作动态/通知公告列表标题强制17px */
.notice-list .notice-title,
.notice-list .notice-item,
.notice-list li a,
.notice-list li a span {
    font-size: 17px !important;
}
.notice-list .notice-date {
    font-size: 14px !important;
}

/* Tab标题字体和模块标题统一 */
.tab-title {
    font-size: 20px !important;
    font-weight: bold !important;
    padding: 0 20px 10px 20px !important;
}


/* 焦点新闻 - 独立一行纯文字 */
.focus-news-text-section {
    background: transparent !important;
    padding: 5px 20px 15px 20px;
    margin-bottom: 5px;
    border-bottom: none !important;
}
.focus-news-text-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 100px;
}
.focus-news-text-slide {
    display: none;
    text-align: center;
}
.focus-news-text-slide.active {
    display: block;
}
.home-main .focus-news-text-section .focus-news-text-title {
    font-size: 26px !important;
    font-weight: bold !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
}
.home-main .focus-news-text-section .focus-news-text-title a {
    color: #c8161d !important;
    text-decoration: none !important;
    -webkit-text-stroke: 0.5px #ffd700 !important;
    text-shadow: 1px 1px 2px rgba(255,215,0,0.5) !important;
}
.focus-news-text-title a {
    color: #c8161d;
    text-decoration: none;
}
.focus-news-text-title a:hover {
    text-decoration: underline;
}
.focus-news-text-summary {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}
.focus-news-text-more {
    color: #c8161d;
    text-decoration: none;
}
.focus-news-text-more:hover {
    text-decoration: underline;
}


/* 政协领导CSS无缝滚动 */
.leaders-scroll {
    overflow: hidden !important;
    position: relative;
}
.leaders-track {
    display: flex;
    gap: 20px;
    animation: leadersScroll 30s linear infinite;
    width: max-content;
}
.leaders-track:hover {
    animation-play-state: paused;
}
@keyframes leadersScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.leader-card-scroll {
    flex-shrink: 0;
    width: 140px;
}


/* 石台风光图片展示 */
.gallery-section {
    padding: 15px 20px 10px 20px;
    margin-top: 5px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}
.gallery-item {
    display: none;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f0f0;
}
.gallery-item.visible {
    display: block;
    animation: galleryFade 0.8s ease;
}
.gallery-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-title {
    text-align: center;
    font-size: 15px;
    color: #333;
    padding: 8px 5px 5px 5px;
    font-weight: normal;
}
@keyframes galleryFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 页脚 - 宽松舒展布局 */
.footer {
    background: #1a3a5c;
    color: #fff;
    margin-top: 30px;
    padding: 25px 0;
    width: 100%;
    min-width: 100%;
}
.footer .container {
    display: block;
    width: 1200px;
    max-width: 100%;
}
.footer-content {
    display: flex;
    align-items: stretch;
    position: relative;
}
.footer-links {
    width: 50%;
    padding-right: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.footer-label {
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    padding-top: 2px;
}
.footer-link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    flex: 1;
}
.footer-link-list a {
    color: #c8d8e8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 32px;
    height: 32px;
    display: flex;
    align-items: center;
}
.footer-link-list a:hover {
    color: #ffd700;
    text-decoration: underline;
}
.footer-vdivider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #3a5f82;
    transform: translateX(-50%);
}
.footer-info {
    width: 50%;
    padding-left: 50px;
    box-sizing: border-box;
    text-align: left;
}
.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.footer-info-label {
    color: #ffd700;
    white-space: nowrap;
    min-width: 70px;
}
.footer-info-value {
    color: #c8d8e8;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .footer {
        padding: 25px 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    .footer-vdivider {
        width: 100%;
        height: 1px;
    }
    .footer-links, .footer-info {
        width: 100%;
        padding: 0;
    }
    .footer-links {
        flex-direction: column;
    }
    .footer-info p {
        font-size: 14px;
        margin: 8px 0;
    }
}


/* ============================================
   手机端响应式适配 (768px以下)
   ============================================ */
@media (max-width: 768px) {
    /* 容器宽度自适应 */
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Banner高度调整，给标题和导航留足够空间 */
    .banner-with-nav {
        height: 220px !important;
        min-height: 220px !important;
    }
    
    /* 网站标题：缩小并上移，给导航留空间 */
    /* 使用更具体的选择器覆盖前面的!important定义 */
    .banner-with-nav .banner-content-left {
        top: 18px !important;
        left: 15px !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        text-align: left !important;
    }
    .banner-with-nav .banner-content-left .banner-logo {
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .banner-with-nav .banner-content-left .banner-logo img {
        width: 40px !important;
        height: 40px !important;
    }
    .banner-with-nav .banner-content-left .banner-text {
        text-align: left !important;
    }
    .banner-with-nav .banner-content-left .banner-text h1 {
        font-size: 15px !important;
        margin: 0 !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        letter-spacing: 0 !important;
        max-width: 220px !important;
        color: #fff !important;
        -webkit-text-stroke: 0.5px #ffd700 !important;
    }
    .banner-with-nav .banner-content-left .banner-text p {
        display: none !important;
    }
    
    /* 搜索框：移到导航栏右侧，或者隐藏 */
    .banner-search {
        top: auto !important;
        bottom: 50px !important;
        right: 10px !important;
        width: auto !important;
        z-index: 20 !important;
    }
    .banner-search form {
        display: flex !important;
    }
    .banner-search input {
        width: 100px !important;
        font-size: 12px !important;
        padding: 5px 8px !important;
        height: 30px !important;
    }
    .banner-search button {
        padding: 5px 10px !important;
        font-size: 12px !important;
        height: 30px !important;
    }
    
    /* 导航栏：固定在banner底部，高度固定 */
    .nav-at-two-thirds {
        top: auto !important;
        bottom: 0 !important;
        position: absolute !important;
        height: 44px !important;
        z-index: 15 !important;
    }
    .nav-at-two-thirds .container {
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* 导航栏横向滚动 */
    .nav-original {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        padding: 0 10px !important;
        height: 44px !important;
        margin: 0 !important;
    }
    .nav-original li {
        flex-shrink: 0 !important;
        float: none !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }
    .nav-original > li > a.first-a {
        font-size: 14px !important;
        padding: 0 14px !important;
        height: 44px !important;
        line-height: 44px !important;
        display: block !important;
    }
    
    /* 隐藏导航滚动条 */
    .nav-original::-webkit-scrollbar {
        display: none;
    }
    .nav-original {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* 导航下方渐变淡化：手机端减小高度 */
    .banner-fade-after-nav {
        height: 30px !important;
    }
    
    /* 主体内容：不再上移，避免重叠 */
    .main {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    /* 首页模块调整 */
    .home-section {
        padding: 15px !important;
    }
    
    /* 两栏布局改单栏 */
    .two-col, .three-col {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* 文章列表字体 */
    .article-list li a {
        font-size: 15px !important;
    }
    
    /* 领导卡片 */
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* 风光图片 */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* 焦点新闻 */
    .focus-news-title {
        font-size: 20px !important;
    }
    .focus-news-summary {
        font-size: 14px !important;
    }
    
    /* 页脚 */
    .footer {
        padding: 20px 0 !important;
    }
    .footer-links {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .footer-info p {
        font-size: 12px !important;
        line-height: 1.8 !important;
        margin: 4px 0 !important;
        white-space: normal !important;
    }
}

/* 小屏手机 (480px以下) */
@media (max-width: 480px) {
    .banner-with-nav {
        height: 200px !important;
        min-height: 200px !important;
    }
    .banner-with-nav .banner-content-left {
        top: 12px !important;
        left: 10px !important;
        gap: 8px !important;
    }
    .banner-with-nav .banner-content-left .banner-logo {
        width: 35px !important;
        height: 35px !important;
    }
    .banner-with-nav .banner-content-left .banner-logo img {
        width: 35px !important;
        height: 35px !important;
    }
    .banner-with-nav .banner-content-left .banner-text h1 {
        font-size: 13px !important;
        max-width: 170px !important;
    }
    .banner-search {
        bottom: 48px !important;
        right: 8px !important;
    }
    .banner-search input {
        width: 80px !important;
    }
    .nav-at-two-thirds {
        height: 40px !important;
    }
    .nav-original {
        height: 40px !important;
    }
    .nav-original li {
        height: 40px !important;
    }
    .nav-original > li > a.first-a {
        font-size: 13px !important;
        padding: 0 12px !important;
        height: 40px !important;
        line-height: 40px !important;
    }
    .leaders-grid {
        grid-template-columns: 1fr !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}


/* 更多链接 */
.more-link {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    float: right;
    margin-top: 8px;
}
.more-link:hover {
    color: #c41e3a;
}

/* 重要转载 */
.important-section {
    margin-bottom: 25px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
}
.important-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.important-item {
    width: 50%;
    padding: 6px 0;
    box-sizing: border-box;
}
.important-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.important-link:hover .important-title {
    color: #c41e3a;
}
.important-dot {
    width: 4px;
    height: 4px;
    background: #c41e3a;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}
.important-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.important-date {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
    flex-shrink: 0;
}


/* 恢复焦点新闻标题样式 */



/* 宣传标语横幅 */
.slogan-banner {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}
.slogan-banner img {
    width: 100%;
    height: auto;
    display: block;
}
