.hot-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 60px 24px;
}
.breadcrumb {
    font-size: 14px;
    color: #86909c;
    margin-bottom: 24px;
}
.breadcrumb a {
    color: #86909c;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #4080ff;
}
.hot-page .hot-layout {
    display: flex;
    gap: 24px;
    width: 100%;
}
/* 左侧主区域 */
.hot-main {
    flex: 1;
    min-width: 0;
}
.hot-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 24px;             /* 增加间距 */
    
}
.head-left{
    min-width: 0;          /* 取消强制 450px，让它自适应 */
    flex-shrink: 0;
}
.head-left h1 {
    font-size: 34px;
    color: #ffffff;
    margin: 0 0 8px 0;
}
.head-left p {
    color: #86909c;
    margin: 0 0 16px 0;
    font-size: 14px;
}
.hot-tabs {
    display: flex;
    gap: 10px;
}
.hot-tab {
    border: none;
    background-color: rgba(255,255,255,0.08);
    color: #c9cdd4;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
    white-space: nowrap;
}
.hot-tab.active {
    background-color: #2b65ec;
    color: #fff;
}
.hot-tab:hover:not(.active) {
    background-color: rgba(255,255,255,0.12);
}
.head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap:10px;
    flex-shrink: 0; /* ✅新增：禁止搜索区被压缩 */
}
.hot-search-box {
    display: flex;
}

/* 搜索框宽度自适应，避免过宽 */
.hot-search-box input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color:#fff;
    padding: 10px 14px;
    border-radius: 8px 0 0 8px;
    width:280px;
    max-width: 100%;
    outline: none;
    font-size:14px;
    box-sizing: border-box;
}
.hot-search-box input:focus {
    border-color:#2b65ec;
}
.search-btn {
    background: linear-gradient(90deg,#2b65ec,#4080ff);
    border:none;
    color:#fff;
    border-radius:0 8px 8px 0;
    padding:0 18px;
    cursor:pointer;
}
.update-tip {
    font-size:13px;
    color:#86909c;
}
/* 表格 */
.hot-table-wrap {
    border-radius:10px;
    background-color:rgba(255,255,255,0.05);
    overflow:hidden;
}
.table-header-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px 80px;
    padding:14px 16px;
    background-color:rgba(255,255,255,0.08);
    color:#adb5bd;
    font-size:14px;
}
.table-body .table-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px 80px;
    padding:14px 16px;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:0.2s;
}
.table-body .table-row:hover {
    background-color:rgba(255,255,255,0.06);
}
.col-rank {
    display:flex;
    align-items:center;
    justify-content:center;
}
.rank-medal {
    width:28px;
    height:28px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:bold;
}
.rank-1 { background:linear-gradient(135deg,#FFD700,#FFA500); color:#fff; }
.rank-2 { background:linear-gradient(135deg,#C0C0C0,#A8A8A8); color:#fff; }
.rank-3 { background:linear-gradient(135deg,#CD7F32,#B87333); color:#fff; }
.rank-normal { background:rgba(255,255,255,0.1); color:#c9cdd4; }
.col-info {
    display:flex;
    gap:12px;
    align-items:center;
}
.site-icon {
    width:40px;
    height:40px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    background:rgba(255,255,255,0.08);
    flex-shrink:0;
}
.site-text .site-name {
    color:#fff;
    font-size:15px;
    margin-bottom:4px;
}
.site-text .site-desc {
    font-size:13px;
    color:#86909c;
}
.col-cat .cat-tag {
    display:inline-block;
    padding:3px 10px;
    border-radius:4px;
    font-size:12px;
}
.cat-ai { background:rgba(139,92,246,0.2); color:#a78bfa; }
.cat-video { background:rgba(236,72,153,0.2); color:#f472b6; }
.cat-search { background:rgba(34,197,94,0.2); color:#4ade80; }
.cat-game { background:rgba(59,130,246,0.2); color:#60a5fa; }
.cat-dev { background:rgba(59,130,246,0.2); color:#60a5fa; }
.cat-study { background:rgba(59,130,246,0.2); color:#60a5fa; }
.cat-cloud { background:rgba(249,115,22,0.2); color:#fb923c; }
.cat-tool { background:rgba(20,184,166,0.2); color:#2dd4bf; }
.cat-life { background:rgba(249,115,22,0.2); color:#fb923c; }
.cat-news { background:rgba(107,114,128,0.2); color:#9ca3af; }
.cat-social { background:rgba(34,197,94,0.2); color:#4ade80; }
.cat-music { background:rgba(239,68,68,0.2); color:#f87171; }
.cat-email { background:rgba(59,130,246,0.2); color:#60a5fa; }
.cat-default { background:rgba(43,101,236,0.2); color:#73a2ff; }
.col-hot {
    color:#ff7d54;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:4px;
}
.col-trend.up { color:#42d392; }
.col-trend.down { color:#ff6b6b; }

.hot-sidebar {
    width: 420px;
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}
/* 卡片 */
.side-card {
    /* background-color:rgba(255,255,255,0.05); */
    background: rgba(18, 35, 56, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius:10px;
    padding:16px;
    box-sizing: border-box;
}
/* 标题 */
.side-card-title {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height: 28px;
    margin-bottom:14px;
    padding-left:9px;
    border-left:3px solid #2b65ec;
    color:#fff;
    font-size:16px;
    font-weight: 500;   
}
/* 全部分类 */
.more-link {
    font-size:13px;
    color:#6495ed;
    text-decoration:none;
    white-space: nowrap;
}
.more-link:hover {
    color: #8bb4ff;
}
/* =========================
   热门分类 - 2列饱满网格
   ========================= */
.hot-tag-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}
/* 分类项目 */
.hot-tag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    box-sizing: border-box;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    color: #c9cdd4;
    text-decoration: none;
    transition: all 0.2s ease;
    overflow: hidden;
}

/* 鼠标悬停 */
.hot-tag-item:hover {
    background: rgba(64, 128, 255, 0.14);
    border-color: rgba(64, 128, 255, 0.25);
    transform: translateY(-1px);
}

/* 分类图标 */
.hot-tag-item .tag-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hot-tag-item .tag-icon svg {
    width: 26px;
    height: 26px;
}
.hot-tag-item .tag-icon i {
    font-size: 22px;
    color: #4080ff;
}
/* 文字容器 */
.hot-tag-item .tag-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #e8ecf1;
    font-weight: 500;
}
/* 网站数量 */
.hot-tag-item .tag-count {
    flex-shrink: 0;
    min-width: 30px;
    height: 22px;
    font-size: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f9db0;
    padding: 0 8px;
    font-weight: 500;
}
.rise-rank-list {
    display:flex;
    flex-direction:column;
    gap:14px;
}
.rise-item {
    display:flex;
    align-items:center;
    gap:10px;
}
.rise-num {
    width:24px;
    height:24px;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
    flex-shrink:0;
}
.rise-icon {
    width:32px;
    height:32px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    background:rgba(255,255,255,0.08);
    flex-shrink:0;
}
.rise-info { flex:1; min-width:0; }
.rise-name { color:#fff; font-size:14px; margin-bottom:2px; }
.rise-row-bottom { display:flex; justify-content:space-between; font-size:12px; }
.rise-percent { color:#42d392; }
.rise-cat { color:#73a2ff; }
.guide-list { list-style:none; padding:0; margin:0; }
.guide-list li { border-bottom:1px solid rgba(255,255,255,0.06); }
.guide-list li:last-child { border-bottom:none; }
.guide-list a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#c9cdd4;
    text-decoration:none;
    font-size:14px;
    padding:10px 0;
}
.guide-list a:hover { color:#6495ed; }
@media(max-width:1100px){
    .hot-page .hot-layout { flex-direction:column; }
    .hot-sidebar { width:100%; }
    .hot-page-head { flex-direction:column; }
    .head-right { align-items:flex-start; margin-top:16px; }
}

.favicon-img{
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius:6px;
    object-fit: contain;
    background:#ffffff;
    flex-shrink:0;
}


/* 壁纸/素材类配色（图片壁纸、设计素材、字体下载等） */
.cat-img { background:rgba(217,70,239,0.2); color:#e879f9; }
