/* ===== 全局重置 ===== */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --primary:#6366f1;
  --primary-light:#818cf8;
  --accent:#06b6d4;
  --accent-light:#22d3ee;
  --purple:#a855f7;
  --pink:#ec4899;
  --gold:#f59e0b;
  --dark:#0a0e27;
  --dark2:#131836;
  --dark3:#1e2547;
  --text:#e2e8f0;
  --text-dim:#94a3b8;
  --card:rgba(255,255,255,.06);
  --card-border:rgba(255,255,255,.1);
  --glow:0 0 30px rgba(99,102,241,.3);
}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:var(--dark);
  line-height:1.6;
  font-size:14px;
  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}
/* 全局动态背景 */
body::before{
  content:'';
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%,rgba(99,102,241,.15),transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%,rgba(168,85,247,.12),transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%,rgba(6,182,212,.1),transparent 60%),
    linear-gradient(180deg,#0a0e27 0%,#0d1230 50%,#0a0e27 100%);
  z-index:-2;
}
body::after{
  content:'';
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index:-1;
  pointer-events:none;
}
a{color:var(--accent-light);text-decoration:none;transition:color .2s}
a:hover{color:var(--primary-light)}
img{max-width:100%}
ul{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* ===== 按钮 ===== */
.btn{
  display:inline-block;padding:10px 24px;
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;border:none;border-radius:10px;font-size:14px;
  cursor:pointer;text-align:center;
  transition:all .3s;
  box-shadow:0 4px 15px rgba(99,102,241,.3);
  font-weight:500;letter-spacing:.5px;
  position:relative;overflow:hidden;
}
.btn::before{
  content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition:left .5s;
}
.btn:hover::before{left:100%}
.btn:hover{opacity:1;color:#fff;transform:translateY(-2px);box-shadow:0 8px 25px rgba(99,102,241,.5)}
.btn-sm{padding:6px 16px;font-size:13px}
.btn-lg{padding:14px 36px;font-size:16px;border-radius:12px}
.btn-block{display:block;width:100%}
.btn-outline{
  background:transparent;
  border:1.5px solid var(--accent-light);
  color:var(--accent-light);
  box-shadow:none;
}
.btn-outline:hover{background:var(--accent-light);color:var(--dark);box-shadow:0 4px 20px rgba(34,211,238,.4)}

/* ===== 头部导航 ===== */
.site-header{
  background:rgba(10,14,39,.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--card-border);
  position:sticky;top:0;z-index:100;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:10px;font-size:22px;font-weight:800;color:#fff}
.logo-icon{font-size:28px;filter:drop-shadow(0 0 10px rgba(99,102,241,.5))}
.logo-img{height:40px;width:auto}
.main-nav{display:flex;gap:8px}
.main-nav a{
  color:var(--text-dim);font-size:15px;font-weight:500;
  padding:8px 18px;border-radius:8px;
  border-bottom:none;transition:all .25s;
  position:relative;
}
.main-nav a:hover,.main-nav a.active{
  color:#fff;
  background:rgba(99,102,241,.15);
}
.main-nav a.active::after{
  content:'';position:absolute;bottom:2px;left:50%;transform:translateX(-50%);
  width:20px;height:2px;border-radius:2px;
  background:linear-gradient(90deg,var(--accent-light),var(--primary-light));
}
.header-right{display:flex;align-items:center;gap:12px}

/* 公告条 */
.site-notice{
  background:linear-gradient(90deg,rgba(99,102,241,.2),rgba(168,85,247,.2),rgba(99,102,241,.2));
  padding:10px 0;font-size:13px;color:var(--text);
  border-bottom:1px solid var(--card-border);
}

/* ===== 首页三图横幅 ===== */
.nav-banner{
  width:100%;
  background:linear-gradient(135deg,#0d1230 0%,#1a1f4a 50%,#0d1230 100%);
  padding:0;
  position:relative;
  overflow:hidden;
}
.nav-banner::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:
    radial-gradient(circle at 15% 50%,rgba(99,102,241,.2),transparent 40%),
    radial-gradient(circle at 85% 50%,rgba(6,182,212,.15),transparent 40%);
  pointer-events:none;
}
.nav-banner-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:stretch;min-height:200px;
  position:relative;z-index:1;
}
.nb-side{flex:0 0 auto;display:flex;align-items:center;justify-content:center;overflow:hidden}
.nb-side img{height:200px;width:auto;object-fit:contain;display:block;filter:drop-shadow(0 4px 20px rgba(0,0,0,.3))}
.nb-left{order:1}
.nb-right{order:3}
.nb-center{
  flex:1;order:2;position:relative;
  background-size:cover;background-position:center;
  display:flex;align-items:center;justify-content:center;
  min-height:140px;overflow:hidden;align-self:center;margin:0 16px;
  border-radius:16px;
}
.nb-center-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(13,18,48,.85),rgba(26,31,74,.75));
  backdrop-filter:blur(4px);
  border-radius:16px;
  border:1px solid var(--card-border);
}
.nb-center-content{position:relative;z-index:2;text-align:center;padding:24px 30px}
.nb-title{
  font-size:28px;font-weight:900;color:#fff;margin:0 0 8px;
  letter-spacing:2px;
  background:linear-gradient(135deg,#fff 0%,var(--accent-light) 50%,var(--primary-light) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  text-shadow:none;
}
.nb-subtitle{font-size:15px;color:rgba(255,255,255,.8);margin:0;letter-spacing:1px}
@media(max-width:768px){
  .nav-banner-inner{flex-direction:column;min-height:auto}
  .nb-side{order:0;width:100%}
  .nb-side img{width:100%;height:auto;max-height:160px;object-fit:cover}
  .nb-center{order:1;min-height:120px;width:100%;margin:0}
  .nb-title{font-size:22px}
  .nb-subtitle{font-size:13px}
}

/* ===== 通用区块 ===== */
.section{padding:45px 0;position:relative}
.section-gray{background:rgba(255,255,255,.02)}
.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:36px}
.section-header h2{
  font-size:28px;color:#fff;display:flex;align-items:center;gap:10px;
  font-weight:800;letter-spacing:1px;
}
.section-header h2::before{
  content:'';width:4px;height:28px;border-radius:2px;
  background:linear-gradient(180deg,var(--accent-light),var(--primary));
}
.title-icon{font-size:26px;filter:drop-shadow(0 0 8px rgba(99,102,241,.4))}
.more-link{
  color:var(--accent-light);font-size:14px;font-weight:500;
  padding:6px 16px;border-radius:20px;
  border:1px solid rgba(34,211,238,.3);
  transition:all .25s;
}
.more-link:hover{background:rgba(34,211,238,.1);border-color:var(--accent-light);color:var(--accent-light)}

/* ===== 搜索栏 ===== */
.site-search{
  background:rgba(255,255,255,.03);
  border-bottom:1px solid var(--card-border);
  padding:18px 0;
}
.search-bar{display:flex;gap:12px;max-width:700px;margin:0 auto}
.search-bar input{
  flex:1;padding:14px 24px;
  background:rgba(255,255,255,.06);
  border:1.5px solid var(--card-border);
  border-radius:30px;font-size:15px;color:#fff;
  outline:none;transition:all .3s;
}
.search-bar input::placeholder{color:var(--text-dim)}
.search-bar input:focus{
  border-color:var(--accent-light);
  background:rgba(255,255,255,.08);
  box-shadow:0 0 0 4px rgba(34,211,238,.1);
}
.search-bar button{
  padding:14px 36px;
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;border:none;border-radius:30px;font-size:15px;
  cursor:pointer;white-space:nowrap;font-weight:600;
  transition:all .3s;box-shadow:0 4px 20px rgba(99,102,241,.4);
}
.search-bar button:hover{transform:translateY(-1px);box-shadow:0 6px 28px rgba(99,102,241,.55)}

/* ===== 平台卡片 ===== */
.platform-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.platform-card{
  background:var(--card);
  backdrop-filter:blur(10px);
  border-radius:14px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:all .35s cubic-bezier(.4,0,.2,1);
  position:relative;border:1px solid var(--card-border);
}
.platform-card::before{
  content:'';position:absolute;inset:0;border-radius:14px;
  background:linear-gradient(135deg,rgba(99,102,241,.15),rgba(6,182,212,.1));
  opacity:0;transition:opacity .35s;pointer-events:none;
}
.platform-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(99,102,241,.3);
  border-color:rgba(99,102,241,.4);
}
.platform-card:hover::before{opacity:1}
.platform-card.is-recommend{
  border:1.5px solid transparent;
  background:
    linear-gradient(var(--card),var(--card)) padding-box,
    linear-gradient(135deg,var(--gold),var(--pink)) border-box;
}
.platform-badge{
  position:absolute;top:8px;right:8px;
  background:linear-gradient(135deg,var(--gold),#ef4444);
  color:#fff;padding:3px 10px;border-radius:12px;
  font-size:11px;font-weight:700;z-index:2;
  box-shadow:0 2px 10px rgba(245,158,11,.4);
}
.platform-link{display:block;color:inherit;padding:16px 10px;text-align:center;position:relative;z-index:1}
.platform-link:hover{color:inherit}
.platform-header{display:block;padding:0 0 10px}
.platform-logo{
  width:64px;height:64px;margin:0 auto 10px;border-radius:16px;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;overflow:hidden;
  border:1px solid var(--card-border);
  transition:transform .35s;
}
.platform-card:hover .platform-logo{transform:scale(1.1) rotate(-3deg)}
.platform-logo img{width:100%;height:100%;object-fit:contain;display:block}
.logo-placeholder{
  color:#fff;font-size:22px;font-weight:800;width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--primary),var(--purple));
}
.platform-info{text-align:center}
.platform-name{font-size:14px;color:#fff;margin-bottom:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:600}
.platform-meta{display:flex;align-items:center;justify-content:center;gap:6px;font-size:11px;flex-wrap:wrap}
.platform-cat{
  background:rgba(99,102,241,.2);color:var(--primary-light);
  padding:2px 8px;border-radius:6px;font-size:10px;font-weight:500;
}
.platform-rating{color:var(--gold);font-size:11px}
.platform-desc{display:none}
.platform-features{display:none}
.platform-footer{
  display:flex;flex-direction:column;gap:6px;align-items:center;
  padding:10px 0 0;border-top:1px solid var(--card-border);margin-top:6px;
}
.platform-price{color:#ef4444;font-weight:800;font-size:14px}
.platform-go{
  color:var(--accent-light);font-size:12px;font-weight:600;
  background:rgba(34,211,238,.1);padding:5px 14px;border-radius:8px;
  display:inline-block;transition:all .25s;
}
.platform-card:hover .platform-go{background:var(--accent-light);color:var(--dark)}

/* 更多平台卡片 */
.more-platform-card{
  display:flex;align-items:center;justify-content:center;
  background:var(--card);border:1.5px dashed var(--card-border);
}
.more-platform-card:hover{border-color:var(--accent-light);border-style:solid}

/* ===== 分类标签 ===== */
.cat-tabs{display:flex;gap:10px;margin-bottom:28px;flex-wrap:wrap}
.cat-tab{
  padding:10px 24px;
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:25px;color:var(--text-dim);
  font-size:14px;transition:all .25s;cursor:pointer;
  backdrop-filter:blur(10px);
}
.cat-tab:hover{border-color:var(--primary-light);color:var(--primary-light);background:rgba(99,102,241,.1)}
.cat-tab.active{
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;border-color:transparent;
  box-shadow:0 4px 15px rgba(99,102,241,.4);
}

/* ===== 文章卡片(网格) ===== */
.article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.article-card{
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:16px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:all .35s cubic-bezier(.4,0,.2,1);
  display:block;color:inherit;border:1px solid var(--card-border);
}
.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(99,102,241,.25);
  border-color:rgba(99,102,241,.3);
}
.article-cover{
  height:170px;background-size:cover;background-position:center;
  background-color:rgba(255,255,255,.05);position:relative;overflow:hidden;
}
.article-cover::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(10,14,39,.6));
  opacity:0;transition:opacity .35s;
}
.article-card:hover .article-cover::after{opacity:1}
.article-cover-default{
  display:flex;align-items:center;justify-content:center;font-size:56px;
  background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(168,85,247,.15));
}
.article-body{padding:20px}
.article-cat{
  display:inline-block;
  background:rgba(99,102,241,.2);color:var(--primary-light);
  padding:3px 12px;border-radius:6px;font-size:12px;font-weight:500;margin-bottom:10px;
}
.article-title{
  font-size:17px;color:#fff;margin-bottom:10px;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  font-weight:700;transition:color .25s;
}
.article-card:hover .article-title{color:var(--accent-light)}
.article-excerpt{color:var(--text-dim);font-size:13px;line-height:1.7;margin-bottom:14px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.article-meta{display:flex;justify-content:space-between;color:var(--text-dim);font-size:12px}

/* 文章列表页(横向) */
.article-list{display:flex;flex-direction:column;gap:18px}
.article-list-item{
  display:flex;gap:24px;
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:16px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:all .35s;color:inherit;border:1px solid var(--card-border);
}
.article-list-item:hover{
  box-shadow:0 8px 32px rgba(99,102,241,.2);
  transform:translateX(6px);border-color:rgba(99,102,241,.3);
}
.ali-cover{
  width:240px;height:160px;flex-shrink:0;
  background-size:cover;background-position:center;
  background-color:rgba(255,255,255,.05);position:relative;
}
.ali-cover-default{display:flex;align-items:center;justify-content:center;font-size:48px;background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(168,85,247,.15))}
.ali-content{flex:1;padding:22px 24px 22px 0;display:flex;flex-direction:column}
.ali-cat{
  display:inline-block;background:rgba(99,102,241,.2);color:var(--primary-light);
  padding:3px 12px;border-radius:6px;font-size:12px;align-self:flex-start;margin-bottom:10px;font-weight:500;
}
.ali-title{font-size:20px;color:#fff;margin-bottom:10px;font-weight:700;transition:color .25s}
.article-list-item:hover .ali-title{color:var(--accent-light)}
.ali-excerpt{color:var(--text-dim);font-size:14px;flex:1;line-height:1.7}
.ali-meta{display:flex;gap:20px;color:var(--text-dim);font-size:13px;margin-top:12px}

/* ===== 文章详情 ===== */
.article-layout{display:grid;grid-template-columns:1fr 320px;gap:32px}
.article-detail{
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:20px;padding:40px;
  box-shadow:0 4px 30px rgba(0,0,0,.2);border:1px solid var(--card-border);
}
.ad-cover{
  height:320px;border-radius:12px;
  background-size:cover;background-position:center;margin-bottom:28px;
  box-shadow:0 8px 30px rgba(0,0,0,.3);
}
.ad-title{font-size:32px;color:#fff;margin-bottom:18px;line-height:1.4;font-weight:800}
.ad-meta{
  display:flex;gap:20px;color:var(--text-dim);font-size:13px;
  margin-bottom:24px;padding-bottom:20px;
  border-bottom:1px solid var(--card-border);flex-wrap:wrap;
}
.ad-cat{background:rgba(99,102,241,.2);color:var(--primary-light);padding:3px 12px;border-radius:6px}
.ad-summary{
  background:rgba(99,102,241,.08);padding:18px 24px;border-radius:12px;
  color:var(--text);font-size:14px;margin-bottom:28px;
  border-left:4px solid var(--primary);
}
.ad-content{font-size:15px;line-height:2;color:var(--text)}
.ad-content h1,.ad-content h2,.ad-content h3{margin:24px 0 14px;color:#fff;font-weight:700}
.ad-content h2{font-size:24px}
.ad-content h3{font-size:19px}
.ad-content p{margin-bottom:18px}
.ad-content img{max-width:100%;border-radius:10px;margin:14px 0;box-shadow:0 4px 20px rgba(0,0,0,.3)}
.ad-content video{max-width:100%;border-radius:10px;margin:14px 0}
.ad-content ul,.ad-content ol{margin:14px 0 20px 24px}
.ad-content li{margin-bottom:8px;color:var(--text)}
.ad-content a{color:var(--accent-light);text-decoration:underline}
.ad-content blockquote{
  border-left:4px solid var(--primary);padding:12px 24px;
  background:rgba(99,102,241,.08);margin:20px 0;color:var(--text);border-radius:0 8px 8px 0;
}

/* 侧边栏 */
.article-sidebar{position:sticky;top:90px;align-self:start}
.sidebar-widget{
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:14px;padding:22px;margin-bottom:18px;
  box-shadow:0 4px 20px rgba(0,0,0,.15);border:1px solid var(--card-border);
}
.sidebar-widget h3{
  font-size:17px;margin-bottom:16px;color:#fff;
  padding-bottom:12px;border-bottom:1px solid var(--card-border);
  font-weight:700;
}
.sidebar-list li{padding:10px 0;border-bottom:1px solid rgba(255,255,255,.05);display:flex;justify-content:space-between;align-items:center;gap:8px}
.sidebar-list li:last-child{border-bottom:none}
.sidebar-list a{color:var(--text);font-size:14px;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transition:color .2s}
.sidebar-list a:hover{color:var(--accent-light)}
.side-views{color:var(--text-dim);font-size:12px;flex-shrink:0}
.sidebar-contact{
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;border:none;
}
.sidebar-contact h3{color:#fff;border-bottom-color:rgba(255,255,255,.2)}
.sidebar-contact p{font-size:13px;margin-bottom:8px;opacity:.9}

/* ===== 下载中心 ===== */
.file-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.file-card{
  display:flex;align-items:center;gap:18px;
  background:var(--card);backdrop-filter:blur(10px);
  padding:24px;border-radius:14px;
  box-shadow:0 4px 20px rgba(0,0,0,.15);
  transition:all .3s;border:1px solid var(--card-border);
}
.file-card:hover{box-shadow:0 8px 32px rgba(99,102,241,.2);transform:translateY(-3px);border-color:rgba(99,102,241,.3)}
.file-icon{font-size:40px;flex-shrink:0;filter:drop-shadow(0 2px 8px rgba(99,102,241,.3))}
.file-info{flex:1;min-width:0}
.file-name{font-size:17px;color:#fff;margin-bottom:6px;font-weight:600}
.file-desc{color:var(--text-dim);font-size:13px;margin-bottom:8px}
.file-meta{display:flex;gap:14px;color:var(--text-dim);font-size:12px}

/* ===== CTA区块 ===== */
.cta-box{
  background:linear-gradient(135deg,var(--primary) 0%,var(--purple) 50%,var(--accent) 100%);
  border-radius:20px;padding:56px;
  display:flex;justify-content:space-between;align-items:center;
  color:#fff;flex-wrap:wrap;gap:24px;
  box-shadow:0 12px 48px rgba(99,102,241,.35);
  position:relative;overflow:hidden;
}
.cta-box::before{
  content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;
  background:radial-gradient(circle,rgba(255,255,255,.1),transparent 70%);
  border-radius:50%;
}
.cta-content{position:relative;z-index:1}
.cta-content h2{font-size:30px;margin-bottom:10px;font-weight:800}
.cta-content p{opacity:.9;font-size:15px}
.cta-btns{display:flex;gap:14px;position:relative;z-index:1}
.cta-btns .btn{background:#fff;color:var(--primary);box-shadow:0 4px 20px rgba(0,0,0,.2)}
.cta-btns .btn:hover{background:rgba(255,255,255,.9);transform:translateY(-2px)}
.cta-btns .btn-outline{border-color:#fff;color:#fff;background:rgba(255,255,255,.15)}
.cta-btns .btn-outline:hover{background:#fff;color:var(--primary)}

/* ===== 页脚 ===== */
.site-footer{
  background:rgba(5,8,25,.9);
  color:var(--text-dim);padding:60px 0 24px;margin-top:50px;
  border-top:1px solid var(--card-border);
  position:relative;
}
.site-footer::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--primary),var(--accent),var(--primary),transparent);
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:36px}
.footer-col h4{color:#fff;margin-bottom:18px;font-size:17px;font-weight:700}
.footer-col p{font-size:13px;line-height:1.9;color:var(--text-dim)}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:var(--text-dim);font-size:14px;transition:color .2s}
.footer-col ul li a:hover{color:var(--accent-light);padding-left:4px}
.footer-bottom{
  border-top:1px solid var(--card-border);
  padding-top:24px;text-align:center;font-size:13px;color:var(--text-dim);
}
.footer-bottom a{color:var(--text-dim)}

/* ===== 页面Banner ===== */
.page-banner{
  background:linear-gradient(135deg,#0d1230,#1a1f4a);
  color:#fff;padding:60px 0;text-align:center;
  position:relative;overflow:hidden;
}
.page-banner::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:
    radial-gradient(circle at 30% 50%,rgba(99,102,241,.2),transparent 50%),
    radial-gradient(circle at 70% 50%,rgba(6,182,212,.15),transparent 50%);
}
.page-banner h1{font-size:36px;margin-bottom:10px;font-weight:800;position:relative;z-index:1}
.page-banner p{opacity:.8;position:relative;z-index:1}
.page-banner a{color:var(--accent-light)}

/* ===== 表单 ===== */
.form-group{margin-bottom:20px}
.form-group label{display:block;margin-bottom:8px;color:var(--text);font-weight:500}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:12px 16px;
  background:rgba(255,255,255,.06);
  border:1.5px solid var(--card-border);border-radius:10px;
  font-size:14px;font-family:inherit;color:#fff;transition:all .25s;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-dim)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;border-color:var(--accent-light);
  background:rgba(255,255,255,.08);
  box-shadow:0 0 0 4px rgba(34,211,238,.1);
}
.form-group textarea{resize:vertical}
.form-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px}
.upload-row{display:flex;gap:10px}
.upload-row input{flex:1}
.preview-img{max-width:200px;margin-top:12px;border-radius:8px;border:1px solid var(--card-border)}

/* ===== 提示/空状态/分页 ===== */
.alert{padding:14px 20px;border-radius:10px;margin-bottom:18px;font-size:14px}
.alert-success{background:rgba(34,197,94,.1);color:#4ade80;border:1px solid rgba(34,197,94,.3)}
.alert-error{background:rgba(239,68,68,.1);color:#f87171;border:1px solid rgba(239,68,68,.3)}
.alert-info{background:rgba(59,130,246,.1);color:#60a5fa;border:1px solid rgba(59,130,246,.3)}
.empty-state{text-align:center;padding:70px 20px;color:var(--text-dim);font-size:15px}
.pagination{display:flex;gap:8px;justify-content:center;margin-top:30px;flex-wrap:wrap}
.pagination a{
  padding:10px 16px;border:1px solid var(--card-border);border-radius:8px;
  color:var(--text);font-size:13px;background:var(--card);transition:all .25s;
}
.pagination a:hover{border-color:var(--primary-light);color:var(--primary-light)}
.pagination a.active{background:linear-gradient(135deg,var(--primary),var(--purple));color:#fff;border-color:transparent}
.page-dots{padding:10px 8px;color:var(--text-dim)}

/* ===== 数据表格 ===== */
.data-table{width:100%;border-collapse:collapse;font-size:13px}
.data-table th{
  background:rgba(255,255,255,.05);padding:14px;text-align:left;
  font-weight:600;color:var(--text);border-bottom:2px solid var(--card-border);white-space:nowrap;
}
.data-table td{padding:14px;border-bottom:1px solid rgba(255,255,255,.05);color:var(--text)}
.data-table tr:hover{background:rgba(255,255,255,.03)}
.mono{font-family:"Courier New",monospace;font-size:12px}
.status{display:inline-block;padding:3px 12px;border-radius:12px;font-size:12px;font-weight:500}
.status-paid{background:rgba(34,197,94,.15);color:#4ade80}
.status-pending{background:rgba(245,158,11,.15);color:#fbbf24}
.status-expired{background:rgba(239,68,68,.15);color:#f87171}
.badge{display:inline-block;background:rgba(99,102,241,.15);color:var(--primary-light);padding:3px 12px;border-radius:6px;font-size:12px}
.badge-recommend{background:linear-gradient(135deg,var(--gold),#ef4444);color:#fff}
.table-thumb{width:44px;height:44px;border-radius:8px;object-fit:cover}
.no-thumb{color:var(--text-dim);font-size:12px}

/* ===== 面板 ===== */
.panel{background:var(--card);backdrop-filter:blur(10px);border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,.15);margin-bottom:22px;border:1px solid var(--card-border)}
.panel-header{display:flex;justify-content:space-between;align-items:center;padding:18px 26px;border-bottom:1px solid var(--card-border)}
.panel-header h3{font-size:17px;color:#fff;font-weight:700}
.panel-body{padding:22px 26px}
.panel-row{margin-bottom:22px}
.search-form{display:flex;gap:10px}
.search-form input{padding:8px 14px;border:1px solid var(--card-border);border-radius:8px;font-size:13px;width:200px;background:rgba(255,255,255,.06);color:#fff}

/* ===== 独立导航板块 ===== */
.nav-section{background:rgba(255,255,255,.02);padding:20px 0;border-bottom:1px solid var(--card-border)}
.nav-section .cat-tabs{margin-bottom:0;justify-content:center;flex-wrap:wrap}
.nav-section .cat-tab{padding:10px 26px;font-size:14px}

/* ===== 广告卡片(网格内) ===== */
.ad-card-grid{
  background:linear-gradient(135deg,var(--primary),var(--purple));
  border-radius:14px;overflow:hidden;
  box-shadow:0 4px 20px rgba(99,102,241,.3);
  transition:all .35s;position:relative;
  display:flex;align-items:center;justify-content:center;min-height:168px;
}
.ad-card-grid:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(99,102,241,.45)}
.ad-card-grid img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.ad-card-grid .ad-grid-ph{color:#fff;text-align:center;padding:18px;position:relative;z-index:1}
.ad-card-grid .ad-grid-ph-icon{font-size:32px;margin-bottom:8px}
.ad-card-grid .ad-grid-ph-title{font-size:14px;font-weight:700;line-height:1.4}
.ad-card-grid .ad-grid-label{
  position:absolute;top:8px;left:8px;
  background:rgba(245,158,11,.95);color:#fff;
  padding:3px 10px;border-radius:12px;font-size:11px;font-weight:700;z-index:2;
}

/* ===== 横向滚动广告 ===== */
.ad-scroll-section{background:rgba(255,255,255,.02)}
.ad-scroll-wrap{position:relative;padding:0 10px}
.ad-scroll{
  display:flex;gap:14px;overflow-x:auto;scrollbar-width:none;
  -webkit-overflow-scrolling:touch;padding:8px 2px;will-change:scroll-left;
}
.ad-scroll::-webkit-scrollbar{display:none}
.ad-card{
  flex:0 0 auto;width:190px;
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:14px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  border:1px solid var(--card-border);
  display:block;color:inherit;transition:all .35s;
}
.ad-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(99,102,241,.25);border-color:rgba(99,102,241,.3)}
.ad-card-img{height:105px;background:rgba(255,255,255,.05);display:flex;align-items:center;justify-content:center;overflow:hidden}
.ad-card-img img{width:100%;height:100%;object-fit:contain;display:block;padding:10px}
.ad-card-img .ad-ph{display:flex;flex-direction:column;align-items:center;gap:6px;color:var(--primary-light)}
.ad-card-img .ad-ph-icon{font-size:36px}
.ad-card-img .ad-ph-text{font-size:13px}
.ad-card-info{padding:14px;text-align:center}
.ad-card-title{font-size:14px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:10px}
.ad-card-btn{
  display:inline-block;padding:6px 18px;
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;border-radius:16px;font-size:12px;font-weight:600;
  transition:all .25s;
}
.ad-card-btn:hover{box-shadow:0 4px 15px rgba(99,102,241,.4)}
.ad-scroll-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;
  background:var(--card);backdrop-filter:blur(10px);
  box-shadow:0 4px 15px rgba(0,0,0,.3);
  border:1px solid var(--card-border);cursor:pointer;
  font-size:20px;z-index:2;display:flex;align-items:center;justify-content:center;
  color:var(--text);transition:all .25s;
}
.ad-scroll-arrow:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.ad-scroll-arrow.prev{left:-8px}
.ad-scroll-arrow.next{right:-8px}
@media(max-width:768px){
  .ad-card{width:170px}
  .ad-card-img{height:100px}
  .ad-scroll-arrow{width:34px;height:34px;font-size:16px}
}

/* 标签 */
.tag{display:inline-block;padding:3px 10px;border-radius:6px;font-size:12px;font-weight:500}
.tag-link{background:rgba(34,197,94,.15);color:#4ade80}

/* ===== 首页文章大卡片 ===== */
.article-large-list{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.article-large-card{
  display:flex;flex-direction:column;
  background:var(--card);backdrop-filter:blur(10px);
  border-radius:16px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  border:1px solid var(--card-border);transition:all .35s cubic-bezier(.4,0,.2,1);
}
.article-large-card:hover{
  box-shadow:0 16px 48px rgba(99,102,241,.3);
  transform:translateY(-6px);border-color:rgba(99,102,241,.35);
}
.alc-left{position:relative;width:100%;height:190px;flex-shrink:0;background:rgba(255,255,255,.05);overflow:hidden}
.alc-tag{
  position:absolute;top:12px;left:12px;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:#fff;padding:5px 14px;border-radius:8px;
  font-size:12px;font-weight:700;z-index:2;
  box-shadow:0 2px 12px rgba(239,68,68,.4);
}
.alc-cover{
  width:100%;height:100%;background-size:cover;background-position:center;
  position:absolute;inset:0;transition:transform .5s;
}
.article-large-card:hover .alc-cover{transform:scale(1.08)}
.alc-cover-default{
  display:flex;align-items:center;justify-content:center;font-size:60px;
  color:var(--primary-light);
  background:linear-gradient(135deg,rgba(99,102,241,.25),rgba(168,85,247,.2));
  position:relative;
}
.alc-right{flex:1;padding:18px 20px;display:flex;flex-direction:column;min-width:0}
.alc-title{font-size:17px;color:#fff;margin-bottom:10px;line-height:1.5;font-weight:700;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .25s}
.article-large-card:hover .alc-title{color:var(--accent-light)}
.alc-meta{display:flex;gap:14px;color:var(--text-dim);font-size:12px;margin-bottom:12px;flex-wrap:wrap}
.alc-points{list-style:none;margin:0 0 16px;padding:0;flex:1}
.alc-points li{position:relative;padding-left:16px;font-size:13px;color:var(--text-dim);line-height:1.8;margin-bottom:3px;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.alc-points li::before{content:"▸";position:absolute;left:0;color:var(--accent-light);font-weight:700;font-size:11px}
.alc-btns{display:flex;gap:10px;margin-top:auto}
.alc-btns .btn{flex:1;padding:9px 14px;font-size:13px;text-align:center;border-radius:8px;text-decoration:none}
.alc-btns .btn-trial{background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;border:none;box-shadow:0 3px 12px rgba(239,68,68,.3)}
.alc-btns .btn-trial:hover{box-shadow:0 5px 20px rgba(239,68,68,.45)}
.alc-btns .btn-detail{background:transparent;color:var(--accent-light);border:1.5px solid var(--accent-light);box-shadow:none}
.alc-btns .btn-detail:hover{background:var(--accent-light);color:var(--dark)}
@media(max-width:900px){.article-large-list{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.article-large-list{grid-template-columns:1fr}.alc-left{height:170px}.alc-title{font-size:16px}}

/* ===== 右侧悬浮客服 ===== */
.float-service{position:fixed;right:18px;top:50%;transform:translateY(-50%);z-index:999;display:flex;flex-direction:column;gap:12px}
.service-btn{
  width:52px;height:52px;border-radius:50%;
  background:var(--card);backdrop-filter:blur(10px);
  box-shadow:0 4px 20px rgba(0,0,0,.3);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;cursor:pointer;transition:all .3s;
  position:relative;border:1px solid var(--card-border);
}
.service-btn:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(99,102,241,.4)}
.service-btn.wechat{color:#4ade80}
.service-btn.qq{color:#60a5fa}
.service-btn .service-panel{
  position:absolute;right:62px;top:50%;transform:translateY(-50%);
  background:var(--dark2);backdrop-filter:blur(20px);
  border-radius:14px;box-shadow:0 8px 32px rgba(0,0,0,.4);
  padding:16px;min-width:180px;display:none;text-align:center;
  border:1px solid var(--card-border);
}
.service-btn:hover .service-panel{display:block}
.service-panel h4{font-size:14px;margin-bottom:10px;color:#fff}
.service-panel .sp-qr{width:130px;height:130px;background:rgba(255,255,255,.05);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--text-dim);font-size:12px;margin:0 auto 10px;border:1px dashed var(--card-border)}
.service-panel p{font-size:13px;color:var(--text);margin-bottom:6px}
.service-panel .sp-id{font-size:16px;font-weight:700;color:#fff;user-select:all}
.service-panel .sp-copy{display:inline-block;margin-top:8px;padding:5px 14px;background:rgba(99,102,241,.2);color:var(--primary-light);border-radius:8px;font-size:12px;cursor:pointer;border:none;transition:all .25s}
.service-panel .sp-copy:hover{background:var(--primary);color:#fff}

/* ===== 手机端汉堡菜单 ===== */
.menu-toggle{display:none;background:none;border:none;font-size:26px;cursor:pointer;color:#fff;padding:4px 8px}
.mobile-nav{
  display:none;position:absolute;top:72px;left:0;right:0;
  background:rgba(10,14,39,.95);backdrop-filter:blur(20px);
  box-shadow:0 8px 24px rgba(0,0,0,.3);padding:12px 0;z-index:99;
  border-bottom:1px solid var(--card-border);
}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:14px 28px;color:var(--text);font-size:15px;border-bottom:1px solid rgba(255,255,255,.05)}
.mobile-nav a:hover,.mobile-nav a.active{color:var(--accent-light);background:rgba(99,102,241,.1)}

/* ===== 响应式 ===== */
@media(max-width:1100px){.platform-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:900px){
  .article-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .article-layout{grid-template-columns:1fr}
  .file-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .platform-grid{grid-template-columns:repeat(3,1fr);gap:12px}
  .main-nav{display:none}
  .menu-toggle{display:block}
  .section{padding:48px 0}
  .section-header h2{font-size:22px}
  .article-list-item{flex-direction:column}
  .ali-cover{width:100%;height:180px}
  .ali-content{padding:18px}
  .cta-box{padding:36px;flex-direction:column;text-align:center}
  .cta-btns{flex-direction:column;width:100%}
  .cta-btns .btn{width:100%}
  .float-service{right:12px}
  .service-btn{width:44px;height:44px;font-size:20px}
  .service-btn .service-panel{right:52px;min-width:160px}
  .page-banner{padding:44px 0}
  .page-banner h1{font-size:26px}
  .article-detail{padding:24px}
  .ad-title{font-size:24px}
}
@media(max-width:480px){
  .platform-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .article-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .container{padding:0 14px}
  .platform-logo{width:54px;height:54px}
  .platform-name{font-size:13px}
  .ad-card-grid{min-height:150px}
  .cat-tabs{gap:8px}
  .cat-tab{padding:8px 18px;font-size:13px}
}
/* ===== 纯图片广告模式 ===== */
.ad-card-image{width:220px;flex-shrink:0}
.ad-card-image .ad-card-img-only{height:220px;padding:0;aspect-ratio:1/1;border-radius:14px;overflow:hidden;background:#fff}
.ad-card-image .ad-card-img-only img{width:100%;height:100%;object-fit:cover;padding:0;border-radius:14px;transition:transform .4s ease}
.ad-card-image:hover .ad-card-img-only img{transform:scale(1.06)}
@media(max-width:768px){
  .ad-card-image{width:170px}
  .ad-card-image .ad-card-img-only{height:170px}
}
/* ===== 后台按钮编辑器 ===== */
.buttons-editor{margin-bottom:12px;display:flex;flex-direction:column;gap:10px}
.button-row{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.04);padding:10px 12px;border-radius:10px;border:1px solid var(--card-border)}
.btn-index{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;font-weight:700;flex-shrink:0}
.btn-name-input{flex:0 0 160px;padding:8px 12px;background:rgba(255,255,255,.06);border:1px solid var(--card-border);border-radius:8px;color:#fff;font-size:13px}
.btn-url-input{flex:1;padding:8px 12px;background:rgba(255,255,255,.06);border:1px solid var(--card-border);border-radius:8px;color:#fff;font-size:13px}
.btn-del{flex-shrink:0;padding:6px 14px;font-size:12px}
.btn-name-input:focus,.btn-url-input:focus{outline:none;border-color:var(--accent-light);background:rgba(255,255,255,.08)}
@media(max-width:600px){
  .button-row{flex-wrap:wrap}
  .btn-name-input{flex:1 1 100%}
  .btn-url-input{flex:1 1 100%}
}
/* ===== 文章按钮(彩色2列) ===== */
.article-buttons{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
  margin:24px 0 32px;
  padding:24px;
  background:rgba(255,255,255,.03);
  border-radius:16px;
  border:1px solid var(--card-border);
}
.article-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 20px;
  color:#fff;border-radius:30px;
  font-size:15px;font-weight:700;
  text-decoration:none;
  transition:all .3s;
  box-shadow:0 4px 15px rgba(0,0,0,.2);
  position:relative;overflow:hidden;
  white-space:nowrap;text-overflow:ellipsis;
}
.article-btn::before{
  content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transition:left .5s;
}
.article-btn:hover::before{left:100%}
.article-btn:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(0,0,0,.3);color:#fff}
.article-btn .ab-icon{font-size:16px;opacity:.9;flex-shrink:0}
.article-btn .ab-text{letter-spacing:.5px;overflow:hidden;text-overflow:ellipsis}
@media(max-width:600px){
  .article-buttons{grid-template-columns:1fr;padding:16px;gap:10px}
  .article-btn{padding:12px 18px;font-size:14px}
}
/* ===== 侧边栏平台推荐 ===== */
.sidebar-platform-list{display:flex;flex-direction:column;gap:10px}
.sidebar-platform-list li{border-bottom:none;padding:0}
.sp-item{display:flex;align-items:center;gap:12px;padding:10px;border-radius:10px;transition:all .25s;text-decoration:none}
.sp-item:hover{background:rgba(99,102,241,.1)}
.sp-logo{
  width:40px;height:40px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(135deg,var(--primary),var(--purple));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:16px;font-weight:800;overflow:hidden;
}
.sp-logo img{width:100%;height:100%;object-fit:contain}
.sp-info{flex:1;min-width:0}
.sp-name{font-size:14px;color:#fff;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sp-price{font-size:12px;color:#ef4444;font-weight:700;margin-top:2px}
/* ===== 侧边栏分类标签 ===== */
.sidebar-cats{display:flex;flex-wrap:wrap;gap:8px}
.side-cat-tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 14px;border-radius:20px;
  background:rgba(99,102,241,.12);
  color:var(--primary-light);
  font-size:13px;font-weight:500;
  text-decoration:none;transition:all .25s;
  border:1px solid rgba(99,102,241,.2);
}
.side-cat-tag:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.cat-count{
  background:rgba(255,255,255,.15);
  padding:1px 7px;border-radius:10px;
  font-size:11px;font-weight:600;
}
.side-cat{color:var(--text-dim);font-size:11px;flex-shrink:0;background:rgba(255,255,255,.05);padding:2px 8px;border-radius:6px}
/* 下载中心分类标签 */
.side-cat-download{background:rgba(34,197,94,.12);color:#4ade80;border-color:rgba(34,197,94,.25)}
.side-cat-download:hover{background:#22c55e;color:#fff;border-color:#22c55e}
.sidebar-more{display:inline-block;margin-top:12px;font-size:13px;color:var(--accent-light);text-decoration:none;font-weight:500}
.sidebar-more:hover{color:var(--primary-light)}
/* 侧边栏QQ群 */
.sidebar-group{margin-top:16px;padding-top:14px;border-top:1px solid rgba(255,255,255,.15);text-align:center}
.sg-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:10px}
.sg-qr{width:120px;height:120px;object-fit:cover;border-radius:10px;margin:0 auto 8px;display:block;border:2px solid rgba(255,255,255,.2)}
.sg-id{font-size:13px;color:rgba(255,255,255,.85);margin-bottom:10px;font-weight:500}
.sg-btn{display:inline-block;padding:7px 20px;background:rgba(255,255,255,.2);color:#fff;border-radius:20px;font-size:13px;font-weight:600;text-decoration:none;transition:all .25s}
.sg-btn:hover{background:#fff;color:var(--primary)}
/* ===== 平台卡片V2 - 科技风 ===== */
.platform-grid{grid-template-columns:repeat(3,1fr);gap:22px}
.platform-card-v2{
  position:relative;background:var(--card);backdrop-filter:blur(12px);
  border-radius:20px;overflow:hidden;
  border:1px solid var(--card-border);
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
.platform-card-v2::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent),var(--purple));
  opacity:0;transition:opacity .35s;
}
.platform-card-v2:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(99,102,241,.3);
  border-color:rgba(99,102,241,.4);
}
.platform-card-v2:hover::before{opacity:1}
.platform-card-v2.is-recommend{
  border:1.5px solid transparent;
  background:linear-gradient(var(--card),var(--card)) padding-box,
             linear-gradient(135deg,var(--gold),var(--pink)) border-box;
}
.pc-glow{
  position:absolute;top:-50%;right:-50%;width:200%;height:200%;
  background:radial-gradient(circle,rgba(99,102,241,.12) 0%,transparent 60%);
  opacity:0;transition:opacity .4s;pointer-events:none;
}
.platform-card-v2:hover .pc-glow{opacity:1}
.pc-badge{
  position:absolute;top:12px;right:12px;z-index:3;
  background:linear-gradient(135deg,var(--gold),#ef4444);
  color:#fff;padding:4px 12px;border-radius:20px;
  font-size:11px;font-weight:700;
  box-shadow:0 2px 10px rgba(245,158,11,.4);
}
.pc-link{display:block;color:inherit;padding:20px 18px;text-decoration:none;position:relative;z-index:2}
.pc-link:hover{color:inherit}
.pc-header{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.pc-logo{
  width:52px;height:52px;border-radius:14px;flex-shrink:0;
  background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(168,85,247,.15));
  border:1px solid rgba(99,102,241,.25);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;transition:transform .35s;
}
.platform-card-v2:hover .pc-logo{transform:scale(1.08) rotate(-3deg)}
.pc-logo img{width:100%;height:100%;object-fit:contain;padding:6px}
.pc-logo-text{
  color:#fff;font-size:18px;font-weight:800;
  background:linear-gradient(135deg,var(--primary-light),var(--accent-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.pc-info{flex:1;min-width:0}
.pc-name{
  font-size:16px;color:#fff;font-weight:800;margin:0 0 4px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  letter-spacing:.3px;
}
.pc-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.pc-cat{
  background:rgba(99,102,241,.18);color:var(--primary-light);
  padding:2px 8px;border-radius:6px;font-size:11px;font-weight:600;
}
.pc-rating{color:var(--gold);font-size:12px;font-weight:600}
.pc-features{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.pc-feature{
  background:rgba(34,211,238,.1);color:var(--accent-light);
  padding:3px 10px;border-radius:6px;font-size:11px;font-weight:500;
  border:1px solid rgba(34,211,238,.15);
}
.pc-desc{
  font-size:13px;color:var(--text-dim);line-height:1.6;
  margin-bottom:16px;min-height:40px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.pc-footer{display:flex;justify-content:space-between;align-items:center;padding-top:14px;border-top:1px solid var(--card-border)}
.pc-price{display:flex;flex-direction:column;gap:2px}
.pc-price-label{font-size:11px;color:var(--text-dim)}
.pc-price-value{font-size:18px;color:#ef4444;font-weight:800;letter-spacing:.5px}
.pc-register{
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:#fff;padding:10px 20px;border-radius:25px;
  font-size:14px;font-weight:800;letter-spacing:.5px;
  box-shadow:0 4px 16px rgba(99,102,241,.35);
  transition:all .3s;white-space:nowrap;
}
.platform-card-v2:hover .pc-register{
  box-shadow:0 6px 24px rgba(99,102,241,.5);
  transform:scale(1.05);
}
@media(max-width:1100px){.platform-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.platform-grid{grid-template-columns:repeat(2,1fr);gap:12px}}
@media(max-width:480px){.platform-grid{grid-template-columns:1fr}}
/* WMIP首页新版Hero */

.wmip-hero{

    background:#f7faff;

    padding:90px 0;

}


.hero-container{

    max-width:1200px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.hero-left{

    width:48%;

}


.hero-left h1{

    font-size:42px;

    color:#172033;

    font-weight:800;

    margin-bottom:15px;

}


.hero-left h2{

    font-size:26px;

    color:#64748b;

    font-weight:400;

    margin-bottom:15px;

}


.hero-desc{

    color:#94a3b8;

    font-size:15px;

}


.hero-tags{

    margin-top:25px;

}


.hero-tags span{

    display:inline-block;

    background:#eff6ff;

    color:#2563eb;

    padding:8px 16px;

    border-radius:20px;

    margin-right:10px;

    font-size:14px;

}


.hero-search{

    margin-top:35px;

    width:520px;

    height:55px;

    background:white;

    display:flex;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.hero-search input{

    flex:1;

    border:0;

    padding:0 20px;

    outline:none;

    font-size:15px;

}


.hero-search button{

    width:70px;

    border:0;

    background:#2563eb;

    color:white;

    font-size:20px;

}


.hero-right{

    width:45%;

}










/* WMIP新版平台卡片 */

.platform-card-v2{

    background:#ffffff !important;

    border-radius:18px;

    padding:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    border:1px solid #eef2f7;

    transition:.3s;

}


.platform-card-v2:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(37,99,235,.15);

}


.pc-name{

    color:#1e293b !important;

    font-size:18px;

    font-weight:700;

}


.pc-desc{

    color:#64748b !important;

}


.pc-feature{

    background:#eff6ff;

    color:#2563eb;

    padding:5px 10px;

    border-radius:15px;

    font-size:12px;

}


.pc-price-value{

    color:#2563eb !important;

    font-size:22px;

    font-weight:800;

}


.pc-register{

    background:#2563eb !important;

    color:#fff !important;

    border-radius:10px;

    padding:10px 18px;

}/* ===== WMIP新版Hero右侧IP地图效果 ===== */

.network-card{
    width:100%;
    height:320px;
    border-radius:28px;
    background:
    linear-gradient(145deg,#ffffff,#f3f8ff);
    position:relative;
    overflow:hidden;
    box-shadow:
    0 20px 50px rgba(37,99,235,.12);
}


/* 背景网格 */
.map-grid{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(37,99,235,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(37,99,235,.06) 1px,transparent 1px);
    background-size:35px 35px;
}


/* 中间定位区域 */
.network-center{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    
    width:120px;
    height:120px;

    border-radius:50%;

    border:2px dashed #93c5fd;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.7);

    box-shadow:
    0 0 40px rgba(37,99,235,.15);
}


.network-center span{
    font-size:45px;
}


/* 节点 */
.network-point{
    position:absolute;

    width:14px;
    height:14px;

    background:#2563eb;

    border-radius:50%;

    box-shadow:
    0 0 15px rgba(37,99,235,.6);
}


/* 节点位置 */

.point1{
    top:55px;
    left:70px;
}


.point2{
    top:80px;
    right:70px;
}


.point3{
    bottom:70px;
    left:90px;
}


.point4{
    bottom:60px;
    right:100px;
}



/* 连接线 */

.line{
    position:absolute;

    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #93c5fd,
    transparent
    );

    opacity:.8;
}


.line1{
    width:140px;
    top:100px;
    left:90px;
    transform:rotate(20deg);
}


.line2{
    width:150px;
    top:160px;
    right:80px;
    transform:rotate(-25deg);
}


.line3{
    width:130px;
    bottom:100px;
    left:110px;
    transform:rotate(-15deg);
}



/* 手机端适配 */

@media(max-width:768px){

    .network-card{
        height:260px;
    }


    .network-center{
        width:90px;
        height:90px;
    }


    .network-center span{
        font-size:35px;
    }

}

/* ==================================================
   WMIP 首页整体视觉升级 V1
   白色 / 浅蓝 SaaS 门户风格
================================================== */

/* 全站基础背景 */
body{
    background:#f6f9ff !important;
    color:#172033;
}

/* 首页主体不要粉色网格 */
.site-main{
    background:#f6f9ff !important;
    background-image:none !important;
}

/* 首页普通模块统一白色 */
.site-main > .section{
    background:#ffffff !important;
    background-image:none !important;
}

/* 精选优惠 */
.ad-scroll-section{
    background:#ffffff !important;
    background-image:none !important;
    border-top:1px solid #f0f4fa;
}

/* 平台推荐所在区域 */
#recommendGrid,
.recommend-cats{
    background-image:none !important;
}

/* 灰色模块改成极浅蓝灰 */
.section-gray{
    background:#f7faff !important;
    background-image:none !important;
}

/* 教程资讯区域 */
.home-articles{
    background:#f7faff !important;
    background-image:none !important;
}

/* 内容宽度扩大，更接近门户网站 */
.container{
    max-width:1280px !important;
}

/* 模块上下间距收紧 */
.section{
    padding-top:38px !important;
    padding-bottom:38px !important;
}

/* 模块标题统一 */
.section-header{
    margin-bottom:22px !important;
}

.section-header h2{
    font-size:24px !important;
    color:#172033 !important;
    font-weight:800 !important;
}

/* 标题左侧蓝色竖线 */
.section-header h2::before{
    content:"";
    display:inline-block;
    width:4px;
    height:22px;
    border-radius:4px;
    background:#2563eb;
    margin-right:10px;
    vertical-align:-3px;
}

/* 查看全部 */
.more-link{
    color:#64748b !important;
    font-size:13px !important;
}

.more-link:hover{
    color:#2563eb !important;
}

/* 分类按钮去掉粉红色 */
.cat-tab{
    background:#ffffff !important;
    color:#64748b !important;
    border:1px solid #e3eaf5 !important;
    box-shadow:none !important;
}

.cat-tab:hover{
    color:#2563eb !important;
    border-color:#93b4ff !important;
}

.cat-tab.active{
    color:#ffffff !important;
    background:#2563eb !important;
    border-color:#2563eb !important;
    box-shadow:0 6px 16px rgba(37,99,235,.18) !important;
}

/* ==================================================
   WMIP Hero三栏门户布局
================================================== */

.hero-container{
    max-width:1280px !important;
    width:calc(100% - 48px);
    margin:0 auto;
    display:grid !important;
    grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr) 280px;
    gap:24px;
    align-items:center;
}

/* 左侧介绍 */
.hero-left{
    width:auto !important;
    min-width:0;
}

/* 中间科技图 */
.hero-right{
    width:auto !important;
    min-width:0;
}

.network-card{
    width:100% !important;
    height:300px;
}

/* 右侧栏 */
.hero-sidebar{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hero-side-card{
    background:#ffffff;
    border:1px solid #e7edf7;
    border-radius:15px;
    padding:16px;
    box-shadow:0 8px 25px rgba(37,99,235,.06);
}

.hero-side-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:15px;
    color:#172033;
}

.hero-side-title strong{
    font-weight:800;
}

.hero-side-title > span{
    font-size:11px;
    color:#2563eb;
    background:#eff6ff;
    padding:3px 8px;
    border-radius:20px;
}

/* 公告 */
.hero-notice-list{
    display:flex;
    flex-direction:column;
}

.hero-notice-list a{
    min-height:35px;
    display:grid;
    grid-template-columns:7px 1fr 10px;
    align-items:center;
    gap:7px;
    border-bottom:1px solid #f0f3f8;
    color:#5f6f84;
    font-size:12px;
    text-decoration:none;
}

.hero-notice-list a:last-child{
    border-bottom:0;
}

.hero-notice-list a:hover{
    color:#2563eb;
}

.notice-dot{
    display:block;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#2563eb;
}

.hero-notice-list em{
    font-style:normal;
    color:#a1adbd;
}

/* 快捷入口 */
.hero-quick-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
}

.hero-quick-grid a{
    height:62px;
    background:#f7faff;
    border:1px solid #edf2f9;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#5f6f84;
    font-size:12px;
    text-decoration:none;
    transition:.2s;
}

.hero-quick-grid a span{
    font-size:19px;
    color:#2563eb;
    line-height:1;
}

.hero-quick-grid a:hover{
    color:#2563eb;
    background:#eff6ff;
    border-color:#cbdcff;
    transform:translateY(-2px);
}

/* Hero整体稍微扩大 */
.wmip-hero{
    padding:58px 0 !important;
}

/* 平板 */
@media(max-width:1100px){

    .hero-container{
        grid-template-columns:1fr 1fr !important;
    }

    .hero-sidebar{
        grid-column:1 / -1;
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}

/* 手机 */
@media(max-width:768px){

    .hero-container{
        width:calc(100% - 28px);
        grid-template-columns:1fr !important;
    }

    .hero-sidebar{
        display:flex;
    }

    .network-card{
        height:250px;
    }
}

/* ==================================================
   IP类型导航
================================================== */

.ip-type-section{
    background:#ffffff !important;
}

.ip-type-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.ip-type-card{
    background:#ffffff;
    border:1px solid #e8eef7;
    border-radius:14px;
    padding:22px 18px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    text-decoration:none;
    box-shadow:0 6px 22px rgba(30,64,175,.05);
    transition:all .25s ease;
}

.ip-type-card:hover{
    transform:translateY(-4px);
    border-color:#c9dbff;
    box-shadow:0 12px 30px rgba(37,99,235,.10);
}


/* 图标 */

.ip-type-icon{
    flex:0 0 46px;
    width:46px;
    height:46px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    font-weight:800;
}


/* 静态IP */

.type-static{
    color:#2563eb;
    background:#eaf2ff;
}


/* 动态IP */

.type-dynamic{
    color:#10b981;
    background:#eafbf5;
}


/* 住宅IP */

.type-home{
    color:#8b5cf6;
    background:#f2edff;
}


/* 数据中心IP */

.type-data{
    color:#f59e0b;
    background:#fff7e6;
}


/* 精选资源 */

.type-pro{
    color:#2563eb;
    background:#edf5ff;
}


/* 文字 */

.ip-type-info{
    min-width:0;
}

.ip-type-info h3{
    margin:0 0 6px;
    color:#172033;
    font-size:16px;
    font-weight:800;
}

.ip-type-info p{
    margin:0 0 12px;
    color:#7b8798;
    font-size:12px;
    line-height:1.6;
}

.ip-type-info span{
    color:#2563eb;
    font-size:12px;
    font-weight:600;
}


/* 平板 */

@media(max-width:1100px){

    .ip-type-grid{
        grid-template-columns:repeat(3,1fr);
    }

}


/* 手机 */

@media(max-width:768px){

    .ip-type-grid{
        grid-template-columns:1fr;
    }

}

/* ==================================================
   平台排行榜
================================================== */

.ranking-section{
    background:#f7faff !important;
}

.ranking-box{
    background:#ffffff;
    border:1px solid #e7edf6;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 28px rgba(30,64,175,.05);
}

.ranking-head,
.ranking-row{
    display:grid;
    grid-template-columns:80px 1.5fr 1fr .8fr 1fr 110px;
    align-items:center;
    gap:14px;
    padding:0 22px;
}

.ranking-head{
    height:50px;
    background:#f7faff;
    color:#8a96a8;
    font-size:12px;
    font-weight:600;
    border-bottom:1px solid #edf1f6;
}

.ranking-row{
    min-height:68px;
    border-bottom:1px solid #f0f3f7;
    color:#526176;
    font-size:13px;
    transition:.2s;
}

.ranking-row:last-child{
    border-bottom:0;
}

.ranking-row:hover{
    background:#fafcff;
}


/* 排名数字 */

.rank-no{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#eef3f9;
    color:#748196;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.rank-no-1{
    background:#fff2cf;
    color:#e59a00;
}

.rank-no-2{
    background:#edf1f6;
    color:#76859a;
}

.rank-no-3{
    background:#fff0e5;
    color:#e87825;
}


/* 平台 */

.rank-platform{
    display:flex;
    align-items:center;
    gap:10px;
    color:#172033;
}

.rank-platform strong{
    font-size:14px;
}

.rank-logo{
    width:36px;
    height:36px;
    border-radius:10px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    color:#2563eb;
    font-weight:800;
}

.rank-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* 类型 */

.rank-type{
    color:#69778b;
}


/* 评分 */

.rank-rating{
    color:#69778b;
}

.rank-star{
    color:#f59e0b;
}


/* 价格 */

.rank-price{
    color:#ef4444;
    font-weight:700;
}


/* 查看详情 */

.rank-btn{
    display:inline-flex;
    height:32px;
    padding:0 14px;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    border:1px solid #bcd2ff;
    border-radius:8px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.rank-btn:hover{
    background:#2563eb;
    border-color:#2563eb;
    color:#ffffff;
}


/* 手机 */

@media(max-width:768px){

    .ranking-box{
        overflow-x:auto;
    }

    .ranking-head,
    .ranking-row{
        min-width:760px;
    }

}

/* ==================================================
   教程资讯 + IP检测工具
================================================== */

.home-info-section{
    background:#ffffff !important;
}

.home-info-layout{
    display:grid;
    grid-template-columns:minmax(0,2fr) minmax(300px,.8fr);
    gap:24px;
    align-items:start;
}


/* ===== 左侧教程资讯 ===== */

.home-news-panel{
    min-width:0;
}

.compact-article-list{
    background:#ffffff;
    border:1px solid #e7edf6;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 28px rgba(30,64,175,.05);
}

.compact-article-item{
    min-height:88px;
    display:grid;
    grid-template-columns:64px 1fr 22px;
    gap:14px;
    align-items:center;
    padding:14px 18px;
    border-bottom:1px solid #edf1f6;
    text-decoration:none;
    transition:all .2s ease;
}

.compact-article-item:last-child{
    border-bottom:0;
}

.compact-article-item:hover{
    background:#f8fbff;
}


/* 文章封面 */

.compact-article-cover{
    width:64px;
    height:56px;
    border-radius:9px;
    background:linear-gradient(135deg,#edf4ff,#f4f0ff);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:24px;
}

.compact-article-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* 文章文字 */

.compact-article-content{
    min-width:0;
}

.compact-article-content h3{
    margin:0 0 9px;
    color:#172033;
    font-size:15px;
    font-weight:700;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.compact-article-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    color:#8a96a8;
    font-size:11px;
}

.compact-article-arrow{
    color:#a1adbd;
    font-size:22px;
}


/* ===== 右侧检测工具 ===== */

.home-tool-panel{
    min-width:0;
}

.home-tool-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.home-tool-item{
    min-height:112px;
    background:#ffffff;
    border:1px solid #e7edf6;
    border-radius:14px;
    padding:16px;
    text-decoration:none;

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;

    transition:all .25s ease;
    box-shadow:0 6px 20px rgba(30,64,175,.04);
}

.home-tool-item:hover{
    transform:translateY(-3px);
    border-color:#c9dbff;
    box-shadow:0 10px 26px rgba(37,99,235,.09);
}


/* 工具图标 */

.home-tool-icon{
    width:38px;
    height:38px;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf5ff;
    color:#2563eb;
    font-size:20px;
    font-weight:800;
}

.home-tool-item strong{
    display:block;
    color:#172033;
    font-size:14px;
    margin-bottom:4px;
}

.home-tool-item p{
    margin:0;
    color:#8a96a8;
    font-size:11px;
    line-height:1.5;
}


/* ===== 平板适配 ===== */

@media(max-width:900px){

    .home-info-layout{
        grid-template-columns:1fr;
    }

}


/* ===== 手机适配 ===== */

@media(max-width:600px){

    .compact-article-item{
        grid-template-columns:54px 1fr;
    }

    .compact-article-cover{
        width:54px;
        height:50px;
    }

    .compact-article-arrow{
        display:none;
    }

    .home-tool-grid{
        grid-template-columns:repeat(2,1fr);
    }

}/* ==================================================
   首页底部CTA蓝白专业版
================================================== */

.cta-box{
    background:linear-gradient(
        135deg,
        #2563eb 0%,
        #3b82f6 55%,
        #6366f1 100%
    ) !important;

    border-radius:18px !important;
    padding:34px 42px !important;

    box-shadow:
        0 16px 40px rgba(37,99,235,.18) !important;

    border:1px solid rgba(255,255,255,.18) !important;
}


/* 左侧文字 */

.cta-content h2{
    color:#ffffff !important;
    font-size:25px !important;
    font-weight:800 !important;
    margin-bottom:8px !important;
}

.cta-content p{
    color:rgba(255,255,255,.82) !important;
    font-size:13px !important;
}


/* 按钮区域 */

.cta-btns{
    gap:12px !important;
}


/* 下载工具 */

.cta-box .btn{
    background:#ffffff !important;
    color:#2563eb !important;
    border:1px solid #ffffff !important;
    border-radius:10px !important;
    height:44px !important;
    padding:0 24px !important;
    box-shadow:0 6px 18px rgba(20,40,100,.12) !important;
}


/* 阅读教程 */

.cta-box .btn-outline{
    background:rgba(255,255,255,.10) !important;
    color:#ffffff !important;
    border:1px solid rgba(255,255,255,.55) !important;
}


/* 鼠标经过 */

.cta-box .btn:hover{
    transform:translateY(-2px);
}

.cta-box .btn-outline:hover{
    background:#ffffff !important;
    color:#2563eb !important;
}


/* 手机 */

@media(max-width:768px){

    .cta-box{
        padding:28px 22px !important;
    }

    .cta-content h2{
        font-size:21px !important;
    }

}

/* ==================================================
   WMIP 专业门户 Footer V2
================================================== */

.site-footer{
    background:#111c3d !important;
    padding:52px 0 22px !important;
    color:#aebbd0 !important;
    border-top:0 !important;
}

.site-footer .container{
    max-width:1280px !important;
}


/* 四栏布局 */

.footer-grid{
    display:grid !important;
    grid-template-columns:2fr 1fr 1fr 1.25fr !important;
    gap:60px !important;
    align-items:start !important;
}


/* 标题 */

.footer-col h4{
    position:relative;
    margin:0 0 20px !important;
    padding-bottom:10px;
    color:#ffffff !important;
    font-size:15px !important;
    font-weight:700 !important;
}

.footer-col h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:24px;
    height:2px;
    border-radius:2px;
    background:#3b82f6;
}


/* 关于我们 */

.footer-col p{
    margin:0 !important;
    color:#9eacc2 !important;
    font-size:12px !important;
    line-height:2 !important;
}


/* 列表 */

.footer-col ul{
    list-style:none !important;
    padding:0 !important;
    margin:0 !important;
}

.footer-col li{
    margin:0 0 11px !important;
    color:#9eacc2 !important;
    font-size:12px !important;
    line-height:1.5 !important;
}

.footer-col a{
    color:#9eacc2 !important;
    text-decoration:none !important;
    transition:all .2s ease;
}

.footer-col a:hover{
    color:#ffffff !important;
    padding-left:3px;
}


/* 最下面版权 */

.footer-bottom{
    margin-top:36px !important;
    padding-top:20px !important;
    border-top:1px solid rgba(255,255,255,.08) !important;
    text-align:center !important;
}

.footer-bottom p{
    margin:0 !important;
    color:#74839c !important;
    font-size:11px !important;
}

.footer-bottom a{
    color:#8ea0bb !important;
    text-decoration:none !important;
}

.footer-bottom a:hover{
    color:#ffffff !important;
}


/* 平板 */

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:36px !important;
    }

}


/* 手机 */

@media(max-width:600px){

    .site-footer{
        padding:38px 0 18px !important;
    }

    .footer-grid{
        grid-template-columns:1fr !important;
        gap:28px !important;
    }

    .footer-bottom{
        margin-top:28px !important;
    }

}/* ==================================================
   Hero 节点地图科技视觉 V3
================================================== */

.network-card-pro{
    position:relative !important;
    width:100% !important;
    height:300px !important;
    overflow:hidden !important;
    border-radius:22px !important;
    background:
        radial-gradient(circle at 50% 48%,rgba(59,130,246,.10),transparent 28%),
        linear-gradient(145deg,#ffffff,#f4f8ff) !important;
    border:1px solid #e5eefb !important;
    box-shadow:0 18px 45px rgba(37,99,235,.10) !important;
}

/* 网格背景 */
.network-card-pro .map-grid{
    position:absolute;
    inset:0;
    z-index:0;
    background-image:
        linear-gradient(rgba(37,99,235,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(37,99,235,.055) 1px,transparent 1px);
    background-size:27px 27px;
}

/* 节点分布背景 */
.world-map-svg{
    position:absolute;
    width:88%;
    height:80%;
    left:6%;
    top:7%;
    z-index:1;
    color:#cfe0f8;
    opacity:.65;
    filter:drop-shadow(0 4px 10px rgba(37,99,235,.05));
}

.world-map-svg path{
    fill:currentColor;
}

/* 连接线 */
.map-route{
    position:absolute;
    left:50%;
    top:50%;
    height:1px;
    background:linear-gradient(
        90deg,
        rgba(37,99,235,.55),
        rgba(37,99,235,.05)
    );
    transform-origin:left center;
    z-index:2;
}

.route-a{
    width:145px;
    transform:rotate(202deg);
}

.route-b{
    width:135px;
    transform:rotate(325deg);
}

.route-c{
    width:120px;
    transform:rotate(145deg);
}

.route-d{
    width:150px;
    transform:rotate(25deg);
}

/* 蓝色节点 */
.hero-map-node{
    position:absolute;
    width:11px;
    height:11px;
    border-radius:50%;
    background:#2563eb;
    box-shadow:
        0 0 0 6px rgba(37,99,235,.08),
        0 0 18px rgba(37,99,235,.45);
    z-index:4;
}

.node-a{
    left:18%;
    top:26%;
}

.node-b{
    right:17%;
    top:31%;
}

.node-c{
    left:23%;
    bottom:25%;
}

.node-d{
    right:22%;
    bottom:22%;
}

/* 中央定位区域 */
.network-center-pro{
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    width:110px !important;
    height:110px !important;
    transform:translate(-50%,-50%) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    z-index:5 !important;
}

/* 呼吸圆环 */
.pulse-ring{
    position:absolute;
    left:50%;
    top:50%;
    border-radius:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

.pulse-ring-1{
    width:90px;
    height:90px;
    border:2px dashed rgba(59,130,246,.55);
}

.pulse-ring-2{
    width:64px;
    height:64px;
    background:rgba(255,255,255,.70);
    box-shadow:0 0 35px rgba(37,99,235,.16);
}

/* 蓝色定位标记 */
.pin-dot{
    position:relative;
    width:34px;
    height:34px;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    background:linear-gradient(135deg,#2563eb,#5b7cff);
    box-shadow:0 8px 22px rgba(37,99,235,.35);
    z-index:6;
}

.pin-dot::after{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    left:11px;
    top:11px;
    background:#ffffff;
    border-radius:50%;
}

/* 底部文字 */
.map-mini-label{
    position:absolute;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    padding:5px 12px;
    border-radius:20px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(37,99,235,.10);
    color:#7b8aa1;
    font-size:10px;
    white-space:nowrap;
    z-index:6;
}

/* 悬停效果 */
.network-card-pro:hover .hero-map-node{
    box-shadow:
        0 0 0 8px rgba(37,99,235,.08),
        0 0 24px rgba(37,99,235,.55);
}

/* 手机 */
@media(max-width:768px){

    .network-card-pro{
        height:250px !important;
    }

    .world-map-svg{
        width:94%;
        left:3%;
    }

}/* ==================================================
   Hero 热门搜索
================================================== */

.hot-search{
    margin-top:13px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:11px;
}

.hot-search > span{
    color:#8a96a8;
}

.hot-search a{
    color:#65758b;
    text-decoration:none;
    transition:.2s;
}

.hot-search a:hover{
    color:#2563eb;
}/* ==================================================
   Hero 首屏最终比例优化 V4
================================================== */

/* 整体宽度再放开一点 */
.hero-container{
    max-width:1360px !important;
    grid-template-columns:
        minmax(0,1.15fr)
        minmax(360px,1fr)
        300px !important;
    gap:28px !important;
}


/* Hero整体高度收紧 */
.wmip-hero{
    padding:50px 0 !important;
}


/* 左侧标题增强 */
.hero-left h1{
    font-size:40px !important;
    line-height:1.2 !important;
    margin-bottom:16px !important;
}

.hero-left h2{
    font-size:24px !important;
    margin-bottom:14px !important;
}

.hero-desc{
    font-size:13px !important;
    line-height:1.8 !important;
}


/* 搜索框稍微放宽 */
.hero-search{
    width:100% !important;
    max-width:520px !important;
}


/* 中间节点图放大 */
.network-card-pro{
    height:320px !important;
}


/* 右侧栏稍微宽一点 */
.hero-sidebar{
    width:100% !important;
}


/* 热门搜索稍微增加可读性 */
.hot-search{
    margin-top:12px !important;
    gap:11px !important;
}

.hot-search > span{
    font-weight:500;
}

.hot-search a{
    font-size:11px;
}


/* 平板维持两栏 */
@media(max-width:1100px){

    .hero-container{
        grid-template-columns:1fr 1fr !important;
    }

    .network-card-pro{
        height:300px !important;
    }

}


/* 手机 */
@media(max-width:768px){

    .hero-container{
        grid-template-columns:1fr !important;
    }

    .hero-left h1{
        font-size:32px !important;
    }

    .hero-left h2{
        font-size:20px !important;
    }

    .network-card-pro{
        height:250px !important;
    }

}/* ==================================================
   WMIP 首页整体紧凑化 V1
   目标：减少空白、扩大版心、提高信息密度
================================================== */


/* ===== 1. 全站主体宽度 ===== */

.container{
    max-width:1320px !important;
    width:calc(100% - 48px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
}


/* ===== 2. 普通模块上下间距 ===== */

.site-main .section{
    padding-top:34px !important;
    padding-bottom:34px !important;
}


/* ===== 3. 模块标题和内容距离 ===== */

.section-header{
    margin-bottom:18px !important;
}

.section-header h2{
    margin:0 !important;
}


/* ===== 4. Hero首屏压缩 ===== */

.wmip-hero{
    padding-top:38px !important;
    padding-bottom:38px !important;
}

.hero-container{
    max-width:1320px !important;
}


/* ===== 5. 精选优惠区域 ===== */

.ad-scroll-section{
    padding-top:30px !important;
    padding-bottom:30px !important;
}

.ad-scroll-wrap{
    margin-top:0 !important;
}


/* ===== 6. 平台推荐 ===== */

.platform-section,
.home-platforms{
    padding-top:32px !important;
    padding-bottom:32px !important;
}

.platform-grid{
    gap:16px !important;
}


/* ===== 7. IP类型导航 ===== */

.ip-type-section{
    padding-top:30px !important;
    padding-bottom:30px !important;
}

.ip-type-grid{
    gap:12px !important;
}

.ip-type-card{
    padding:17px 15px !important;
}


/* ===== 8. 平台排行榜 ===== */

.ranking-section{
    padding-top:30px !important;
    padding-bottom:30px !important;
}


/* ===== 9. 教程 + 工具 ===== */

.home-info-section{
    padding-top:30px !important;
    padding-bottom:30px !important;
}

.home-info-layout{
    gap:18px !important;
}


/* ===== 10. 联系我们压缩 ===== */

.contact-section{
    padding-top:30px !important;
    padding-bottom:30px !important;
}

.contact-header{
    margin-bottom:16px !important;
}

.contact-cards-v2{
    gap:14px !important;
}


/* ===== 11. CTA区域 ===== */

.section-gray:has(.cta-box){
    padding-top:28px !important;
    padding-bottom:28px !important;
}

.cta-box{
    padding:28px 36px !important;
}


/* ===== 12. Footer和上方距离 ===== */

.site-footer{
    margin-top:0 !important;
}


/* ===== 13. 大屏幕继续扩大内容区 ===== */

@media(min-width:1500px){

    .container{
        max-width:1360px !important;
    }

    .hero-container{
        max-width:1360px !important;
    }

}


/* ===== 手机保持正常留白 ===== */

@media(max-width:768px){

    .container{
        width:calc(100% - 28px) !important;
    }

    .site-main .section{
        padding-top:28px !important;
        padding-bottom:28px !important;
    }

}

/* ==================================================
   联系我们最终紧凑化 V2
================================================== */

.contact-section{
    padding:24px 0 !important;
    background:#f8fbff !important;
}

/* 整体改成左标题 + 右客服卡 */
.contact-section > .container{
    max-width:1320px !important;
    display:grid !important;
    grid-template-columns:260px 1fr !important;
    gap:30px !important;
    align-items:center !important;
}

/* 标题改左对齐 */
.contact-header{
    margin:0 !important;
    text-align:left !important;
}

.contact-header h2{
    justify-content:flex-start !important;
    margin-bottom:8px !important;
}

.contact-header .contact-sub{
    margin:0 !important;
    line-height:1.7 !important;
}

/* 两张客服卡横向排满 */
.contact-cards-v2{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
}

/* 卡片进一步降低高度 */
.contact-card-v2{
    min-height:112px !important;
    padding:14px 18px !important;
    grid-template-columns:54px 1fr !important;
    column-gap:14px !important;
    border-radius:12px !important;
}

/* 二维码 */
.contact-card-v2 .cc-qr-wrap{
    width:54px !important;
    height:54px !important;
}

.contact-card-v2 .cc-qr{
    width:54px !important;
    height:54px !important;
}

.contact-card-v2 .cc-qr-placeholder{
    width:54px !important;
    height:54px !important;
}

/* 联系方式 */
.contact-card-v2 .cc-top h3{
    font-size:14px !important;
}

.contact-card-v2 .cc-id{
    font-size:11px !important;
    margin-bottom:6px !important;
}

.contact-card-v2 .cc-btn{
    height:29px !important;
    min-width:90px !important;
    font-size:11px !important;
}

/* 手机恢复上下排列 */
@media(max-width:768px){

    .contact-section > .container{
        display:block !important;
    }

    .contact-header{
        margin-bottom:16px !important;
    }

    .contact-cards-v2{
        grid-template-columns:1fr !important;
    }

}/* ==================================================
   WMIP 首页横向版心优化 V2
   减少左右空白，让内容更饱满
================================================== */

/* 首页主要内容统一放宽 */
.site-main .container{
    max-width:1240px !important;
    width:calc(100% - 40px) !important;
}

/* Hero 单独稍宽 */
.hero-container{
    max-width:1240px !important;
    width:calc(100% - 40px) !important;
}

/* 精选优惠滚动区域 */
.ad-scroll-section .container{
    max-width:1240px !important;
}

/* Footer 与上面主体对齐 */
.site-footer .container{
    max-width:1240px !important;
    width:calc(100% - 40px) !important;
}

/* 大屏幕再多利用一点空间 */
@media(min-width:1500px){

    .site-main .container,
    .hero-container,
    .ad-scroll-section .container,
    .site-footer .container{
        max-width:1280px !important;
    }

}

/* 手机不受影响 */
@media(max-width:768px){

    .site-main .container,
    .hero-container,
    .site-footer .container{
        width:calc(100% - 28px) !important;
    }

}/* ==================================================
   平台推荐固定四列布局
   3个平台 + 全部平台 正好填满一排
================================================== */

#recommendGrid.platform-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:16px !important;
    align-items:stretch !important;
}

/* 防止原卡片固定宽度把第四张挤下去 */
#recommendGrid > .platform-card{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
}

/* 全部平台卡与普通卡高度协调 */
#recommendGrid > .more-platform-card{
    min-height:100% !important;
    height:auto !important;
}

/* 平板 */
@media(max-width:1100px){

    #recommendGrid.platform-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }

}

/* 手机 */
@media(max-width:600px){

    #recommendGrid.platform-grid{
        grid-template-columns:1fr !important;
    }

}/* ==================================================
   WMIP 首页最终密度优化 V2
   进一步减少模块之间空白
================================================== */

/* 首页普通模块 */
.site-main .section{
    padding-top:24px !important;
    padding-bottom:24px !important;
}

/* 标题与内容之间 */
.site-main .section-header{
    margin-bottom:13px !important;
}

/* 精选优惠 */
.ad-scroll-section{
    padding-top:24px !important;
    padding-bottom:25px !important;
}

/* 平台推荐 */
.platform-section{
    padding-top:24px !important;
    padding-bottom:24px !important;
}

/* 平台卡片区域下方不要留太多空间 */
#recommendGrid{
    margin-bottom:0 !important;
}

/* IP类型导航 */
.ip-type-section{
    padding-top:22px !important;
    padding-bottom:24px !important;
}

/* 排行榜 */
.ranking-section{
    padding-top:22px !important;
    padding-bottom:24px !important;
}

/* 教程资讯 + 工具 */
.home-info-section{
    padding-top:22px !important;
    padding-bottom:24px !important;
}

/* 联系我们 */
.contact-section{
    padding-top:20px !important;
    padding-bottom:20px !important;
}

/* CTA跟联系我们靠近一点 */
.section-gray:has(.cta-box){
    padding-top:20px !important;
    padding-bottom:22px !important;
}

/* Hero也稍微收紧，但不压得太小 */
.wmip-hero{
    padding-top:30px !important;
    padding-bottom:30px !important;
}

/* 手机不要压得太狠 */
@media(max-width:768px){

    .site-main .section{
        padding-top:24px !important;
        padding-bottom:24px !important;
    }

    .wmip-hero{
        padding-top:28px !important;
        padding-bottom:28px !important;
    }

}

/* ==================================================
   WMIP 全站视觉统一 V3
   统一标题 / 卡片 / 圆角 / 阴影
================================================== */


/* ==================================================
   1. 模块标题统一
================================================== */

.site-main .section-header h2,
.contact-header h2{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;

    color:#172033 !important;
    font-size:21px !important;
    font-weight:800 !important;
    line-height:1.3 !important;
}


/* 原来的 🎁 ⭐ 🏆 等图标隐藏文字 */
.site-main .section-header .title-icon,
.contact-header .title-icon{
    position:relative !important;

    width:8px !important;
    height:22px !important;

    flex:0 0 8px !important;

    display:inline-block !important;

    font-size:0 !important;

    border-radius:6px !important;

    background:linear-gradient(
        180deg,
        #2563eb 0%,
        #6366f1 100%
    ) !important;

    box-shadow:0 3px 10px rgba(37,99,235,.20) !important;
}


/* 标题前增加一个小圆点 */
.site-main .section-header .title-icon::after,
.contact-header .title-icon::after{
    content:"";

    position:absolute;

    width:4px;
    height:4px;

    border-radius:50%;

    left:2px;
    top:9px;

    background:#ffffff;
}


/* 查看全部 / 更多文章 / 更多工具 */

.site-main .more-link{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    min-height:30px !important;

    padding:0 13px !important;

    border:1px solid #dbe6f5 !important;
    border-radius:20px !important;

    background:#ffffff !important;

    color:#718096 !important;
    font-size:11px !important;

    text-decoration:none !important;

    transition:all .2s ease !important;
}

.site-main .more-link:hover{
    border-color:#a9c7ff !important;
    color:#2563eb !important;
    background:#f7faff !important;
}


/* ==================================================
   2. 全站卡片统一
================================================== */

.platform-card-v2,
.ip-type-card,
.ranking-box,
.compact-article-list,
.home-tool-item,
.contact-card-v2{
    border:1px solid #e7edf6 !important;
    border-radius:14px !important;

    box-shadow:
        0 6px 22px rgba(30,64,175,.045) !important;
}


/* 卡片悬停统一 */

.platform-card-v2:hover,
.ip-type-card:hover,
.home-tool-item:hover,
.contact-card-v2:hover{
    transform:translateY(-3px) !important;

    border-color:#c9dbff !important;

    box-shadow:
        0 12px 30px rgba(37,99,235,.09) !important;
}


/* ==================================================
   3. 白底模块颜色统一
================================================== */

.ip-type-section,
.ranking-section,
.home-info-section{
    background:#ffffff !important;
}


/* ==================================================
   4. 卡片文字颜色统一
================================================== */

.platform-card-v2,
.ip-type-card,
.ranking-box,
.compact-article-list,
.home-tool-item,
.contact-card-v2{
    color:#172033 !important;
}


/* 次要说明文字 */

.ip-type-info p,
.home-tool-item p,
.compact-article-meta,
.contact-sub{
    color:#8b98aa !important;
}


/* ==================================================
   5. 所有蓝色操作文字统一
================================================== */

.ip-type-info span,
.rank-btn,
.compact-article-arrow{
    color:#2563eb;
}


/* ==================================================
   6. 模块之间增加轻微分隔感
   不再靠大量空白分区
================================================== */

.ip-type-section,
.ranking-section,
.home-info-section,
.contact-section{
    border-top:1px solid #f1f4f8;
}


/* ==================================================
   7. 手机
================================================== */

@media(max-width:768px){

    .site-main .section-header h2,
    .contact-header h2{
        font-size:19px !important;
    }

    .site-main .section-header .title-icon,
    .contact-header .title-icon{
        height:20px !important;
    }

}/* ==================================================
   WMIP 首页背景层次优化 V4
   用浅蓝灰分区，减少大片纯白感
================================================== */


/* ===== 1. 标题前竖线优化 ===== */

/* 去掉现在像感叹号的小白点 */
.site-main .section-header .title-icon::after,
.contact-header .title-icon::after{
    display:none !important;
}

/* 改成干净的蓝紫竖线 */
.site-main .section-header .title-icon,
.contact-header .title-icon{
    width:4px !important;
    min-width:4px !important;
    height:20px !important;
    flex:0 0 4px !important;

    border-radius:4px !important;

    background:linear-gradient(
        180deg,
        #2563eb 0%,
        #7c5cff 100%
    ) !important;

    box-shadow:none !important;
}


/* ===== 2. 平台推荐区域 ===== */

.platform-section{
    background:#f8fbff !important;
}


/* ===== 3. IP类型导航 ===== */

.ip-type-section{
    background:#ffffff !important;
}


/* ===== 4. 排行榜 ===== */

.ranking-section{
    background:#f8fbff !important;
}


/* ===== 5. 教程资讯 + IP检测工具 ===== */

.home-info-section{
    background:#ffffff !important;
}


/* ===== 6. 联系我们 ===== */

.contact-section{
    background:#f8fbff !important;
}


/* ===== 7. 每个浅色区边界非常轻 ===== */

.platform-section,
.ranking-section,
.contact-section{
    border-top:1px solid #f0f4fa !important;
    border-bottom:1px solid #f0f4fa !important;
}


/* ===== 8. IP导航卡片略微增强 ===== */

.ip-type-card{
    background:#ffffff !important;
}

.ip-type-card:hover{
    background:#fbfdff !important;
}


/* ===== 9. 排行榜保持白色卡片 ===== */

.ranking-box{
    background:#ffffff !important;
}


/* ===== 10. 教程区域卡片保持白底 ===== */

.compact-article-list,
.home-tool-item{
    background:#ffffff !important;
}


/* ===== 11. 大屏整体背景统一 ===== */

body{
    background:#ffffff !important;
}

.site-main{
    background:#ffffff !important;
}/* ==================================================
   WMIP 首页背景层次修正版 V5
================================================== */

/* 首页整体 */
.site-main{
    background:#ffffff !important;
}


/* ===== 精选优惠 ===== */
.ad-scroll-section{
    background:#f7faff !important;
    border-top:1px solid #edf3fa !important;
    border-bottom:1px solid #edf3fa !important;
}


/* ===== IP类型导航 ===== */
.ip-type-section{
    background:#f8faff !important;
    border-top:1px solid #edf2f8 !important;
    border-bottom:1px solid #edf2f8 !important;
}


/* ===== 排行榜 ===== */
.ranking-section{
    background:#ffffff !important;
}


/* ===== 教程资讯 + IP工具 ===== */
.home-info-section{
    background:#f8faff !important;
    border-top:1px solid #edf2f8 !important;
    border-bottom:1px solid #edf2f8 !important;
}


/* ===== 联系我们 ===== */
.contact-section{
    background:#ffffff !important;
}


/* ===== CTA周围 ===== */
.section-gray{
    background:#f8faff !important;
}


/* 内容仍保持白色 */
.platform-card-v2,
.ip-type-card,
.ranking-box,
.compact-article-list,
.home-tool-item,
.contact-card-v2{
    background:#ffffff !important;
}/* ==================================================
   Hero 与精选优惠衔接优化 V6
================================================== */

/* 首屏进一步收紧 */
.wmip-hero{
    padding-top:26px !important;
    padding-bottom:24px !important;
}

/* Hero三栏垂直居中 */
.hero-container{
    align-items:center !important;
}

/* 左侧内容不要上下太散 */
.hero-left h1{
    margin-bottom:10px !important;
}

.hero-left h2{
    margin-bottom:10px !important;
}

.hero-desc{
    margin-bottom:12px !important;
}

.hero-tags{
    margin-bottom:14px !important;
}

/* 搜索框与热门搜索靠近 */
.hero-search{
    margin-bottom:0 !important;
}

.hot-search{
    margin-top:8px !important;
}

/* 中间视觉略微降低高度 */
.network-card-pro{
    height:285px !important;
}

/* 右侧两个信息框之间缩小 */
.hero-sidebar{
    gap:10px !important;
}

.hero-side-card{
    margin-bottom:0 !important;
}

/* 精选优惠紧接Hero */
.ad-scroll-section{
    padding-top:20px !important;
    padding-bottom:22px !important;
}

/* 精选优惠标题与卡片靠近 */
.ad-scroll-section .section-header{
    margin-bottom:12px !important;
}/* ==================================================
   WMIP 桌面端最终版心放宽 V7
   解决左右两侧空白过大
================================================== */

@media(min-width:1200px){

    /* 顶部导航 */
    .site-header .container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

    /* 首页所有主体模块 */
    .site-main .container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

    /* Hero单独统一 */
    .hero-container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

    /* 精选优惠 */
    .ad-scroll-section .container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

    /* 联系我们 */
    .contact-section > .container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

    /* 页脚 */
    .site-footer .container{
        max-width:1920px !important;
        width:calc(100% - 64px) !important;
    }

}/* ==================================================
   WMIP 联系我们横向布局优化 V8
================================================== */

/* 整个联系区域 */
.contact-section{
    padding-top:24px !important;
    padding-bottom:24px !important;
    background:#ffffff !important;
}


/* 左侧说明 + 右侧客服卡 */
.contact-section > .container{
    display:grid !important;

    grid-template-columns:
        320px
        minmax(0,1fr) !important;

    gap:36px !important;
    align-items:stretch !important;
}


/* =========================
   左侧标题说明
========================= */

.contact-header{
    margin:0 !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;

    text-align:left !important;
}

.contact-header h2{
    justify-content:flex-start !important;
    margin:0 0 10px !important;
}

.contact-header .contact-sub{
    max-width:280px !important;

    margin:0 !important;

    color:#8b98aa !important;
    font-size:12px !important;
    line-height:1.8 !important;
}


/* =========================
   右侧客服卡片区域
========================= */

.contact-cards-v2{
    width:100% !important;
    max-width:none !important;

    margin:0 !important;

    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    gap:20px !important;
}


/* 单个客服卡 */
.contact-card-v2{
    width:100% !important;
    max-width:none !important;

    min-height:128px !important;

    padding:20px 26px !important;

    display:grid !important;

    grid-template-columns:72px minmax(0,1fr) !important;

    align-items:center !important;
    column-gap:20px !important;

    border:1px solid #e5edf7 !important;
    border-radius:14px !important;

    background:#ffffff !important;

    box-shadow:
        0 8px 24px rgba(30,64,175,.055) !important;
}


/* 卡片悬停 */
.contact-card-v2:hover{
    transform:translateY(-3px) !important;

    border-color:#c9dcff !important;

    box-shadow:
        0 13px 30px rgba(37,99,235,.09) !important;
}


/* 二维码 / 图标区域 */
.contact-card-v2 img{
    max-width:68px !important;
    max-height:68px !important;

    border-radius:8px !important;
}


/* 客服名称 */
.contact-card-v2 h3,
.contact-card-v2 strong{
    color:#172033 !important;
}


/* 客服信息 */
.contact-card-v2 p{
    color:#7f8da1 !important;
    line-height:1.7 !important;
}


/* QQ等按钮 */
.contact-card-v2 .btn{
    margin-top:8px !important;
}


/* =========================
   手机和平板
========================= */

@media(max-width:900px){

    .contact-section > .container{
        display:block !important;
    }

    .contact-header{
        margin-bottom:18px !important;
    }

    .contact-header .contact-sub{
        max-width:none !important;
    }

    .contact-cards-v2{
        grid-template-columns:1fr !important;
    }

}/* ==================================================
   联系我们两列强制修正 V8.1
   覆盖旧的三列布局
================================================== */

.contact-section > .container .contact-cards-v2{
    width:100% !important;
    max-width:none !important;

    display:grid !important;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr) !important;

    grid-template-rows:auto !important;

    gap:20px !important;

    justify-content:stretch !important;
    align-items:stretch !important;
}


/* 两张客服卡必须撑满所在列 */
.contact-section > .container .contact-cards-v2 > .contact-card-v2{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;

    box-sizing:border-box !important;

    margin:0 !important;
}/* ==================================================
   WMIP 顶部导航视觉优化 V9
================================================== */


/* ===== 导航整体 ===== */

.site-header{
    background:rgba(255,255,255,.96) !important;
    border-bottom:1px solid #e9eef6 !important;

    box-shadow:
        0 3px 16px rgba(15,23,42,.035) !important;
}


/* 导航内容高度 */
.site-header .container{
    min-height:68px !important;

    display:flex !important;
    align-items:center !important;
}


/* ===== Logo区域 ===== */

.site-header .logo,
.site-header .site-logo,
.site-header .brand{
    display:flex !important;
    align-items:center !important;

    font-size:20px !important;
    font-weight:800 !important;

    color:#172033 !important;
    text-decoration:none !important;
}


/* Logo图片 */
.site-header .logo img,
.site-header .site-logo img,
.site-header .brand img{
    max-height:36px !important;
    width:auto !important;
}


/* ===== 导航菜单 ===== */

.site-header nav{

    align-items:center !important;
    gap:10px !important;
}


/* 所有导航链接 */
.site-header nav a{
    position:relative !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    min-height:38px !important;

    padding:0 15px !important;

    border-radius:9px !important;

    color:#66758a !important;

    font-size:14px !important;
    font-weight:500 !important;

    text-decoration:none !important;

    transition:all .2s ease !important;
}


/* 鼠标经过 */
.site-header nav a:hover{
    color:#2563eb !important;
    background:#f4f8ff !important;
}


/* ===== 当前页面选中状态 ===== */

.site-header nav a.active,
.site-header nav .active > a{
    color:#2563eb !important;

    background:#edf4ff !important;

    font-weight:600 !important;
}


/* 底部蓝色短线 */
.site-header nav a.active::after,
.site-header nav .active > a::after{
    content:"";

    position:absolute;

    width:18px;
    height:2px;

    left:50%;
    bottom:3px;

    transform:translateX(-50%);

    border-radius:3px;

    background:#3b82f6;
}


/* ===== 去掉可能存在的粉色强调 ===== */

.site-header nav a.active,
.site-header nav .active > a{
    border-color:transparent !important;
    box-shadow:none !important;
}


/* ===== 平板手机 ===== */

@media(max-width:900px){

    .site-header .container{
        min-height:60px !important;
    }

    .site-header nav{
        gap:3px !important;
    }

    .site-header nav a{
        padding:0 9px !important;
        font-size:13px !important;
    }

}
/* ==================================================
   WMIP Hero内部比例精调 V10
================================================== */

@media(min-width:1200px){

    /* Hero三栏重新分配比例 */
    .hero-container{
        grid-template-columns:
            minmax(420px,1.05fr)
            minmax(560px,1.28fr)
            340px !important;

        gap:34px !important;
        align-items:center !important;
    }


    /* ===== 左侧信息 ===== */

    .hero-left{
        max-width:620px !important;
        width:100% !important;
    }

    .hero-left h1{
        font-size:42px !important;
        line-height:1.18 !important;
        margin-bottom:12px !important;
    }

    .hero-left h2{
        font-size:24px !important;
        line-height:1.4 !important;
        margin-bottom:10px !important;
    }

    .hero-desc{
        max-width:560px !important;
        font-size:13px !important;
        line-height:1.8 !important;
    }


    /* 搜索框稍微加宽 */
    .hero-search{
        width:100% !important;
        max-width:560px !important;
    }


    /* ===== 中间地图 ===== */

    .hero-right{
        width:100% !important;
        min-width:0 !important;
    }

    .network-card-pro{
        width:100% !important;
        height:300px !important;
    }


    /* ===== 右侧公告栏 ===== */

    .hero-sidebar{
        width:340px !important;
        min-width:340px !important;
        max-width:340px !important;

        gap:12px !important;
    }

}
/* ==================================================
   WMIP 顶部导航最终布局修正 V9.4
   根据真实 header-inner 结构
================================================== */

@media(min-width:901px){

    /* Logo和主导航真正的共同父级 */
    .site-header .header-inner{
        width:100% !important;

        display:flex !important;
        align-items:center !important;

        justify-content:flex-start !important;
    }


    /* Logo固定左边 */
    .site-header .header-inner .logo{
        flex:0 0 auto !important;
        margin-right:0 !important;
    }


    /* 主导航自动推到最右边 */
    .site-header .header-inner .main-nav{
        margin-left:auto !important;
    }


    /* 桌面端汉堡按钮隐藏 */
    .site-header .header-inner .menu-toggle{
        display:none !important;
    }


    /* 移动端导航桌面隐藏 */
    .site-header > .mobile-nav{
        display:none !important;
    }

}/* ==================================================
   WMIP 平台卡片细节统一 V11
   首页平台推荐 + 平台大全共用
================================================== */


/* ===== 卡片主体 ===== */

.platform-card-v2{
    position:relative !important;

    min-width:0 !important;
    overflow:hidden !important;

    background:#ffffff !important;

    border:1px solid #e5edf7 !important;
    border-radius:15px !important;

    box-shadow:
        0 6px 22px rgba(30,64,175,.045) !important;

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease !important;
}


/* 悬停 */
.platform-card-v2:hover{
    transform:translateY(-4px) !important;

    border-color:#c6d9ff !important;

    box-shadow:
        0 14px 32px rgba(37,99,235,.09) !important;
}


/* 整张卡片链接 */
.platform-card-v2 .pc-link{
    position:relative !important;
    z-index:2 !important;

    width:100% !important;
    height:100% !important;

    display:flex !important;
    flex-direction:column !important;

    padding:22px 22px 20px !important;

    box-sizing:border-box !important;

    color:#172033 !important;
    text-decoration:none !important;
}


/* ===== 推荐角标 ===== */

.platform-card-v2 .pc-badge{
    position:absolute !important;

    top:13px !important;
    right:13px !important;

    z-index:6 !important;

    padding:5px 10px !important;

    border-radius:16px !important;

    background:linear-gradient(
        135deg,
        #ffb020,
        #ff7a00
    ) !important;

    color:#ffffff !important;

    font-size:10px !important;
    font-weight:700 !important;
    line-height:1 !important;

    box-shadow:
        0 5px 12px rgba(255,122,0,.18) !important;
}


/* ===== 顶部平台信息 ===== */

.platform-card-v2 .pc-header{
    display:flex !important;
    align-items:center !important;

    gap:13px !important;

    padding-right:66px !important;
}


/* Logo */
.platform-card-v2 .pc-logo{
    width:48px !important;
    height:48px !important;

    flex:0 0 48px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    overflow:hidden !important;

    border:1px solid #dddfff !important;
    border-radius:12px !important;

    background:linear-gradient(
        145deg,
        #f7f6ff,
        #ecebff
    ) !important;
}


/* Logo图片 */
.platform-card-v2 .pc-logo img{
    width:100% !important;
    height:100% !important;

    object-fit:cover !important;
}


/* 没有Logo时文字 */
.platform-card-v2 .pc-logo-text{
    color:#5067d8 !important;
    font-size:13px !important;
    font-weight:700 !important;
}


/* 平台名称区域 */
.platform-card-v2 .pc-info{
    min-width:0 !important;
}


/* 平台名称 */
.platform-card-v2 .pc-name{
    margin:0 0 6px !important;

    color:#172033 !important;

    font-size:16px !important;
    font-weight:800 !important;

    line-height:1.3 !important;

    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}


/* 分类 + 评分 */
.platform-card-v2 .pc-meta{
    display:flex !important;
    align-items:center !important;
    flex-wrap:wrap !important;

    gap:7px !important;
}


/* 分类 */
.platform-card-v2 .pc-cat{
    display:inline-flex !important;
    align-items:center !important;

    min-height:22px !important;

    padding:0 8px !important;

    border-radius:12px !important;

    background:#f0efff !important;

    color:#6c63df !important;

    font-size:10px !important;
}


/* 评分 */
.platform-card-v2 .pc-rating{
    color:#e49a00 !important;

    font-size:11px !important;
    font-weight:600 !important;
}


/* ===== 卖点标签 ===== */

.platform-card-v2 .pc-features{
    display:flex !important;
    flex-wrap:wrap !important;

    gap:7px !important;

    margin-top:15px !important;
    margin-bottom:10px !important;
}


.platform-card-v2 .pc-feature{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    min-height:25px !important;

    padding:0 9px !important;

    border:1px solid #d7e7ff !important;
    border-radius:13px !important;

    background:#f2f7ff !important;

    color:#3976d5 !important;

    font-size:10px !important;
    line-height:1 !important;
}


/* ===== 平台描述 ===== */

.platform-card-v2 .pc-desc{
    min-height:42px !important;

    margin-top:2px !important;

    color:#738197 !important;

    font-size:11px !important;
    line-height:1.75 !important;

    overflow:hidden !important;

    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    -webkit-box-orient:vertical !important;
}


/* ===== 底部价格 + 按钮 ===== */

.platform-card-v2 .pc-footer{
    display:flex !important;
    align-items:flex-end !important;
    justify-content:space-between !important;

    gap:16px !important;

    margin-top:auto !important;
    padding-top:18px !important;
}


/* 价格区域 */
.platform-card-v2 .pc-price{
    min-width:0 !important;
}


/* 起价 */
.platform-card-v2 .pc-price-label{
    display:block !important;

    margin-bottom:3px !important;

    color:#9aa6b6 !important;

    font-size:10px !important;
    line-height:1 !important;
}


/* 价格 */
.platform-card-v2 .pc-price-value{
    display:block !important;

    color:#2563eb !important;

    font-size:19px !important;
    font-weight:800 !important;

    line-height:1.2 !important;
}


/* 立即注册按钮 */
.platform-card-v2 .pc-register{
    flex:0 0 auto !important;

    min-height:36px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 15px !important;

    border-radius:8px !important;

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    ) !important;

    color:#ffffff !important;

    font-size:11px !important;
    font-weight:700 !important;

    box-shadow:
        0 7px 16px rgba(37,99,235,.20) !important;

    transition:all .2s ease !important;
}


/* 卡片悬停时按钮 */
.platform-card-v2:hover .pc-register{
    transform:translateY(-1px) !important;

    box-shadow:
        0 9px 20px rgba(37,99,235,.26) !important;
}


/* ===== 原有光效减弱，避免太花 ===== */

.platform-card-v2 .pc-glow{
    position:absolute !important;

    width:150px !important;
    height:150px !important;

    right:-70px !important;
    bottom:-80px !important;

    border-radius:50% !important;

    background:radial-gradient(
        circle,
        rgba(59,130,246,.07),
        transparent 68%
    ) !important;

    pointer-events:none !important;
}


/* ===== 手机 ===== */

@media(max-width:768px){

    .platform-card-v2 .pc-link{
        padding:18px !important;
    }

    .platform-card-v2 .pc-header{
        padding-right:56px !important;
    }

    .platform-card-v2 .pc-name{
        font-size:15px !important;
    }

    .platform-card-v2 .pc-price-value{
        font-size:17px !important;
    }

}/* ==================================================
   WMIP 小按钮与分类标签统一 V12
================================================== */


/* =========================
   1. 平台推荐分类按钮
========================= */

.recommend-cats{
    display:flex !important;
    align-items:center !important;
    flex-wrap:wrap !important;

    gap:10px !important;
}

.recommend-cats .cat-tab{
    min-height:34px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 16px !important;

    border:1px solid #dfe7f2 !important;
    border-radius:18px !important;

    background:#ffffff !important;

    color:#6f7d91 !important;

    font-size:11px !important;
    font-weight:500 !important;

    text-decoration:none !important;

    transition:all .2s ease !important;
}


/* 分类按钮悬停 */
.recommend-cats .cat-tab:hover{
    color:#2563eb !important;

    border-color:#bcd2ff !important;

    background:#f5f9ff !important;
}


/* 当前分类 */
.recommend-cats .cat-tab.active{
    color:#ffffff !important;

    border-color:#2563eb !important;

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    ) !important;

    font-weight:600 !important;

    box-shadow:
        0 5px 13px rgba(37,99,235,.17) !important;
}


/* =========================
   2. 所有“更多 / 查看全部”
========================= */

.site-main .more-link{
    min-height:30px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 13px !important;

    border:1px solid #dfe7f2 !important;
    border-radius:16px !important;

    background:#ffffff !important;

    color:#7b899d !important;

    font-size:10px !important;
    font-weight:500 !important;

    line-height:1 !important;

    text-decoration:none !important;

    box-shadow:none !important;

    transition:all .2s ease !important;
}


/* 更多按钮悬停 */
.site-main .more-link:hover{
    color:#2563eb !important;

    border-color:#bcd2ff !important;

    background:#f5f9ff !important;

    transform:translateY(-1px) !important;
}


/* =========================
   3. 排行榜“查看详情”
========================= */

.ranking-box .rank-btn{
    min-height:30px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 12px !important;

    border:1px solid #bfd4ff !important;
    border-radius:7px !important;

    background:#ffffff !important;

    color:#2563eb !important;

    font-size:10px !important;
    font-weight:600 !important;

    text-decoration:none !important;

    transition:all .2s ease !important;
}

.ranking-box .rank-btn:hover{
    color:#ffffff !important;

    border-color:#2563eb !important;

    background:#2563eb !important;
}


/* =========================
   4. Section标题与右侧按钮对齐
========================= */

.site-main .section-header{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    gap:20px !important;
}


/* =========================
   5. 手机
========================= */

@media(max-width:768px){

    .recommend-cats{
        gap:7px !important;
    }

    .recommend-cats .cat-tab{
        min-height:32px !important;
        padding:0 13px !important;
    }

}/* ==================================================
   WMIP 模块标题标识最终统一 V13
   去掉双竖线，只保留一根蓝色标识
================================================== */


/* 隐藏原来的 title-icon，防止双竖线 */
.site-main .section-header .title-icon,
.contact-header .title-icon{
    display:none !important;
}


/* 标题统一 */
.site-main .section-header h2,
.contact-header h2{
    position:relative !important;

    display:flex !important;
    align-items:center !important;

    gap:11px !important;

    margin:0 !important;

    color:#172033 !important;

    font-size:20px !important;
    font-weight:800 !important;
    line-height:1.3 !important;
}


/* 只保留一根干净的蓝色竖线 */
.site-main .section-header h2::before,
.contact-header h2::before{
    content:"" !important;

    display:block !important;

    width:4px !important;
    height:20px !important;

    flex:0 0 4px !important;

    border-radius:4px !important;

    background:linear-gradient(
        180deg,
        #2563eb 0%,
        #5b7cff 100%
    ) !important;

    box-shadow:none !important;
}


/* 清掉可能残留的其他标题装饰 */
.site-main .section-header h2::after,
.contact-header h2::after{
    display:none !important;
    content:none !important;
}


/* 手机 */
@media(max-width:768px){

    .site-main .section-header h2,
    .contact-header h2{
        font-size:18px !important;
    }

    .site-main .section-header h2::before,
    .contact-header h2::before{
        height:18px !important;
    }

}