* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #f5f7fa; }

/* 标题栏 */
.site-header {
    background-color: #3964fe;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 30px;
}
.site-header h1 {
    color: black;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px 20px; }

/* ===== 独立文字介绍模块（与筛选栏同宽，无边框）===== */
.intro-block {
    background: white;
    padding: 16px 20px;
    margin: 20px 0 10px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease;
}
.intro-block .intro-content {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ===== 独立导航模块（无边框，靠左排列，高度减小）===== */
.nav-block {
    background: white;
    padding: 12px 20px;
    margin: 20px 0 30px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* 导航按钮：仅保留文字，无背景、无边框、无圆角、无阴影、无悬停效果 */
.nav-btn {
    display: inline-block;
    padding: 6px 16px;                /* 适当调小内边距 */
    background: transparent;
    border: none;
    border-radius: 0;
    color: #22c55e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: none;
    box-shadow: none;
}
.nav-btn:hover {
    background: transparent;
    color: #2c3e50;                   /* 悬停时颜色不变 */
    transform: none;
    box-shadow: none;
}

/* ===== 两行按钮筛选栏（直角、缩小）===== */
.filter-section {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.filter-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-label {
    width: 60px;
    font-weight: 600;
    color: #495057;
    line-height: 32px;
    flex-shrink: 0;
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.filter-btn {
    display: inline-block;
    padding: 6px 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0;
    color: #495057;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
    line-height: 1.4;
}
.filter-btn:hover {
    background: #e9ecef;
    border-color: #ced4da;
}
.filter-btn.active {
    background: #3964fe;
    border-color: #3964fe;
    color: white;
}
.filter-btn.status-open:hover,
.filter-btn.status-open.active {
    background: #22c55e !important;
    border-color: #22c55e !important;
    color: white !important;
}
.filter-btn.status-closed:hover,
.filter-btn.status-closed.active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

/* ===== 首页卡片 · 阴影 + 悬浮效果 ===== */
.dance-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.dance-card { 
    background: white; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); 
    transition: all 0.25s ease; 
    border-radius: 0; 
    cursor: pointer; 
}
.dance-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px rgba(0,0,0,0.12); 
}

/* 轮播区域（详情页使用） */
.carousel-container { position: relative; width: 100%; height: 200px; overflow: hidden; background: #eee; }
.carousel-slides { display: flex; height: 100%; transition: transform 0.3s ease; }
.slide { flex: 0 0 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-prev, .carousel-next { 
    position: absolute; top: 50%; transform: translateY(-50%); 
    background: rgba(0,0,0,0.5); color: white; border: none; 
    width: 30px; height: 30px; 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; font-size: 18px; font-weight: bold;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 50%; cursor: pointer; }
.dot.active { background: white; transform: scale(1.2); }

/* ===== 卡片顶部：左（地区+名称），右（状态）===== */
.meta { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 20px;
}
.meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}
.meta-right {
    flex-shrink: 0;
}
.dance-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
    word-break: break-word;
}

/* ===== 统一按钮样式（圆角、内边距、阴影、字体）- 字号改为0.95rem ===== */
.region-tag,
.status-tag,
.btn-nav,
.btn-share {
    display: inline-block;
    padding: 4px 14px;
    background: #ffffff;
    border: none;
    border-radius: 30px;
    color: #2c3e50;
    font-size: 1rem;        /* 从0.9rem改为0.95rem */
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    width: auto;
    min-width: 70px;
    box-shadow: 0 2px 6px rgba(57,100,254,0.2);
    text-align: center;
}

.region-tag:hover,
.status-tag:hover,
.btn-nav:hover,
.btn-share:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57,100,254,0.3);
}

/* 营业状态标签特殊背景色（覆盖白色） */
.status-营业中 {
    background: #22c55e;
    color: #ffff00;
}
.status-未到营业时间 {
    background: #FFFF00;
    color: black;
}
.status-停业 {
    background: #ff0000;
    color: #ffff00;
}

/* 状态标签悬浮时保持背景色加深 */
.status-营业中:hover { background: #1ea34d; }
.status-未到营业时间:hover { background: #e6e600; }
.status-停业:hover { background: #d63c3c; }

/* 地区标签保持白色背景（与导航按钮一致） */
.region-tag {
    background: white;
    color: #2c3e50;
}

/* 分享按钮去除边框（与导航按钮完全一致） */
.btn-share {
    border: none;
}

/* ===== 统一标签样式：蓝灰色、不加粗 ===== */
.info-label {
    color: #2c3e50;
    font-weight: normal;
    margin-right: 8px;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.95rem;
}

/* ===== 营业时间（强制换行）===== */
.business-hours {
    background: white;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.hours-content {
    font-size: 0.95rem;
    color: #404040;
    line-height: 1.8;
    word-break: break-word;
    flex: 1;
}
.hours-content br {
    display: inline;
}

/* ===== 图片介绍栏 ===== */
.card-description {
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-bottom: 1px solid #f0f2f5;
}
.description-content {
    flex: 1;
    font-size: 0.95rem;
    color: #404040;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ===== 地址区域 ===== */
.address-row { 
    background: white;
    padding: 16px 20px;
    border-bottom: none;
}
.address-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.address-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.address-text {
    font-size: 0.95rem;
    color: #404040;
    word-break: break-word;
    white-space: normal;
}
.address-right {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

/* ===== 底部信息行（原 .top-info 已移至底部，添加分割线）===== */
.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #7e8c9e;
    font-size: 0.85rem;
    background: white;
    border-top: 1px solid #f0f2f5;
}
.detail-link {
    color: #7e8c9e;
    line-height: 1.4;
}
.update-time i {
    margin-right: 4px;
    color: #7e8c9e;
}

/* ===== 详情页卡片（阴影和边框）===== */
.detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.back-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 0;
    background: rgba(255,255,255,0.15);
    transition: 0.2s;
}
.back-link:hover {
    background: rgba(255,255,255,0.25);
}
.detail-info-card {
    background: white;
    border-radius: 0;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
}
.detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.detail-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.detail-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.detail-right {
    flex-shrink: 0;
}
.detail-hours {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding: 14px 20px;
    background: #f8fafc;
    border-radius: 0;
    border: 1px solid #edf2f7;
}
.detail-hours i { margin-right: 8px; color: #3964fe; }
.detail-address {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 14px 20px;
    background: #f8fafc;
    border-radius: 0;
    border: 1px solid #edf2f7;
}
.detail-address i { margin-right: 8px; color: #e53e3e; }
.detail-nav-btn {
    text-align: right;
}
.detail-block {
    background: white;
    border-radius: 0;
    padding: 20px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}
.block-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3964fe;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 8px;
}
.block-content {
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* ===== 评论区 · 全新卡片风格（手机电脑自适应）===== */
.comment-section {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 0 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}
.comment-header i {
    color: #3964fe;
    margin-right: 8px;
}
.comment-count {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: normal;
    margin-left: 8px;
}

/* 发表评论卡片 */
.comment-form-card {
    display: flex;
    gap: 16px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    border: 1px solid #f0f4f8;
}
.comment-form-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #3964fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(57,100,254,0.2);
}
.comment-form-content {
    flex: 1;
}
.comment-form-content textarea {
    width: 100%;
    border: 1px solid #e6edf4;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 0.9rem;
    resize: vertical;
    margin-bottom: 14px;
    font-family: inherit;
    background: #fafcff;
    transition: 0.2s;
}
.comment-form-content textarea:focus {
    border-color: #3964fe;
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(57,100,254,0.06);
}
.comment-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}
.comment-form-actions input {
    padding: 10px 20px;
    border: 1px solid #e6edf4;
    border-radius: 40px;
    font-size: 0.9rem;
    flex: 1;
    max-width: 200px;
    background: #fafcff;
}
.comment-form-actions button {
    background: #3964fe;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 3px 10px rgba(57,100,254,0.2);
}
.comment-form-actions button:hover {
    background: #2b4ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(57,100,254,0.25);
}

/* 评论卡片 */
.comment-card {
    display: flex;
    gap: 18px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.02);
    border: 1px solid #f0f4f8;
    transition: 0.2s;
}
.comment-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-color: #e2eaf0;
}
.comment-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}
.comment-main {
    flex: 1;
}
.comment-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.comment-nickname {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}
.comment-time {
    font-size: 0.75rem;
    color: #7e8c9e;
}
.comment-bubble {
    background: #f6f9fc;
    border-radius: 18px;
    border-top-left-radius: 6px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.01);
}
.comment-footer {
    display: flex;
    gap: 24px;
    color: #7e8c9e;
    font-size: 0.85rem;
}
.comment-footer span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.comment-footer span:hover {
    color: #3964fe;
}

/* 回复列表 */
.reply-list {
    margin-top: 16px;
    padding-left: 20px;
}
.reply-card {
    display: flex;
    gap: 14px;
    background: white;
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: 1px solid #f0f4f8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}
.reply-card:last-child {
    margin-bottom: 0;
}
.reply-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.reply-main {
    flex: 1;
}
.reply-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.reply-nickname {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}
.reply-time {
    font-size: 0.7rem;
    color: #7e8c9e;
}
.reply-bubble {
    background: #f6f9fc;
    border-radius: 16px;
    border-top-left-radius: 6px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 8px;
    display: inline-block;
    max-width: 100%;
}
.reply-footer {
    font-size: 0.8rem;
}
.reply-like {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #7e8c9e;
}
.reply-like:hover {
    color: #3964fe;
}

/* 回复表单 */
.reply-form {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e6edf4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.reply-form input {
    flex: 1;
    min-width: 150px;
    padding: 10px 18px;
    border: 1px solid #e6edf4;
    border-radius: 40px;
    font-size: 0.85rem;
    background: #fafcff;
}
.reply-form button {
    background: #64748b;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 10px 28px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}
.reply-form button:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* 加载更多按钮 */
#load-more-comments {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 60px;
    margin-top: 28px;
    color: #3964fe;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #e6edf4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
#load-more-comments:hover {
    background: #f6f9fc;
    border-color: #cbd5e1;
}

/* ===== 手机适配 ===== */
@media (max-width: 600px) {
    .comment-form-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }
    .comment-form-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .comment-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .comment-form-actions input {
        max-width: none;
    }
    .comment-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .comment-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .comment-header {
        gap: 8px;
    }
    .reply-card {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
    .reply-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .reply-list {
        padding-left: 12px;
    }
    .reply-form {
        flex-direction: column;
    }
    .reply-form input {
        width: 100%;
    }
    .reply-form button {
        width: 100%;
    }
}

/* ===== 窄屏适配（500px 及以下）- 优化地址换行且按钮靠右 ===== */
@media (max-width: 500px) {
    .filter-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .filter-label { width: auto; }
    .filter-buttons { gap: 6px; }
    .filter-btn { padding: 5px 12px; font-size: 0.85rem; }
    
    .dance-grid { grid-template-columns: 1fr; }
    .detail-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .detail-right { align-self: flex-start; }
    
    /* 地址区域：允许换行，按钮靠右 */
    .address-line {
        flex-wrap: wrap;
        gap: 8px;
    }
    .address-left {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }
    .address-text {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .address-right {
        width: auto;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        flex-shrink: 0;
        gap: 6px;
    }
    /* 窄屏按钮尺寸统一缩小 */
    .region-tag,
    .status-tag,
    .btn-nav,
    .btn-share {
        min-width: 60px;
        padding: 5px 10px;
        font-size: 0.8rem;        /* 窄屏时适当缩小，但保持相对比例 */
    }

    /* 底部信息行窄屏适配 */
    .top-info {
        flex-wrap: wrap;
        gap: 6px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    /* 卡片顶部：窄屏时左区域可换行 */
    .meta-left {
        flex-wrap: wrap;
    }

    /* ===== 新增：搜索框窄屏适配，确保不变形 ===== */
    .filter-section form {
        flex-wrap: nowrap;          /* 强制不换行 */
    }
    .filter-section input[type="text"] {
        min-width: 0;               /* 允许缩小 */
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    .filter-section button[type="submit"] {
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap;        /* 防止按钮文字换行 */
    }
}

.no-data { text-align: center; padding: 40px; color: #999; font-size: 1.1rem; }

/* ===== 头部三行布局优化 ===== */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin-bottom: 30px;
    background-color: #3964fe;
}
.header-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}
.header-announcement {
    margin-top: 6px;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    max-width: 90%;
    word-break: break-word;
}
.header-datetime {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ===== 头部日期时间美化（双框）- 已加粗 ===== */
.header-datetime-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.datetime-box,
.week-box {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 4px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    white-space: nowrap;
}

/* 窄屏适配 */
@media (max-width: 500px) {
    .site-header {
        padding: 10px 15px;
    }
    .header-title {
        font-size: 1.4rem;
    }
    .header-announcement {
        font-size: 0.9rem !important; /* 覆盖内联样式，防止过大 */
    }
    .header-datetime {
        font-size: 0.8rem;
    }
    .header-datetime-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
    .datetime-box,
    .week-box {
        font-size: 0.8rem;
        padding: 4px 12px;
        font-weight: 600;
    }
}

/* ===== 首页卡片入场动画 ===== */
.dance-card {
    animation: fadeInUp 0.6s ease both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 详情页图片介绍块（方形边框）===== */
.detail-description-block {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 16px 20px;
    margin-top: 24px;
}
.detail-description-block .block-header {
    font-size: 1rem;
    font-weight: 600;
    color: #3964fe;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.detail-description-block .block-content {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* ===== 统计模块（间距改小，确保一行显示）===== */
.stats-row {
    display: flex;
    align-items: flex-start;
    margin-top: 12px;
    padding-top: 8px;
}
.stats-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1;
}
.stat-badge {
    display: inline-block;
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #7e8c9e;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: nowrap;
    cursor: default;
}
.stat-badge:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}