/* 快速选择 */
.symp-quick {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.symp-quick-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.symp-quick-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #eef0f4, transparent);
}

.symp-quick-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.symp-quick-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.symp-quick-item:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.symp-quick-emoji {
    font-size: 16px;
    line-height: 1;
}

.symp-quick-name {
    font-size: 13px;
    line-height: 1;
}

/* 分类列表 */
.symp-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.symp-category {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.symp-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    position: relative;
    border-radius: 14px;
}

.symp-category-header:hover {
    background: #fafbfc;
}

/* 展开状态的头部 — 去掉底部圆角，与 body 拼接 */
.symp-category-header[data-expanded="true"] {
    border-bottom: 1px solid #f1f5f9;
    border-radius: 14px 14px 0 0;
}

.symp-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.symp-category-header[data-expanded="true"] .symp-category-icon {
    transform: scale(1.05);
}

.symp-category-info {
    flex: 1;
    min-width: 0;
}

.symp-category-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.symp-category-count {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 1px 8px;
    border-radius: 10px;
    line-height: 18px;
}

.symp-category-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 2px;
}

.symp-category-arrow {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #94a3b8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.symp-category-header:hover .symp-category-arrow {
    background: #e2e8f0;
    color: #64748b;
}

.symp-category-header[data-expanded="true"] .symp-category-arrow {
    background: #e6f7f2;
    color: #00b386;
}

.symp-category-body {
    max-height: 0;
    opacity: 0;
    transition: all 0.35s ease;
    padding: 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.symp-category-header[data-expanded="true"] + .symp-category-body {
    border-radius: 0 0 14px 14px;
}

/* 标签 */
.symp-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 13px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #eef0f4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.symp-tag:hover {
    color: #fff;
    background: #00b386;
    border-color: #00b386;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 134, 0.25);
}
