// // Import Tailwind // @use 'tailwind'; // @use 'variables'; // // 你的其他全局样式 // // Variables // $primary-color: #3eaf7c; // $text-color: #2c3e50; // // Global styles // :root { // --primary: #{$primary-color}; // --text: #{$text-color}; // } // // Custom SCSS // body { // font-family: 'Inter', sans-serif; // color: var(--text); // } // // You can organize your SCSS with partials // // @import 'components/buttons'; // // @import 'components/forms'; // // @import 'layouts/header'; // // @import 'layouts/footer';