/* ==================================
   1. 全局基础与重置规范
================================== */
body { font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif; background: #f8fafc; color: #1e293b; margin: 0; padding: 0; line-height: 1.6;}
* { box-sizing: border-box; }
.zx-container, .zx-single-container, .zx-vip-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: #2563eb; transition: 0.3s ease; }
a:hover { color: #1d4ed8; }

.zx-btn-primary { background: #0f172a; color: #fff; padding: 10px 24px; border-radius: 12px; font-weight: 600; font-size: 14px; transition: 0.3s ease; display: inline-flex; align-items: center; justify-content: center; }
.zx-btn-primary:hover { background: #2563eb; color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,0.2); transform: translateY(-1px); }
.zx-btn-console { background: #eff6ff; color: #2563eb; padding: 10px 24px; border-radius: 12px; font-weight: 700; font-size: 14px; transition: 0.3s ease; border: 1px solid #bfdbfe; }
.zx-btn-console:hover { background: #2563eb; color: #fff; border-color: #2563eb; box-shadow: 0 6px 15px rgba(37,99,235,0.2); }
.zx-btn-outline { border: 1px solid #cbd5e1; color: #475569; padding: 8px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; background: transparent; cursor: pointer; transition: 0.3s ease;}
.zx-btn-outline:hover { border-color: #0f172a; color: #0f172a; background: #f8fafc; }
.zx-btn-text { color: #64748b; font-size: 15px; font-weight: 600; padding: 8px 12px; border-radius: 8px; transition: 0.3s ease;}
.zx-btn-text:hover { color: #0f172a; background: #f1f5f9; }
.zx-btn-full { display: block; width: 100%; padding: 14px; text-align: center; border-radius: 12px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s ease; font-size: 15px;}
.zx-btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 8px; }

/* ==================================
   2. 现代毛玻璃 Header & 全局搜索
================================== */
.zx-site-header { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(15, 23, 42, 0.05); position: sticky; top: 0; z-index: 100; }
.zx-header-inner { max-width: 1200px; margin: 0 auto; height: 76px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.zx-header-left { display: flex; align-items: center; gap: 50px; }
.zx-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon-box { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); color: #fff; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 10px rgba(37,99,235,0.3); }
.logo-text { font-size: 20px; font-weight: 900; color: #0f172a; letter-spacing: -0.5px; }

.zx-main-nav ul { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.zx-main-nav li { margin: 0; }
.zx-main-nav a { color: #64748b; font-weight: 600; font-size: 15px; padding: 8px 16px; border-radius: 8px; transition: 0.3s ease; }
.zx-main-nav a:hover, .zx-main-nav li.current-menu-item a { color: #0f172a; background: #f1f5f9; }

.zx-user-nav { display: flex; align-items: center; gap: 10px; }
.zx-header-search { display: flex; align-items: center; background: #f1f5f9; border-radius: 20px; overflow: hidden; border: 1px solid #e2e8f0; transition: 0.3s; margin-right: 15px; }
.zx-header-search:focus-within { background: #fff; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.zx-header-search input { border: none; background: transparent; padding: 8px 15px; font-size: 13px; outline: none; width: 180px; }
.zx-header-search button { border: none; background: transparent; cursor: pointer; padding: 0 15px 0 0; font-size: 14px; }

/* ==================================
   3. 暗黑沉浸式 Footer
================================== */
.zx-site-footer { background: #0b1120; color: #94a3b8; margin-top: 80px; border-top: 1px solid #1e293b; }
.zx-footer-top { padding: 80px 20px 60px; }
.zx-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 60px; }
.zx-footer-brand { max-width: 380px; }
.zx-logo-footer { font-size: 24px; font-weight: 900; color: #f8fafc; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px;}
.zx-footer-slogan { color: #64748b; font-size: 14px; line-height: 1.8; margin-bottom: 25px; }
.zx-footer-contact { display: inline-block; background: rgba(255,255,255,0.05); padding: 10px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #cbd5e1; }
.zx-footer-links { display: flex; gap: 80px; flex: 1; justify-content: flex-end; }
.zx-link-col h4 { margin: 0 0 25px 0; font-size: 14px; color: #f8fafc; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.zx-link-col a { display: block; color: #64748b; margin-bottom: 16px; font-size: 14px; transition: 0.3s ease; }
.zx-link-col a:hover { color: #fff; transform: translateX(4px); }
.zx-footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 20px; }
.zx-footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.zx-footer-bottom p { margin: 0; font-size: 13px; color: #64748b; }
.status-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #94a3b8; background: rgba(255,255,255,0.05); padding: 6px 14px; border-radius: 20px; }
.status-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px rgba(16,185,129,0.5); }

/* ==================================
   4. 首页大厅 (Hero检索 & 列表)
================================== */
.zx-hero-section { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); border-radius: 24px; padding: 70px 40px; margin-top: 40px; text-align: center; color: #fff; box-shadow: 0 20px 40px rgba(37,99,235,0.15); }
.zx-hero-title { font-size: 40px; font-weight: 900; margin: 0 0 15px 0; letter-spacing: -1px; }
.zx-hero-desc { font-size: 16px; color: #bfdbfe; margin: 0 0 45px 0; font-weight: 400; }

.zx-filter-console { display: flex; flex-direction: column; background: #fff; padding: 15px; border-radius: 16px; max-width: 1000px; margin: 0 auto; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.zx-filter-row-main { display: flex; gap: 12px; margin-bottom: 12px; }
.zx-filter-row-subs { display: flex; gap: 12px; }
.zx-filter-row-subs .zx-filter-group { flex: 1; }

.zx-search-input-group { flex: 1 !important; border-color: #bfdbfe !important; background: #fff !important; }
.zx-search-input-group input::placeholder { color: #94a3b8; font-weight: normal; }
.zx-filter-group { display: flex; align-items: center; background: #f8fafc; border-radius: 12px; padding: 0 18px; border: 1px solid #e2e8f0; transition: 0.3s ease; }
.zx-filter-group:hover, .zx-filter-group:focus-within { border-color: #2563eb; background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.zx-filter-icon { font-size: 16px; opacity: 0.8; margin-right: 10px; }
.zx-select { flex: 1; width: 100%; border: none; background: transparent; padding: 16px 0; font-size: 15px; color: #0f172a; font-weight: 600; outline: none; cursor: pointer; }
.zx-search-action { background: #0f172a; color: #fff; border: none; padding: 0 40px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s ease; white-space: nowrap; }
.zx-search-action:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }

/* 地区下拉树选择器 */
.zx-custom-dropdown-group { position: relative; cursor: pointer; user-select: none; }
.zx-dropdown-trigger { flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: 15px; font-weight: 600; color: #0f172a; width: 100%; }
.zx-dropdown-panel { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; min-width: 240px; max-height: 350px; overflow-y: auto; background: #fff; box-shadow: 0 10px 35px rgba(0,0,0,0.15); border-radius: 12px; z-index: 9999; display: none; padding: 15px; border: 1px solid #e2e8f0; }
.zx-dropdown-panel.active { display: block; animation: slideDownFast 0.2s ease; }
@keyframes slideDownFast { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.zx-dropdown-panel::-webkit-scrollbar { width: 6px; }
.zx-dropdown-panel::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.zx-tree-ul { list-style: none; padding: 0; margin: 0; }
.zx-tree-ul ul { padding-left: 24px; border-left: 1px dashed #cbd5e1; margin-left: 10px; display: none; margin-top: 4px; }
.zx-tree-ul ul.open { display: block; animation: fadeIn 0.3s ease; }
.zx-tree-node { display: flex; align-items: center; padding: 6px 8px; border-radius: 6px; transition: 0.2s; }
.zx-tree-node:hover { background: #f8fafc; }
.zx-tree-toggle { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 4px; font-size: 15px; font-weight: bold; color: #475569; margin-right: 10px; cursor: pointer; border: 1px solid #e2e8f0; transition: 0.2s; }
.zx-tree-toggle:hover { background: #e2e8f0; color: #0f172a; }
.zx-tree-spacer { width: 32px; display: inline-block; }
.zx-tree-name { flex: 1; font-size: 14px; color: #334155; cursor: pointer; transition: 0.2s; }
.zx-tree-name:hover, .zx-tree-name.active { color: #2563eb; font-weight: bold; }

/* 列表展示区 */
.zx-list-layout { margin-top: 50px; }
.zx-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 2px solid #e2e8f0; padding-bottom: 20px; }
.zx-list-header h2 { font-size: 22px; font-weight: 900; margin: 0; color: #0f172a; letter-spacing: -0.5px;}
.zx-today-badge { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; padding: 5px 14px; border-radius: 20px; font-size: 13px; display: inline-block; animation: slideIn 0.5s ease; }
.zx-today-badge strong { font-size: 15px; font-weight: 900; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.zx-live-indicator { font-size: 13px; color: #059669; font-weight: 700; display: flex; align-items: center; gap: 8px; background: #d1fae5; padding: 6px 14px; border-radius: 20px;}
.dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

.bidding-item { background: #fff; padding: 25px 30px; border-radius: 16px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.02); transition: 0.3s ease; border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.bidding-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #2563eb; border-radius: 4px 0 0 4px; }
.bidding-item:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); border-color: #cbd5e1; }

.item-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 14px; }
.item-tags-wrap { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; align-items: center; }
.item-budget-pc { flex-shrink: 0; }
.item-budget-mobile { display: none; } 

.zx-tag-type { background: #eff6ff; color: #2563eb; padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 800; border: 1px solid #bfdbfe;}
.zx-type-link:hover { background: #2563eb; color: #fff; border-color: #2563eb; }

.zx-tag-loc { background: #f1f5f9; color: #475569; padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; border: 1px solid #e2e8f0;}
.zx-region-link { text-decoration: none; transition: 0.3s; cursor: pointer; }
.zx-region-link:hover { background: #e2e8f0; border-color: #cbd5e1; color: #0f172a; }

.zx-tag-budget-simple { background: #fef2f2; color: #dc2626; padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 800; border: 1px solid #fecaca; display: inline-block; }

.zx-tag-extra { background: #f3f4f6; color: #475569; padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; border: 1px solid #e5e7eb; display: inline-block; }
.zx-extra-link { text-decoration: none; cursor: pointer; transition: 0.3s; }
.zx-extra-link:hover { background: #e2e8f0; border-color: #cbd5e1; color: #0f172a; }

.bidding-item h3 { margin: 0 0 12px 0; font-size: 19px; line-height: 1.5; font-weight: 800; }
.bidding-item h3 a { color: #0f172a; }
.bidding-item h3 a:hover { color: #2563eb; }

.item-footer { font-size: 13px; color: #94a3b8; display: flex; align-items: center; font-weight: 500; }
.item-time { display: flex; align-items: center; gap: 5px; }

/* ==================================
   5. 详情页 (Single) 
================================== */
.zx-detail-header { background: #fff; padding: 40px 40px; border-radius: 20px; margin-top: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; position: relative; overflow: hidden;}
.zx-detail-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #1e3a8a, #2563eb); }
.zx-header-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; flex-wrap: wrap; }

.zx-entry-title { font-size: 28px; color: #0f172a; margin: 0 0 16px 0; line-height: 1.5; font-weight: 900; letter-spacing: -0.5px; }
.zx-publish-info { font-size: 14px; color: #94a3b8; font-weight: 500;}
.zx-data-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; margin-top: 30px; align-items: start; }
.zx-layout-main { display: flex; flex-direction: column; gap: 30px; }
.zx-layout-sidebar { position: sticky; top: 100px; z-index: 10; display: flex; flex-direction: column; gap: 20px;}

.zx-data-card { background: #fff; border-radius: 20px; padding: 35px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; }
.zx-card-head { font-size: 18px; font-weight: 900; margin-bottom: 25px; color: #0f172a; display: flex; align-items: center; gap: 10px; }
.zx-param-item { display: flex; justify-content: space-between; border-bottom: 1px dashed #e2e8f0; padding-bottom: 12px; margin-bottom:12px; }
.zx-param-item:last-child { border-bottom: none; margin-bottom:0; padding-bottom:0; }
.zx-param-item .label { color: #64748b; font-size: 15px; font-weight: 500;}
.zx-param-item .val { font-weight: 800; color: #0f172a; font-size: 15px; max-width: 60%; text-align: right; line-height: 1.4; word-break: break-word; }
.zx-price { color: #dc2626 !important; font-size: 18px !important; }

.zx-article-wrap { background: #fff; padding: 40px 40px; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.zx-article-title { font-size: 20px; font-weight: 900; margin-bottom: 25px; border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; color: #0f172a; }
.zx-content-body { line-height: 1.9; font-size: 16px; color: #334155; }
.zx-content-body img { max-width: 100%; height: auto; border-radius: 12px; }

.zx-bottom-extras { display: flex; flex-direction: column; gap: 20px; }
.zx-extra-block { background: #f8fafc; padding: 25px 30px; border-radius: 16px; border: 1px solid #e2e8f0; border-left: 4px solid #2563eb; }
.zx-extra-block strong { color: #0f172a; font-size: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-weight: 800;}
.zx-extra-block p { color: #475569; font-size: 15px; line-height: 1.7; margin: 0; }

.zx-countdown-box { background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%); border: 1px solid #fecdd3; border-radius: 16px; padding: 20px; text-align: center; box-shadow: 0 10px 20px rgba(225, 29, 72, 0.05); }
.zx-countdown-box .cd-title { font-size: 14px; color: #e11d48; font-weight: 800; margin-bottom: 8px; letter-spacing: 1px; }
.zx-countdown-box .cd-timer { font-size: 22px; font-weight: 900; color: #be123c; font-family: monospace; letter-spacing: 0.5px; }
.zx-contact-card { padding: 25px; border-radius: 16px; }
.zx-contact-body { display: flex; flex-direction: column; gap: 15px; }
.zx-contact-item { display: flex; align-items: flex-start; gap: 15px; background: #f8fafc; padding: 18px; border-radius: 12px; border: 1px solid #e2e8f0; transition: 0.3s ease; }
.zx-contact-item:hover { border-color: #bfdbfe; background: #fff; box-shadow: 0 10px 20px rgba(37,99,235,0.05); }
.zx-icon { font-size: 20px; background: #eff6ff; color: #2563eb; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; font-weight: bold;}
.zx-info { flex: 1; overflow: hidden; }
.zx-info .label { font-size: 13px; color: #64748b; margin-bottom: 4px; font-weight: 600; }
.zx-info .val { font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1.4; word-break: break-all; }
.zx-unit-name { font-size: 18px !important; color: #1e3a8a !important; }

.zx-mask { filter: blur(6px); opacity: 0.5; user-select: none; background: #e2e8f0; border-radius: 4px; padding: 0 4px;}
.zx-unlock-hint { font-size: 12px; color: #dc2626; margin-left: 8px; font-weight: 700; background: #fef2f2; padding: 4px 8px; border-radius: 6px; }
.zx-attachments-box { margin-top: 30px; padding-top: 25px; border-top: 1px dashed #cbd5e1; }
.zx-att-actions { display: flex; gap: 12px; flex-direction: column; }
.zx-btn-att { display: block; text-align: center; padding: 15px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: 0.3s ease; }
.zx-btn-url { background: #2563eb; color: #fff !important; box-shadow: 0 8px 20px rgba(37,99,235,0.2); }
.zx-btn-url:hover { background: #1d4ed8; color: #fff; transform: translateY(-2px); }
.zx-btn-doc { background: #eff6ff; color: #1d4ed8 !important; border: 1px solid #bfdbfe; }
.zx-btn-doc:hover { background: #dbeafe; }
.zx-btn-pdf { background: #fef2f2; color: #b91c1c !important; border: 1px solid #fecaca; }
.zx-btn-pdf:hover { background: #fee2e2; }
.zx-btn-att.zx-locked { background: #f8fafc; color: #64748b !important; border: 1px solid #e2e8f0; box-shadow: none; font-weight: 600;}

/* ==================================
   6. 用户中心 (User Center)
================================== */
.zx-uc-wrap { display: flex; gap: 40px; margin-top: 40px; align-items: start; }
.zx-uc-sidebar { width: 320px; display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.zx-uc-main { flex: 1; min-width: 0; }

.zx-uc-card { background: #fff; border-radius: 20px; padding: 35px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.zx-uc-profile-card { text-align: center; }

.uc-avatar-box { position: relative; width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.uc-avatar-box img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.uc-avatar-edit { position: absolute; bottom: 0; right: 0; background: #0f172a; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; border: 3px solid #fff; font-size: 14px; transition: 0.3s ease; }
.uc-avatar-edit:hover { background: #2563eb; transform: scale(1.1); }

.uc-name { font-size: 22px; font-weight: 900; color: #0f172a; margin: 0 0 8px; letter-spacing: -0.5px;}
.uc-role { font-size: 13px; color: #10b981; background: #d1fae5; display: inline-block; padding: 4px 12px; border-radius: 20px; font-weight: 700; margin: 0 0 15px; }

.zx-uc-nav { display: flex; flex-direction: column; gap: 8px; background: #fff; padding: 20px; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.03);}
.zx-uc-nav a { display: block; padding: 14px 20px; border-radius: 12px; color: #475569; font-weight: 700; font-size: 15px; transition: 0.3s ease; }
.zx-uc-nav a:hover { background: #f8fafc; color: #0f172a; }
.zx-uc-nav a.active { background: #eff6ff; color: #2563eb; }

.uc-title { font-size: 20px; font-weight: 900; color: #0f172a; margin: 0 0 30px 0; border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; letter-spacing: -0.5px;}
.uc-tab-content { display: none; animation: fadeIn 0.4s ease; }
.uc-tab-content.active { display: block; }

.uc-privacy-toggle-wrap { display: flex; justify-content: space-between; align-items: center; background: #f8fafc; padding: 18px; border-radius: 16px; margin-top: 20px; text-align: left; border: 1px solid #e2e8f0; }
.uc-privacy-toggle-wrap .toggle-text { display: flex; flex-direction: column; }
.uc-privacy-toggle-wrap .t-title { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.uc-privacy-toggle-wrap .t-desc { font-size: 12px; color: #64748b; font-weight: 500;}

.uc-switch { position: relative; display: inline-block; width: 48px; height: 28px; flex-shrink: 0; margin: 0; }
.uc-switch input { opacity: 0; width: 0; height: 0; }
.uc-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e1; transition: .3s; border-radius: 28px; }
.uc-slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.uc-switch input:checked + .uc-slider { background-color: #10b981; }
.uc-switch input:checked + .uc-slider:before { transform: translateX(20px); }

/* ==================================
   7. 弹窗 UI
================================== */
.zx-auth-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.zx-auth-modal-overlay.active { opacity: 1; visibility: visible; }
.zx-auth-modal-box { background: #fff; width: 100%; max-width: 440px; border-radius: 24px; padding: 45px 40px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.15); transform: translateY(20px); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.zx-auth-modal-overlay.active .zx-auth-modal-box { transform: translateY(0); }

.zx-auth-close { position: absolute; top: 20px; right: 20px; font-size: 20px; color: #94a3b8; cursor: pointer; width: 32px; height: 32px; display: flex; justify-content: center; align-items: center; border-radius: 50%; background: #f8fafc; transition: 0.3s ease; }
.zx-auth-close:hover { background: #e2e8f0; color: #0f172a; transform: rotate(90deg);}

.zx-auth-header { text-align: center; margin-bottom: 35px; }
.zx-auth-header h2 { font-size: 26px; font-weight: 900; color: #0f172a; margin: 0 0 10px 0; letter-spacing: -0.5px;}
.zx-auth-header p { font-size: 14px; color: #64748b; margin: 0; font-weight: 500;}

.zx-auth-form { display: flex; flex-direction: column; gap: 20px; }
.zx-input-wrap { width: 100%; }
.zx-input-wrap label { display: block; font-size: 14px; font-weight: 700; color: #334155; margin-bottom: 10px; }
.zx-input-wrap input { width: 100%; padding: 16px 20px; border-radius: 12px; border: 1px solid #cbd5e1; font-size: 15px; color: #1e293b; transition: 0.3s ease; outline: none; background: #f8fafc; }
.zx-input-wrap input:focus { border-color: #2563eb; background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }

.zx-flex-input { display: flex; gap: 12px; }
.zx-flex-input input { flex: 1; }
.zx-btn-sendcode { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; padding: 0 20px; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s ease; white-space: nowrap; font-size: 14px; }
.zx-btn-sendcode:hover:not(:disabled) { background: #2563eb; color: #fff;}
.zx-btn-sendcode:disabled { background: #f1f5f9; color: #94a3b8; border-color: #e2e8f0; cursor: not-allowed; }

.zx-btn-submit-auth { background: #0f172a; color: #fff; border: none; padding: 18px; border-radius: 12px; font-size: 16px; font-weight: 800; cursor: pointer; transition: 0.3s ease; margin-top: 10px; width: 100%; }
.zx-btn-submit-auth:hover:not(:disabled) { background: #2563eb; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37,99,235,0.25); }
.zx-btn-submit-auth:disabled { opacity: 0.7; cursor: not-allowed; }
.zx-auth-msg { font-size: 13px; text-align: center; margin: 0; min-height: 18px; font-weight: 600;}

/* ==================================
   8. VIP 福利页 UI
================================== */
.zx-vip-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px 100px; }
.vip-hero { text-align: center; margin-bottom: 60px; }
.vip-hero h1 { font-size: 38px; font-weight: 900; margin: 0 0 15px 0; letter-spacing: -1px; }
.vip-hero p { font-size: 16px; color: #64748b; max-width: 650px; margin: 0 auto; line-height: 1.8; }

.vip-pricing-grid { display: grid; gap: 30px; align-items: stretch; grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.vip-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 40px; position: relative; transition: 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.vip-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.vip-card-pro { border: 2px solid #10b981; transform: scale(1.05); box-shadow: 0 20px 40px rgba(16,185,129,0.1); }
.vip-card-pro:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 25px 50px rgba(16,185,129,0.15); }

.v-recommend-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.v-tier { font-size: 20px; font-weight: 900; color: #0f172a; margin-bottom: 15px; }
.v-price { font-size: 46px; font-weight: 900; color: #0f172a; margin-bottom: 10px; display: flex; align-items: baseline; gap: 5px; }
.v-price span { font-size: 16px; color: #64748b; font-weight: 500; }
.v-desc { font-size: 14px; color: #64748b; margin-bottom: 30px; line-height: 1.6; }

.v-features { list-style: none; padding: 0; margin: 0 0 40px 0; flex: 1; }
.v-features li { font-size: 15px; color: #475569; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }

.v-btn { display: block; text-align: center; padding: 16px; border-radius: 12px; font-weight: 800; font-size: 16px; border: 1px solid #cbd5e1; color: #0f172a; transition: 0.3s ease; margin-top: auto; }
.v-btn:hover { background: #f8fafc; }
.v-btn-primary { color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.2); }
.v-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 25px rgba(16,185,129,0.3); }

/* ==================================
   9. 响应式布局适配 (Mobile)
================================== */
.zx-mobile-tabbar { display: none; }

@media (max-width: 900px) {
    .zx-header-left { gap: 15px; }
    .zx-main-nav, .zx-header-search, .zx-user-nav .zx-btn-console { display: none; } 
    
    .zx-hero-section { padding: 40px 20px; border-radius: 16px;}
    .zx-filter-console { flex-direction: column; border-radius: 12px;}
    .zx-filter-row-main { flex-direction: column; gap: 8px; }
    .zx-search-input-group { width: 100%; flex: 100% !important; }
    .zx-search-action { width: 100%; padding: 16px 0; margin-top: 10px; }
    
    .zx-filter-row-subs { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; }
    .zx-filter-row-subs .zx-filter-group { padding: 0 6px !important; margin-bottom: 0 !important; justify-content: center; }
    .zx-filter-icon { display: none !important; } 
    .zx-select, .zx-dropdown-trigger { font-size: 13px !important; padding: 12px 0 !important; text-align: center !important; }
    #zx-region-label { text-align: center !important; font-size: 13px !important; }
    .zx-dropdown-panel { width: 260px !important; left: auto !important; right: 0 !important; }

    .zx-data-grid { grid-template-columns: 1fr; flex-direction: column; gap: 20px;}
    .zx-layout-sidebar { position: static; top: auto; width: 100%; }
    .zx-param-item .val { max-width: 100%; text-align: right; }
    
    .zx-footer-top { padding: 50px 20px 40px; }
    .zx-footer-inner { flex-direction: column; gap: 40px;}
    .zx-footer-links { gap: 30px; flex-wrap: wrap; justify-content: flex-start;}
    .zx-link-col { width: 45%; }
    .zx-footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
    
    .vip-hero h1 { font-size: 30px; }
    .vip-pricing-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .vip-card-pro { transform: scale(1); }
    .vip-card-pro:hover { transform: translateY(-5px); }

    .zx-desktop-footer { display: none !important; }
    .zx-mobile-tabbar { display: flex; justify-content: space-around; align-items: center; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); height: 65px; box-shadow: 0 -4px 15px rgba(0,0,0,0.05); z-index: 999; padding-bottom: env(safe-area-inset-bottom); }
    .zx-mobile-tabbar .tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #94a3b8; font-size: 11px; font-weight: 600; width: 100%; height: 100%; }
    .zx-mobile-tabbar .tab-item .icon { font-size: 22px; margin-bottom: 2px; }
    .zx-mobile-tabbar .tab-item.active { color: #2563eb; }
    
    .zx-home-container, .zx-single-container, .zx-vip-container { padding-bottom: 90px !important; }
    #home-load-more-btn { background: transparent; border: none; padding: 10px 0; color: #94a3b8; font-weight: 500; font-size: 13px; box-shadow: none; pointer-events: none; }

    /* 移动端列表顶部标签单行滚动 + 金额位置调整 */
    .item-top { display: block; margin-bottom: 10px; } 
    .item-tags-wrap { display: flex; flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; padding-bottom: 4px; }
    .item-tags-wrap::-webkit-scrollbar { display: none; }
    .item-budget-pc { display: none; }
    .item-budget-mobile { display: inline-block; margin-left: 10px;}
    .item-footer { justify-content: flex-start; } 
}

/* ==================================
   10. 交互动画效果支持
================================== */
@keyframes successPop {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}
.zx-success-pop { animation: successPop 0.4s ease forwards; }

/* ==================================
   [提取] 弹窗大厂登录框 UI (自 footer.php)
================================== */
.modern-auth-box { background: #fff; padding: 40px 35px; border-radius: 24px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.1); position: relative; }
.auth-header { text-align: center; margin-bottom: 25px; }
.auth-header h2 { margin: 0 0 8px; font-size: 26px; font-weight: 900; color: #0f172a; letter-spacing: -0.5px; }
.auth-header p { margin: 0; color: #64748b; font-size: 14px; }
.auth-tabs { display: flex; gap: 25px; margin-bottom: 30px; border-bottom: 1px solid #e2e8f0; justify-content: center; }
.auth-tab { padding-bottom: 12px; cursor: pointer; color: #64748b; font-weight: bold; font-size: 16px; position: relative; transition: 0.3s; }
.auth-tab:hover { color: #0f172a; }
.auth-tab.active { color: #2563eb; }
.auth-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 10%; right: 10%; height: 3px; background: #2563eb; border-radius: 3px 3px 0 0; }
/* 修复登录注册表单上下挤在一起的问题 */
.auth-pane { 
    animation: fadeIn 0.3s ease; 
    display: flex; 
    flex-direction: column; 
    gap: 18px; /* 🚀 增加上下间距，让账号和密码/验证码框呼吸感更好 */
}
.modern-input { width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid #cbd5e1; background: #f8fafc; font-size: 15px; transition: 0.3s; box-sizing: border-box; }
.modern-input:focus { border-color: #2563eb; background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.1); outline: none; }
.modern-flex-input { display: flex; gap: 12px; }
.modern-flex-input .modern-input { flex: 1; }
.modern-btn-send { padding: 0 20px; border-radius: 12px; background: #eff6ff; color: #2563eb; border: none; font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 14px; white-space: nowrap; }
.modern-btn-send:hover:not(:disabled) { background: #dbeafe; }
.modern-btn-send:disabled { color: #94a3b8; background: #f1f5f9; cursor: not-allowed; }
.auth-btm-tips { text-align: center; font-size: 13px; color: #94a3b8; margin-top: 20px; }
.auth-msg-box { margin-top: 15px; text-align: center; font-size: 14px; min-height: 20px; font-weight: bold; }

/* ==================================
   [提取] VIP 收银台专属样式 (自 page-vip.php)
================================== */
.zx-vip-container { max-width: 1100px; margin: 60px auto 100px; padding: 0 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.vip-hero { text-align: center; margin-bottom: 40px; animation: fadeInDown 0.6s ease; }
.vip-hero h1 { font-size: 38px; font-weight: 900; color: #09090b; letter-spacing: -1px; margin-bottom: 15px; }
.vip-hero p { font-size: 16px; color: #52525b; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.user-status-badge { display: inline-block; margin-top: 20px; padding: 10px 24px; background: #fff; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); border: 1px solid #e4e4e7; font-size: 14px; color: #3f3f46; display: inline-flex; align-items: center; }
.zx-vip-tabs-wrap { text-align: center; margin-bottom: 30px; }
.zx-vip-tabs { display: inline-flex; background: #e4e4e7; border-radius: 50px; padding: 6px; }
.vip-tab-btn { padding: 12px 40px; border-radius: 50px; font-size: 16px; font-weight: bold; color: #71717a; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; background: transparent; display: flex; align-items: center; gap: 8px; outline: none; }
.vip-tab-btn:hover { color: #09090b; }
.vip-tab-btn.active { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: #09090b; }
.vip-tab-btn[data-target="vip"].active { color: #2563eb; }
.vip-tab-btn[data-target="svip"].active { color: #10b981; }
.zx-vip-content-panels { position: relative; min-height: 400px; }
.tier-panel { display: none; background: #fff; border-radius: 24px; box-shadow: 0 10px 50px rgba(0,0,0,0.06); border: 1px solid #e4e4e7; overflow: hidden; animation: fadeInUp 0.4s ease; }
.tier-panel.active { display: flex; }
.col-intro { flex: 1.2; padding: 40px; background: #fafafa; border-right: 1px solid #e4e4e7; }
.col-intro h2 { font-size: 26px; font-weight: 900; margin: 0 0 10px; }
.col-intro p { color: #71717a; font-size: 14px; margin-bottom: 30px; line-height: 1.6; }
.v-features { list-style: none; padding: 0; margin: 0; }
.v-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 14px; color: #3f3f46; font-weight: 500; }
.v-features li svg { width: 18px; height: 18px; flex-shrink: 0; }
.col-packages { flex: 1.5; padding: 40px; }
.col-packages h3 { font-size: 18px; font-weight: bold; margin: 0 0 20px; color: #09090b; }
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.pkg-item { border: 2px solid #e4e4e7; border-radius: 16px; padding: 20px; cursor: pointer; transition: 0.3s; position: relative; background: #fff; text-align: center; }
.pkg-item:hover { border-color: #a1a1aa; }
.pkg-item.active { border-color: #2563eb; background: #eff6ff; box-shadow: 0 4px 15px rgba(37,99,235,0.1); }
.tier-panel[data-tier="svip"] .pkg-item.active { border-color: #10b981; background: #ecfdf5; box-shadow: 0 4px 15px rgba(16,185,129,0.1); }
.pkg-item.active::after { content: '✔️'; position: absolute; bottom: -2px; right: -2px; width: 26px; height: 26px; border-radius: 12px 0 12px 0; font-size: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.tier-panel[data-tier="vip"] .pkg-item.active::after { background: #2563eb; }
.tier-panel[data-tier="svip"] .pkg-item.active::after { background: #10b981; }
.pkg-name { font-size: 15px; color: #52525b; margin-bottom: 8px; font-weight: bold; }
.pkg-price { font-size: 28px; font-weight: 900; color: #09090b; }
.pkg-price span { font-size: 16px; font-weight: normal; margin-right: 2px; }
.pkg-tag { position: absolute; top: -12px; left: -2px; color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 12px 0 12px 0; font-weight: bold; }
.col-qrcode { flex: 1; padding: 40px; border-left: 1px solid #e4e4e7; background: #fafafa; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.qr-box { width: 100%; max-width: 220px; background: #fff; border: 1px solid #e4e4e7; border-radius: 16px; padding: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.qr-img { width: 100%; aspect-ratio: 1/1; background: #f4f4f5; border-radius: 10px; margin-bottom: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #a1a1aa; font-size: 13px; overflow: hidden; }
.qr-img img { width: 100%; height: 100%; object-fit: cover; }
.alipay-logo { color: #0ea5e9; font-weight: bold; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 20px; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) { .tier-panel.active { flex-direction: column; } .col-intro, .col-packages, .col-qrcode { border: none; border-bottom: 1px solid #e4e4e7; } .col-qrcode { border-bottom: none; padding: 40px 20px; } }
@media (max-width: 600px) { .pkg-grid { grid-template-columns: 1fr; } .zx-vip-tabs { flex-direction: column; border-radius: 16px; padding: 10px; width: 100%; } .vip-tab-btn { border-radius: 10px; justify-content: center; } }

/* ==================================
   [提取] 企业雷达检索 UI (自 template-enterprise.php)
================================== */
.zx-ent-container { max-width: 1200px; margin: 40px auto 100px; padding: 0 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; overflow: visible !important; }
.ent-hero { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 24px; padding: 60px 20px; text-align: center; color: #fff; margin-bottom: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); position: relative; overflow: visible !important; z-index: 100; }
.ent-hero h1 { font-size: 36px; font-weight: 900; margin: 0 0 15px; letter-spacing: 1px; }
.ent-hero p { font-size: 16px; color: #94a3b8; margin-bottom: 40px; }
.ent-search-box { position: relative; max-width: 600px; margin: 0 auto; z-index: 101; overflow: visible !important; }
.ent-search-input { width: 100%; padding: 20px 30px; border-radius: 50px; border: none; font-size: 18px; outline: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; }
.ent-search-input:focus { box-shadow: 0 10px 40px rgba(37,99,235,0.3); }
.ent-search-btn { position: absolute; right: 8px; top: 8px; bottom: 8px; background: #2563eb; color: #fff; border: none; border-radius: 50px; padding: 0 30px; font-size: 16px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.ent-search-btn:hover { background: #1d4ed8; }
.ent-suggest-list { position: absolute; top: calc(100% + 12px); left: 0; right: 0; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); overflow: hidden; display: none; text-align: left; max-height: 400px; overflow-y: auto; }
.ent-suggest-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; text-decoration: none; color: #1e293b; border-bottom: 1px solid #f8fafc; transition: all 0.2s; font-size: 15px; background: #fff; }
.ent-suggest-item:last-child { border-bottom: none; }
.ent-suggest-item:hover { background: #f8fafc; padding-left: 30px; color: #2563eb; }
.ent-suggest-item span:first-child { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.ent-suggest-item .official-badge { background: #fef08a; color: #b45309; font-size: 11px; padding: 3px 8px; border-radius: 6px; font-weight: bold; }
.ent-suggest-count { font-size: 12px; color: #64748b; background: #f1f5f9; padding: 4px 10px; border-radius: 12px; font-weight: 600; }
.ent-danmaku-container { position: relative; width: 100%; height: 260px; overflow: hidden; margin-top: 50px; z-index: 1; -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.ent-danmaku-row { display: flex; width: max-content; margin-bottom: 25px; animation: danmakuScroll linear infinite; }
.ent-danmaku-row:hover { animation-play-state: paused; }
.ent-danmaku-item { background: #ffffff; color: #475569; padding: 10px 24px; border-radius: 50px; margin-right: 20px; font-size: 14px; font-weight: 500; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; transition: all 0.3s ease; white-space: nowrap; }
.ent-danmaku-item:hover { background: #2563eb; color: #ffffff; border-color: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.2); }
@keyframes danmakuScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ent-profile-header { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); margin-bottom: 30px; border: 1px solid #e2e8f0; display: flex; align-items: center; gap: 20px; }
.ent-avatar { width: 80px; height: 80px; background: #eff6ff; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #2563eb; font-weight: bold; flex-shrink: 0; }
.ent-title { font-size: 28px; font-weight: 900; color: #0f172a; margin: 0 0 10px; }
.ent-tags { display: flex; gap: 10px; }
.ent-tag { font-size: 13px; font-weight: bold; padding: 4px 12px; border-radius: 8px; }
.ent-section-title { font-size: 20px; font-weight: 900; color: #0f172a; margin: 40px 0 20px; display: flex; align-items: center; gap: 10px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.history-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; margin-top: 20px; }
.person-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; transition: 0.3s; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.person-card.is-official { background: #fffbf1; border-color: #fde047; box-shadow: 0 4px 15px rgba(250,204,21,0.1); }
.person-card:hover { border-color: #cbd5e1; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-3px); }
.pc-contact-zone { padding: 25px; position: relative; flex: 1; }
.pc-name { font-size: 18px; font-weight: 900; color: #0f172a; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; padding-bottom: 15px; border-bottom: 1px dashed #cbd5e1; justify-content: space-between; }
.pc-info-list { display: flex; flex-direction: column; gap: 12px; }
.pc-info-row { display: flex; align-items: flex-start; font-size: 14px; color: #0f172a; line-height: 1.5; }
.pc-icon { font-size: 16px; margin-right: 8px; flex-shrink: 0; }
.pc-label { color: #64748b; min-width: 50px; flex-shrink: 0; }
.pc-val { font-weight: 600; word-break: break-all; }
.pc-locked-mask { filter: blur(6px); opacity: 0.6; pointer-events: none; user-select: none; }
.pc-unlock-overlay { position: absolute; top: 60px; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.3); backdrop-filter: blur(2px); z-index: 10; border-radius: 0 0 16px 16px; }
.btn-unlock-card { background: #2563eb; color: #fff; border: none; padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: bold; cursor: pointer; box-shadow: 0 8px 20px rgba(37,99,235,0.3); transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.btn-unlock-card:hover { background: #1d4ed8; transform: translateY(-2px); }
.ent-history-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; }
.history-list { list-style: none; padding: 0; margin: 0; }
.history-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #f1f5f9; }
.history-item:last-child { border-bottom: none; }
.history-item a { color: #334155; font-size: 15px; font-weight: 500; text-decoration: none; transition: 0.2s; display: block; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 20px; }
.history-item a:hover { color: #2563eb; }
.history-meta { font-size: 13px; color: #94a3b8; white-space: nowrap; }
@media (max-width: 900px) { .ent-profile-header { flex-direction: column; text-align: center; } .contact-cards-grid { grid-template-columns: 1fr; } .history-cards-grid { grid-template-columns: 1fr; } }


/* ==========================================
   11. 用户中心 (User Center) 移动端深度精准适配 V2
========================================== */
@media (max-width: 768px) {
    /* 1. 全局容器修复，防止溢出，解除不必要的 padding */
    .zx-uc-wrap { 
        flex-direction: column !important; 
        padding: 0 !important; 
        margin-top: 20px;
    }
    .zx-uc-sidebar, .zx-uc-main { 
        width: 100% !important; 
        min-width: 0 !important; 
    }
    .zx-uc-card { 
        padding: 20px 15px !important; 
        border-radius: 16px; 
        max-width: 100vw;
    }

    /* 2. 基础资料表单修复 (精准定位类名，不再误伤复选框) */
    .zx-profile-form, .zx-settings-form { 
        max-width: 100% !important; 
    }
    .zx-flex-input { 
        flex-direction: column; 
        gap: 15px !important; 
    }
    .zx-flex-input .zx-input-wrap { 
        width: 100% !important; 
    }

    /* 3. 推广分销中心深度修复 */
    .uc-title { 
        flex-direction: column; 
        align-items: flex-start !important; 
        gap: 10px; 
    }
    .zx-aff-link-box { 
        flex-direction: column !important; 
    }
    .zx-aff-link-box button { 
        width: 100%; 
        padding: 15px 0 !important; 
    }
    
    .zx-aff-stats-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important; 
    }

    /* 4. 支付宝绑定区域修复 */
    .zx-alipay-display { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    .zx-alipay-form { 
        flex-direction: column !important; 
        align-items: stretch !important; 
    }
    .zx-alipay-form .zx-input-wrap { 
        width: 100% !important; 
        min-width: 0 !important; 
    }
    .zx-alipay-form button { 
        width: 100% !important; 
    }
    .alipay-form-btns {
        flex-direction: column;
    }

    /* 5. 表格防溢出横向滚动 */
    .zx-table-responsive { 
        width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
    }
    .zx-table-responsive table { 
        min-width: 600px !important; 
    }
}
/* ==========================================
   12. 全局轻量化消息提示 (Toast Notifications)
========================================== */
.zx-toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none; /* 防止遮挡鼠标点击 */
}

.zx-toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border: 1px solid #e2e8f0;
}

/* 不同的状态配色 */
.zx-toast.toast-error { border-color: #fecaca; color: #b91c1c; background: #fef2f2; }
.zx-toast.toast-success { border-color: #bbf7d0; color: #047857; background: #f0fdf4; }
.zx-toast.toast-warning { border-color: #fef08a; color: #b45309; background: #fffbeb; }

.zx-toast.fade-out { animation: toastFadeOut 0.3s forwards; }

@keyframes toastSlideDown {
    from { opacity: 0; transform: translateY(-30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastFadeOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-20px) scale(0.9); }
}