/* 简化版图标CSS */
.fas {
    font-family: sans-serif;
    display: inline-block;
}

.fa-bars::before {
    content: "≡";
}

.fa-arrow-up::before {
    content: "↑";
}

.fa-building::before {
    content: "🏢";
}

.fa-city::before {
    content: "🏙️";
}

.fa-fire-extinguisher::before {
    content: "🧯";
}

.fa-solar-panel::before {
    content: "⚡";
}

.fa-school::before {
    content: "🏫";
}

.fa-home::before {
    content: "🏘️";
}

.fa-check::before {
    content: "✓";
}

.fa-envelope::before {
    content: "✉";
}

.fa-phone::before {
    content: "📞";
}

.fa-map-marker-alt::before {
    content: "📍";
}

.fa-arrow-right::before {
    content: "→";
}

.fab {
    font-family: sans-serif;
    display: inline-block;
}

.fa-weixin::before {
    content: "微";
    background-color: #07C160;
    color: white;
    padding: 1px 3px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* 本地字体 */
@font-face {
    font-family: 'Noto Sans SC';
    src: local('SimHei'), local('Microsoft YaHei'), local('Arial');
    font-weight: normal;
}

@font-face {
    font-family: 'Noto Sans SC';
    src: local('SimHei'), local('Microsoft YaHei'), local('Arial');
    font-weight: bold;
}
