/* ================================================================
   菜刀客在线工具页 · xiyan.html 私有样式
   需在 /css/common.css 之后加载。
   ================================================================ */

/* ---- 吸烟程度等级卡片 ---- */
.result-level {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 14px;
}

.result-level .level-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.result-level .level-info {
    flex: 1;
    min-width: 0;
}

.result-level .level-name {
    font-size: 18px;
    font-weight: 700;
}

.result-level .level-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 3px;
    opacity: 0.9;
}

.result-level.light {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.result-level.moderate {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.result-level.heavy {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* ---- 公式提示 ---- */
.formula-tip {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.7;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 6px;
    padding: 8px 10px;
}