This commit is contained in:
2025-12-12 18:28:57 +08:00
parent c169d4316b
commit 5cc95ec72b
27 changed files with 24522 additions and 3 deletions

30
src/common/common.css Normal file
View File

@@ -0,0 +1,30 @@
/* 全局样式 */
page {
background-color: #F5F5F5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/* 防止系统样式影响 */
* {
box-sizing: border-box;
}
/* 清除默认样式 */
view, text, button, input {
margin: 0;
padding: 0;
}
button {
border: none;
outline: none;
}
button::after {
border: none;
}
input {
outline: none;
}