/* ========================================
   财信科技官网 - 主样式
   风格：国有企业对外信息发布
   主色调：深官方蓝 #1a4080 / 红色强调 #c0272d
   ======================================== */

/* ---- 变量 ---- */
:root {
    --primary:          #1A56DB;
    --primary-dark:     #1241AA;
    --primary-light:    #3B82F6;
    --primary-bg:       #EFF6FF;
    --primary-tag-bg:   #DBEAFE;
    --primary-tag-text: #1241AA;
    --red:              #DC2626;
    --red-light:        #FEF2F2;
    --gold:             #D97706;
    --gray-50:          #F8FAFC;
    --gray-100:         #F1F5F9;
    --gray-200:         #E2E8F0;
    --gray-300:         #CBD5E1;
    --gray-400:         #94A3B8;
    --gray-500:         #64748B;
    --gray-700:         #334155;
    --gray-900:         #0F172A;
    --footer-bg:        #0F2258;
    --footer-mid:       #172B6E;
    --border:           #E2E8F0;
    --shadow-sm:        0 1px 6px rgba(26,86,219,0.08);
    --shadow:           0 4px 20px rgba(26,86,219,0.13);
    --radius:           4px;
    --radius-lg:        8px;
    --container:        1200px;
}

/* ---- 重置补充 ---- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--gray-900);
    background: var(--gray-100);
    font-size: 14px;
    line-height: 1.75;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- 布局容器 ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- 通用按钮 ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-default { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn-default:hover { background: var(--primary); color: #fff; }
.btn-search { background: var(--primary); color: #fff; border: none; padding: 8px 20px; }
.btn-reset { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--border); padding: 8px 16px; }

/* ---- 状态标签 ---- */
.status-tag { display: inline-block; padding: 2px 10px; border-radius: 3px; font-size: 12px; font-weight: 500; }
.status-open   { background: #e8f5e9; color: #1b5e20; }
.status-close  { background: #fce4e4; color: #b71c1c; }
.status-pending { background: #fff8e1; color: #795548; }

/* ============================
   顶部信息栏
   ============================ */
.top-info-bar {
    background: linear-gradient(90deg, var(--footer-bg) 0%, #1A56DB 100%);
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    padding: 7px 0;
    border-bottom: none;
}
.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tib-left { display: flex; align-items: center; gap: 16px; }
.tib-right { display: flex; align-items: center; gap: 20px; }
.tib-right a { color: rgba(255,255,255,0.65); font-size: 12px; }
.tib-right a:hover { color: #fff; }
.tib-divider { color: rgba(255,255,255,0.2); }

/* ============================
   主导航 Header
   ============================ */
.main-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(26,86,219,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--primary);
}
.main-header .container {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 24px;
}

/* Logo */
.logo { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.logo img { height: 46px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.logo-sub { font-size: 11px; color: var(--gray-500); line-height: 1.4; margin-top: 2px; }

/* 主导航菜单 */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 70px;
}
.main-nav > ul > li { position: relative; height: 100%; display: flex; align-items: center; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.main-nav > ul > li > a:hover { color: var(--primary); background: var(--primary-bg); }
.main-nav > ul > li.selected > a,
.main-nav > ul > li.active > a {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,86,219,0.25);
}

/* 下拉菜单 */
.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 6px 20px rgba(26,64,128,0.14);
    display: none;
    z-index: 200;
    padding: 6px 0;
}
.main-nav > ul > li:hover .sub-nav { display: block; }
.sub-nav li a {
    display: block;
    padding: 9px 18px;
    font-size: 14px;
    color: var(--gray-700);
    transition: all 0.15s;
}
.sub-nav li a:hover { background: var(--primary-bg); color: var(--primary); }

/* 搜索框 */
.header-search { flex-shrink: 0; }
.header-search form {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-50);
    transition: border-color 0.2s;
}
.header-search form:focus-within { border-color: var(--primary); background: #fff; }
.header-search input {
    border: none; background: transparent;
    padding: 6px 14px; width: 150px; font-size: 13px;
    outline: none; color: var(--gray-900);
}
.header-search button {
    padding: 6px 12px; color: var(--gray-500);
    background: transparent; font-size: 15px; transition: color 0.2s;
}
.header-search button:hover { color: var(--primary); }

/* 移动端 */
.mobile-menu-btn {
    display: none; flex-shrink: 0; padding: 8px;
    border-radius: var(--radius); color: var(--gray-700); font-size: 22px; line-height: 1;
}
.mobile-menu-btn:hover { background: var(--gray-100); }
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--border); padding: 8px 16px 16px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 12px; font-size: 14px; color: var(--gray-700); border-radius: var(--radius); margin-bottom: 2px; }
.mobile-nav a:hover { background: var(--primary-bg); color: var(--primary); }
.mobile-nav a.active { background: var(--primary); color: #fff; }

/* ============================
   区块标题（左竖线风格）
   ============================ */
.section-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.section-title-bar .stb-line {
    width: 4px;
    height: 22px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title-bar h2,
.section-title-bar h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0.5px;
    margin: 0;
}
.section-title-bar .stb-more {
    margin-left: auto;
    font-size: 13px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}
.section-title-bar .stb-more:hover { color: var(--primary); }

/* ============================
   面包屑
   ============================ */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--primary-bg);
    padding: 11px 0;
}
.breadcrumb-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--gray-300); margin: 0 2px; }
.breadcrumb .current { color: var(--gray-900); font-weight: 500; }
.page-title h2 { font-size: 15px; color: var(--primary); font-weight: 600; }

/* ============================
   Banner 轮播
   ============================ */
.banner-section { position: relative; overflow: hidden; background: var(--footer-bg); }
.banner-carousel { position: relative; height: 480px; }
.banner-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.banner-slide.active { opacity: 1; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,34,88,0.72) 0%, rgba(26,86,219,0.35) 100%);
    display: flex; align-items: center; justify-content: center;
}
.banner-caption { text-align: center; color: #fff; padding: 0 20px; }
.banner-caption h2 {
    font-size: 38px; font-weight: 700; margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    letter-spacing: 2px;
}
.banner-caption p { font-size: 18px; color: rgba(255,255,255,0.88); text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.banner-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.22); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; border: 1px solid rgba(255,255,255,0.30); cursor: pointer;
}
.banner-btn:hover { background: rgba(255,255,255,0.45); }
.banner-prev { left: 20px; }
.banner-next { right: 20px; }
.banner-dots {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.banner-dot {
    width: 8px; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,0.45); border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
}
.banner-dot.active { background: #fff; width: 28px; }

/* ============================
   公告动态区块（首页）
   ============================ */
.announce-section { padding: 60px 0; background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%); }
.announce-section-head { margin-bottom: 28px; }

.announce-title-main {
    font-size: 22px; font-weight: 700; color: var(--gray-900);
    display: flex; align-items: center; gap: 12px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.5px;
}
.announce-title-main::before {
    content: '';
    display: inline-block;
    width: 4px; height: 22px;
    background: var(--primary); border-radius: 2px; flex-shrink: 0;
}

.announce-card {
    background: #fff;
    border: 1px solid #BFDBFE;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(26,86,219,0.07);
    overflow: hidden;
    margin-bottom: 28px;
}

.announce-item-new {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 15px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.18s, border-left-color 0.18s; color: inherit;
    border-left: 3px solid transparent;
    cursor: pointer;
}
.announce-item-new:last-child { border-bottom: none; }
.announce-item-new:hover {
    background: var(--primary-bg);
    border-left-color: var(--primary);
}

.ann-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }

.ann-tag {
    flex-shrink: 0;
    padding: 2px 8px;
    background: var(--primary-tag-bg);
    color: var(--primary-tag-text);
    font-size: 12px; font-weight: 600;
    border-radius: 3px; white-space: nowrap;
    border: none;
}

.ann-name {
    font-size: 14px; color: var(--gray-900);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0;
}
.announce-item-new:hover .ann-name { color: var(--primary); }

.ann-date {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; color: var(--gray-400); white-space: nowrap; flex-shrink: 0;
}
.ann-cal-icon { width: 13px; height: 13px; flex-shrink: 0; }

.announce-footer { display: flex; justify-content: center; }
.btn-more-announce {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 52px;
    background: var(--primary); color: #fff;
    border: 1px solid var(--primary); border-radius: var(--radius);
    font-size: 14px; font-weight: 500; transition: all 0.2s;
    letter-spacing: 0.5px; cursor: pointer;
    box-shadow: 0 2px 8px rgba(26,86,219,0.22);
}
.btn-more-announce:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

/* ============================
   通用区块标题（旧版兼容）
   ============================ */
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.section-title { font-size: 17px; font-weight: 700; color: var(--gray-900); }
.more-link { font-size: 13px; color: var(--gray-400); }
.more-link:hover { color: var(--primary); }

/* ============================
   侧边栏
   ============================ */
.list-layout, .detail-layout, .about-layout, .contact-layout {
    display: flex; gap: 24px; padding: 32px 0;
}
.sidebar { width: 220px; flex-shrink: 0; }
.list-main, .detail-main, .about-main, .contact-main { flex: 1; min-width: 0; }

.sidebar-block {
    background: #fff; border: 1px solid #BFDBFE;
    border-radius: var(--radius-lg); margin-bottom: 16px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(26,86,219,0.06);
}
.sidebar-title {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; font-size: 14px; font-weight: 600;
    padding: 13px 16px; letter-spacing: 0.5px;
}
.sidebar-nav { padding: 6px; }
.sidebar-nav li a {
    display: block; padding: 10px 14px;
    font-size: 14px; color: var(--gray-700);
    border-radius: var(--radius); transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
}
.sidebar-nav li a:hover {
    background: var(--primary-bg); color: var(--primary);
    border-left-color: var(--primary);
}
.sidebar-nav li.active a,
.sidebar-nav li.selected a {
    background: var(--primary-bg); color: var(--primary);
    font-weight: 600; border-left-color: var(--primary);
}

/* ============================
   列表页主体
   ============================ */
.list-section { background: var(--gray-100); min-height: 60vh; }

.announce-list-page {
    background: #fff; border: 1px solid #BFDBFE;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,86,219,0.06);
}
.announce-list-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 15px 22px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s, border-left-color 0.15s;
    border-left: 3px solid transparent;
    cursor: pointer;
}
.announce-list-item:last-child { border-bottom: none; }
.announce-list-item:hover {
    background: var(--primary-bg);
    border-left-color: var(--primary);
}
.announce-list-item:hover .ali-title { color: var(--primary); }

.announce-list-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.ali-tag {
    flex-shrink: 0; padding: 2px 8px;
    background: var(--primary-tag-bg); color: var(--primary-tag-text);
    font-size: 12px; border-radius: 3px; font-weight: 600; white-space: nowrap;
}
.ali-title {
    font-size: 14px; color: var(--gray-900);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ali-date { font-size: 13px; color: var(--gray-400); white-space: nowrap; flex-shrink: 0; }
.ali-empty { text-align: center; padding: 60px 20px; color: var(--gray-400); font-size: 14px; }
.announce-list-page:has(.announce-list-item) .ali-empty { display: none; }

/* ============================
   分页
   ============================ */
.pages { margin-top: 20px; }
.pagination {
    display: flex; justify-content: center;
    align-items: center; gap: 6px;
    padding: 8px 0;
}
.page-item {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 13px; color: var(--gray-700);
    background: #fff; transition: all 0.18s; white-space: nowrap;
    cursor: pointer;
}
.page-item:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.page-item.active, .page-item.current {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: 0 2px 6px rgba(26,86,219,0.25);
}
/* 兼容旧分页 */
.pagelist { display: flex; gap: 6px; list-style: none; }
.pagelist li a,
.pagelist li span {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 13px; color: var(--gray-700); background: #fff; transition: all 0.18s;
    cursor: pointer;
}
.pagelist li a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.pagelist li.active a,
.pagelist li.current a,
.pagelist .current {
    background: var(--primary); color: #fff !important; border-color: var(--primary);
}
.pagelist li.disabled a,
.pagelist li.disabled span { opacity: 0.4; cursor: not-allowed; }

/* ============================
   详情页
   ============================ */
.detail-page { background: var(--gray-100); padding: 36px 0 56px; min-height: 60vh; }
.detail-center { max-width: 860px; margin: 0 auto; }
.detail-body {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid #BFDBFE; padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(26,86,219,0.06);
}
.detail-page .detail-header { padding: 0 0 20px; border-bottom: 1px solid #DBEAFE; margin-bottom: 0; }
.detail-page .detail-content-wrap { padding: 28px 0 36px; }
.detail-page .detail-prev-next { padding: 16px 0; }

.detail-title {
    font-size: 22px; font-weight: 700; color: var(--gray-900);
    line-height: 1.6; margin-bottom: 16px; text-align: center;
    letter-spacing: 0.5px;
}
.detail-meta {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px; font-size: 13px; color: var(--gray-500);
}
.meta-item { display: flex; align-items: center; gap: 5px; }
.meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.meta-tag {
    padding: 2px 10px; border-radius: 3px;
    background: var(--primary-tag-bg); color: var(--primary-tag-text);
    font-size: 12px; font-weight: 600;
}
.meta-sep { color: var(--gray-300); }

.detail-content-wrap {
    border-top: 1px solid var(--gray-100);
}
.detail-content {
    font-size: 15px; line-height: 2.0; color: var(--gray-700); min-height: 200px;
}
.detail-content p { margin-bottom: 16px; }
.detail-content img { max-width: 100%; height: auto; }
.detail-content table { border-collapse: collapse; width: 100%; margin: 16px 0; }
.detail-content table th,
.detail-content table td { border: 1px solid var(--border); padding: 9px 12px; font-size: 14px; }
.detail-content table th { background: var(--gray-100); font-weight: 600; }

.detail-prev-next {
    border-top: 1px solid var(--border);
    padding-top: 16px; font-size: 13px; color: var(--gray-500);
    display: flex; flex-direction: column; gap: 6px;
}
.prenext { display: flex; gap: 8px; align-items: flex-start; }
.prenext a { color: var(--gray-700); flex: 1; }
.prenext a:hover { color: var(--primary); }

/* ============================
   关于我们
   ============================ */
.about-section { padding: 56px 0; background: #fff; }
.about-inner { display: flex; gap: 50px; align-items: center; }
.about-image { flex: 1; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 320px; object-fit: cover; }
.about-content { flex: 1; }
.about-text { font-size: 14px; color: var(--gray-500); line-height: 1.9; margin-bottom: 24px; }

/* ============================
   统计数据
   ============================ */
.stats-section { background: var(--primary); padding: 48px 0; }
.stats-list { display: flex; justify-content: space-around; }
.stats-item { text-align: center; color: #fff; }
.stats-num { font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 10px; color: #fff; }
.stats-num em { font-size: 24px; font-style: normal; vertical-align: top; opacity: 0.8; }
.stats-label { font-size: 15px; opacity: 0.85; }

/* ============================
   新闻列表
   ============================ */
.news-list li { border-bottom: 1px dashed var(--border); }
.news-list li:last-child { border-bottom: none; }
.news-list li a { display: flex; align-items: center; padding: 9px 0; color: var(--gray-700); gap: 8px; }
.news-list li a:hover .title { color: var(--primary); }
.news-list .dot { flex-shrink: 0; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.news-list .title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.news-list .date { flex-shrink: 0; color: var(--gray-400); font-size: 12px; }

/* ============================
   友情链接
   ============================ */
.links-section { padding: 26px 0; background: var(--gray-100); border-top: 1px solid var(--border); }
.links-section .section-title { font-size: 14px; margin-bottom: 12px; color: var(--gray-700); font-weight: 600; }
.links-list { display: flex; flex-wrap: wrap; gap: 8px; }
.links-list a {
    padding: 5px 14px; border: 1px solid var(--border);
    background: #fff; color: var(--gray-500); font-size: 13px;
    border-radius: var(--radius); transition: all 0.2s;
}
.links-list a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================
   页脚
   ============================ */
.main-footer {
    background: linear-gradient(180deg, var(--footer-bg) 0%, #060E2B 100%);
    color: rgba(255,255,255,0.75);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 52px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-col h4 {
    font-size: 15px; font-weight: 600; color: #fff;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 0.5px;
}

.footer-about-text {
    font-size: 13px; line-height: 1.9;
    color: rgba(255,255,255,0.55); margin-bottom: 18px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.60); }
.footer-contact-label { color: rgba(255,255,255,0.40); white-space: nowrap; flex-shrink: 0; }

.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-nav-list a:hover { color: #fff; }
.footer-nav-list a::before { content: '›'; margin-right: 6px; color: rgba(255,255,255,0.30); }

.footer-bottom {
    padding: 16px 0; display: flex;
    flex-direction: column; align-items: center; gap: 6px;
    text-align: center; font-size: 12px;
    color: rgba(255,255,255,0.30);
}
.footer-bottom a { color: rgba(255,255,255,0.30); }
.footer-bottom a:hover { color: rgba(255,255,255,0.60); }
.footer-bottom-links {
    display: flex; justify-content: center; gap: 24px;
}

/* ============================
   搜索结果页
   ============================ */
.search-section { padding: 36px 0; background: var(--gray-50); }
.search-bar-wrap {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px;
}
.search-form { display: flex; gap: 0; }
.search-form input {
    flex: 1; padding: 10px 16px;
    border: 2px solid var(--primary); border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 15px; outline: none;
}
.search-form button {
    padding: 10px 28px; background: var(--primary); color: #fff;
    font-size: 15px; border-radius: 0 var(--radius) var(--radius) 0; transition: background 0.2s;
}
.search-form button:hover { background: var(--primary-dark); }
.search-result-info { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.search-result-info em { color: var(--primary); font-style: normal; font-weight: 600; }

/* ============================
   回到顶部
   ============================ */
#back-top {
    position: fixed; right: 28px; bottom: 80px;
    width: 44px; height: 44px; line-height: 44px;
    text-align: center; background: var(--primary); color: #fff;
    border-radius: var(--radius-lg); font-size: 18px;
    display: none; z-index: 999; cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 10px rgba(26,64,128,0.30);
}
#back-top:hover { background: var(--primary-dark); }

/* ============================
   关于我们 / 联系我们
   ============================ */
.about-page-section { background: var(--gray-50); }
.about-content-wrap { display: flex; gap: 28px; margin-bottom: 28px; }
.about-content-wrap .about-image { width: 360px; flex-shrink: 0; border-radius: var(--radius-lg); overflow: hidden; }
.about-content-wrap .about-image img { height: 250px; object-fit: cover; }
.about-content-wrap .about-text { flex: 1; font-size: 14px; color: var(--gray-500); line-height: 1.9; }
.culture-section, .honor-section { margin-top: 36px; }
.culture-list { display: flex; gap: 18px; margin-top: 18px; }
.culture-item { flex: 1; text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 18px; transition: box-shadow 0.2s; }
.culture-item:hover { box-shadow: var(--shadow); }
.culture-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.culture-icon img { width: 100%; height: 100%; object-fit: contain; }
.culture-item h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.culture-item p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

.contact-section { background: var(--gray-50); }
.contact-info-wrap { display: flex; gap: 28px; margin-bottom: 36px; }
.contact-info-list { flex: 1; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 18px; margin-bottom: 10px;
    transition: box-shadow 0.2s;
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.contact-icon { width: 36px; height: 36px; flex-shrink: 0; }
.contact-icon img { width: 100%; }
.contact-text h4 { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.contact-text p { font-size: 13px; color: var(--gray-500); }
.contact-map { flex: 1.2; }

/* 表格 */
.tender-table-wrap, .result-table-wrap, .table-wrap { overflow-x: auto; }
.tender-table, .data-table { width: 100%; border: 1px solid var(--border); border-collapse: collapse; background: #fff; }
.tender-table th, .data-table th { background: var(--primary); color: #fff; padding: 12px 14px; font-size: 13px; font-weight: 600; text-align: left; border: none; }
.tender-table td, .data-table td { padding: 11px 14px; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--gray-700); }
.tender-table tbody tr:last-child td, .data-table tbody tr:last-child td { border-bottom: none; }
.tender-table tbody tr:hover td, .data-table tbody tr:hover td { background: var(--primary-bg); }

/* ============================
   响应式
   ============================ */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-inner { flex-direction: column; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-search { display: none; }
    .mobile-menu-btn { display: flex; margin-left: auto; }
    .top-info-bar { display: none; }
    .banner-carousel { height: 240px; }
    .banner-caption h2 { font-size: 22px; }
    .banner-caption p { font-size: 14px; }
    .list-layout, .detail-layout, .about-layout, .contact-layout { flex-direction: column; padding: 20px 0; }
    .sidebar { width: 100%; }
    .announce-section { padding: 32px 0; }
    .announce-title-main { font-size: 18px; }
    .footer-content { grid-template-columns: 1fr; padding: 32px 0 24px; }
    .about-content-wrap { flex-direction: column; }
    .about-content-wrap .about-image { width: 100%; }
    .contact-info-wrap { flex-direction: column; }
    .detail-title { font-size: 18px; }
    .detail-page .detail-header { padding: 0 0 16px; }
    .detail-page .detail-content-wrap { padding: 16px 0 24px; }
    .detail-page .detail-prev-next { padding: 12px 0; }
}
@media (max-width: 480px) {
    .ann-left { gap: 6px; }
    .ann-tag { font-size: 11px; padding: 2px 6px; }
    .announce-item-new { padding: 12px 16px; }
}
