/* ========== 紧急提醒条 ========== */
.emergency-bar {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
}
.emergency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    color: #991b1b;
    font-size: 0.9rem;
}
.emergency-inner svg {
    flex-shrink: 0;
    margin-top: 1px;
}
.emergency-phone {
    color: #dc2626;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

/* ========== 举报分类区域 ========== */
.report-category-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

/* ---- 举报卡片 ---- */
.report-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem 0;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(59,130,246,0.1) inset;
}
.report-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
}
.report-icon-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #8b5cf6;
}
.report-icon-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    color: #06b6d4;
}
.report-divider {
    border: 0;
    border-top: 1px dashed #e2e8f0;
    margin: 1.5rem -1.5rem 0;
}

/* ---- 按钮 ---- */
.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #fff;
    margin: 1.25rem 0 1.75rem;
    transition: all 0.25s ease;
}
.report-btn svg {
    transition: transform 0.25s ease;
}
.report-btn:hover {
    transform: translateY(-2px);
}
.report-btn:hover svg {
    transform: translateX(3px);
}
.report-btn-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.report-btn-blue:hover {
    box-shadow: 0 6px 20px rgba(59,130,246,0.45);
}
.report-btn-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 14px rgba(139,92,246,0.35);
}
.report-btn-purple:hover {
    box-shadow: 0 6px 20px rgba(139,92,246,0.45);
}
.report-btn-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 4px 14px rgba(6,182,212,0.35);
}
.report-btn-cyan:hover {
    box-shadow: 0 6px 20px rgba(6,182,212,0.45);
}
