| 123456789101112131415161718192021222324252627282930313233343536 |
- :root {
- font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
- line-height: 1.5;
- font-weight: 400;
- color: #0f172a;
- background: #f1f5f9;
- font-synthesis: none;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- * {
- box-sizing: border-box;
- }
- html,
- body,
- #app {
- margin: 0;
- min-width: 320px;
- height: 100%;
- overflow: hidden;
- }
- body {
- background:
- radial-gradient(ellipse 80% 50% at 0% 0%, #e0e7ff 0%, transparent 55%),
- radial-gradient(ellipse 60% 40% at 100% 0%, #dbeafe 0%, transparent 50%),
- #f1f5f9;
- }
- button,
- select {
- font-family: inherit;
- }
|