/**
 * 正派跨境 - Premium Design System
 * 经典简约 · 高级感
 */

/* === Tokens === */
:root {
    --p: #ff6a00;
    --p-d: #e55a00;
    --p-l: #ff8533;
    --t: #333;
    --t-2: #666;
    --t-3: #999;
    --bg: #fff;
    --bg-2: #f8f9fa;
    --bd: #dee2e6;
    --dk: #1a1a2e;
}

/* === Base === */
body { color: var(--t); font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--p); }

/* === BS Overrides === */
.shadow, .shadow-sm, .shadow-lg { box-shadow: none !important; }
:focus { box-shadow: none !important; }

/* Btn */
.btn { border-radius: 6px; font-weight: 500; }
.btn-primary { background: var(--p); border-color: var(--p); }
.btn-primary:hover { background: var(--p-d); border-color: var(--p-d); }

/* Card */
.card { border: 1px solid var(--bd); border-radius: 12px; }

/* Form */
.form-control, .form-select { border: 1.5px solid var(--bd); border-radius: 8px; padding: 10px 14px; }
.form-control:focus, .form-select:focus { border-color: var(--p); }

/* Dropdown */
.dropdown-menu { border: 1px solid var(--bd); border-radius: 10px; padding: 6px; }
.dropdown-item { border-radius: 6px; padding: 8px 12px; font-size: 14px; }
.dropdown-item:hover { background: var(--bg-2); color: var(--p); }
.dropdown-item.active { background: var(--p); }

/* Nav */
.nav-tabs { border-bottom: 1px solid var(--bd); }
.nav-tabs .nav-link { border: none; border-bottom: 2px solid transparent; color: var(--t-2); padding: 12px 16px; }
.nav-tabs .nav-link:hover { color: var(--p); }
.nav-tabs .nav-link.active { color: var(--p); border-bottom-color: var(--p); }

/* Pagination */
.page-link { border: 1px solid var(--bd); border-radius: 6px; color: var(--t); padding: 6px 12px; }
.page-link:hover { border-color: var(--p); color: var(--p); }
.page-item.active .page-link { background: var(--p); border-color: var(--p); }

/* === Header === */
.header {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--bd);
}
.header-row {
    display: flex; align-items: center;
    height: 64px; gap: 32px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon {
    width: 36px; height: 36px;
    background: var(--p);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; font-weight: 700;
}
.logo-text { font-size: 18px; font-weight: 700; color: var(--dk); letter-spacing: -0.01em; }

/* Nav */
.nav-main { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px; border-radius: 8px;
    transition: background 0.2s;
}
.nav-zh { font-size: 14px; font-weight: 500; color: var(--t); }
.nav-en { font-size: 10px; color: var(--t-3); text-transform: uppercase; letter-spacing: 0.05em; }
.nav-item:hover { background: var(--bg-2); }
.nav-item:hover .nav-zh { color: var(--p); }
.nav-item.active .nav-zh { color: var(--p); }

/* User */
.header-user, .mobile-user { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mobile-user { flex-shrink: 0; }

/* Nav User Mobile */
.nav-user-mobile { display: none; }

/* User Buttons */
.btn-login, .btn-reg {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; font-size: 14px; font-weight: 500;
    border-radius: 6px; transition: all 0.2s;
}
.btn-login { color: var(--t); }
.btn-login:hover { background: var(--bg-2); color: var(--p); }
.btn-reg { background: var(--p); color: #fff; }
.btn-reg:hover { background: var(--p-d); color: #fff; }

/* User Logged */
.user-info { position: relative; }
.user-trigger {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 20px;
    background: var(--bg-2); cursor: pointer;
    transition: all 0.2s;
}
.user-trigger:hover { background: var(--bg); outline: 1px solid var(--p); }
.user-avatar {
    width: 28px; height: 28px;
    background: var(--p); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px; font-weight: 600;
}
.user-name { font-size: 14px; font-weight: 500; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-trigger i { font-size: 12px; color: var(--t-3); }

/* Nav Toggle */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 6px;
    border-radius: 6px;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--t); border-radius: 1px; transition: all 0.25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Footer === */
.footer { background: var(--dk); color: #fff; }
.footer-main { padding: 56px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 2fr; gap: 48px; }

/* Brand */
.brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.brand-icon {
    width: 36px; height: 36px;
    background: var(--p); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; font-weight: 700;
}
.brand-text { font-size: 18px; font-weight: 700; color: #fff; }
.brand-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }

.social { display: flex; gap: 8px; }
.social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 14px;
    transition: all 0.2s;
}
.social a:hover { background: var(--p); color: #fff; }

/* Col */
.footer-col h4 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--p); }

/* QR */
.footer-qr h4 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.qr-list { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 40px; position: relative; }
.qr-item { text-align: center; position: relative; cursor: pointer; }
.qr-img {
    width: 60px; height: 60px;
    background: #fff; border-radius: 8px;
    padding: 4px; margin-bottom: 4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qr-item:hover .qr-img {
    transform: scale(2.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative;
    z-index: 999;
}
.qr-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.qr-name { font-size: 11px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.qr-item:hover .qr-name { color: #fff; }

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
}
.footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom strong { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .sep { margin: 0 8px; opacity: 0.3; }
.footer-bottom .links { display: flex; align-items: center; gap: 0; }

/* === Page Header === */
.page-header { background: var(--p); color: #fff; padding: 72px 0; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.page-header p { font-size: 15px; opacity: 0.85; }

/* === Section === */
.section { padding: 48px 0; }
.section--platforms { padding: 0 0 48px; }
.section--banner { padding: 0 0 48px; }
.section--main { padding: 0 0 48px; }
.section--insight { padding: 0 0 48px; }
.section--providers { padding: 0 0 48px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.section-head .section-title { margin-bottom: 0; }
.section-more { font-size: 13px; color: var(--t-2); transition: color 0.2s; white-space: nowrap; }
.section-more:hover { color: var(--p); }
.section-title { font-size: 20px; font-weight: 700; margin-bottom: 0; display: flex; align-items: center; gap: 8px; }
.section-title i { color: var(--p); }

/* === Empty === */
.empty { text-align: center; padding: 64px 20px; color: var(--t-3); }
.empty i { font-size: 48px; color: var(--bd); margin-bottom: 12px; }

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
    .header-row { height: 56px; gap: 16px; }
    .logo-text { font-size: 16px; }
    .nav-main {
        position: fixed; top: 56px; left: 0; right: 0; bottom: 0; z-index: 99;
        background: var(--bg); padding: 16px 16px 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    .nav-main.show { transform: translateX(0); }
    body.nav-open::before {
        content: '';
        position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 98;
    }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-item { flex-direction: row; justify-content: space-between; padding: 14px 16px; border-radius: 8px; }
    .nav-user-mobile { display: flex; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--bd); }
    .nav-user-mobile .btn-login, .nav-user-mobile .btn-reg { flex: 1; justify-content: center; }
    .nav-toggle { display: flex; margin-left: auto; }
    .nav-en { display: none; }
    .activity-filter-bar { top: 56px; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .qr-list { gap: 12px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
}

/* === Hero === */
.hero { padding: 32px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
.hero-main { position: relative; overflow: hidden; border-radius: 12px; }

/* Hero Slider */
.hero-slider { position: relative; overflow: hidden; border-radius: 12px; }
.hero-slides { display: flex; transition: transform 0.5s ease; }
.hero-slide { min-width: 100%; }
.hero-card {
    display: block; position: relative;
    border-radius: 0; overflow: hidden;
    background: #1a1a2e; min-height: 400px;
}
.hero-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: #fff; }
.hero-tag {
    display: inline-block; background: var(--p); color: #fff;
    font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.hero-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.hero-brief { font-size: 14px; opacity: 0.85; line-height: 1.6; }

/* Hero Arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.4); border: none;
    color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transition: opacity 0.3s;
    z-index: 2;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(0,0,0,0.6); }
.hero-prev { left: 12px; }
.hero-next { right: 12px; }

/* Hero Dots */
.hero-dots {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 2;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer;
    transition: all 0.3s;
}
.hero-dot.active { background: #fff; width: 20px; border-radius: 4px; }

/* Hero Side */
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.hero-side-item {
    display: block; position: relative;
    border-radius: 12px; overflow: hidden; min-height: 120px;
}
.hero-side-item img { width: 100%; height: 120px; object-fit: cover; }
.hero-side-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 60%);
}
.hero-side-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; color: #fff; }
.hero-side-tag {
    display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 6px;
    border-radius: 3px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.hero-side-item:nth-child(1) .hero-side-tag { background: #E53935; }
.hero-side-item:nth-child(2) .hero-side-tag { background: #FF6D00; }
.hero-side-item:nth-child(3) .hero-side-tag { background: #1E88E5; }
.hero-side-title { font-size: 13px; font-weight: 600; line-height: 1.4; }

/* === Platforms === */
.section--platforms .platform-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.platform-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 20px 12px; border-radius: 10px;
    border: 1px solid var(--bd); background: var(--bg);
    transition: border-color 0.2s, transform 0.2s;
}
.platform-item:hover { border-color: var(--p); transform: translateY(-2px); }
.platform-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; margin-bottom: 10px;
}
.platform-name { font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 2px; }
.platform-item small { font-size: 11px; color: var(--t-3); }

/* === CTA Strip === */
.cta-strip { background: var(--dk); padding: 28px 0; margin: 40px 0 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; }
.cta-left h3 { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.cta-left h3 i { color: var(--p); margin-right: 8px; }
.cta-left p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }
.cta-inner .btn-primary { padding: 10px 24px; font-size: 14px; }

/* === Main Section === */
.main-section { padding: 40px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.content-main {}
.content-side { display: flex; flex-direction: column; gap: 20px; }

/* === News Box === */
.news-box { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 20px; }
.box-head { display: flex; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.box-title { font-size: 17px; font-weight: 700; color: var(--t); margin: 0; display: flex; align-items: center; gap: 8px; }
.box-title i { color: var(--p); }
.box-head .more { margin-left: auto; font-size: 13px; color: var(--t-2); }
.box-head .more:hover { color: var(--p); }

/* News Tabs */
.news-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.news-tabs .tab {
    padding: 6px 14px; font-size: 13px; font-weight: 500;
    border: none; border-radius: 6px; background: transparent;
    color: var(--t-2); cursor: pointer; transition: all 0.2s;
    user-select: none;
}
.news-tabs .tab:hover { background: var(--bg-2); color: var(--p); }
.news-tabs .tab.active { background: var(--p); color: #fff; }
.news-tabs .tab:focus { outline: none; }

/* News Item */
.news-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--bd);
}
.news-item:last-child { border-bottom: none; }
.news-thumb { flex-shrink: 0; width: 140px; height: 90px; border-radius: 8px; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { flex: 1; min-width: 0; }
.news-title { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.news-title a { color: var(--t); }
.news-title a:hover { color: var(--p); }
.badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 5px; border-radius: 3px; margin-right: 4px; }
.badge-top { background: var(--p); color: #fff; }
.badge-hot { background: #E53935; color: #fff; }
.news-brief { font-size: 13px; color: var(--t-2); line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--t-3); }
.news-meta .tag { background: var(--bg-2); padding: 2px 8px; border-radius: 4px; font-size: 11px; }

/* === Activity Box === */
.activity-box { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 20px; margin-top: 24px; }
.activity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.activity-card { display: flex; gap: 12px; border: 1px solid var(--bd); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; }
.activity-card:hover { border-color: var(--p); }
.activity-img { width: 72px; flex-shrink: 0; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-body { padding: 10px 12px 10px 0; }
.activity-body h4 { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; color: var(--t); }
.activity-body p { font-size: 12px; color: var(--t-3); margin: 0; }

/* Activity Item Full (一行一个) */
.activity-item-full {
    display: flex; gap: 16px; padding: 16px;
    border: 1px solid var(--bd); border-radius: 10px;
    margin-bottom: 12px; transition: border-color 0.2s;
    color: var(--t);
}
.activity-item-full:last-child { margin-bottom: 0; }
.activity-item-full:hover { border-color: var(--p); color: var(--t); }
.activity-full-img { width: 200px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.activity-full-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-full-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.activity-full-title { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; color: var(--t); }
.activity-full-desc { font-size: 13px; color: var(--t-2); line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.activity-full-meta { display: flex; gap: 16px; font-size: 12px; color: var(--t-3); }
.activity-full-meta i { margin-right: 4px; }
.activity-body p i { margin-right: 4px; }

/* === Side Boxes === */
.side-box { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 18px; }
.side-head { font-size: 15px; font-weight: 700; color: var(--t); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.side-head i { color: var(--p); }

/* Anniversary Banner */
.side-anniversary {
    display: flex; align-items: center; gap: 12px;
    background: #1a1a2e; border-color: #1a1a2e;
    color: #fff; cursor: pointer; transition: transform 0.2s;
    text-decoration: none;
}
.side-anniversary:hover { transform: translateY(-2px); color: #fff; }
.sa-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--p); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
}
.sa-info { flex: 1; }
.sa-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 3px; background: var(--p); color: #fff; margin-bottom: 4px; }
.sa-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.sa-desc { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; }
.sa-arrow { font-size: 16px; color: rgba(255,255,255,0.5); }

/* Side Banner (image) */
.side-banner { display: block; position: relative; border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
.side-banner:hover { transform: translateY(-2px); }
.side-banner img { width: 100%; height: 140px; object-fit: cover; display: block; }
.side-banner-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.side-banner-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 3px; background: var(--p); color: #fff; margin-bottom: 4px; }
.side-banner-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.side-banner-desc { font-size: 12px; color: rgba(255,255,255,0.8); margin: 0; }

/* Search Box */
.search-box { display: flex; gap: 8px; }
.search-box .form-control { flex: 1; }
.search-box .btn { padding: 8px 16px; }

/* Hot List */
.hot-list { display: flex; flex-direction: column; }
.hot-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bg-2); }
.hot-item:last-child { border-bottom: none; }
.hot-num { width: 18px; height: 18px; border-radius: 4px; background: var(--bg-2); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--t-2); }
.hot-num.top { background: var(--p); color: #fff; }
.hot-title { font-size: 13px; color: var(--t); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hot-item:hover .hot-title { color: var(--p); }

/* Service Grid */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.service-item { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; font-size: 13px; font-weight: 500; border-radius: 8px; border: 1px solid var(--bd); color: var(--t); transition: all 0.2s; }
.service-item:hover { border-color: var(--p); color: var(--p); background: rgba(255,106,0,0.04); }
.service-item i { color: var(--p); }

/* Course List */
.course-list { display: flex; flex-direction: column; gap: 12px; }
.course-item { display: flex; gap: 10px; }
.course-item img { width: 80px; height: 52px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.course-info h4 { font-size: 13px; font-weight: 600; color: var(--t); margin-bottom: 2px; }
.course-info p { font-size: 12px; color: var(--t-3); margin: 0; }

/* Ask List */
.ask-list { display: flex; flex-direction: column; }
.ask-item { padding: 10px 0; font-size: 13px; color: var(--t); border-bottom: 1px solid var(--bg-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ask-item:last-child { border-bottom: none; }
.ask-item:hover { color: var(--p); }

/* === Bottom CTA === */
.bottom-cta { background: var(--p); padding: 60px 0; text-align: center; }
.cta-box h2 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 24px; }
.btn-light { background: #fff; border-color: #fff; color: var(--p); font-weight: 600; }
.btn-light:hover { background: var(--bg-2); border-color: var(--bg-2); color: var(--p-d); }

/* === Utility === */
.text-center { text-align: center; }
.text-muted { color: var(--t-3); }
.mt-3 { margin-top: 1rem; }
.w-100 { width: 100%; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* === zp-page-header (reusable page header) === */
.zp-page-header { padding-top: 2rem ; }

/* === zp-section === */
.zp-section { padding: 48px 0; }
.zp-section-title { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.zp-section-subtitle { font-size: 14px; color: var(--t-2); text-align: center; margin-bottom: 32px; }

/* === Page Banners === */
.page-banner { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; }

/* === Category Tabs === */
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0; justify-content: center; }
.category-tab {
    padding: 8px 20px; font-size: 14px; font-weight: 500;
    border: 1px solid var(--bd); border-radius: 20px;
    cursor: pointer; transition: all 0.2s;
    color: var(--t); background: var(--bg);
}
.category-tab:hover { border-color: var(--p); color: var(--p); }
.category-tab.active { background: var(--p); border-color: var(--p); color: #fff; }

/* === Industry Grid === */
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-card {
    background: var(--bg); border-radius: 12px; padding: 20px 16px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    border: 1px solid var(--bd);
}
.industry-card:hover { border-color: var(--p); transform: translateY(-2px); }
.industry-icon { font-size: 32px; margin-bottom: 10px; }
.industry-name { font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 4px; }
.industry-desc { font-size: 12px; color: var(--t-3); }

/* === Products Grid === */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
    background: var(--bg); border-radius: 12px; overflow: hidden;
    border: 1px solid var(--bd); transition: all 0.2s; cursor: pointer;
}
.product-card:hover { border-color: var(--p); }
.product-img { width: 100%; height: 200px; object-fit: cover; }
.product-body { padding: 16px; }
.product-name { font-size: 14px; font-weight: 500; color: var(--t); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price { font-size: 18px; font-weight: 700; color: #E53935; }
.product-original { font-size: 13px; color: var(--t-3); text-decoration: line-through; margin-left: 6px; }
.product-moq { font-size: 12px; color: var(--t-3); margin-top: 4px; }
.discount-badge { display: inline-block; background: #E53935; color: #fff; font-size: 11px; font-weight: 600; padding: 2px 6px; border-radius: 4px; margin-left: 8px; }

/* === Pagination === */
.product-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pagination-item {
    min-width: 40px; height: 40px; padding: 0 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg); border: 1px solid var(--bd);
    border-radius: 6px; font-size: 14px; color: var(--t); cursor: pointer; transition: all 0.2s;
}
.pagination-item:hover { border-color: var(--p); color: var(--p); }
.pagination-item.active { background: var(--p); border-color: var(--p); color: #fff; }
.pagination-item.disabled { opacity: 0.5; cursor: not-allowed; }
.pagination .form-select {
    padding: .375rem 2.25rem .375rem .75rem !important;
}
.pagination .page-item{
    padding:0 !important;
    border:none !important;
    margin: 0 4px 0;
}

/* === Service Categories === */
.service-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-cat-card {
    background: var(--bg); border-radius: 12px; padding: 28px 20px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    border: 1px solid var(--bd);
}
.service-cat-card:hover { border-color: var(--p); transform: translateY(-2px); }
.service-cat-icon { font-size: 40px; margin-bottom: 12px; }
.service-cat-name { font-size: 15px; font-weight: 600; color: var(--t); }

/* === Provider Cards === */
.provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.provider-card {
    background: var(--bg); border-radius: 12px; padding: 20px;
    border: 1px solid var(--bd); transition: all 0.2s; cursor: pointer;
}
.provider-card:hover { border-color: var(--p); }
.provider-header { display: flex; gap: 14px; margin-bottom: 14px; }
.provider-logo {
    width: 64px; height: 64px; border-radius: 10px;
    background: var(--p); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px; font-weight: 700; flex-shrink: 0;
}
.provider-info { flex: 1; }
.provider-name { font-size: 16px; font-weight: 600; color: var(--t); margin-bottom: 6px; }
.provider-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.provider-tag { padding: 3px 8px; background: var(--bg-2); border-radius: 4px; font-size: 12px; color: var(--t-2); }
.provider-contact { font-size: 13px; color: var(--t-3); margin-bottom: 4px; }
.provider-desc { font-size: 13px; color: var(--t-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.provider-footer { display: flex; justify-content: flex-end; }
.btn-outline-primary { border: 1px solid var(--p); color: var(--p); background: transparent; border-radius: 6px; padding: 8px 20px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.btn-outline-primary:hover { background: var(--p); color: #fff; }

/* === Provider Modal === */
.provider-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.provider-modal.show { display: flex; }
.provider-modal-content { background: var(--bg); border-radius: 12px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; }
.provider-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--bd); }
.provider-modal-title { font-size: 18px; font-weight: 700; color: var(--t); }
.provider-modal-close { background: none; border: none; font-size: 24px; color: var(--t-3); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.provider-modal-close:hover { background: var(--bg-2); color: var(--t); }
.provider-modal-body { padding: 24px; }
.provider-modal-section { margin-bottom: 16px; }
.provider-modal-label { font-size: 13px; font-weight: 600; color: var(--t-3); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.provider-modal-text { font-size: 14px; color: var(--t); line-height: 1.6; }
.provider-modal-qr { background: var(--bg-2); border-radius: 10px; padding: 20px; text-align: center; margin-top: 16px; }
.provider-modal-qr img { width: 140px; height: 140px; border-radius: 8px; margin-bottom: 8px; }
.provider-modal-qr p { font-size: 13px; color: var(--t-3); margin: 0; }
.provider-modal-footer { padding: 16px 24px; border-top: 1px solid var(--bd); display: flex; justify-content: flex-end; gap: 10px; }

/* === Course List === */
.course-filter { display: flex; gap: 10px; justify-content: center; margin: 32px 0; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; background: var(--bg);
    border: 1px solid var(--bd); border-radius: 20px;
    cursor: pointer; transition: all 0.2s; font-size: 14px; font-weight: 500; color: var(--t);
}
.filter-btn:hover { border-color: var(--p); color: var(--p); }
.filter-btn.active { background: var(--p); border-color: var(--p); color: #fff; }

.course-list-grid { display: flex; flex-direction: column; gap: 20px; }
.course-card {
    background: var(--bg); border: 1px solid var(--bd); border-radius: 12px;
    padding: 24px; display: flex; gap: 24px; transition: all 0.2s;
}
.course-card:hover { border-color: var(--p); }
.course-thumb { width: 280px; height: 180px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.course-body { flex: 1; }
.course-title { font-size: 20px; font-weight: 700; color: var(--t); margin-bottom: 8px; }
.course-meta { display: flex; gap: 16px; font-size: 13px; color: var(--t-3); margin-bottom: 10px; }
.course-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.course-tag { padding: 4px 10px; background: var(--bg-2); border-radius: 12px; font-size: 12px; color: var(--t-2); }
.course-desc { font-size: 14px; color: var(--t-2); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* === QR Modal === */
.qr-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.qr-modal.show { display: flex; }
.qr-modal-content { background: #fffaf5; border-radius: 12px; padding: 32px; text-align: center; max-width: 360px; position: relative; }
.qr-modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 24px; color: var(--t-3); cursor: pointer; }
.qr-modal-title { font-size: 20px; font-weight: 700; color: var(--t); margin-bottom: 6px; }
.qr-modal-sub { font-size: 14px; color: var(--t-2); margin-bottom: 20px; }
.qr-modal img { width: 220px; height: 220px; border-radius: 8px; margin-bottom: 12px; }

/* === Activity Filter === */
.activity-filter-bar { background: var(--bg); border-bottom: 1px solid var(--bd); padding: 16px 0; position: sticky; top: 64px; z-index: 100; }
.activity-filter-bar .container { display: flex; flex-direction: column; gap: 12px; }

/* Filter Group */
.act-filter-group { display: flex; align-items: center; gap: 10px; }
.act-filter-label { font-size: 13px; font-weight: 600; color: var(--t-2); flex-shrink: 0; min-width: 32px; }

/* Filter Tags (inline) */
.act-filter-tags { display: flex; gap: 8px; overflow-x: auto; flex-wrap: wrap; -webkit-overflow-scrolling: touch; padding: 2px 0; }
.act-filter-tag {
    padding: 6px 14px; font-size: 13px; font-weight: 500;
    border: 1px solid var(--bd); border-radius: 6px;
    background: var(--bg); color: var(--t-2);
    cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.act-filter-tag:hover { border-color: var(--p); color: var(--p); }
.act-filter-tag.active { background: var(--p); border-color: var(--p); color: #fff; }
.act-filter-tag i { margin-right: 2px; }

/* === Filter Panel === */
.filter-panel { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1001; display: none; align-items: flex-end; }
.filter-panel.show { display: flex; animation: fadeIn 0.2s; }
.filter-panel-content { width: 100%; background: var(--bg); border-radius: 12px 12px 0 0; padding: 28px 20px; max-height: 70vh; overflow-y: auto; position: relative; }
.filter-panel-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border: none; background: var(--bg-2); border-radius: 50%; font-size: 18px; color: var(--t-3); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.filter-panel-title { font-size: 18px; font-weight: 600; text-align: center; margin-bottom: 20px; color: var(--t); }
.filter-options { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-option { padding: 10px 18px; border: 1px solid var(--bd); border-radius: 8px; font-size: 14px; color: var(--t-2); background: var(--bg); cursor: pointer; transition: all 0.2s; }
.filter-option:hover { border-color: var(--p); color: var(--p); }
.filter-option.active { background: var(--p); border-color: var(--p); color: #fff; }

/* === Activity Grid === */
.activity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.act-card { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; transition: all 0.2s; cursor: pointer; }
.act-card:hover { border-color: var(--p); transform: translateY(-2px); }
.act-img { width: 100%; height: 160px; object-fit: cover; }
.act-body { padding: 16px; }
.act-title { font-size: 18px; font-weight: 600; color: var(--t); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.act-meta { display: flex; flex-direction: column; gap: 4px; }
.act-meta-item { font-size: 12px; color: var(--t-3); display: flex; align-items: center; gap: 5px; }
.act-meta-item i { width: 14px; text-align: center; }

/* === Activity Card Horizontal === */
.act-card-h {
    display: flex; border: 1px solid var(--bd); border-radius: 12px;
    overflow: hidden; margin-bottom: 16px;
    transition: border-color 0.2s; color: var(--t);
}
.act-card-h:last-child { margin-bottom: 0; }
.act-card-h:hover { border-color: var(--p); color: var(--t); }
.act-thumb { width: 220px; height: 160px; flex-shrink: 0; overflow: hidden; }
.act-thumb img { width: 100%; height: 100%; object-fit: cover; }
.act-body-h { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; }

/* Status Badge */
.act-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; align-self: flex-start; margin-bottom: 8px; }
.act-badge--signup { background: rgba(16,185,129,0.1); color: #10B981; }
.act-badge--soon { background: rgba(59,130,246,0.1); color: #3B82F6; }
.act-badge--ended { background: var(--bg-2); color: var(--t-3); }

/* Description */
.act-desc {
    font-size: 13px; color: var(--t-2); line-height: 1.6;
    margin-bottom: 10px; margin-top: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Tags */
.act-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }
.act-tag { padding: 2px 8px; background: var(--bg-2); border-radius: 4px; font-size: 11px; color: var(--t-2); }

/* === Loading/Empty === */
.page-loading { display: flex; justify-content: center; align-items: center; padding: 60px; }
.page-spinner { width: 36px; height: 36px; border: 3px solid var(--bd); border-top-color: var(--p); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.page-empty { text-align: center; padding: 60px 20px; color: var(--t-3); }
.page-empty i { font-size: 48px; color: var(--bd); margin-bottom: 12px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === Hidden === */
.hidden { display: none !important; }

/* === News Index === */
.news-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.news-main {}
.news-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* News Search Bar */
.news-search-bar { background: var(--bg); border-bottom: 1px solid var(--bd); padding: 14px 0; }
.news-search-form { display: flex; align-items: center; gap: 10px; max-width: 600px; }
.news-search-form i { color: var(--t-3); font-size: 16px; }
.news-search-form .form-control { flex: 1; border-radius: 8px; }
.news-search-form .btn { flex-shrink: 0; }

/* News Module Nav */
.news-module-nav { border-bottom: 1px solid var(--bd); }
.news-module-nav-inner { display: flex; gap: 4px; overflow-x: auto; padding: 0 0 12px; }
.news-module-nav-item {
    padding: 10px 20px; font-size: 14px; font-weight: 500;
    border-radius: 6px; cursor: pointer; white-space: nowrap;
    color: var(--t-2); transition: all 0.2s;
}
.news-module-nav-item:hover { background: var(--bg-2); color: var(--p); }
.news-module-nav-item.active { background: var(--p); color: #fff; }

/* Platform Nav */
.news-platform-nav { border-bottom: 1px solid var(--bd); display: none; }
.news-platform-nav.show { display: block; }
.news-platform-nav-inner { display: flex; gap: 6px; overflow-x: auto; padding: 0 0 12px; }
.news-platform-nav-item {
    padding: 8px 16px; font-size: 13px; font-weight: 500;
    border-radius: 20px; cursor: pointer; white-space: nowrap;
    background: var(--bg-2); color: var(--t-2); transition: all 0.2s;
}
.news-platform-nav-item:hover { border-color: var(--p); color: var(--p); }
.news-platform-nav-item.active { background: var(--p); color: #fff; }

/* News List */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list-item {
    display: flex; gap: 20px; padding: 20px;
    background: var(--bg); border: 1px solid var(--bd); border-radius: 12px;
    cursor: pointer; transition: all 0.2s;
}
.news-list-item:hover { border-color: var(--p); }
.news-list-image { width: 200px; height: 140px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.news-list-image img { width: 100%; height: 100%; object-fit: cover; }
.news-list-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.news-list-title { font-size: 17px; font-weight: 600; color: var(--t); line-height: 1.4; margin-bottom: 8px; }
.news-list-item:hover .news-list-title { color: var(--p); }
.news-list-brief { font-size: 14px; color: var(--t-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.news-list-footer { display: flex; justify-content: space-between; align-items: center; }
.news-list-time { font-size: 12px; color: var(--t-3); }
.news-list-tags { display: flex; gap: 6px; }
.news-list-tag { padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 500; }
.news-list-tag--platform { background: rgba(255,106,0,0.1); color: var(--p); }
.news-list-tag--risk-high { background: rgba(239,68,68,0.1); color: #E53935; }
.news-list-tag--risk-medium { background: rgba(245,158,11,0.1); color: #F59E0B; }
.news-list-tag--risk-low { background: rgba(16,185,129,0.1); color: #10B981; }

/* News Pagination */
.news-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.news-pagination-item {
    min-width: 40px; height: 40px; padding: 0 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg); border: 1px solid var(--bd);
    border-radius: 6px; font-size: 14px; color: var(--t); cursor: pointer; transition: all 0.2s;
}
.news-pagination-item:hover { border-color: var(--p); color: var(--p); }
.news-pagination-item.active { background: var(--p); border-color: var(--p); color: #fff; }
.news-pagination-item.disabled { opacity: 0.5; cursor: not-allowed; }

/* News Sidebar */
.sidebar-card { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 20px; }
.sidebar-card-title { font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--bd); display: flex; align-items: center; gap: 8px; }
.sidebar-card-title i { color: var(--p); }

/* News Activity Item */
.news-activity-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bg-2); cursor: pointer; transition: all 0.2s; }
.news-activity-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-activity-item:hover { transform: translateX(4px); }
.news-activity-image { width: 72px; height: 54px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.news-activity-info { flex: 1; }
.news-activity-title { font-size: 13px; font-weight: 500; color: var(--t); line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-activity-time { font-size: 12px; color: var(--t-3); }
.news-activity-time i { margin-right: 4px; }

/* Hot News Item */
.news-hot-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bg-2); cursor: pointer; transition: all 0.2s; }
.news-hot-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-hot-item:hover { transform: translateX(4px); }
.news-hot-image { width: 72px; height: 54px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.news-hot-info { flex: 1; }
.news-hot-title { font-size: 13px; font-weight: 500; color: var(--t); line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-hot-meta { font-size: 12px; color: var(--t-3); }
.news-hot-meta i { margin-left: 4px; }

/* Platform Links */
.news-platform-links { display: flex; flex-direction: column; }
.news-platform-link-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bg-2); color: var(--t); transition: all 0.2s; }
.news-platform-link-item:last-child { border-bottom: none; }
.news-platform-link-item:hover { color: var(--p); }
.news-platform-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.news-platform-name { flex: 1; font-size: 14px; }
.news-platform-link-item i { color: var(--t-3); font-size: 12px; }

/* === News Detail === */
.news-detail-wrapper { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.news-detail-main { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 36px; }
.news-detail-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.news-detail-title { font-size: 26px; font-weight: 700; color: var(--t); line-height: 1.4; margin-bottom: 16px; }
.news-detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.news-detail-tag { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.news-detail-tag.platform { background: rgba(255,106,0,0.1); color: var(--p); border: 1px solid rgba(255,106,0,0.3); }
.news-detail-tag.country { background: var(--bg-2); color: var(--t-2); border: 1px solid var(--bd); }
.news-detail-tag.risk-low { background: rgba(16,185,129,0.1); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.news-detail-tag.risk-medium { background: rgba(245,158,11,0.1); color: #F59E0B; border: 1px solid rgba(245,158,11,0.3); }
.news-detail-tag.risk-high { background: rgba(239,68,68,0.1); color: #E53935; border: 1px solid rgba(239,68,68,0.3); }
.news-detail-meta { display: flex; gap: 20px; font-size: 13px; color: var(--t-3); }
.news-detail-meta span { display: flex; align-items: center; gap: 6px; }
.news-detail-brief { background: var(--bg-2); border-left: 3px solid var(--p); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 24px; font-size: 15px; line-height: 1.8; color: var(--t-2); }
.news-detail-body { font-size: 15px; line-height: 1.9; color: var(--t); }
.news-detail-body p { margin-bottom: 16px; }
.news-detail-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
.news-detail-body h2, .news-detail-body h3, .news-detail-body h4 { margin: 28px 0 12px; font-weight: 600; }
.news-banner { margin: 24px 0; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid var(--bd); transition: border-color 0.2s; }
.news-banner:hover { border-color: var(--p); }
.news-banner img { width: 100%; height: auto; margin: 0; border-radius: 8px; }

/* Service CTA */
.service-cta-section { margin-top: 32px; padding: 24px; background: var(--bg-2); border-radius: 12px; border: 1px solid var(--bd); }
.service-cta-title { font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.service-cta-title i { color: var(--p); }
.service-cta-list { display: flex; flex-direction: column; gap: 10px; }
.service-cta-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--bg); border: 1px solid var(--bd); border-radius: 8px; transition: all 0.2s; cursor: pointer; }
.service-cta-item:hover { border-color: var(--p); transform: translateX(4px); }
.service-cta-info h4 { font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 2px; }
.service-cta-info p { font-size: 12px; color: var(--t-3); margin: 0; }
.service-cta-btn { padding: 8px 18px; background: var(--p); color: #fff; border: none; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.service-cta-btn:hover { background: var(--p-d); }

/* Sidebar list items */
.sidebar-list-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bg-2); cursor: pointer; transition: all 0.2s; }
.sidebar-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-list-item:hover { transform: translateX(4px); }
.sidebar-list-image { width: 72px; height: 54px; border-radius: 6px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--bd); }
.sidebar-list-content { flex: 1; }
.sidebar-list-title { font-size: 13px; font-weight: 500; color: var(--t); line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-list-meta { font-size: 12px; color: var(--t-3); }

/* Breadcrumb */
.news-breadcrumb { background: var(--bg-2); border-bottom: 1px solid var(--bd); padding: 14px 0; }
.news-breadcrumb nav { font-size: 13px; color: var(--t-2); }
.news-breadcrumb a { color: var(--p); text-decoration: none; }
.news-breadcrumb a:hover { text-decoration: underline; }
.news-breadcrumb .sep { margin: 0 8px; color: var(--t-3); }

/* Loading/Empty */
.news-loading { display: flex; justify-content: center; align-items: center; padding: 60px; }
.news-loading .loading { width: 36px; height: 36px; border: 3px solid var(--bd); border-top-color: var(--p); border-radius: 50%; animation: spin 0.8s linear infinite; }
.news-empty { text-align: center; padding: 60px 20px; color: var(--t-3); }
.news-empty i { font-size: 48px; color: var(--bd); margin-bottom: 12px; }

/* === About Page === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro-text h2 { font-size: 26px; font-weight: 700; color: var(--t); margin-bottom: 16px; }
.about-intro-text p { font-size: 15px; color: var(--t-2); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.about-stat { text-align: center; padding: 20px 12px; background: var(--bg-2); border-radius: 10px; }
.about-stat-num { font-size: 32px; font-weight: 700; color: var(--p); margin-bottom: 4px; }
.about-stat-label { font-size: 13px; color: var(--t-2); }
.about-mission { background: var(--bg); border: 1px solid var(--bd); border-radius: 16px; padding: 32px; }
.about-mission h3 { font-size: 18px; font-weight: 700; color: var(--t); margin-bottom: 12px; }
.about-mission p { font-size: 15px; color: var(--t-2); line-height: 1.7; }
.about-mission hr { margin: 20px 0; border: none; border-top: 1px solid var(--bd); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--bg); border-radius: 12px; padding: 32px 24px; text-align: center; border: 1px solid var(--bd); transition: all 0.2s; }
.value-card:hover { border-color: var(--p); }
.value-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,106,0,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.value-title { font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--t-2); line-height: 1.6; }

/* Timeline */
.timeline { padding-left: 20px; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 24px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year { width: 80px; flex-shrink: 0; font-size: 16px; font-weight: 700; color: var(--p); text-align: right; padding-top: 4px; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--p); flex-shrink: 0; margin-top: 6px; position: relative; z-index: 1; }
.timeline-line { position: absolute; left: 5px; top: 20px; width: 2px; bottom: -8px; background: var(--bd); }
.timeline-content { flex: 1; padding-left: 16px; border-left: 2px solid var(--p); padding-bottom: 8px; }
.timeline-content h5 { font-size: 15px; font-weight: 700; color: var(--t); margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: var(--t-2); margin: 0; }

/* Join Page */
.join-reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.join-reasons-text h2 { font-size: 26px; font-weight: 700; color: var(--t); margin-bottom: 24px; }
.reason-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.reason-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,106,0,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.reason-icon i { color: var(--p); }
.reason-title { font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 4px; }
.reason-desc { font-size: 14px; color: var(--t-2); }
.join-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.join-stat-card { background: var(--bg-2); border-radius: 12px; padding: 24px; text-align: center; border: 1px solid var(--bd); }
.join-stat-num { font-size: 36px; font-weight: 700; color: var(--p); margin-bottom: 4px; }
.join-stat-label { font-size: 14px; color: var(--t-2); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card { background: var(--bg); border-radius: 12px; padding: 28px 20px; text-align: center; border: 1px solid var(--bd); transition: all 0.2s; }
.benefit-card:hover { border-color: var(--p); }
.benefit-icon { font-size: 40px; margin-bottom: 12px; }
.benefit-title { font-size: 15px; font-weight: 700; color: var(--t); margin-bottom: 6px; }
.benefit-desc { font-size: 13px; color: var(--t-2); }

/* Jobs */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.job-card { background: var(--bg); border-radius: 12px; padding: 24px; border: 1px solid var(--bd); transition: all 0.2s; }
.job-card:hover { border-color: var(--p); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.job-title { font-size: 17px; font-weight: 700; color: var(--t); }
.job-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px; }
.job-badge.hot { background: #E53935; color: #fff; }
.job-badge.normal { background: var(--bg-2); color: var(--t-2); }
.job-meta { font-size: 13px; color: var(--t-3); margin-bottom: 10px; display: flex; gap: 12px; flex-wrap: wrap; }
.job-meta i { margin-right: 4px; }
.job-desc { font-size: 14px; color: var(--t-2); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-salary { font-size: 18px; font-weight: 700; color: var(--p); }
.job-apply { padding: 8px 20px; border: 1px solid var(--p); color: var(--p); border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; background: transparent; transition: all 0.2s; }
.job-apply:hover { background: var(--p); color: #fff; }
.join-contact { text-align: center; padding: 32px 0; }
.join-contact p { font-size: 15px; color: var(--t-2); margin-bottom: 8px; }
.join-contact a { color: var(--p); font-weight: 600; }

/* === Responsive === */
@media (max-width: 1200px) {
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .service-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .provider-grid { grid-template-columns: 1fr; }
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
    .news-content-grid { grid-template-columns: 1fr 280px; }
    .news-detail-wrapper { grid-template-columns: 1fr 280px; }
}

@media (max-width: 991px) {
    .service-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .course-card { flex-direction: column; }
    .course-thumb { width: 100%; height: 200px; }
    .about-intro { grid-template-columns: 1fr; gap: 32px; }
    .join-reasons { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .join-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .zp-page-header { padding: 48px 0; }
    .zp-page-header h1 { font-size: 26px; }
    .zp-page-header p { font-size: 14px; }
    .zp-section { padding: 32px 0; }
    .page-banner { height: 200px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-img { height: 160px; }
    .service-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .provider-grid { gap: 12px; }
    .provider-card { padding: 16px; }
    .provider-header { flex-direction: column; align-items: center; text-align: center; }
    .provider-tags { justify-content: center; }
    .provider-footer { justify-content: center; }
    .activity-filter-bar { top: 56px; padding: 12px 0; }
    .act-filter-group { gap: 8px; }
    .act-filter-label { font-size: 12px; min-width: 28px; }
    .act-filter-tags { gap: 6px; flex-wrap: nowrap; }
    .act-filter-tag { padding: 5px 12px; font-size: 12px; }
    .act-card-h { flex-direction: column; margin-bottom: 12px; }
    .act-thumb { width: 100%; height: 180px; }
    .act-body-h { padding: 14px 16px; }
    .course-card { padding: 16px; }
    .course-thumb { height: 160px; }
    .course-title { font-size: 16px; }
    .course-filter { margin: 20px 0; gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 13px; flex: 1; min-width: 0; text-align: center; }
    .filter-panel-content { max-height: 80vh; padding: 24px 16px; }
    .about-intro-text h2 { font-size: 22px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .about-stat { padding: 16px 8px; }
    .about-stat-num { font-size: 24px; }
    .about-mission { padding: 24px; }
    .values-grid { grid-template-columns: 1fr; gap: 12px; }
    .value-card { padding: 24px 16px; }
    .timeline { padding-left: 0; }
    .timeline-item { flex-direction: column; gap: 8px; }
    .timeline-year { text-align: left; width: auto; }
    .timeline-dot { display: none; }
    .timeline-content { border-left: none; padding-left: 0; padding-bottom: 0; }
    .timeline-content::before { content: ''; display: block; width: 40px; height: 2px; background: var(--p); margin-bottom: 12px; }
    .join-reasons-text h2 { font-size: 22px; }
    .join-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .join-stat-card { padding: 20px; }
    .join-stat-num { font-size: 28px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .benefit-card { padding: 20px 12px; }
    .benefit-icon { font-size: 32px; }
    .jobs-grid { grid-template-columns: 1fr; gap: 16px; }
    .job-card { padding: 20px; }
    .job-header { flex-direction: column; gap: 8px; }
    .job-footer { flex-direction: column; gap: 12px; }
    .job-apply { width: 100%; text-align: center; }
    /* News */
    .news-content-grid { grid-template-columns: 1fr; gap: 24px; }
    .news-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .news-list-item { flex-direction: column; }
    .news-list-image { width: 100%; height: 180px; }
    .news-detail-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .news-detail-main { padding: 20px; }
    .news-detail-title { font-size: 22px; }
    .news-detail-sidebar { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .service-cta-item { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .zp-page-header { padding: 36px 0; }
    .zp-page-header h1 { font-size: 22px; }
    .page-banner { height: 160px; border-radius: 8px; }
    .category-tabs { padding: 16px 0; }
    .category-tab { padding: 6px 14px; font-size: 13px; }
    .products-grid { gap: 10px; }
    .product-img { height: 130px; }
    .product-body { padding: 12px; }
    .product-name { font-size: 13px; }
    .product-price { font-size: 16px; }
}

@media (min-width: 769px) {
    .mobile-user { display: none !important; }
}

/* === Home Banner === */
.home-banner { padding: 0 0 48px; }
.home-banner-inline { margin-bottom: 24px; }
.home-banner-card {
    display: flex; align-items: center; position: relative;
    border-radius: 12px; overflow: hidden;
    min-height: 120px; color: #fff;
    transition: transform 0.2s;
}
.home-banner-card:hover { transform: translateY(-2px); color: #fff; }
.home-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.home-banner-content {
    position: relative; z-index: 1;
    padding: 28px 32px; flex: 1;
}
.home-banner-badge {
    display: inline-block;
    background: var(--p); color: #fff;
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 4px;
    margin-bottom: 8px;
}
.home-banner-title {
    font-size: 20px; font-weight: 700;
    margin-bottom: 6px;
}
.home-banner-title i { margin-right: 6px; color: var(--p); }
.home-banner-desc {
    font-size: 14px; opacity: 0.9;
    margin: 0;
}
.home-banner-cta {
    position: relative; z-index: 1;
    padding: 10px 28px;
    background: var(--p);
    color: #fff;
    font-size: 14px; font-weight: 500;
    border-radius: 6px;
    margin-right: 28px;
    white-space: nowrap;
    transition: background 0.2s;
}
.home-banner-cta:hover { background: var(--p-d); color: #fff; }

/* === Data Insight === */
.data-insight { padding-top: 0; }
.insight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.insight-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg); border: 1px solid var(--bd);
    border-radius: 10px; padding: 20px;
    transition: border-color 0.2s;
}
.insight-card:hover { border-color: var(--p); }
.insight-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(255,106,0,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--p); flex-shrink: 0;
}
.insight-info { flex: 1; display: flex; flex-direction: column; }
.insight-label { font-size: 12px; color: var(--t-3); margin-bottom: 2px; }
.insight-count { font-size: 22px; font-weight: 700; color: var(--t); line-height: 1.2; }
.insight-desc { font-size: 11px; color: var(--t-3); margin-top: 2px; }
.insight-link {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-2); color: var(--t-3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; flex-shrink: 0;
}
.insight-link:hover { background: var(--p); color: #fff; }

/* === Home Provider === */
.home-provider-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.home-provider-card {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 28px 16px;
    background: var(--bg); border: 1px solid var(--bd);
    border-radius: 12px; color: var(--t);
    transition: all 0.2s;
}
.home-provider-card:hover { border-color: var(--p); color: var(--t); transform: translateY(-2px); }
.home-provider-card i { font-size: 28px; color: var(--p); margin-bottom: 12px; }
.home-provider-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--t); }
.home-provider-card p { font-size: 12px; color: var(--t-3); margin: 0; line-height: 1.6; }

/* === Responsive === */
@media (max-width: 1200px) {
    .insight-grid { grid-template-columns: repeat(2, 1fr); }
    .home-provider-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .insight-grid { grid-template-columns: repeat(2, 1fr); }
    .home-provider-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { display: none; }
    .hero-card { min-height: 300px; }
    .hero-img { height: 300px; }
}

@media (max-width: 768px) {
    .home-banner-card { min-height: 100px; }
    .home-banner-content { padding: 20px; }
    .home-banner-title { font-size: 16px; }
    .home-banner-desc { font-size: 13px; }
    .home-banner-cta { padding: 8px 16px; font-size: 13px; margin-right: 16px; }
    .insight-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .insight-card { padding: 14px; }
    .insight-icon { width: 40px; height: 40px; font-size: 16px; }
    .insight-count { font-size: 18px; }
    .home-provider-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-provider-card { padding: 20px 12px; }
    .home-provider-card i { font-size: 24px; }
    .news-tabs { overflow-x: auto; flex-wrap: nowrap; gap: 6px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
    .news-tabs .tab { flex-shrink: 0; padding: 6px 12px; font-size: 12px; }
    .box-head { flex-direction: column; align-items: flex-start; }
    .box-head .more { margin-left: 0; }
    .hero-card { min-height: 220px; }
    .hero-img { height: 220px; }
    .hero-title { font-size: 18px; }
    .hero-brief { font-size: 13px; }
    .hero-arrow { width: 32px; height: 32px; font-size: 16px; }
    .content-grid { grid-template-columns: 1fr; gap: 24px; }
    .content-side { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .activity-item-full { flex-direction: column; }
    .activity-full-img { width: 100%; height: 160px; }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
    .content-side { grid-template-columns: 1fr; }
    .platform-list { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .platform-item { padding: 14px 8px; }
    .platform-icon { width: 36px; height: 36px; font-size: 16px; }
    .platform-name { font-size: 12px; }
    .platform-item small { display: none; }
    .section { padding: 32px 0; }
    .section--platforms, .section--banner, .section--main, .section--insight, .section--providers { padding: 0 0 32px; }
}

/* === Activity Detail === */
.act-detail { padding: 24px 0 64px; }
.act-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }

/* Banner */
.act-detail-banner { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--bd); display: block; }

/* Info Card */
.act-info-card {
    background: var(--bg); border: 1px solid var(--bd); border-radius: 12px;
    padding: 28px; position: sticky; top: 88px; height: fit-content;
}
.act-info-badge {
    display: inline-block; background: var(--p); color: #fff;
    padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.act-info-title { font-size: 22px; font-weight: 700; color: var(--t); margin-bottom: 20px; line-height: 1.4; }
.act-info-row { display: flex; align-items: flex-start; margin-bottom: 14px; gap: 10px; }
.act-info-label { font-size: 13px; font-weight: 600; color: var(--t-2); min-width: 40px; flex-shrink: 0; }
.act-info-value { font-size: 14px; color: var(--t); line-height: 1.6; }
.act-info-value.is-free { color: var(--p); font-weight: 600; }
.act-info-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--bd); }
.act-info-actions .btn { width: 100%; }

/* Content */
.act-detail-main {
    background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 32px;
}
.act-detail-main-title {
    font-size: 18px; font-weight: 700; color: var(--t); margin-bottom: 20px;
    padding-left: 12px; border-left: 3px solid var(--p);
}
.act-detail-main img { max-width: 100%; height: auto; border-radius: 8px; }

/* Sidebar */
.act-detail-sidebar {
    background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 20px;
    position: sticky; top: 88px; height: fit-content;
}
.act-detail-sidebar-title {
    font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 1px solid var(--bd);
}
.act-detail-sidebar-title i { color: var(--p); }

/* Recommend Item */
.act-recommend {
    display: flex; gap: 12px; padding: 10px; border: 1px solid var(--bd); border-radius: 8px;
    margin-bottom: 10px; cursor: pointer; transition: border-color 0.2s; color: var(--t);
}
.act-recommend:last-child { margin-bottom: 0; }
.act-recommend:hover { border-color: var(--p); color: var(--t); }
.act-recommend-img { width: 80px; height: 56px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.act-recommend-body { flex: 1; min-width: 0; }
.act-recommend-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.act-recommend-meta { font-size: 12px; color: var(--t-3); }

/* QR Modal */
.qr-modal-img { max-width: 200px; height: auto; border-radius: 8px; margin: 20px 0; }
.qr-modal-tip { font-size: 14px; color: var(--t-2); }

/* Activity Detail Responsive */
@media (max-width: 991px) {
    .act-detail-grid { grid-template-columns: 1fr; }
    .act-info-card, .act-detail-sidebar { position: static; }
}

@media (max-width: 768px) {
    .act-detail { padding: 16px 0 48px; }
    .act-info-card, .act-detail-main { padding: 20px; }
    .act-info-title { font-size: 18px; }
}

/* === Ask Index === */
.ask-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.ask-stat-card { background: var(--bg); border: 1px solid var(--bd); border-radius: 10px; padding: 16px; text-align: center; }
.ask-stat-num { font-size: 26px; font-weight: 700; color: var(--p); line-height: 1; margin-bottom: 4px; }
.ask-stat-label { font-size: 12px; color: var(--t-3); }

/* Filter */
.ask-filter { background: var(--bg); border: 1px solid var(--bd); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ask-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.ask-filter-tab { padding: 6px 14px; border-radius: 20px; border: 1px solid var(--bd); background: var(--bg); color: var(--t-2); font-size: 13px; cursor: pointer; transition: all 0.2s; }
.ask-filter-tab:hover, .ask-filter-tab.active { background: var(--p); border-color: var(--p); color: #fff; }
.ask-sort { display: flex; gap: 4px; align-items: center; font-size: 13px; color: var(--t-3); }
.ask-sort-btn { padding: 5px 12px; border-radius: 6px; border: 1px solid transparent; background: transparent; color: var(--t-2); font-size: 13px; cursor: pointer; transition: all 0.2s; }
.ask-sort-btn:hover, .ask-sort-btn.active { color: var(--p); border-color: var(--p); background: rgba(255,106,0,0.06); }

/* Question List */
.ask-list {  overflow: hidden; }
.ask-list-head { padding: 14px 20px; border-bottom: 1px solid var(--bd); display: flex; align-items: center; justify-content: space-between; }
.ask-list-head h3 { font-size: 15px; font-weight: 600; color: var(--t); margin: 0; display: flex; align-items: center; gap: 8px; }
.ask-list-head h3 i { color: var(--p); }

.ask-item { display: flex; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--bd); transition: background 0.15s; }
.ask-item:last-child { border-bottom: none; }
.ask-item:hover { background: var(--bg-2); }
.ask-item.is-top { border-left: 3px solid var(--p); }

.ask-vote { flex-shrink: 0; text-align: center; min-width: 52px; padding: 8px; border-radius: 8px; background: var(--bg-2); border: 1px solid var(--bd); }
.ask-vote-num { font-size: 18px; font-weight: 700; color: var(--p); line-height: 1.2; }
.ask-vote-label { font-size: 10px; color: var(--t-3); }
.ask-vote.has-answer { background: rgba(255,106,0,0.08); border-color: var(--p); }

.ask-body { flex: 1; min-width: 0; }
.ask-title { font-size: 15px; font-weight: 600; line-height: 1.5; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ask-title a { color: var(--t); }
.ask-title a:hover { color: var(--p); }
.ask-brief { font-size: 13px; color: var(--t-3); margin-bottom: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ask-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.ask-tag { padding: 2px 8px; border-radius: 4px; font-size: 11px; background: var(--bg-2); color: var(--t-2); }
.ask-tag--platform { background: rgba(255,106,0,0.08); color: var(--p); }
.ask-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--t-3); }

/* Ask Sidebar */
.ask-sidebar { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; padding: 18px; margin-bottom: 16px; }
.ask-sidebar-title { font-size: 15px; font-weight: 700; color: var(--t); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--bd); display: flex; align-items: center; gap: 8px; }
.ask-sidebar-title i { color: var(--p); }

/* Hot List */
.ask-hot-list { display: flex; flex-direction: column; }
.ask-hot-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--bg-2); }
.ask-hot-item:last-child { border-bottom: none; }
.ask-hot-rank { width: 20px; height: 20px; border-radius: 4px; background: var(--bg-2); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--t-2); }
.ask-hot-rank.top { background: var(--p); color: #fff; }
.ask-hot-title { flex: 1; font-size: 13px; color: var(--t); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ask-hot-title:hover { color: var(--p); }
.ask-hot-meta { font-size: 11px; color: var(--t-3); margin-top: 2px; }

/* Guide */
.ask-guide-list { display: flex; flex-direction: column; gap: 8px; }
.ask-guide-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--t-2); }
.ask-guide-item i { color: #10B981; margin-top: 3px; flex-shrink: 0; }

/* Platform Filter */
.ask-plat-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.ask-plat-btn { padding: 6px 12px; border-radius: 20px; border: 1px solid var(--bd); background: var(--bg); color: var(--t-2); font-size: 12px; cursor: pointer; transition: all 0.2s; }
.ask-plat-btn:hover, .ask-plat-btn.active { background: var(--p); border-color: var(--p); color: #fff; }

/* Ask Detail */
.ask-detail { padding: 24px 0 64px; }
.ask-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }

/* Question Card */
.ask-q-card { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; margin-bottom: 24px; overflow: hidden; }
.ask-q-header { padding: 24px 28px 18px; border-bottom: 1px solid var(--bd); }
.ask-q-title { font-size: 22px; font-weight: 700; color: var(--t); line-height: 1.4; margin-bottom: 12px; }
.ask-q-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--t-3); }
.ask-q-body { padding: 24px 28px; }
.ask-q-content { font-size: 15px; line-height: 1.9; color: var(--t); }
.ask-q-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--bd); }

/* Answer */
.ask-ans-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ask-ans-title { font-size: 17px; font-weight: 600; color: var(--t); display: flex; align-items: center; gap: 8px; }
.ask-ans-title i { color: var(--p); }
.ask-ans-badge { font-size: 12px; padding: 3px 10px; background: rgba(255,106,0,0.08); color: var(--p); border-radius: 20px; }

.ask-ans-item { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.ask-ans-item.is-accepted { border-color: #10B981; }
.ask-ans-header { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--bd); }
.ask-ans-author { display: flex; align-items: center; gap: 10px; }
.ask-ans-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--p); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
.ask-ans-name { font-size: 14px; font-weight: 600; color: var(--t); }
.ask-ans-time { font-size: 12px; color: var(--t-3); }
.ask-ans-accepted { display: flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(16,185,129,0.1); color: #10B981; border-radius: 20px; font-size: 12px; font-weight: 500; }
.ask-ans-body { padding: 20px; }
.ask-ans-content { font-size: 15px; line-height: 1.8; color: var(--t); }
.ask-ans-footer { padding: 10px 20px; border-top: 1px solid var(--bd); display: flex; align-items: center; justify-content: space-between; }

/* Answer Form */
.ask-form { background: var(--bg); border: 1px solid var(--bd); border-radius: 12px; margin-top: 20px; overflow: hidden; }
.ask-form-head { padding: 16px 20px; border-bottom: 1px solid var(--bd); }
.ask-form-head h3 { font-size: 16px; font-weight: 600; color: var(--t); margin: 0; display: flex; align-items: center; gap: 8px; }
.ask-form-head h3 i { color: var(--p); }
.ask-form-body { padding: 20px; }

/* Login Prompt */
.ask-login { background: rgba(255,106,0,0.06); border: 1px solid rgba(255,106,0,0.2); border-radius: 12px; padding: 24px; text-align: center; margin-top: 20px; }
.ask-login i { font-size: 24px; color: var(--p); display: block; margin-bottom: 10px; }
.ask-login p { font-size: 14px; color: var(--t-2); margin-bottom: 14px; }

/* Info List */
.ask-info-list { display: flex; flex-direction: column; gap: 10px; }
.ask-info-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.ask-info-label { color: var(--t-3); }
.ask-info-value { color: var(--t); font-weight: 500; }

/* Related */
.ask-related-list { display: flex; flex-direction: column; gap: 8px; }
.ask-related-item { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--bg-2); }
.ask-related-item:last-child { border-bottom: none; }
.ask-related-count { flex-shrink: 0; min-width: 32px; padding: 3px 6px; text-align: center; background: var(--bg-2); border-radius: 4px; font-size: 12px; font-weight: 600; color: var(--p); }
.ask-related-count.has-answer { background: rgba(255,106,0,0.08); }
.ask-related-title { flex: 1; font-size: 13px; color: var(--t); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ask-related-title:hover { color: var(--p); }

/* Quick Actions */
.ask-quick-list { display: flex; flex-direction: column; gap: 8px; }
.ask-quick-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-2); border: 1px solid var(--bd); border-radius: 8px; font-size: 13px; color: var(--t); transition: border-color 0.2s; }
.ask-quick-item:hover { border-color: var(--p); color: var(--p); }
.ask-quick-item i { color: var(--p); width: 16px; text-align: center; }

/* Ask Responsive */
@media (max-width: 991px) {
    .ask-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ask-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .ask-stat-num { font-size: 20px; }
    .ask-filter { flex-direction: column; align-items: flex-start; }
    .ask-item { flex-direction: column; gap: 10px; }
    .ask-vote { flex-direction: row; display: flex; gap: 6px; min-width: auto; padding: 6px 10px; }
    .ask-q-header, .ask-q-body, .ask-ans-header, .ask-ans-body, .ask-ans-footer { padding: 16px; }
    .ask-q-title { font-size: 18px; }
}

/* === Auth Pages === */
.auth-layout { min-height: calc(100vh - 128px); display: flex; align-items: center; }
.auth-card { display: flex; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden; max-width: 880px; margin: 0 auto; }
.auth-visual {
    width: 320px; flex-shrink: 0; background: #fff8f0; color: var(--t);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 48px 28px; text-align: center;
    border-right: 1px solid var(--bd);
}
.auth-visual-logo {
    width: 64px; height: 64px; border-radius: 16px; background: var(--p);
    color: #fff; font-size: 28px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.auth-visual-title { font-size: 22px; font-weight: 700; color: var(--t); margin-bottom: 8px; }
.auth-visual-desc { font-size: 13px; color: var(--t-3); line-height: 1.8; }
.auth-visual-features { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.auth-visual-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--t-2); padding: 10px 14px; background: #fff; border: 1px solid var(--bd); border-radius: 8px; }
.auth-visual-feature i { color: var(--p); width: 16px; text-align: center; }

.auth-form-side { flex: 1; padding: 48px 40px; background: var(--bg); }
.auth-form-title { font-size: 24px; font-weight: 700; color: var(--t); margin-bottom: 4px; }
.auth-form-sub { font-size: 14px; color: var(--t-3); margin-bottom: 28px; }

.auth-form .form-label { font-size: 13px; font-weight: 600; color: var(--t-2); margin-bottom: 6px; }
.auth-form .form-control { padding: 11px 14px; border-color: var(--bd); font-size: 14px; }
.auth-form .form-control:focus { border-color: var(--p); }
.auth-form .input-group-text { border-color: var(--bd); color: var(--t-3); }

.auth-options { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.auth-options .form-check-label { font-size: 13px; color: var(--t-2); }
.auth-options a { font-size: 13px; color: var(--t-3); }
.auth-options a:hover { color: var(--p); }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--t-3); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--bd); }

.auth-footer { text-align: center; font-size: 14px; color: var(--t-2); }
.auth-footer a { color: var(--p); font-weight: 600; }

.auth-social { display: flex; gap: 10px; justify-content: center; margin-bottom: 16px; }
.auth-social-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bd); background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--t-2); transition: border-color 0.2s; cursor: pointer; }
.auth-social-btn:hover { border-color: var(--p); color: var(--p); }
.list-group-item.active{ border-color: var(--p);background-color:var(--p);}
.bg-primary{
    background-color: var(--p)!important;
}
@media (max-width: 768px) {
    .auth-visual { display: none; }
    .auth-form-side { padding: 32px 24px; }
}
