@charset "utf-8";
body{margin:0px; background:#ffffff; overflow-x:hidden;}
img{border:0px;}
.clear{clear:both;}
ul,li{margin:0px; padding:0px; list-style:none;}
.round{-moz-border-radius:5px; -webkit-border-radius:5px; border-radius: 5px;}
div,a,ul,li,input{transition-duration:0.5s;}
div:hover,a:hover,ul:hover,li:hover,input:hover{transition-duration:0.5s;}
img{border:0px;}
.clear{clear:both;}

        :root {
            --deep-blue: #0A1F44;
            --mid-blue: #123474;
            --gold: #B4943C;
            --gold-light: #C9A84C;
            --text-dark: #1A1F36;
            --text-gray: #5A6070;
            --bg-light: #F8F9FB;
            --white: #FFFFFF;
            --border: #E8ECF2;
            --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
            --shadow-md: 0 8px 24px rgba(10, 31, 68, 0.08);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        /* 顶部导航 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background 0.3s, box-shadow 0.3s;
            padding: 0 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            background: transparent;
            background: rgba(10, 31, 68, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
        }
        .header.scrolled {
            background: rgba(10, 31, 68, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
        }
        .logo {
            height: 40px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: var(--gold-light);
        }
        .header-actions {
            display: flex;
            gap: 16px;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.4);
            color: #FFF;
            padding: 10px 24px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            font-family: var(--font-sans);
        }
        .btn-outline:hover {
            border-color: var(--gold-light);
            color: var(--gold-light);
        }
        .btn-solid {
            background: linear-gradient(135deg, #B4943C, #C9A84C);
            border: none;
            color: #FFF;
            padding: 10px 24px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            font-family: var(--font-sans);
            box-shadow: 0 4px 12px rgba(180,148,60,0.3);
        }
        .btn-solid:hover {
            background: linear-gradient(135deg, #C9A84C, #DFC878);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(180,148,60,0.4);
        }

        /* 主视觉区 */
        .hero {
            background: linear-gradient(135deg, #0B1D3A 0%, #102A54 30%, #14366C 60%, #18428A 100%);
            padding: 160px 60px 120px;
            position: relative;
            overflow: hidden;
            color: #FFF;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -100px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(201,168,76,0.04);
            pointer-events: none;
        }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }
        .hero-text {
            flex: 1;
        }
        .hero-title {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }
        .hero-title span {
            color: var(--gold-light);
        }
        .hero-subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.65);
            max-width: 560px;
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .hero-search {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            border-radius: 48px;
            padding: 14px 24px;
            max-width: 500px;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            cursor: pointer;
            transition: 0.25s;
            margin-bottom: 40px;
        }
        .hero-search:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(201,168,76,0.5);
        }
        .hero-search svg {
            width: 22px;
            height: 22px;
            stroke: var(--gold-light);
            fill: none;
            stroke-width: 2;
            margin-right: 12px;
        }
        .hero-search input {
            background: transparent;
            border: none;
            color: #FFF;
            font-size: 16px;
            width: 100%;
            outline: none;
            font-family: var(--font-sans);
        }
        .hero-search input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        .hero-stats {
            display: flex;
            gap: 48px;
        }
        .stat-item .stat-num {
            font-size: 32px;
            font-weight: 800;
            color: #C9A84C;
        }
        .stat-item .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            margin-top: 4px;
        }
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        .hero-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 40px;
            width: 380px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        .hero-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #FFF;
            margin-bottom: 24px;
        }
        .hero-card .deal-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        .deal-item:last-child {
            border-bottom: none;
        }
        .deal-item .amount {
            color: var(--gold-light);
            font-weight: 600;
        }

        /* 内容区 */
        .section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 60px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 12px;
        }
        .section-header p {
            font-size: 17px;
            color: var(--text-gray);
        }

        /* 服务模块 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 32px 28px;
            border: 1px solid var(--border);
            transition: 0.25s;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(180,148,60,0.3);
        }
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(180,148,60,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: #B4943C;
            fill: none;
            stroke-width: 1.6;
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 8px;
        }
        .service-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* 活动宣传 */
        .promo-banner {
            background: linear-gradient(105deg, #E8EEF8 0%, #D4DFF0 100%);
            border-radius: 24px;
            padding: 48px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            border: 1px solid rgba(10,31,68,0.06);
        }
        .promo-text h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--deep-blue);
        }
        .promo-text p {
            font-size: 16px;
            color: var(--text-gray);
            margin-top: 8px;
        }
        .promo-btn {
            background: var(--deep-blue);
            color: #FFF;
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-family: var(--font-sans);
        }
        .promo-btn:hover {
            background: #123474;
        }

        /* 新闻动态 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }
        .news-card {
            background: #FFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: 0.25s;
            border: 1px solid var(--border);
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: linear-gradient(145deg, #E8EEF8, #C5D4EA);
        }
        .news-body {
            padding: 20px 24px;
        }
        .news-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-body .date {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* 项目展示 */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .project-card {
            background: #FFF;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: 0.25s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .project-card:hover {
            border-color: rgba(180,148,60,0.3);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .project-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }
        .project-tag {
            background: rgba(180,148,60,0.1);
            color: #7D6010;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 16px;
        }
        .project-amount {
            font-size: 22px;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .project-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .project-desc {
            font-size: 14px;
            color: var(--text-gray);
            flex: 1;
            margin-bottom: 16px;
        }
        .project-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border);
            padding-top: 14px;
            font-size: 13px;
            color: var(--text-gray);
        }
        .project-footer span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .project-footer svg {
            width: 14px;
            height: 14px;
            stroke: #9CA3AF;
            fill: none;
            stroke-width: 2;
        }
        .detail-link {
            color: var(--gold);
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
        }
        .detail-link:hover {
            text-decoration: underline;
        }

        /* 底部 */
        .footer {
            background: var(--deep-blue);
            padding: 40px 60px;
            color: rgba(255,255,255,0.6);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
        .footer a {
            color: var(--gold-light);
            text-decoration: none;
        }

        @media (max-width: 1200px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-content { flex-direction: column; }
            .hero-visual { justify-content: center; }
        }





        .container { max-width:1400px; margin:0 auto; padding:100px 60px 40px; }
        .page-title { font-size:36px; font-weight:700; color:var(--deep-blue); margin-bottom:10px; }
        .page-subtitle { color:var(--text-gray); font-size:16px; margin-bottom:30px; }
        .filter-bar { display:flex; align-items:center; gap:16px; margin-bottom:30px; flex-wrap:wrap; }
        .filter-group { display:flex; gap:10px; }
        .filter-tag {
            padding:8px 20px; border-radius:24px; font-size:14px; font-weight:600; cursor:pointer;
            border:1px solid #DDE1EA; background:var(--white); color:var(--text-gray); transition:0.2s;
        }
        .filter-tag.active { background:var(--deep-blue); color:#FFF; border-color:var(--deep-blue); }


        .sort-select {
            margin-left:auto; padding:8px 16px; border:1px solid #DDE1EA; border-radius:24px;
            font-size:14px; color:var(--text-gray); background:var(--white); cursor:pointer; outline:none;
        }


/* 分页容器 */
.page-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 20px;
    font-size: 14px;
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 分页链接通用样式 */
.page-box a,
.page-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    color: #5A6070;
    background: #FFFFFF;
    border: 1px solid #E8ECF2;
}

/* 悬停效果 */
.page-box a:hover {
    background: #F0F2F6;
    border-color: #B4943C;
    color: #0A1F44;
}

/* 当前页 */
.page-box span.current {
    background: #0A1F44;
    color: #FFFFFF;
    border-color: #0A1F44;
    font-weight: 600;
}

/* 不可点击的页码（省略号等） */
.page-box span.disabled {
    background: transparent;
    border-color: transparent;
    color: #9CA3AF;
    cursor: default;
}

/* 上一页/下一页按钮 */
.page-box a.prev,
.page-box a.next {
    padding: 0 14px;
    font-weight: 600;
}

/* 响应式：手机上缩小间距 */
@media (max-width: 768px) {
    .page-box {
        gap: 4px;
    }
    .page-box a,
    .page-box span {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 6px;
    }
}


/* 弹窗遮罩 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 弹窗主体 */
.modal {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.modal h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1F36;
    margin-bottom: 12px;
}

.modal-title-text {
    font-size: 14px;
    color: #5A6070;
    margin-bottom: 24px;
    line-height: 1.4;
}

.modal input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDE1EA;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.modal input:focus {
    border-color: #B4943C;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    border: 1px solid #E8ECF2;
    border-radius: 24px;
    background: #F8F9FB;
    cursor: pointer;
    font-weight: 600;
    color: #5A6070;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #E8ECF2;
}

.btn-submit {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(135deg, #B4943C, #C9A84C);
    color: #FFF;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(180, 148, 60, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #C9A84C, #DFC878);
    box-shadow: 0 6px 16px rgba(180, 148, 60, 0.4);
}

.btn-submit:disabled {
    background: #999;
    box-shadow: none;
    cursor: not-allowed;
}

/* ========== 新闻列表页 ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E8ECF2;
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.06);
    cursor: pointer;
    transition: all 0.25s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
}

.news-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #E8EEF8, #C5D4EA);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-img svg {
    width: 60px;
    height: 60px;
    stroke: rgba(10, 31, 68, 0.3);
    fill: none;
}

.news-img-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 31, 68, 0.75);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.news-body {
    padding: 20px 24px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    color: #1A1F36;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    font-size: 14px;
    color: #5A6070;
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #9CA3AF;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-meta svg {
    width: 14px;
    height: 14px;
    stroke: #9CA3AF;
    fill: none;
    stroke-width: 2;
}

/* ========== 新闻详情页 ========== */
.hero-article {
    background: linear-gradient(135deg, #0B1D3A, #14366C);
    padding: 100px 60px 80px;
    color: #FFF;
}

.hero-article .hero-inner {
        display: block;

    margin: 0 auto;
}

.hero-article .hero-badges {
    gap: 10px;
    margin-bottom: 20px;
}

.hero-article .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #D4DFF0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 18px;
}

.hero-article .hero-badge.hot {
    background: rgba(201, 168, 76, 0.25);
    color: #FFE8A0;
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.hero-article .hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-article .hero-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.hero-article .hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-article .hero-meta svg {
    width: 16px;
    height: 16px;
    stroke: #C9A84C;
    fill: none;
    stroke-width: 2;
}

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: #1A1F36;
}

.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.article-content h3 {
    font-size: 22px;
    color: #0A1F44;
    margin: 24px 0 12px;
}

.article-content p {
    margin-bottom: 16px;
}

/* 相关推荐 */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #F8F9FB;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.related-item:hover {
    background: #F0F2F6;
}

.related-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B4943C;
    flex-shrink: 0;
}

.related-title {
    flex: 1;
    font-size: 14px;
    color: #1A1F36;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-time {
    font-size: 12px;
    color: #9CA3AF;
    flex-shrink: 0;
}

/* 响应式 */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .hero-article .hero-title {
        font-size: 28px;
    }
}