@charset "utf-8";
/*
 * GLORY —— 深色运动风格资讯门户模板
 * 版面：深色导航 + 全宽 Hero + 滚动新闻条 + 特色横条 + 栏目卡片
 *       + 编辑推荐卡片 + 列表 + 排行侧栏 + 标签云 + 多列页脚
 * 依赖：Bootstrap 5.3 / Font Awesome 6.5
 */

/* ==================== 1. 设计变量 ==================== */
:root {
    --glory-bg:        #f0f2f5;
    --glory-bg-alt:    #e8eaef;
    --glory-white:     #ffffff;
    --glory-surface:   #ffffff;

    --glory-primary:     #1a56db;
    --glory-primary-d:   #1242b0;
    --glory-primary-l:   #3b82f6;
    --glory-secondary:   #e63946;
    --glory-accent:      #e63946;

    --glory-dark:        #0d1b2a;
    --glory-dark-2:      #1b2838;
    --glory-dark-3:      #243447;

    --glory-text:        #1a1a2e;
    --glory-text-2:      #4a5568;
    --glory-muted:       #8896a6;
    --glory-line:        #e2e8f0;
    --glory-line-2:      #d1d9e6;

    --glory-radius:      8px;
    --glory-radius-sm:   6px;
    --glory-shadow:      0 2px 8px rgba(0, 0, 0, .06);
    --glory-shadow-lg:   0 8px 24px rgba(0, 0, 0, .1);
}

/* ==================== 2. 基础 ==================== */
body {
    background: var(--glory-bg);
    color: var(--glory-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--glory-text); text-decoration: none; transition: color .2s; }
a:hover { color: var(--glory-primary); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: .3px; color: var(--glory-text); }
img { max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.glory-container { max-width: 1200px; }
.glory-muted { color: var(--glory-muted) !important; }
.glory-accent { color: var(--glory-accent) !important; }

.glory-clamp-1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
.glory-clamp-2, .glory-clamp-3 { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.glory-clamp-2 { -webkit-line-clamp: 2; }
.glory-clamp-3 { -webkit-line-clamp: 3; }
.min-w-0 { min-width: 0; }

/* 通用区块 */
.glory-section { padding: 56px 0; }
.glory-section-alt { background: var(--glory-bg-alt); }

.glory-section-title { text-align: center; margin-bottom: 40px; }
.glory-section-title .sub {
    display: inline-block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--glory-accent); margin-bottom: 8px; font-weight: 700;
}
.glory-section-title h2 { font-size: 1.8rem; margin: 0 0 12px; }
.glory-section-title p { color: var(--glory-muted); font-size: 15px; max-width: 760px; margin: 0 auto; }
.glory-section-title .line {
    width: 50px; height: 3px; margin: 14px auto 0; border-radius: 3px;
    background: linear-gradient(to right, var(--glory-accent), var(--glory-primary));
}

/* 按钮 */
.glory-btn, .glory-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: .6rem 1.6rem; border-radius: 4px;
    font-weight: 700; font-size: 14px; transition: .25s; white-space: nowrap;
    text-transform: uppercase; letter-spacing: .5px;
}
.glory-btn {
    background: linear-gradient(135deg, var(--glory-accent), #ff6b6b);
    color: #fff; border: 0;
}
.glory-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230, 57, 70, .35); }
.glory-btn-outline { border: 2px solid rgba(255,255,255,.3); color: #fff; background: transparent; }
.glory-btn-outline:hover { border-color: #fff; color: #fff; transform: translateY(-2px); background: rgba(255,255,255,.1); }

/* ==================== 3. 头部导航 ==================== */
.glory-header {
    background: var(--glory-dark);
    z-index: 1030;
}

.glory-topbar {
    background: var(--glory-dark-2);
    color: rgba(255,255,255,.6);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.glory-topbar a { color: rgba(255,255,255,.6); }
.glory-topbar a:hover { color: #fff; }
.glory-topbar .glory-container { display: flex; justify-content: space-between; align-items: center; }
.glory-topbar-links { display: flex; gap: 16px; }

.glory-live-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--glory-accent); margin-right: 4px;
    animation: glory-pulse 1.5s ease-in-out infinite;
}
@keyframes glory-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.glory-navbar { padding: 0; }
.glory-navbar .navbar-brand {
    font-size: 1.3rem; font-weight: 800; color: #fff;
    padding: 14px 0; letter-spacing: -.5px;
}
.brand-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 6px;
    background: linear-gradient(135deg, var(--glory-accent), #ff6b6b);
    color: #fff; font-size: 14px; margin-right: 6px;
}
.glory-navbar .navbar-brand .brand-icon { color: #fff; }

.glory-navbar .nav-link {
    font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7);
    padding: 18px 16px !important; transition: .2s; position: relative;
    text-transform: uppercase; letter-spacing: .5px;
}
.glory-navbar .nav-link:hover,
.glory-navbar .nav-link.active {
    color: #fff;
}
.glory-navbar .nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
    height: 3px; background: var(--glory-accent); border-radius: 3px 3px 0 0;
}

.glory-navbar .dropdown-menu {
    border: 0; box-shadow: var(--glory-shadow-lg); border-radius: var(--glory-radius-sm);
    padding: 8px 0; min-width: 160px;
    background: var(--glory-dark-2);
}
.glory-navbar .dropdown-item {
    font-size: 13px; padding: 8px 20px; color: rgba(255,255,255,.7);
}
.glory-navbar .dropdown-item:hover { background: var(--glory-dark-3); color: #fff; }

.glory-navbar .navbar-toggler {
    border-color: rgba(255,255,255,.2);
}
.glory-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.glory-search-toggle {
    background: none; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); cursor: pointer; transition: .2s;
}
.glory-search-toggle:hover { border-color: var(--glory-accent); color: var(--glory-accent); }

.glory-search-bar {
    background: var(--glory-dark-2);
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.glory-search-form .input-group,
.glory-search-form-lg .input-group { max-width: 600px; }
.glory-search-form .form-control,
.glory-search-form-lg .form-control {
    border: 1px solid rgba(255,255,255,.15); border-radius: var(--glory-radius-sm) 0 0 var(--glory-radius-sm);
    background: var(--glory-dark-3); color: #fff;
}
.glory-search-form .form-control::placeholder,
.glory-search-form-lg .form-control::placeholder { color: rgba(255,255,255,.4); }
.glory-search-form .btn,
.glory-search-form-lg .btn {
    background: var(--glory-accent); color: #fff; border: 0;
    border-radius: 0 var(--glory-radius-sm) var(--glory-radius-sm) 0;
    padding: 0 20px;
}
.glory-search-form .btn:hover,
.glory-search-form-lg .btn:hover { background: #d32f3e; }

/* ==================== 3.1 滚动新闻条 ==================== */
.glory-ticker {
    background: var(--glory-dark-3);
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}
.glory-ticker .glory-container { display: flex; align-items: center; gap: 16px; }
.glory-ticker-label {
    flex-shrink: 0; font-size: 11px; font-weight: 700; text-transform: uppercase;
    color: #fff; background: var(--glory-accent); padding: 3px 10px;
    border-radius: 3px; letter-spacing: 1px;
}
.glory-ticker-content {
    overflow: hidden; white-space: nowrap; flex: 1;
}
.glory-ticker-content a {
    display: inline-block; color: rgba(255,255,255,.7); font-size: 13px;
    margin-right: 40px; transition: .2s;
}
.glory-ticker-content a:hover { color: #fff; }
.glory-ticker-content a::before {
    content: '•'; color: var(--glory-accent); margin-right: 8px; font-weight: 700;
}

/* ==================== 4. Hero 首屏 ==================== */
.glory-hero {
    position: relative;
    background: linear-gradient(135deg, var(--glory-dark) 0%, var(--glory-dark-2) 50%, #1a2744 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.glory-hero-bg {
    position: absolute; inset: 0;
    background: 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='strict'%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");
    opacity: .5;
}
.glory-hero h1 { font-size: 2.5rem; line-height: 1.3; color: #fff; font-weight: 800; }
.glory-hero h1 em { font-style: normal; color: var(--glory-accent); }
.glory-hero .lead { color: rgba(255,255,255,.7); font-size: 16px; }
.glory-hero-badge {
    display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: #fff; background: var(--glory-accent); padding: 4px 14px;
    border-radius: 3px; margin-bottom: 16px; font-weight: 700;
}
.glory-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.glory-hero-visual img { max-width: 400px; width: 100%; }

/* ==================== 4.1 特色横条 ==================== */
.glory-features-bar { padding: 0; margin-top: -30px; position: relative; z-index: 5; }
.glory-feature-item {
    background: var(--glory-white);
    border-radius: var(--glory-radius);
    padding: 24px 20px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: var(--glory-shadow-lg);
    transition: .3s;
    height: 100%;
}
.glory-feature-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.glory-feature-item .icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--glory-accent), #ff6b6b);
    color: #fff; font-size: 20px;
}
.glory-feature-item h3 { font-size: 15px; margin-bottom: 4px; }
.glory-feature-item p { color: var(--glory-muted); font-size: 13px; margin-bottom: 0; }

/* ==================== 5. 通用盒子 ==================== */
.glory-box {
    background: var(--glory-white);
    border-radius: var(--glory-radius);
    box-shadow: var(--glory-shadow);
    overflow: hidden;
}
.glory-box-head {
    padding: 16px 24px;
    border-bottom: 1px solid var(--glory-line);
    display: flex; align-items: center; justify-content: space-between;
}
.glory-box-head h1 { font-size: 20px; margin: 0; }
.glory-box-head h3 { font-size: 16px; margin: 0; }
.glory-box-head .more { font-size: 13px; color: var(--glory-muted); white-space: nowrap; }
.glory-box-head .more:hover { color: var(--glory-accent); }
.glory-box-body { padding: 24px; }

/* ==================== 6. 文章卡片 ==================== */
.glory-card {
    background: var(--glory-white);
    border-radius: var(--glory-radius);
    box-shadow: var(--glory-shadow);
    overflow: hidden;
    transition: .3s;
    height: 100%;
}
.glory-card:hover { transform: translateY(-3px); box-shadow: var(--glory-shadow-lg); }
.glory-card-thumb {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 16 / 10;
}
.glory-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.glory-card:hover .glory-card-thumb img { transform: scale(1.05); }
.glory-card-overlay {
    position: absolute; inset: 0;
    background: rgba(13,27,42,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: .3s;
    color: #fff; font-size: 20px;
}
.glory-card:hover .glory-card-overlay { opacity: 1; }
.glory-card-body { padding: 16px; }
.glory-card-body h3 { font-size: 15px; margin-bottom: 8px; line-height: 1.5; }
.glory-card-body h3 a:hover { color: var(--glory-accent); }
.glory-card-body .desc { font-size: 13px; color: var(--glory-muted); margin-bottom: 8px; }

/* ==================== 7. 文章列表项 ==================== */
.glory-list-item {
    display: flex; gap: 16px; padding: 20px 0;
    border-bottom: 1px solid var(--glory-line);
}
.glory-list-item:last-child { border-bottom: 0; }
.glory-list-thumb {
    flex-shrink: 0; width: 180px; height: 120px; border-radius: var(--glory-radius-sm);
    overflow: hidden;
}
.glory-list-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.glory-list-item:hover .glory-list-thumb img { transform: scale(1.05); }
.glory-list-content { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.glory-list-content h3 { font-size: 16px; margin-bottom: 6px; line-height: 1.5; }
.glory-list-content h3 a:hover { color: var(--glory-accent); }
.glory-list-content .desc { font-size: 13px; color: var(--glory-muted); margin-bottom: 8px; }

/* 元信息 */
.glory-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--glory-muted); }
.glory-meta i { margin-right: 4px; }
.glory-meta a { color: var(--glory-muted); }
.glory-meta a:hover { color: var(--glory-accent); }

/* ==================== 8. 栏目卡片 ==================== */
.glory-cate-card {
    background: var(--glory-white);
    border-radius: var(--glory-radius);
    box-shadow: var(--glory-shadow);
    overflow: hidden;
    transition: .3s;
    height: 100%;
}
.glory-cate-card:hover { transform: translateY(-3px); box-shadow: var(--glory-shadow-lg); }
.glory-cate-card .thumb {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 16 / 9;
}
.glory-cate-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.glory-cate-card .badge-cate {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--glory-accent); color: #fff; font-size: 12px;
    padding: 3px 10px; border-radius: 3px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
}
.glory-cate-card .body { padding: 16px; }
.glory-cate-card .body h3 { font-size: 16px; margin-bottom: 6px; }
.glory-cate-card .body h3 a:hover { color: var(--glory-accent); }
.glory-cate-card .body .desc { font-size: 13px; color: var(--glory-muted); margin-bottom: 8px; }
.glory-cate-card .sub-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.glory-cate-card .sub-list a {
    font-size: 12px; padding: 2px 10px; border-radius: 3px;
    background: var(--glory-bg); color: var(--glory-text-2);
    transition: .2s;
}
.glory-cate-card .sub-list a:hover { background: var(--glory-accent); color: #fff; }
.glory-cate-card .mini { border-top: 1px solid var(--glory-line); padding-top: 10px; }
.glory-cate-card .mini li { font-size: 13px; line-height: 1.8; }
.glory-cate-card .mini li::before { content: '›'; color: var(--glory-accent); margin-right: 6px; font-weight: 700; }
.glory-cate-card .mini li a:hover { color: var(--glory-accent); }

/* ==================== 9. 标签 ==================== */
.glory-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.glory-tags li a {
    display: inline-block; font-size: 13px; padding: 4px 14px;
    border-radius: 3px; background: var(--glory-bg); color: var(--glory-text-2);
    border: 1px solid var(--glory-line); transition: .2s;
}
.glory-tags li a:hover { background: var(--glory-accent); color: #fff; border-color: var(--glory-accent); }

/* ==================== 10. 排行列表 ==================== */
.glory-rank li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid var(--glory-line);
    font-size: 14px;
}
.glory-rank li:last-child { border-bottom: 0; }
.glory-rank .rank-num {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 4px;
    background: var(--glory-bg-alt); color: var(--glory-muted);
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.glory-rank .rank-num.top { background: var(--glory-accent); color: #fff; }
.glory-rank li a { color: var(--glory-text-2); }
.glory-rank li a:hover { color: var(--glory-accent); }

/* ==================== 11. 面包屑 ==================== */
.glory-crumb { padding: 16px 0 0; }
.glory-crumb .breadcrumb { background: none; margin: 0; font-size: 13px; }
.glory-crumb .breadcrumb-item a { color: var(--glory-muted); }
.glory-crumb .breadcrumb-item a:hover { color: var(--glory-accent); }
.glory-crumb .breadcrumb-item.active { color: var(--glory-text-2); }
.glory-crumb .breadcrumb-item + .breadcrumb-item::before { content: '>'; color: var(--glory-line-2); }

/* ==================== 12. 文章详情 ==================== */
.glory-page { padding-bottom: 50px; }

.glory-article-title { font-size: 26px; line-height: 1.4; margin-bottom: 16px; }
.glory-article-meta {
    display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--glory-muted);
    padding-bottom: 16px; border-bottom: 1px solid var(--glory-line); margin-bottom: 20px;
}
.glory-article-meta a { color: var(--glory-muted); }
.glory-article-meta a:hover { color: var(--glory-accent); }

.glory-abstract {
    background: var(--glory-bg);
    border-left: 3px solid var(--glory-accent);
    padding: 14px 18px;
    border-radius: 0 var(--glory-radius-sm) var(--glory-radius-sm) 0;
    font-size: 14px; color: var(--glory-text-2);
    margin-bottom: 20px;
}
.glory-abstract .label {
    font-weight: 700; color: var(--glory-accent); margin-right: 8px;
}

.glory-content { font-size: 16px; line-height: 1.9; color: var(--glory-text); }
.glory-content h2 { font-size: 20px; margin: 28px 0 14px; padding-left: 12px; border-left: 4px solid var(--glory-accent); }
.glory-content h3 { font-size: 18px; margin: 22px 0 12px; }
.glory-content p { margin-bottom: 16px; }
.glory-content img { border-radius: var(--glory-radius-sm); margin: 10px 0; }
.glory-content blockquote {
    background: var(--glory-bg); border-left: 3px solid var(--glory-accent);
    padding: 14px 18px; border-radius: 0 var(--glory-radius-sm) var(--glory-radius-sm) 0;
    color: var(--glory-text-2); margin: 16px 0;
}
.glory-content ul, .glory-content ol { padding-left: 24px; margin-bottom: 16px; }
.glory-content ul { list-style: disc; }
.glory-content ol { list-style: decimal; }
.glory-content li { margin-bottom: 6px; }
.glory-content a { color: var(--glory-primary); }
.glory-content a:hover { text-decoration: underline; }
.glory-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.glory-content table th, .glory-content table td {
    border: 1px solid var(--glory-line); padding: 10px 14px; text-align: left;
}
.glory-content table th { background: var(--glory-bg); font-weight: 600; }

.glory-statement {
    font-size: 13px; color: var(--glory-muted); background: var(--glory-bg);
    padding: 12px 16px; border-radius: var(--glory-radius-sm); margin-top: 20px;
}

.glory-nextprev {
    display: flex; gap: 16px; margin-top: 24px;
}
.glory-nextprev > div {
    flex: 1; background: var(--glory-bg); border-radius: var(--glory-radius-sm);
    padding: 14px 18px; transition: .2s;
}
.glory-nextprev > div:hover { background: var(--glory-bg-alt); }
.glory-nextprev p { font-size: 13px; color: var(--glory-muted); margin-bottom: 4px; }
.glory-nextprev a { font-size: 15px; font-weight: 500; }
.glory-nextprev a:hover { color: var(--glory-accent); }

/* ==================== 13. 图集 ==================== */
.glory-gallery {
    text-align: center; margin: 20px 0;
    background: #000; border-radius: var(--glory-radius-sm); overflow: hidden;
}
.glory-gallery img { max-height: 70vh; margin: 0 auto; }
.glory-gallery a { display: block; }

/* ==================== 14. 分页 ==================== */
.page-control { text-align: center; padding: 16px 0; }
.page-control a, .page-control span {
    display: inline-block; padding: 6px 14px; margin: 2px;
    border-radius: var(--glory-radius-sm); font-size: 14px;
    background: var(--glory-white); color: var(--glory-text-2);
    border: 1px solid var(--glory-line); transition: .2s;
}
.page-control a:hover, .page-control .current {
    background: var(--glory-accent); color: #fff; border-color: var(--glory-accent);
}

/* Bootstrap 分页覆盖 */
.glory-page .pagination { margin-top: 24px; justify-content: center; }
.glory-page .page-link {
    color: var(--glory-text-2); border-color: var(--glory-line);
    border-radius: var(--glory-radius-sm); margin: 0 2px; font-size: 14px;
}
.glory-page .page-item.active .page-link {
    background: var(--glory-accent); border-color: var(--glory-accent); color: #fff;
}
.glory-page .page-link:hover { color: var(--glory-accent); background: var(--glory-bg); }

/* ==================== 15. 搜索页 ==================== */
.glory-search-form-lg { margin-bottom: 24px; }
.glory-search-title { font-size: 20px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--glory-line); }

/* ==================== 16. 标签页 ==================== */
.glory-tag-hero {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px;
    padding-bottom: 20px; border-bottom: 1px solid var(--glory-line);
}
.glory-tag-hero .ico {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
    background: linear-gradient(135deg, var(--glory-accent), #ff6b6b);
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.glory-tag-hero h1 { font-size: 22px; margin-bottom: 4px; }
.glory-tag-hero p { font-size: 14px; color: var(--glory-muted); margin-bottom: 0; }

/* ==================== 17. 空状态 ==================== */
.glory-empty {
    text-align: center; padding: 40px 20px; color: var(--glory-muted);
}
.glory-empty i { font-size: 48px; margin-bottom: 12px; display: block; opacity: .3; }
.glory-empty p { font-size: 15px; }

/* ==================== 18. 页脚 ==================== */
.glory-footer {
    background: var(--glory-dark);
    color: rgba(255,255,255,.7);
    margin-top: 0;
}
.glory-footer-top { padding-top: 50px; }
.glory-footer h5 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.glory-footer-brand { display: flex; align-items: center; }
.glory-footer-brand .brand-icon { background: linear-gradient(135deg, var(--glory-accent), #ff6b6b); }
.glory-footer-desc { font-size: 14px; line-height: 1.7; }
.glory-footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.glory-footer-links a { color: rgba(255,255,255,.6); font-size: 13px; }
.glory-footer-links a:hover { color: #fff; }
.glory-footer-cates li { margin-bottom: 6px; }
.glory-footer-cates a { color: rgba(255,255,255,.6); font-size: 14px; }
.glory-footer-cates a:hover { color: var(--glory-accent); }
.glory-footer-news li { margin-bottom: 8px; }
.glory-footer-news a { color: rgba(255,255,255,.6); font-size: 14px; }
.glory-footer-news a:hover { color: var(--glory-accent); }

.glory-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.glory-footer-bottom a { color: rgba(255,255,255,.45); }
.glory-footer-bottom a:hover { color: var(--glory-accent); }

/* ==================== 19. 返回顶部 ==================== */
.glory-totop {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 42px; height: 42px; border-radius: 4px;
    background: var(--glory-accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(230, 57, 70, .35);
    opacity: 0; visibility: hidden; transition: .3s;
    text-decoration: none;
}
.glory-totop.show { opacity: 1; visibility: visible; }
.glory-totop:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 6px 20px rgba(230, 57, 70, .45); }

/* ==================== 20. 响应式 ==================== */
@media (max-width: 991.98px) {
    .glory-hero { padding: 40px 0; }
    .glory-hero h1 { font-size: 1.8rem; }
    .glory-hero-visual { display: none; }
    .glory-section { padding: 40px 0; }
    .glory-section-title { margin-bottom: 28px; }
    .glory-section-title h2 { font-size: 1.5rem; }
    .glory-topbar { display: none; }
    .glory-navbar .nav-link.active::after { display: none; }
    .glory-ticker { display: none; }
    .glory-features-bar { margin-top: 0; padding: 0 16px; }
}

@media (max-width: 767.98px) {
    .glory-list-item { flex-direction: column; }
    .glory-list-thumb { width: 100%; height: 180px; }
    .glory-nextprev { flex-direction: column; }
    .glory-article-title { font-size: 20px; }
    .glory-box-body { padding: 16px; }
    .glory-hero-buttons { flex-direction: column; }
    .glory-hero-buttons a { text-align: center; justify-content: center; }
    .glory-totop { bottom: 20px; right: 16px; width: 38px; height: 38px; }
    .glory-feature-item { padding: 16px; }
}
