| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* CSS Reset */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html, body {
- width: 100%;
- height: 100%;
- font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
- font-size: 14px;
- line-height: 1.5;
- color: #333;
- background-color: #f5f5f5;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- a {
- text-decoration: none;
- color: inherit;
- }
- ul, ol {
- list-style: none;
- }
- img {
- max-width: 100%;
- height: auto;
- vertical-align: middle;
- }
- button, input, select, textarea {
- font-family: inherit;
- font-size: inherit;
- outline: none;
- border: none;
- }
- /* 移除移动端点击高亮 */
- * {
- -webkit-tap-highlight-color: transparent;
- }
|