/* 凌羽注：基础样式 - 重置和通用设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* 凌羽注：基础按钮样式 */
.option-btn {
    padding: 8px 16px;
    margin: 4px;
    border: none;
    border-radius: 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* 悬停效果 */
.option-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

/* 选中状态（点击后变深色） */
.option-btn.active {
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 表情按钮特殊样式（可选） */
.option-btn.emoji {
    font-size: 18px;
}