* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 新增：页面外层容器，用于笔记本缩放，HTML结构需要把全部页面内容包裹在 <div class="page-wrap">...</div> */
.page-wrap {
    width: 100%;
}

body {
    font-family: "Microsoft YaHei", PingFangSC, system-ui, -apple-system, sans-serif;
    color: #1e293b;
    background:
        radial-gradient(circle at top left, rgba(21, 52, 97, 0.08), transparent 38%),
        linear-gradient(180deg, #f4f7fb 0%, #edf1f7 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

/* 顶部导航 */
.header-top {
    width: 100%;
    background: linear-gradient(90deg, #e6edf5 0%, #153461 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(8, 22, 41, 0.35);
    gap: 16px;
}

.header-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.logo-area {
    margin-left: 4vw;
    flex-shrink: 0;
}
.logo-area img {
    height: clamp(86px,8vh,98px);
}

.header-links {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.link-item {
    color: #e2e8f0;
    font-size: 14px;
    cursor: pointer;
    transition: 0.22s ease;
    border-radius: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.link-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.split {
    color: rgba(255, 255, 255, 0.55);
    flex-shrink:0;
}

/*曝光台高亮样式*/
.link-hot{
    color:#ffd782 !important;
    font-weight: bold;
    border:1px solid rgba(255,215,130,0.45);
    padding: 4px 6px;
    text-decoration: none;
    flex-shrink:0;
}
.link-hot:hover{
    background-color:rgba(255, 215, 130, 0.18) !important;
    color:#fff !important;
    text-decoration: none;
}

/* 首屏横幅 */
.banner-wrap {
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(11, 32, 60, 0.96), rgba(21, 52, 97, 0.96));
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.banner-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.btn-report {
    padding: 18px 64px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #c8102e, #a80e27);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.45);
    transition: 0.25s ease;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.btn-report:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.55);
}

/* 主体容器【压缩高度】 */
.content-wrap {
    margin: 10px ;
    padding: 0 16px;
    display: flex;
    gap: 18px;
    align-items: stretch;
}

/* 左栏：政策说明 */
.col-left {
    flex: 0 0 56%;
    min-width:0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 41, 77, 0.14);
    padding: 20px;
}

/* 右栏：受理范围 */
.col-right {
    flex: 1;
    min-width:0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 41, 77, 0.14);
    padding: 20px;
}

/* 模块标题 */
.block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 700;
    color: #0f294d;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 16px;
}

.block-title img {
    height: 24px;
}
.title-icon {
    width: 20px;
    height: 20px;
    stroke: #153461;
    flex-shrink: 0;
    margin-right:2px;
}
.warning-icon {
    stroke: #c8102e;
}

/* 政策卡片 */
.policy-item {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: 0.22s ease;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item:hover {
    box-shadow: 0 4px 18px rgba(15, 41, 77, 0.08);
    border-color: #cbd5e1;
}

.policy-item .label {
    font-size: 18px;
    font-weight: 700;
    color: #153461;
    margin-bottom: 8px;
}

.policy-item .text {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}

/* 特别提醒 */
.notice-wrap {
    margin-top: 20px;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border: 1px solid #fecdd3;
    border-radius: 12px;
    padding: 18px;
}

.notice-text {
    font-size: 15px;
    color: #991b1b;
    line-height: 1.75;
}

/* 受理范围 */
.range-desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 14px;
}

.range-list > div {
    padding: 12px 14px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 15px;
    color: #334155;
    transition: 0.2s;
}

.range-list > div:hover {
    background: rgba(21, 52, 97, 0.05);
    padding-left: 18px;
}

.range-list > div:last-child {
    border-bottom: none;
}

/* 底部区域：和头部深蓝呼应 */
.footer-wrap {
    width: 100%;
    background: linear-gradient(90deg, #0b203c 0%, #153461 50%, #0b203c 100%);
    color: #e2e8f0;
    padding: 8px 8px;
    margin-top: 7px;
    position: relative;
    overflow: hidden;
}

.footer-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-links {
    margin-top: 18px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #64748b;
}

/* 弹窗 */
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.wx-qrcode-img{
    display:block;
    width:220px;
    height:220px;
    margin:10px auto;
    border:1px solid #eee;
}
.pop-box {
    width: 92%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.pop-close {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
}

.pop-close:hover {
    color: #0f294d;
}

.pop-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f294d;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.pop-content-body {
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 26px;
}

.pop-confirm-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f294d, #153461);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.22s;
}

.pop-confirm-btn:hover {
    filter: brightness(1.08);
}

/*滚动入场动画*/
.scroll-animate-item{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}
.scroll-animate-item.active{
    opacity: 1;
    transform: translateY(0);
}

/* ====== 受理范围双列+卡片样式，对齐左侧policy-item视觉 ====== */
.range-two-col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}
.range-col{
    display:contents;
}

.range-group {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: 0.22s ease;
}
.range-group:hover {
    box-shadow: 0 4px 18px rgba(15, 41, 77, 0.08);
    border-color: #cbd5e1;
}
.range-group-title {
    font-size:18px;
    font-weight:700;
    color:#153461;
    margin-bottom:8px;
}
.range-group-list > div {
    font-size:15px;
    color:#475569;
    line-height:1.75;
    margin-bottom:6px;
    padding-left:4px;
    /* 移除 nowrap、ellipsis，开启自动换行 */
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.range-group-list > div:last-child{
    margin-bottom:0;
}


.range-full-row{
    width:100%;
}

/*==== 笔记本屏幕1024‑1366，整体缩放到60% ====*/
@media (max-width:1366px) and (min-width:993px){
    .page-wrap{
        transform: scale(0.6);
        transform-origin: top center;
    }
}

/* ========== 宽度小于等于 992px：电脑小屏/微信PC 保留双列，不改成上下 ========== */
@media (max-width: 992px) {
    .header-top {
        background: #153461;
        padding: 20px 20px;
        flex-direction: column;
    }
    .logo-area{
        display: none;
    }
    .header-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .header-links .split{
        display: none;
    }
    .header-links .link-item{
        border: 1px solid rgba(255,255,255,0.18) !important;
        border-radius: 20px !important;
        font-size: 13px !important;
        padding:5px 8px !important;
        white-space: nowrap !important;
    }
    .header-links .link-item[data-type="wx"]{
        display: none !important;
    }

    .banner-wrap {
        min-height: 360px;
    }

    .btn-report {
        padding: 16px 48px;
        font-size: 19px;
    }

    .content-wrap {
        flex-direction: row;
        margin: 10px;
        padding:0 16px;
        gap:16px;
    }
    .col-left {
        flex:0 0 54%;
        min-width:0;
        padding:16px;
    }
    .col-right {
        flex:1;
        min-width:0;
        padding:16px;
    }

    .footer-links{
        flex-wrap: wrap;
        max-height: 48px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom:6px;
    }
    .footer-links::-webkit-scrollbar{
        height:4px;
    }
    .footer-links::-webkit-scrollbar-thumb{
        background:rgba(255,255,255,0.15);
        border-radius:2px;
    }
}

/*768 真正手机端，切换单列，恢复文本换行*/
@media (max-width: 768px) {
    .banner-wrap {
        min-height: 300px;
    }

    .btn-report {
        padding: 14px 36px;
        font-size: 17px;
    }

    .content-wrap {
        flex-direction: column;
        padding: 0 16px;
        margin: 10px auto;
    }

    .col-left,
    .col-right {
        width: 100%;
        max-width:100%;
        flex: unset;
        min-width:0;
        padding: 18px 14px;
    }

    .footer-wrap {
        padding: 28px 16px;
    }

    .range-two-col{
        grid-template-columns: 1fr;
        gap:14px;
    }
    .range-group-list > div {
        white-space:normal;
        overflow:visible;
        text-overflow:unset;
    }
}

.avatar-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3b69a8, #4a80c7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 105, 168, 0.25);
}

.avatar-float img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
/* Windows系统缩放125%  devicePixelRatio≈1.25 */
@media (-webkit-min-device-pixel-ratio: 1.24), (min-resolution: 120dpi) {
    html {
        zoom: 0.8;
    }
}

/* Windows系统缩放150% devicePixelRatio≈1.5 */
@media (-webkit-min-device-pixel-ratio: 1.49), (min-resolution: 144dpi) {
    html {
        zoom: 0.68;
    }
}
