/* 美团风格字体系统 - 清晰鲜亮 */

/* 下拉菜单文字 - 美团风格 */
select, 
.dropdown-text,
.menu-item {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0;
    color: #222222;
    transition: all 0.3s;
}

select:hover,
.menu-item:hover {
    color: #5B7FFF;
    font-weight: 600;
}

/* 下拉菜单选项 - 清晰醒目 */
.dropdown-item {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0;
    color: #222222;
    padding: 12px 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(91, 127, 255, 0.06);
    color: #5B7FFF;
    font-weight: 600;
}

.dropdown-item.selected {
    background: rgba(91, 127, 255, 0.1);
    color: #5B7FFF;
    font-weight: 600;
}

/* 输入框文字 - 清晰易读 */
input::placeholder,
textarea::placeholder {
    color: #AAAAAA;
    font-weight: 400;
    font-size: 15px;
}

input,
textarea {
    font-weight: 500;
    font-size: 15px;
    color: #222222;
}

/* 列表项文字 - 美团风格 */
.list-item-title {
    font-weight: 600;
    font-size: 16px;
    color: #222222;
}

.list-item-subtitle {
    font-weight: 400;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
}

/* 标签徽章文字 - 醒目 */
.badge {
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.03em;
}

/* 导航文字 - 清晰 */
.nav-text {
    font-weight: 500;
    font-size: 11px;
    color: #888888;
    transition: all 0.3s;
}

.nav-text.active {
    font-weight: 600;
    color: #5B7FFF;
}

/* 卡片标题 - 美团风格 */
.card-title {
    font-weight: 600;
    font-size: 16px;
    color: #222222;
    line-height: 1.4;
}

/* 卡片描述 - 清晰易读 */
.card-description {
    font-weight: 400;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
}

/* 数字文字增强 */
.number-text {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* 强调标签 */
.emphasis-tag {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(91, 127, 255, 0.1), rgba(124, 92, 255, 0.1));
    color: #5B7FFF;
    border: 1px solid rgba(91, 127, 255, 0.2);
}

/* 次要信息文字 */
.secondary-text {
    font-weight: 400;
    font-size: 13px;
    color: #999999;
}

/* 链接文字 */
a, .link-text {
    font-weight: 500;
    color: #5B7FFF;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover, .link-text:hover {
    color: #7C5CFF;
}

/* 表单标签 */
label {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
}

/* 按钮文字 */
button {
    font-weight: 600;
    font-size: 15px;
}

/* 状态文字 - 清晰醒目 */
.status-pending {
    color: #FFB800;
    font-weight: 600;
    font-size: 14px;
}

.status-success {
    color: #00C896;
    font-weight: 600;
    font-size: 14px;
}

.status-error {
    color: #FF3B30;
    font-weight: 600;
    font-size: 14px;
}

.status-info {
    color: #00A8E8;
    font-weight: 600;
    font-size: 14px;
}

/* 评分文字 - 醒目 */
.rating-text {
    font-weight: 700;
    font-size: 16px;
    color: #FF8C00;
    font-variant-numeric: tabular-nums;
}

/* 菜单项文字 */
.menu-item-text {
    font-weight: 500;
    font-size: 15px;
    color: #222222;
    transition: all 0.3s;
}

.menu-item-text:hover {
    color: #5B7FFF;
    font-weight: 600;
}

/* 筛选标题 */
.filter-title {
    font-weight: 600;
    font-size: 17px;
    color: #222222;
    margin-bottom: 12px;
}

/* 筛选选项 */
.filter-option {
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s;
}

.filter-option:hover {
    color: #5B7FFF;
    font-weight: 600;
}

.filter-option.selected {
    color: #5B7FFF;
    font-weight: 600;
    background: rgba(91, 127, 255, 0.08);
}

/* 小标题 - 美团风格 */
.section-title {
    font-weight: 600;
    font-size: 17px;
    color: #222222;
    margin-bottom: 12px;
}

