/* 本地字体定义 - 使用系统字体作为Poppins的替代 */
@font-face {
    font-family: 'Poppins-Local';
    src: local('Segoe UI'), local('Helvetica Neue'), local('Arial'), local('sans-serif');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Local';
    src: local('Segoe UI Semibold'), local('Helvetica Neue Medium'), local('Arial Bold'), local('sans-serif');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Local';
    src: local('Segoe UI Semibold'), local('Helvetica Neue Semibold'), local('Arial Bold'), local('sans-serif');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Local';
    src: local('Segoe UI Bold'), local('Helvetica Neue Bold'), local('Arial Bold'), local('sans-serif');
    font-weight: 700;
    font-style: normal;
}

/* 全局字体设置 */
body, * {
    font-family: "Poppins-Local", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif !important;
}