/* 简化版图标样式 */
.fa { display: inline-block; line-height: 1; }

/* 常用图标类（覆盖页面中使用到的） */
.fa-home::before { content: "🏠"; }
.fa-broom::before { content: "🧹"; }
.fa-shower::before { content: "🚿"; }
.fa-th-large::before { content: "📋"; }
.fa-key::before { content: "🔑"; }
.fa-tv::before { content: "📺"; }
.fa-user-md::before { content: "👩‍⚕️"; }
.fa-angle-right::before { content: ">"; }
.fa-thumbs-up::before { content: "👍"; }
.fa-arrow-right::before { content: "→"; }
.fa-star::before { content: "⭐"; }
.fa-star-half-o::before { content: "⭐"; opacity: 0.5; }
.fa-phone::before { content: "📞"; }
.fa-envelope::before { content: "📧"; }
.fa-map-marker::before { content: "📍"; }
.fa-map-marker-alt::before { content: "📍"; }
.fa-clock-o::before { content: "🕒"; }
.fa-weixin::before { content: "💬"; }
.fa-weibo::before { content: "微"; }
.fa-qq::before { content: "Q"; }
.fa-shield-alt::before { content: "🛡️"; }
.fa-mobile::before { content: "📱"; }
.fa-mobile-alt::before { content: "📱"; }
.fa-qrcode::before { content: "▦"; }
.fa-angle-up::before { content: "↑"; }
.fa-bars::before { content: "☰"; }
.fa-tint::before { content: "💧"; }

/* 服务项目专用图标 */
.fa-wrench::before { content: "🔧"; }
.fa-user-tie::before { content: "👔"; }
.fa-tag::before { content: "🏷️"; }
.fa-bolt::before { content: "⚡"; }
.fa-tools::before { content: "🔧"; }
.fa-utensils::before { content: "🍴"; }
.fa-wheelchair::before { content: "♿"; }

/* 图标尺寸工具（与页面使用对应） */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
/* 颜色保持与项目主题一致（已由 tailwindcss.min.css 提供） */