| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* 全局样式重置 */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html, body {
- height: 100%;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
- background-color: #f5f5f5;
- color: #333;
- line-height: 1.6;
- }
- #app {
- min-height: 100vh;
- }
- /* 滚动条样式 */
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-track {
- background: #f1f1f1;
- border-radius: 3px;
- }
- ::-webkit-scrollbar-thumb {
- background: #c1c1c1;
- border-radius: 3px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #a8a8a8;
- }
|