/* =========================
   RESET
========================= */

:root{
    /* 58同城风格：橙色系（深→浅）+ 蓝色字体/链接 + 浅绿点缀 */
    --color-primary:#ff552e;
    --color-primary-dark:#e64520;
    --color-primary-mid:#ff7347;
    --color-primary-light:#fff0eb;
    --color-primary-lighter:#fff8f5;
    --color-accent:#0066cc;
    --color-accent-dark:#004d99;
    --color-accent-soft:#e8f3fc;
    --color-green:#5cb85c;
    --color-green-soft:#edf8ee;
    --color-green-text:#4a9d5f;
    --color-warm-bg:var(--color-primary-light);
    --color-warm-border:#ffd4c8;
    --border:#edf0f3;
    --text:#222;
    --text-muted:#666;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"PingFang SC","Microsoft YaHei",Arial,sans-serif;
    background:#f5f7fa;
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.container{
    width:1200px;
    margin:auto;
}
.region-select{
    display:flex;
    gap:12px;
}

.region-select select{

    min-width:100px;

    height:42px;

    padding:0 18px;

    border:none;

    border-radius:16px;

    background:white;

    font-size:15px;

    font-weight:600;

    color:#333;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.05);

    transition:0.2s;

    cursor:pointer;
}

.region-select select:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(255,85,46,.12);
}

.region-select select:focus{
    outline:none;
    border:2px solid var(--color-primary);
}
/* =========================
   NAV
========================= */

.nav{
    height:64px;
    background:linear-gradient(90deg,#ffe8e0 0%,#fff5f0 50%,#fffaf8 100%);
    border-bottom:3px solid var(--color-primary);
    box-shadow:0 2px 12px rgba(255,85,46,.1);
    position:sticky;
    top:0;
    z-index:100;
}

.nav-inner{
    width:1200px;
    height:64px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--color-primary);
    text-decoration:none;
    letter-spacing:.02em;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.nav-links > a{
    color:#333;
    font-size:14px;
    transition:.2s;
}

.nav-links > a:hover{
    color:var(--color-accent);
}

.nav-divider{
    width:1px;
    height:20px;
    background:#e5e7eb;
    flex-shrink:0;
}

.nav-auth{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.nav-auth-link{
    color:#555 !important;
    font-size:13px;
    font-weight:500;
    padding:4px 2px;
    white-space:nowrap;
}

.nav-auth-link:hover{
    color:var(--color-accent) !important;
}

.nav-auth-btn{
    height:32px;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    transition:.2s;
}

.nav-auth-btn--soft{
    background:var(--color-accent-soft);
    color:var(--color-accent) !important;
    border:1px solid #c5d9f7;
}

.nav-auth-btn--soft:hover{
    background:#dce8fc;
    color:var(--color-accent-dark) !important;
}

.nav-wechat{
    font-size:12px !important;
    color:#999 !important;
    white-space:nowrap;
}

.nav-wechat:hover{
    color:var(--color-accent) !important;
}

.city-select{
    height:38px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:0 14px;
    background:#fff;
    color:#333;
    font-size:14px;
}

.login-btn{
    height:32px;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    background:var(--color-accent-soft);
    color:var(--color-accent) !important;
    font-size:13px;
    font-weight:600;
    border:1px solid #c5d9f7;
}

.employer-guest{
    display:flex;
    align-items:center;
    gap:8px;
}

.employer-login-link{
    color:#555 !important;
    font-size:13px;
    font-weight:500;
}

.employer-login-link:hover{
    color:var(--color-accent) !important;
}

.employer-user{
    display:flex;
    align-items:center;
}

.employer-user-link{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#333;
    padding:4px 8px 4px 4px;
    border-radius:24px;
    transition:background .2s;
}

.employer-user-link:hover{
    background:var(--color-primary-light);
    color:var(--color-primary);
}

.employer-avatar{
    width:34px;
    height:34px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--color-primary),var(--color-primary-mid));
    color:#fff;
    font-size:15px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.employer-avatar--employer{
    background:linear-gradient(135deg,var(--color-primary),var(--color-primary-mid));
}

.employer-avatar--worker{
    background:linear-gradient(135deg,#2e7d32,#43a047);
}

.employer-avatar--company{
    background:linear-gradient(135deg,#1d6fd8,#4a90e8);
}

.employer-display-name{
    font-size:14px;
    font-weight:600;
    max-width:100px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    padding:28px 0 36px;
    background:linear-gradient(165deg,#ff552e 0%,#ff8a5c 18%,#ffc9b5 42%,#fff5f0 72%,#fffaf8 100%);
    overflow:hidden;
}

.page-home{
    background:#f7f8fa;
}

.hero-deco{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    opacity:.45;
}

.hero-deco--left{
    width:280px;
    height:280px;
    left:-80px;
    top:-60px;
    background:radial-gradient(circle,rgba(255,120,80,.35) 0%,transparent 70%);
}

.hero-deco--right{
    width:220px;
    height:220px;
    right:-40px;
    bottom:-40px;
    background:radial-gradient(circle,rgba(0,102,204,.12) 0%,transparent 70%);
}

.hero-inner{
    position:relative;
    z-index:1;
}

.hero-simple{
    background:#fff;
    border:1px solid var(--color-warm-border);
    border-radius:20px;
    padding:32px 36px 28px;
    text-align:center;
    box-shadow:0 12px 40px rgba(255,85,46,.12);
}

.hero-panel{
    background:linear-gradient(180deg,#ffffff 0%,var(--color-primary-lighter) 100%);
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    height:30px;
    padding:0 14px;
    border-radius:999px;
    background:var(--color-accent-soft);
    color:var(--color-accent);
    font-size:12px;
    font-weight:600;
    margin-bottom:16px;
    border:1px solid #b8d9f5;
}

.hero-simple h1{
    font-size:36px;
    font-weight:800;
    margin-bottom:12px;
    line-height:1.25;
    color:var(--color-accent);
}

.hero-simple p{
    color:var(--text-muted);
    font-size:15px;
    margin-bottom:24px;
    line-height:1.75;
}

/* =========================
   SEARCH
========================= */

.search-box{
    max-width:920px;
    margin:auto;
    background:#fff;
    border:2px solid var(--color-warm-border);
    border-radius:14px;
    padding:10px;
    display:flex;
    gap:10px;
    box-shadow:0 8px 24px rgba(255,85,46,.1);
}

.search-box input{
    flex:1;

    height:46px;

    border:none;

    background:#f7f8fa;

    border-radius:10px;

    padding:0 16px;

    font-size:14px;
}

.search-box input:focus{
    outline:none;
    background:#fff;
    border:1px solid var(--color-primary);
}

.search-box button{
    width:140px;
    height:46px;
    border:none;
    border-radius:10px;
    background:var(--color-primary);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
    box-shadow:0 4px 14px rgba(255,85,46,.35);
}

.search-box button:hover{
    background:var(--color-primary-dark);
}

.search-box .hero-btn-secondary{
    background:#fff;
    color:var(--color-primary);
    border:2px solid var(--color-primary);
    margin-left:0;
}
.search-box .hero-btn-secondary:hover{
    background:var(--color-primary-lighter);
}

.hero-search-hint{
    margin:12px 0 0;
    font-size:13px;
    color:rgba(255,255,255,0.85);
    line-height:1.5;
    text-align:center;
}

/* =========================
   SECTION
========================= */

.section{
    padding:30px 0;
}

.section-title{
    margin-bottom:26px;
    text-align:center;
}

.section-title h2{
    font-size:28px;
    margin-bottom:8px;
    color:var(--color-accent);
}

.recommend-section .recommend-block{
    margin-bottom:36px;
}
.recommend-block-head{
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:8px 16px;
    margin-bottom:16px;
    padding-bottom:12px;
    border-bottom:2px solid var(--color-primary-light);
}
.recommend-block--jobs .recommend-block-head{
    border-bottom-color:#ffd4c8;
}
.recommend-block-head h3{
    font-size:20px;
    color:var(--color-accent);
    margin:0;
}
.recommend-block-head p{
    font-size:14px;
    color:var(--text-muted);
    margin:0;
    flex:1;
    min-width:200px;
}
.recommend-more{
    font-size:14px;
    font-weight:600;
    color:var(--color-accent);
    white-space:nowrap;
}
.recommend-more:hover{
    text-decoration:underline;
}

.section-title p{
    color:#777;
    font-size:14px;
}

/* =========================
   SERVICE CARD
========================= */

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.service-card{
    background:#fff;

    border:1px solid #edf0f3;

    border-radius:16px;

    padding:24px;

    transition:.2s;
}

.service-card:hover{
    transform:translateY(-3px);
    border-color:var(--color-warm-border);
    box-shadow:0 8px 24px rgba(255,85,46,.1);
}

.service-icon{
    font-size:36px;
    margin-bottom:14px;
}

.service-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
    font-size:14px;
}

.service-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:34px;
    padding:0 16px;
    background:var(--color-primary-light);
    color:var(--color-primary);
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    border:1px solid var(--color-warm-border);
    transition:.2s;
}

.service-card a:hover{
    background:#ffe0d6;
    color:var(--color-primary-dark);
}

/* =========================
   TABS
========================= */

.tabs{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-bottom:24px;
}

.tabs button{
    height:40px;

    padding:0 22px;

    border:none;

    border-radius:999px;

    background:#fff;

    border:1px solid #edf0f3;

    color:#444;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.tabs button:hover,
.tabs button.active{
    background:var(--color-primary);
    color:#fff;
    border-color:var(--color-primary-dark);
    font-weight:700;
}

/* =========================
   LIST
========================= */

.list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.item{
    background:#fff;

    border:1px solid #edf0f3;

    border-radius:16px;

    padding:20px;

    transition:.2s;
}

.item:hover{
    transform:translateY(-2px);
    border-color:var(--color-warm-border);
    box-shadow:0 6px 20px rgba(0,0,0,.04);
}

.item-top{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:16px;
}

.avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--color-primary),var(--color-primary-mid));

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:20px;
    font-weight:700;
}

.item-name{
    font-size:16px;
    font-weight:700;
    color:var(--color-accent);
}

.item-sub{
    margin-top:4px;
    color:#777;
    font-size:13px;
}

.item-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
    margin-top:4px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    flex:1;
    min-width:0;
}

.tag{
    background:var(--color-green-soft);
    color:var(--color-green-text);
    padding:4px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:600;
    border:1px solid #c8e6c9;
}

.contact-btn{
    flex-shrink:0;
    height:30px;
    padding:0 12px;
    border:1px solid #b8d4f5;
    border-radius:6px;
    background:#fff;
    color:var(--color-accent);
    font-size:12px;
    font-weight:500;
    cursor:pointer;
    transition:.2s;
    white-space:nowrap;
}

.contact-btn:hover{
    background:var(--color-accent-soft);
    border-color:var(--color-accent);
    color:var(--color-accent-dark);
}

.list-loading{
    text-align:center;
    color:#999;
    padding:40px 0;
    grid-column:1 / -1;
}

/* =========================
   CTA
========================= */

.cta{
    margin-top:40px;

    background:#fff;

    border:1px solid #edf0f3;

    border-radius:18px;

    padding:34px;

    text-align:center;
}

.cta h2{
    font-size:28px;
    color:var(--color-accent);
    margin-bottom:12px;
}

.cta p{
    color:#666;
    font-size:14px;
    margin-bottom:20px;
}

.cta button{
    height:40px;
    padding:0 24px;
    border:none;
    border-radius:8px;
    background:var(--color-primary);
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(255,85,46,.3);
}

.cta button:hover{
    background:var(--color-primary-dark);
}

.cta-links{
    margin:18px 0 0;
    font-size:13px;
    color:#888;
}
.cta-links a{
    color:var(--color-accent);
    text-decoration:none;
    font-weight:600;
}
.cta-links a:hover{
    text-decoration:underline;
}
.cta-links span{
    margin:0 10px;
    color:#ddd;
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:50px;

    background:#fff;

    border-top:1px solid #edf0f3;

    padding:44px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:36px;
}

.footer h3{
    color:#222;
    margin-bottom:16px;
    font-size:16px;
}

.footer p,
.footer a{
    color:#777;
    line-height:2;
    font-size:14px;
}

.footer-bottom{
    margin-top:36px;

    padding-top:20px;

    border-top:1px solid #edf0f3;

    text-align:center;

    color:#999;
    font-size:13px;
}

/* =========================
   MODAL
========================= */

.modal-mask{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.45);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999;
}

.modal-box{
    width:360px;

    background:#fff;

    border-radius:18px;

    padding:28px;

    text-align:center;
}

.modal-box h3{
    font-size:24px;
    margin-bottom:10px;
    color:var(--color-accent);
}

.modal-box p{
    color:#777;
    margin-bottom:20px;
}

.modal-btn{
    width:100%;
    height:38px;
    border:none;
    border-radius:8px;
    margin-bottom:10px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.pay-btn{
    background:var(--color-primary-light);
    color:var(--color-primary);
    border:1px solid var(--color-warm-border);
}

.pay-btn:hover{
    background:#ffe0d6;
}

.help-btn{
    background:var(--color-green-soft);
    color:var(--color-green-text);
    border:1px solid #c8e6c9;
}

.help-btn:hover{
    background:#e2f5e4;
}

.close-btn{
    background:#f5f7fa;
    color:#666;
    border:1px solid #e5e7eb;
}

.item-detail-modal{
    display:none;
}
.item-detail-modal.show{
    display:flex;
}
.detail-modal-box{
    width:min(480px,92vw);
    max-height:88vh;
    overflow-y:auto;
    text-align:left;
}
.detail-modal-body p{
    margin:8px 0;
    font-size:14px;
    color:#333;
    line-height:1.55;
}
.detail-modal-body strong{
    color:#666;
    font-weight:600;
}
.item-detail-foot{
    margin-top:18px;
}
.item-clickable{
    cursor:pointer;
    transition:box-shadow .2s, transform .15s;
}
.item-clickable:hover{
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}
.match-item.item-clickable:hover{
    background:#fff8f5;
}
tr.row-clickable{
    cursor:pointer;
}
tr.row-clickable:hover td{
    background:#f8fafc;
}
.job-card.item-clickable:hover{
    border-color:var(--color-primary);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .container,
    .nav-inner{
        width:92%;
    }
}

@media(max-width:900px){

    .footer-grid,
    .card-grid,
    .list{
        grid-template-columns:1fr;
    }

    .nav-links{
        gap:12px;
        font-size:13px;
    }

    .hero-simple{
        padding:22px 18px;
    }

    .hero-simple h1{
        font-size:28px;
    }

    .hero-simple p{
        font-size:14px;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        width:100%;
    }

    .section{
        padding:24px 0;
    }
}


/* 错误状态 */

.input.error{
    border-color:#ff4d4f !important;
    background:#fff2f0;
}

.error-text{
    color:#ff4d4f;
    font-size:13px;
    margin-top:-6px;
}

/* =========================
   VOICE REMINDER (FAB)
========================= */

.vr-fab{
    position:fixed;
    right:24px;
    bottom:28px;
    z-index:900;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    width:62px;
    height:62px;
    border:none;
    border-radius:50%;
    background:linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
    color:#fff;
    cursor:pointer;
    box-shadow:0 6px 20px rgba(255,85,46,0.45);
    transition:transform .2s, box-shadow .2s;
}
.vr-fab:hover{
    transform:scale(1.06);
    box-shadow:0 8px 24px rgba(255,85,46,0.55);
}
.vr-fab.active{
    background:linear-gradient(145deg, var(--color-accent), var(--color-accent-dark));
    box-shadow:0 6px 20px rgba(0,102,204,0.4);
}
.vr-fab-icon{
    font-size:22px;
    line-height:1;
}
.vr-fab-label{
    font-size:11px;
    font-weight:600;
    letter-spacing:0.5px;
}

.vr-panel{
    position:fixed;
    right:24px;
    bottom:100px;
    z-index:901;
    width:340px;
    max-height:calc(100vh - 120px);
    overflow-y:auto;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 40px rgba(0,0,0,0.15);
    padding:20px;
    transform:translateY(12px) scale(0.96);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s, transform .25s;
}
.vr-panel.open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0) scale(1);
}
.vr-panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:8px;
}
.vr-panel-head h3{
    font-size:18px;
    color:var(--text);
}
.vr-panel-close{
    width:28px;
    height:28px;
    border:none;
    background:#f5f7fa;
    border-radius:50%;
    font-size:18px;
    color:#666;
    cursor:pointer;
    line-height:1;
}
.vr-panel-tip{
    font-size:12px;
    color:var(--text-muted);
    line-height:1.5;
    margin-bottom:16px;
}

.vr-mic-area{
    text-align:center;
    margin-bottom:16px;
}
.vr-mic-btn{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    width:88px;
    height:88px;
    border:2px solid var(--color-warm-border);
    border-radius:50%;
    background:var(--color-primary-lighter);
    cursor:pointer;
    transition:background .2s, border-color .2s, transform .2s;
}
.vr-mic-btn:hover{
    background:var(--color-primary-light);
    border-color:var(--color-primary);
}
.vr-mic-btn.listening{
    background:#fff0f0;
    border-color:#ff4d4f;
    animation:vr-pulse 1.2s ease-in-out infinite;
}
@keyframes vr-pulse{
    0%,100%{ transform:scale(1); }
    50%{ transform:scale(1.05); }
}
.vr-mic-icon{
    font-size:28px;
}
.vr-mic-text{
    font-size:12px;
    color:var(--text-muted);
    font-weight:600;
}
.vr-status{
    font-size:12px;
    color:var(--color-accent);
    margin-top:10px;
    min-height:18px;
}

.vr-preview{
    background:var(--color-accent-soft);
    border-radius:10px;
    padding:12px;
    margin-bottom:14px;
}
.vr-preview-label{
    font-size:11px;
    color:var(--text-muted);
    margin-bottom:4px;
}
.vr-preview-text{
    font-size:14px;
    color:var(--text);
    margin-bottom:6px;
    word-break:break-all;
}
.vr-preview-time{
    font-size:13px;
    color:var(--color-accent);
    font-weight:600;
    margin-bottom:10px;
}
.vr-preview-actions{
    display:flex;
    gap:8px;
}
.vr-btn{
    flex:1;
    height:36px;
    border:none;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}
.vr-btn-primary{
    background:var(--color-primary);
    color:#fff;
}
.vr-btn-primary:hover{
    background:var(--color-primary-dark);
}
.vr-btn-ghost{
    background:#fff;
    color:var(--text-muted);
    border:1px solid var(--border);
}

.vr-list-wrap{
    border-top:1px solid var(--border);
    padding-top:12px;
}
.vr-list-title{
    font-size:13px;
    font-weight:600;
    color:var(--text);
    margin-bottom:8px;
}
.vr-list{
    list-style:none;
    max-height:180px;
    overflow-y:auto;
}
.vr-list-empty{
    font-size:12px;
    color:#999;
    text-align:center;
    padding:12px 0;
}
.vr-list-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:8px 0;
    border-bottom:1px solid #f5f7fa;
}
.vr-list-item-main{
    flex:1;
    min-width:0;
}
.vr-list-time{
    display:block;
    font-size:11px;
    color:var(--color-primary);
    font-weight:600;
}
.vr-list-content{
    display:block;
    font-size:13px;
    color:var(--text);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.vr-list-del{
    flex-shrink:0;
    width:24px;
    height:24px;
    border:none;
    background:#f5f7fa;
    border-radius:50%;
    color:#999;
    font-size:16px;
    cursor:pointer;
    line-height:1;
}
.vr-list-del:hover{
    background:#fff2f0;
    color:#ff4d4f;
}

.vr-alert-mask{
    position:fixed;
    inset:0;
    z-index:1100;
    background:rgba(0,0,0,0.5);
    display:none;
    align-items:center;
    justify-content:center;
}
.vr-alert-mask.show{
    display:flex;
}
.vr-alert-box{
    width:min(360px, 90vw);
    background:#fff;
    border-radius:18px;
    padding:32px 28px;
    text-align:center;
    animation:vr-alert-in .35s ease;
}
@keyframes vr-alert-in{
    from{ transform:scale(0.85); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}
.vr-alert-bell{
    font-size:48px;
    margin-bottom:8px;
    animation:vr-bell-shake .6s ease .2s;
}
@keyframes vr-bell-shake{
    0%,100%{ transform:rotate(0); }
    20%{ transform:rotate(15deg); }
    40%{ transform:rotate(-12deg); }
    60%{ transform:rotate(8deg); }
    80%{ transform:rotate(-4deg); }
}
.vr-alert-box h3{
    font-size:22px;
    color:var(--color-primary);
    margin-bottom:6px;
}
.vr-alert-time{
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:10px;
}
.vr-alert-content{
    font-size:17px;
    color:var(--text);
    font-weight:600;
    line-height:1.5;
    margin-bottom:20px;
}
.vr-alert-ok{
    width:100%;
}

@media(max-width:480px){
    .vr-fab{
        right:16px;
        bottom:20px;
        width:56px;
        height:56px;
    }
    .vr-panel{
        right:12px;
        left:12px;
        width:auto;
        bottom:88px;
    }
}

/* =========================
   SEO LANDING PAGES
========================= */

.page-seo{
    background:#f5f7fa;
}
.seo-page{
    width:min(1200px,92%);
    margin:24px auto 60px;
}
.seo-breadcrumb{
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:16px;
    line-height:1.6;
}
.seo-breadcrumb a{
    color:var(--color-accent);
}
.seo-page h1{
    font-size:clamp(24px,4vw,34px);
    color:var(--color-accent);
    margin-bottom:12px;
    line-height:1.35;
}
.seo-intro{
    font-size:15px;
    color:var(--text-muted);
    line-height:1.75;
    margin-bottom:20px;
}
.seo-cta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:28px;
}
.seo-btn{
    display:inline-block;
    padding:10px 20px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    background:var(--color-primary);
    color:#fff;
}
.seo-btn:hover{
    background:var(--color-primary-dark);
    color:#fff;
}
.seo-btn-outline{
    background:#fff;
    color:var(--color-primary);
    border:1px solid var(--color-primary);
}
.seo-btn-soft{
    background:var(--color-accent-soft);
    color:var(--color-accent);
    border:1px solid #cce0f5;
}
.seo-section{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:22px 24px;
    margin-bottom:20px;
}
.seo-section h2{
    font-size:20px;
    color:var(--text);
    margin-bottom:14px;
}
.seo-list .seo-item,
.seo-list .item{
    margin-bottom:12px;
}
.seo-text{
    font-size:14px;
    color:var(--text-muted);
    line-height:1.75;
}
.seo-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.seo-tag{
    display:inline-block;
    padding:6px 14px;
    background:var(--color-primary-lighter);
    border:1px solid var(--color-warm-border);
    border-radius:20px;
    font-size:13px;
    color:var(--color-primary-dark);
}
.seo-tag:hover{
    background:var(--color-primary-light);
}
.seo-faq-item{
    border-bottom:1px solid #f0f2f5;
    padding:10px 0;
}
.seo-faq-item summary{
    cursor:pointer;
    font-weight:600;
    font-size:14px;
    color:var(--text);
}
.seo-faq-item p{
    margin-top:8px;
    font-size:14px;
    color:var(--text-muted);
    line-height:1.65;
}
.seo-hub-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap:12px;
}
.seo-hub-card{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    text-align:center;
    transition:box-shadow .2s, border-color .2s;
}
.seo-hub-card:hover{
    border-color:var(--color-primary);
    box-shadow:0 4px 16px rgba(255,85,46,0.12);
}
.seo-hub-name{
    font-size:15px;
    font-weight:600;
    color:var(--text);
}
.seo-hub-card--rich{
    text-align:left;
    align-items:flex-start;
}
.seo-hub-card--rich .seo-hub-sub{
    line-height:1.45;
    text-align:left;
}
.seo-priority-banner{
    border-color:var(--color-primary);
    background:var(--color-primary-lighter);
}

.list-more-bar{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-top:12px;
    padding:32px 20px 24px;
    border-top:1px dashed var(--color-warm-border);
    background:linear-gradient(180deg, rgba(255,248,245,0) 0%, var(--color-primary-lighter) 100%);
    border-radius:0 0 18px 18px;
}
.list-more-bar--compact{
    margin-top:4px;
    padding:24px 16px 18px;
    background:linear-gradient(180deg, rgba(255,248,245,0) 0%, #fafbfc 100%);
    border-top-color:var(--border);
}
.list-more-actions{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    width:100%;
}
.list-more-info{
    margin:0;
    font-size:15px;
    color:var(--text-muted);
    letter-spacing:.02em;
}
.list-more-end{
    margin:0;
    padding:6px 0 2px;
    font-size:14px;
    color:#b0b0b0;
}
.btn-list-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:240px;
    max-width:100%;
    padding:15px 40px;
    border-radius:999px;
    font-size:17px;
    font-weight:600;
    line-height:1.2;
    text-decoration:none;
    cursor:pointer;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    box-shadow:0 6px 20px rgba(255,85,46,.16);
}
.btn-list-more--fill{
    border:none;
    background:linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
    color:#fff;
}
.btn-list-more--fill:hover:not(:disabled){
    transform:translateY(-2px);
    box-shadow:0 10px 28px rgba(255,85,46,.28);
}
.btn-list-more--fill:active:not(:disabled){
    transform:translateY(0);
}
.btn-list-more--fill:disabled,
.btn-list-more.is-loading{
    opacity:.78;
    cursor:wait;
    transform:none;
}
.btn-list-more--outline{
    border:2px solid var(--color-primary);
    background:#fff;
    color:var(--color-primary);
    box-shadow:0 4px 16px rgba(255,85,46,.1);
}
.btn-list-more--outline:hover{
    background:var(--color-primary);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 28px rgba(255,85,46,.24);
    text-decoration:none;
}
.list-more-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border-radius:50%;
    font-size:14px;
    font-weight:700;
    line-height:1;
}
.btn-list-more--fill .list-more-icon{
    background:rgba(255,255,255,.22);
}
.btn-list-more--outline .list-more-icon{
    background:var(--color-primary-light);
    color:var(--color-primary);
    transition:background .22s ease, color .22s ease;
}
.btn-list-more--outline:hover .list-more-icon{
    background:rgba(255,255,255,.25);
    color:#fff;
}
.list-more-spinner{
    display:inline-block;
    width:16px;
    height:16px;
    margin-right:4px;
    border:2px solid rgba(255,255,255,.35);
    border-top-color:#fff;
    border-radius:50%;
    animation:list-more-spin .7s linear infinite;
    vertical-align:-2px;
}
@keyframes list-more-spin{
    to{ transform:rotate(360deg); }
}
#contentFooter .list-more-bar{
    margin-top:0;
    padding-top:28px;
    border-top:none;
    background:transparent;
}
@media (max-width:640px){
    .btn-list-more{
        min-width:min(100%, 280px);
        width:100%;
        padding:16px 24px;
        font-size:16px;
    }
    .list-more-bar{
        padding:28px 12px 20px;
    }
}
/* 兼容旧类名 */
.btn-load-more{ display:none; }
.list-more-link{ display:none; }