feat:初始化工程

This commit is contained in:
2026-05-27 20:02:57 +08:00
commit fa8787c77a
18 changed files with 2195 additions and 0 deletions

45
src/style.css Normal file
View File

@@ -0,0 +1,45 @@
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
a:focus,
a:active {
outline: none;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
html {
font-size: 16px;
}
@media (max-width: 1280px) {
html {
font-size: 15px;
}
}
@media (max-width: 480px) {
html {
font-size: 14px;
}
}