123456789101112131415161718192021222324252627282930313233 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @import "@/styles/iconfont/iconfont.css";
- :root{
- --swiper-pagination-bullet-width: 0.23rem;
- --swiper-pagination-bullet-height: 0.05rem;
- --swiper-pagination-bullet-border-radius: 0.03rem;
- --swiper-pagination-color: #fff;
- --swiper-pagination-bullet-active-bg: #fff;
- --swiper-pagination-bullet-inactive-color: hsla(0, 0%, 100%, .8);
- }
- html, body {
- width: 100vw;
- height: auto;
- }
- html {
- font-size: 100px;
- }
- ::-webkit-scrollbar {
- width: 0;
- }
- #app {
- max-width: 4.02rem;
- width: 100vw;
- height: auto;
- margin: 0 auto;
- font-size: 0.14rem;
- }
|