/* 分类页 / 文章页扩展样式（配合 style1.css 暗色金橙主题） */
.crumb {
    color: #ccc;
    font-size: 13px;
    margin: 0 0 14px 0;
    text-align: center;
}
.crumb a {
    color: #ff8a00;
    text-decoration: none;
}
.crumb a:hover {
    color: #ffd700;
    text-decoration: underline;
}
.crumb span {
    color: #999;
    margin: 0 6px;
}
.prose h3 {
    color: #ffd700;
    font-size: 18px;
    margin: 18px 0 10px 0;
    border-left: 4px solid #ff8a00;
    padding-left: 10px;
}
.prose p {
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.9;
}
.tip-list {
    list-style: none;
    margin: 10px 0;
}
.tip-list li {
    color: #dcdcdc;
    font-size: 14px;
    line-height: 1.8;
    padding: 6px 10px;
    margin: 6px 0;
    background: #121218;
    border: 1px solid #ff8a0060;
    border-radius: 6px;
    padding-left: 28px;
    position: relative;
}
.tip-list li::before {
    content: "★";
    color: #ff8a00;
    position: absolute;
    left: 10px;
    top: 6px;
}
.article-list {
    list-style: none;
}
.article-list li {
    margin: 8px 0;
}
.article-list li a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 9px 12px;
    background: #1a1a1a;
    border: 1px solid #ff8a0040;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.article-list li a:hover {
    color: #000;
    background: #ff8a00;
    border-color: #ff8a00;
    padding-left: 18px;
}
.article-list li a::before {
    content: "▶ ";
    color: #ff8a00;
}
.article-list li a:hover::before {
    color: #000;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    display: inline-block;
    padding: 7px 14px;
    background: #1a1a1a;
    border: 1px solid #ff8a00;
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.chip:hover {
    background: #ff8a00;
    color: #000;
    box-shadow: 0 0 10px #ff8a00;
}
.faq details {
    background: #1a1a1a;
    border: 1px solid #ff8a0040;
    border-radius: 8px;
    margin: 10px 0;
    padding: 12px 16px;
}
.faq summary {
    color: #ffd700;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}
.faq .faq-b {
    color: #dcdcdc;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 8px;
}
.article-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.article-nav a.sort-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #ff8a00;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.article-nav a.sort-btn:hover {
    background: #ff8a00;
    color: #000;
}
.home-addon {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}
.home-addon h2 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}
.home-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.home-addon-grid a {
    display: block;
    color: #e6e6e6;
    text-decoration: none;
    background: #1a1a1a;
    border: 1px solid #ff8a0040;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.home-addon-grid a:hover {
    color: #000;
    background: #ff8a00;
    border-color: #ff8a00;
}
/* 首页 tag 链接化 + 卡片分页 + 稳定显示区域（home-fix.js 配套） */
a.tag {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
a.tag:hover {
    background: #ffd700;
    box-shadow: 0 0 12px #ff8a00;
}
/* 卡片区完整展开，与侧栏自然对齐；卡片多时分页（每页 8 张）保证高度稳定 */
.page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
}
.page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    background: #1a1a1a;
    border: 1px solid #ff8a00;
    color: #ffd700;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.page-btn:hover,
.page-btn.active {
    background: #ff8a00;
    color: #000;
    box-shadow: 0 0 8px #ff8a00;
}
