<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif; background: #f9f9f9; }

/* ===== 顶部 ===== */
.topWrap { width: 100%; background: #fff; border-bottom: 3px solid #c0392b; }
.topDiv { width: 1200px; margin: 0 auto; height: 112px; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 80px; width: auto; }

/* 导航 */
.navWrap { width: 100%; height: 50px; background: #c0392b; }
.nav { width: 1200px; margin: 0 auto; padding-left: 15px; }
.nav li { float: left; height: 50px; line-height: 50px; font-size: 16px; position: relative; list-style: none; }
.nav li a { color: #FFF; display: block; padding: 0 22px; text-decoration: none; }
.nav ul li a:hover { background: #a93226; }
.nav ul li a:active { background: #922b21; }



/* ===== 面包屑 ===== */
.breadcrumb-wrap {
    width: 1200px; margin: 0 auto; padding: 14px 0 10px 0; font-size: 13px; color: #888;
}
.breadcrumb-wrap a { color: #c0392b; text-decoration: none; }
.breadcrumb-wrap a:hover { text-decoration: underline; }
.breadcrumb-wrap span { color: #888; }

/* ===== 主体 ===== */
.container { width: 1200px; margin: 0 auto 30px auto; display: flex; gap: 30px; }
.main-content { flex: 1; }

/* ===== 列表面板 ===== */
.list-panel {
    background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden; border: 1px solid #eee;
}
.list-panel .panel-header {
    padding: 16px 24px; border-bottom: 2px solid #c0392b;
    display: flex; align-items: center; gap: 10px;
}
.list-panel .panel-header .panel-icon { font-size: 22px; }
.list-panel .panel-header h2 { font-size: 20px; font-weight: bold; color: #c0392b; }
.list-panel .panel-header .panel-count {
    margin-left: auto; font-size: 13px; color: #999;
}

/* 列表项 */
.article-list { padding: 0; }
.article-item {
    display: flex; align-items: center; padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0; transition: all 0.3s ease;
    text-decoration: none; gap: 16px;
}
.article-item:last-child { border-bottom: none; }
.article-item:hover {
    background: linear-gradient(90deg, #fff5f5, #fff);
    padding-left: 30px;
}
.article-item .item-badge {
    flex-shrink: 0; width: 52px; height: 24px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 12px; color: #fff; font-size: 11px; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 4px rgba(192,57,43,0.25);
}
.article-item .item-title {
    flex: 1; font-size: 15px; color: #333; font-weight: 500;
    line-height: 1.5;
}
.article-item:hover .item-title { color: #c0392b; }
.article-item .item-date {
    flex-shrink: 0; font-size: 12px; color: #aaa; white-space: nowrap;
}
.article-item:hover .item-date { color: #c0392b; }

/* ===== 分页 ===== */
.pagination {
    display: flex; justify-content: center; align-items: center;
    padding: 20px 0; gap: 6px;
}
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: 6px; font-size: 14px; text-decoration: none;
    color: #555; background: #fff; border: 1px solid #eee;
    transition: all 0.3s ease;
}
.pagination a:hover { background: #fff5f5; border-color: #c0392b; color: #c0392b; }
.pagination a.active {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff; border-color: transparent; box-shadow: 0 2px 8px rgba(192,57,43,0.3);
}
.pagination .page-prev, .pagination .page-next {
    font-size: 13px; gap: 4px;
}
.pagination .page-ellipsis { border: none; color: #aaa; min-width: auto; }

/* ===== 侧边栏 ===== */
.sidebar { width: 320px; flex-shrink: 0; }
.sidebar-section {
    background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee; margin-bottom: 20px; overflow: hidden;
}
.sidebar-section .section-header {
    padding: 14px 18px; border-bottom: 2px solid #c0392b;
    font-size: 17px; font-weight: bold; color: #c0392b;
    display: flex; align-items: center; gap: 8px;
}
.sidebar-section .section-body { padding: 12px 18px; }

/* 分类列表 */
.cat-list { list-style: none; }
.cat-list li {
    padding: 10px 0; border-bottom: 1px dashed #efefef;
    display: flex; align-items: center;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list li a {
    color: #555; text-decoration: none; font-size: 14px; flex: 1;
    transition: all 0.3s ease;
}
.cat-list li a:hover { color: #c0392b; padding-left: 4px; }
.cat-list li .cat-count {
    background: #f5f5f5; border-radius: 10px; padding: 2px 10px;
    font-size: 11px; color: #999;
}
.cat-list li a:hover + .cat-count { background: #fff0f0; color: #c0392b; }

/* 热门文章 */
.hot-list { list-style: none; counter-reset: hot; }
.hot-list li {
    counter-increment: hot; padding: 9px 0;
    border-bottom: 1px dashed #efefef; display: flex; align-items: flex-start; gap: 10px;
}
.hot-list li:last-child { border-bottom: none; }
.hot-list li::before {
    content: counter(hot); flex-shrink: 0; width: 22px; height: 22px;
    border-radius: 50%; font-size: 12px; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    background: #f0f0f0; color: #999; margin-top: 1px;
}
.hot-list li:nth-child(1)::before { background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; }
.hot-list li:nth-child(2)::before { background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; }
.hot-list li:nth-child(3)::before { background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; }
.hot-list li a { color: #555; text-decoration: none; font-size: 13px; line-height: 1.5; }
.hot-list li a:hover { color: #c0392b; }

/* 报名按钮 */
.shiny-register-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; border-radius: 10px; padding: 18px 14px; margin: 0;
    background: linear-gradient(135deg, #c0392b, #e74c3c, #c0392b);
    background-size: 200% 200%; position: relative; overflow: hidden;
    box-shadow: 0 3px 12px rgba(192,57,43,0.35); transition: all 0.3s ease;
    animation: shinyBg 3s ease infinite;
}
.shiny-register-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.5); }
.shiny-register-btn:active { transform: translateY(0); }
.shiny-register-btn::before {
    content: ''; position: absolute; top: -50%; left: -100%; width: 60%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: rotate(25deg); animation: shineSweep 2.5s ease-in-out infinite;
}
.shiny-register-btn::after {
    content: ''; position: absolute; top: 15%; right: 15%;
    width: 35px; height: 35px; border-radius: 50%;
    background: rgba(255,255,255,0.12); filter: blur(10px);
    animation: glowPulse 2s ease-in-out infinite;
}
.shiny-register-btn .btn-icon { font-size: 34px; position: relative; z-index: 1; line-height: 1; }
.shiny-register-btn .btn-text {
    font-size: 22px; font-weight: bold; color: #fff; position: relative; z-index: 1;
    margin-top: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.shiny-register-btn .btn-sub {
    font-size: 12px; color: rgba(255,255,255,0.85); position: relative; z-index: 1;
    margin-top: 3px; letter-spacing: 1px;
}

@keyframes shinyBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shineSweep {
    0% { left: -100%; }
    30% { left: 120%; }
    100% { left: 120%; }
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ===== 页脚 ===== */
.footWrap { background: #c0392b; padding: 20px 0; text-align: center; }
.footDiv_one { width: 1200px; margin: 0 auto; color: #fff; font-size: 14px; line-height: 2; }
.footDiv_one a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 0 10px; }
.footDiv_one a:hover { color: #fff; text-decoration: underline; }
.footDiv_one p { margin: 4px 0; }

/* ===== 响应式 ===== */
@media (max-width: 991px) {
    .topDiv { width: 100%; height: auto; padding: 10px 15px; flex-wrap: wrap; }
    .logo img { height: 50px; }
    .nav { display: none; }
    .nav-toggle-btn { display: flex; }
    .navWrap { position: relative; display: flex; align-items: center; }
    .navWrap > .nav-toggle-btn { margin-left: auto; }

    .container { width: 100%; flex-direction: column; padding: 0 12px; gap: 20px; }
    .sidebar { width: 100%; }
    .breadcrumb-wrap { width: 100%; padding: 12px 15px 8px; }

    .article-item { padding: 14px 16px; flex-wrap: wrap; gap: 8px; }
    .article-item .item-date { width: 100%; margin-left: 68px; }
    .article-item:hover { padding-left: 20px; }

    .footDiv_one { width: 100%; padding: 0 15px; }

    .pagination { flex-wrap: wrap; }
}

@media (min-width: 992px) {
    .nav-toggle-btn, .nav-mobile-dropdown { display: none !important; }
}
</style>