﻿/* ==================== home.css ==================== */
/* ==================== 全局变量 ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gov-blue: #4d9ffa;
    --gov-dark: #0d3b6b;
    --gov-light: #6bb3fb;
    --tech-blue: #4d9ffa;
    --accent-cyan: #26c6da;
    --white: #ffffff;
    --bg-light: #f4f9ff;
    --text-dark: #0d3b6b;
    --text-light: #5a7a9e;
    --border: #dbe9f8;
    --orange: #ff8c00;
    --orange-dark: #e67e00;
    --gold-light: #a8d4ff;
}
body {
    font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', 'Noto Sans SC', -apple-system, sans-serif;
    background: var(--white);
    color: var(--text-dark);
}

/* ==================== HERO BANNER ==================== */
.hero-banner {
    margin-top: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

/* 原来 Hero 的装饰元素全部隐藏 */
.hero-bg-pattern,
.hero-ocean-scene,
.horizon,
.hero-sun-glint,
.hero-wave,
.hero-coconut,
.hero-world-map {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px 50px;
    width: 100%;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-content-centered .form-search { width: 100%; }
.hero-content-centered .hero-search { width: 100%; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(77,159,250,0.1);
    border: 1px solid rgba(77,159,250,0.25);
    border-radius: 0;
    color: #4d9ffa;
    font-size: 11px;
    margin-bottom: 12px;
}
.hero-badge i { color: #4d9ffa; }

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #0d3b6b;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero-title span {
    background: linear-gradient(90deg, #4d9ffa, #26c6da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 13px;
    color: #5a7a9e;
    margin-bottom: 16px;
    max-width: 500px;
    line-height: 1.6;
}

/* ==================== Hero 搜索区（胶囊风格） ==================== */
.form-search {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 6px 6px 6px 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(77,159,250,0.35);
    border-radius: 999px;                 /* 胶囊外形 */
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 22px rgba(77,159,250,0.18);
    transition: all 0.3s ease;
}

.hero-search:hover,
.hero-search:focus-within {
    border-color: #4d9ffa;
    box-shadow: 0 8px 28px rgba(77,159,250,0.28);
    background: #ffffff;
}

/* 左侧搜索小圆图标 */
.hero-search .search-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d9ffa, #26c6da);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-search:hover .search-icon,
.hero-search:focus-within .search-icon {
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(77,159,250,0.45);
}

/* 输入框 */
.hero-search input[type="text"] {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 4px;
    font-size: 14px;
    font-family: inherit;
    color: #0d3b6b;
}

.hero-search input[type="text"]::placeholder {
    color: #5a7a9e;
    font-size: 14px;
}

/* 提交按钮：蓝色渐变胶囊 */
.hero-search button[type="submit"] {
    padding: 10px 28px;
    background: linear-gradient(90deg, #4d9ffa, #26c6da);
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(77,159,250,0.3);
}

.hero-search button[type="submit"]:hover {
    background: linear-gradient(90deg, #2b6fc4, #1ea9bb);
    box-shadow: 0 6px 18px rgba(77,159,250,0.45);
    transform: translateY(-1px);
}

.hero-search button[type="submit"]:active {
    transform: translateY(0);
}
/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    padding-bottom: 16px;
    /*border-bottom: 2px solid var(--border);*/
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-title i {
    font-size: 16px;
    color: var(--gov-blue);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-title-en {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 1px;
}

.section-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gov-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: gap 0.3s;
}
.section-more:hover { gap: 10px; }

/* ==================== Module Grid ==================== */
.module-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.module-card {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    text-decoration: none;
    color: inherit;
    display: block;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(77,159,250,0.15);
    border-color: transparent;
}

.module-card-img {
    height: 90px;
    background: linear-gradient(135deg, var(--gov-dark), var(--gov-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(255,255,255,0.35);
    position: relative;
    overflow: hidden;
}

.module-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15));
}

.module-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #26c6da);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.module-card:hover .module-card-img::after { transform: scaleX(1); }
.module-card:hover .module-card-img i { transform: scale(1.15); transition: transform 0.4s ease; }
.module-card-body { padding: 16px 12px; text-align: center; }
.module-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.module-card-desc { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ==================== Belt and Road Section ==================== */
.belt-road-section {
    background: linear-gradient(135deg, #f4f9ff 0%, #e4f0ff 100%);
    border: 1px solid rgba(77,159,250,0.2);
    border-radius: 0;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(77,159,250,0.06);
}

.br-header {
    background: linear-gradient(135deg, #0d3b6b, #4d9ffa);
    padding: 26px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.br-header-left { display: flex; align-items: center; gap: 18px; }

.br-header-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.18);
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: white;
}

.br-header-title h3 { font-size: 19px; font-weight: 700; color: white; margin-bottom: 5px; }
.br-header-title span { font-size: 12px; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }

.br-header-btn {
    padding: 12px 28px;
    background: white;
    color: var(--gov-blue);
    border-radius: 0;
    text-decoration: none;
    font-size: 14px; font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.br-header-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(77,159,250,0.25); }

.br-content { padding: 28px 36px; display: grid; grid-template-columns: 1fr 2fr; gap: 36px; }
.br-intro { border-right: 1px solid rgba(77,159,250,0.12); padding-right: 36px; }
.br-intro-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.br-intro-title i { color: var(--gov-blue); }
.br-intro-text { font-size: 13px; color: var(--text-light); line-height: 1.9; }

.br-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.br-menu-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 20px 16px;
    background: white;
    border-radius: 0;
    text-decoration: none; color: var(--text-dark);
    transition: all 0.35s;
    border: 1px solid transparent;
}
.br-menu-item:hover { border-color: var(--gov-blue); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(77,159,250,0.12); }

.br-menu-icon {
    width: 50px; height: 50px;
    background: rgba(77,159,250,0.08);
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gov-blue);
    margin-bottom: 12px;
    transition: all 0.35s;
}
.br-menu-item:hover .br-menu-icon { transform: scale(1.1); background: rgba(77,159,250,0.15); }
.br-menu-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.br-menu-desc { font-size: 11px; color: var(--text-light); }

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
    .belt-road-section { margin: 0 auto; }
    .br-content { grid-template-columns: 1fr; gap: 24px; }
    .br-intro { border-right: none; border-bottom: 1px solid rgba(77,159,250,0.12); padding-right: 0; padding-bottom: 20px; }
    .br-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .belt-road-section { margin: 0 auto; border-radius: 0; }
    .br-header { flex-direction: column; gap: 14px; text-align: center; padding: 20px 24px; }
    .br-header-left { flex-direction: column; }
    .br-content { padding: 20px 16px; }
    .br-header-btn { width: 100%; text-align: center; }
    .br-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .br-menu-item { padding: 16px 12px; }
    .br-menu-icon { width: 44px; height: 44px; font-size: 18px; }
    .br-menu-title { font-size: 13px; }
    .br-menu-desc { font-size: 10px; }
    .hero-search {
        padding: 5px 5px 5px 10px;
        gap: 6px;
        max-width: 100%;
    }
    .hero-search .search-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .hero-search input[type="text"] {
        font-size: 13px;
        padding: 8px 2px;
    }
    .hero-search input[type="text"]::placeholder {
        font-size: 13px;
    }
    .hero-search button[type="submit"] {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .br-menu-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .br-menu-item { padding: 14px 10px; }
    .br-menu-icon { width: 40px; height: 40px; font-size: 16px; }
    .br-menu-title { font-size: 12px; }
    .hero-search {
        padding: 4px 4px 4px 8px;
        gap: 5px;
    }
    .hero-search .search-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .hero-search input[type="text"] {
        font-size: 12px;
        padding: 6px 2px;
    }
    .hero-search input[type="text"]::placeholder {
        font-size: 12px;
    }
    .hero-search button[type="submit"] {
        padding: 7px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* ==================== News Grid ==================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-card {
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(77,159,250,0.12); border-color: var(--gov-blue); }

.news-card-img {
    height: 170px;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px; color: rgba(255,255,255,0.3);
    position: relative; overflow: hidden;
}
.news-card-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,59,107,0.15)); }
.news-card-body { padding: 22px; }

.news-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(77,159,250,0.1);
    color: var(--gov-blue);
    border-radius: 0;
    font-size: 12px; margin-bottom: 12px; font-weight: 500;
}

.news-card-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.news-card-title a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.news-card-title a:hover { color: var(--gov-blue); }

.news-card-desc {
    font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-date { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }

/* ==================== 新闻幻灯片 ==================== */
.news-top-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }

.news-slider-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    /*background: var(--gov-dark);*/
    box-shadow: 0 4px 20px rgba(13,59,107,0.1);
    height: 280px; min-height: 280px;
}

   .news-slider { position: relative; width: 100%; height: 280px; min-height: 280px; overflow: hidden; }
.swiper-container { width: 100%; height: 100%; min-height: 280px; }

/* 关键：权重高于后加载的 swiper-bundle.min.css，防止被 display:flex / position:relative 覆盖 */
.news-slider-wrapper .swiper-wrapper,
.news-slider .swiper-wrapper {
    display: block !important;
    position: relative !important;
    height: 100%;
    width: 100%;
    transform: none !important;
}

.news-slider-wrapper .swiper-slide,
.news-slider .swiper-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    transform: none !important;
}

.news-slider-wrapper .swiper-slide:first-child,
.news-slider .swiper-slide:first-child { opacity: 1; z-index: 2; }

.swiper-slide img { width: 100%; height: 280px; object-fit: cover; min-height: 280px; }

.swiper-slide .slide-placeholder {
    width: 100%; height: 280px; min-height: 280px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gov-blue), var(--gov-dark));
    font-size: 40px; color: rgba(255,255,255,0.2);
}

.slide-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 18px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(13,59,107,0.7) 50%, rgba(13,59,107,0.92) 100%);
    color: white;
}
.slide-tag {
    display: inline-block; padding: 2px 10px;
    background: var(--gov-blue);
    border-radius: 0; font-size: 11px; font-weight: 500; margin-bottom: 4px;
}
.slide-title { font-size: 16px; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
.slide-title a { color: white; text-decoration: none; transition: color 0.2s; }
.slide-title a:hover { color: #a8d4ff; }
.slide-desc {
    font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.slider-controls {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    display: flex; justify-content: space-between; padding: 0 12px;
    pointer-events: none; z-index: 10;
}
.slider-btn {
    width: 36px; height: 36px;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,0.35);
    background: rgba(13,59,107,0.4);
    backdrop-filter: blur(6px);
    color: white; font-size: 14px; cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gov-blue); border-color: #ffffff; }

.slider-dots {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10;
}
.slider-dots .dot {
    width: 8px; height: 8px; border-radius: 0;
    background: rgba(255,255,255,0.4);
    border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.slider-dots .dot.active { background: var(--gov-blue); width: 20px; border-radius: 0; }

/* ==================== 右侧：新闻栏目 ==================== */
.news-sidebar { display: flex; flex-direction: column; }
.news-sidebar .news-column {
    background: white;
    border-radius: 0;
    padding: 0 18px 16px;   /* 上边距 0，左右 18，下 16 */
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    flex: 1; display: flex; flex-direction: column; height: 100%; min-height: 280px;
}
.news-sidebar .news-column:hover { box-shadow: 0 8px 32px rgba(77,159,250,0.1); border-color: var(--gov-blue); }
.news-sidebar .news-column-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 12px;
    /*border-bottom: 2px solid var(--border);*/
    margin-bottom: 14px;
}
.news-sidebar .news-column-header h3 {
    font-size: 16px; font-weight: 700; color: var(--text-dark);
    display: flex; align-items: center; gap: 8px;
}
.news-sidebar .news-column-header h3 i { color: var(--gov-blue); }
.news-sidebar .news-column-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.news-sidebar .news-column-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f5f9ff; gap: 12px;
}
.news-sidebar .news-column-list li:last-child { border-bottom: none; }
.news-sidebar .news-column-list li a {
    font-size: 14px; color: var(--text-dark); text-decoration: none;
    transition: color 0.2s; flex: 1; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.news-sidebar .news-column-list li a:hover { color: var(--gov-blue); }
.news-sidebar .news-column-list .list-date { font-size: 12px; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }

/* ==================== 下方：2个子栏目 ==================== */
.news-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.news-bottom-grid .news-column {
    background: white; border-radius: 0;
    padding: 0px 22px 24px; border: 1px solid var(--border);
    transition: all 0.35s ease; display: flex; flex-direction: column;
}
.news-bottom-grid .news-column:hover { box-shadow: 0 8px 32px rgba(77,159,250,0.1); border-color: var(--gov-blue); }
.news-bottom-grid .news-column-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 6px;         /* 12 → 6 */
    /*border-bottom: 1px solid var(--border);   !* 2 → 1 *!*/
    margin-bottom: 8px;          /* 14 → 8 */
}
.news-bottom-grid .news-column-header h3 {
    font-size: 15px;             /* 16 → 15 */
    font-weight: 700;
    color: var(--text-dark);
    display: flex; align-items: center; gap: 6px;
    line-height: 1.2;
}
.news-bottom-grid .news-column-header h3 i { color: var(--gov-blue); }

.column-more {
    font-size: 12px; color: var(--text-light); text-decoration: none;
    display: flex; align-items: center; gap: 4px; transition: all 0.3s;
}
.column-more:hover { color: var(--gov-blue); gap: 8px; }

.news-bottom-grid .news-column-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.news-bottom-grid .news-column-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f5f9ff; gap: 12px;
}
.news-bottom-grid .news-column-list li:last-child { border-bottom: none; }
.news-bottom-grid .news-column-list li a {
    font-size: 14px; color: var(--text-dark); text-decoration: none;
    transition: color 0.2s; flex: 1; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.news-bottom-grid .news-column-list li a:hover { color: var(--gov-blue); }
.news-bottom-grid .news-column-list .list-date { font-size: 12px; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }

/* ==================== Two Column Layout ==================== */
/* ==================== Two Column Layout ==================== */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.content-card {
    border: 1px solid var(--border);
    border-radius: 0;
    background: white;
    overflow: hidden;
    transition: all 0.35s;
    padding: 1px 0;        /* 关键：上下留 1px */
}

.content-card:hover {
    box-shadow: 0 12px 40px rgba(77,159,250,0.1);
    border-color: var(--gov-blue);
}

.content-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin: 0;
    background: #4d9ffa;
    color: #ffffff;
}

.content-card-header h3 {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #ffffff;
}

.content-card-header h3 i {
    opacity: 0.95;
    color: #ffffff;
}

.content-card-header .section-more {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.content-card-header .section-more:hover {
    gap: 10px;
}

.content-card-body {
    padding: 0;
}

.content-list {
    list-style: none;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li:hover {
    background: rgba(26,58,143,0.03);
    padding-left: 28px;
}

.content-list .list-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: var(--gov-blue);
    flex-shrink: 0;
}

.content-list a {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.content-list a:hover { color: var(--gov-blue); }

.content-list .list-date {
    font-size: 12px;
    color: var(--text-light);
    flex-shrink: 0;
}
/* ==================== Partners Strip ==================== */
.partners-strip {
    background: var(--bg-light); padding: 50px 60px;
    border-radius: 0; max-width: 1280px; margin: 40px auto 0;
}
.partners-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--border);
}
.partners-title {
    font-size: 22px; font-weight: 700; color: var(--text-dark); letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px;
}
.partners-title::before {
    content: ''; width: 4px; height: 24px;
    background: linear-gradient(135deg, var(--gov-blue), #26c6da);
    border-radius: 0;
}
.partners-more {
    color: var(--gov-blue); text-decoration: none; font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 6px; transition: all 0.3s;
}
.partners-more:hover { gap: 10px; color: var(--gov-dark); }

.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.partner-item {
    background: white; border-radius: 0; padding: 24px 20px 20px;
    text-align: center; border: 1px solid var(--border);
    transition: all 0.35s ease; box-shadow: 0 2px 8px rgba(77,159,250,0.04);
    display: flex; flex-direction: column; align-items: center;
}
.partner-item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(77,159,250,0.12); border-color: var(--gov-blue); }

.partner-logo-img {
    width: 80px; height: 80px; border-radius: 0;
    object-fit: cover; border: 2px solid var(--border);
    background: white; padding: 4px; transition: all 0.35s; margin-bottom: 12px;
}
.partner-item:hover .partner-logo-img { border-color: var(--gov-blue); transform: scale(1.05); }

.partner-logo-icon {
    width: 80px; height: 80px; border-radius: 0;
    background: rgba(77,159,250,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--gov-blue); margin-bottom: 12px; flex-shrink: 0;
}
.partner-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
.partner-desc {
    font-size: 12px; color: var(--text-light); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    max-width: 100%;
}

/* ==================== 响应式（综合） ==================== */
@media (max-width: 1200px) {
    .module-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .news-top-row { grid-template-columns: 1fr; }
    .news-sidebar .news-column { min-height: auto; }
    .news-slider-wrapper, .news-slider, .swiper-container, .swiper-slide img, .swiper-slide .slide-placeholder { min-height: 200px; }
    .news-bottom-grid { grid-template-columns: 1fr 1fr; }
    .partners-strip { padding: 40px 30px; margin: 30px 20px 0; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .top-nav { padding: 0 24px; }
    .nav-menu { display: none; }
    .hero-banner { min-height: 180px; }
    .hero-content { padding: 24px; }
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 12px; }
    .hero-search { flex-wrap: wrap; }
    .hero-search select, .hero-search button { width: 100%; border-radius: 8px; }
    .hero-search select { border-right: none; border-bottom: 1px solid var(--border); }
    .content-section { padding: 28px 24px; }
    .news-section { margin: 0 24px !important; padding: 24px 16px !important; }
    .two-col-grid, .news-grid { grid-template-columns: 1fr; }
    .footer { padding: 40px 24px 140px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .module-grid { grid-template-columns: repeat(4, 1fr); }
    .partners-strip { padding: 32px 24px; }
    .partners-logos { gap: 24px; }
}

@media (max-width: 768px) {
    .news-slider-wrapper, .news-slider, .swiper-container, .swiper-slide img, .swiper-slide .slide-placeholder { min-height: 160px; }
    .slide-title { font-size: 14px; }
    .slide-desc { font-size: 11px; -webkit-line-clamp: 1; }
    .slide-overlay { padding: 12px 16px; }
    .news-bottom-grid { grid-template-columns: 1fr; gap: 16px; }
    .slider-btn { width: 28px; height: 28px; font-size: 11px; }
    .partners-strip { padding: 30px 20px; margin: 20px 16px 0; border-radius: 0; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .partners-title { font-size: 18px; }
    .partner-logo-img, .partner-logo-icon { width: 60px; height: 60px; font-size: 24px; }
    .partner-name { font-size: 13px; }
    .partner-desc { font-size: 11px; }
}

@media (max-width: 480px) {
    .news-slider-wrapper, .news-slider, .swiper-container, .swiper-slide img, .swiper-slide .slide-placeholder { min-height: 130px; }
    .slide-title { font-size: 13px; }
    .slide-desc { display: none; }
    .slide-tag { font-size: 10px; }
    .slide-overlay { padding: 12px 16px; }
    .news-sidebar .news-column-list li, .news-bottom-grid .news-column-list li { flex-wrap: wrap; gap: 4px; }
    .news-sidebar .news-column-list li a, .news-bottom-grid .news-column-list li a { -webkit-line-clamp: 2; font-size: 13px; width: 100%; }
    .partners-strip { padding: 24px 14px; margin: 16px 10px 0; border-radius: 0; }
    .partners-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .partner-item { padding: 16px 12px; }
    .partner-logo-img, .partner-logo-icon { width: 50px; height: 50px; font-size: 20px; }
    .partner-name { font-size: 12px; }
    .partner-desc { font-size: 10px; -webkit-line-clamp: 1; }
    .partners-header { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .partners-title { font-size: 16px; }
    .partners-title::before { height: 18px; }
    .partners-more { font-size: 12px; }
}