/* 
* 主样式文件 - 统一管理所有CSS
* 此文件导入所有现有样式表并提供一个统一的入口点
*/

/* 导入全局样式 */
@import 'global-styles.css';

/* 导入页眉样式 */
@import 'header-styles.css';

/* 导入主要样式 */
@import 'styles.css';

/* 这里可以添加额外的全局样式或覆盖样式 */
html {
    scroll-behavior: smooth;
}

/* 性能优化 */
img {
    content-visibility: auto;
}

/* 打印优化 */
@media print {
    .no-print {
        display: none !important;
    }
} 