| * { | |
|   -webkit-overflow-scrolling: touch; | |
|   -webkit-touch-callout: text; | |
|   -webkit-user-select: text; | |
|   user-select: text; | |
|   // touch-action: pan-y; | |
| } | |
| 
 | |
| * { | |
|   box-sizing: border-box; | |
|   padding: 0; | |
|   margin: 0; | |
| } | |
| 
 | |
| * { | |
|   &:hover, | |
|   &:focus, | |
|   &:active { | |
|     outline: none; | |
|   } | |
| } | |
| 
 | |
| html { | |
|   height: 100%; | |
|   // overflow: hidden; | |
| } | |
| 
 | |
| body { | |
|   height: 100%; | |
|   background-color: #f5f5f5; | |
|   color: #333333; | |
| } | |
| 
 | |
| ul, | |
| li, | |
| ol { | |
|   list-style: none; | |
| } | |
| 
 | |
| img, | |
| button, | |
| input, | |
| textarea { | |
|   border: none; | |
|   outline: none; | |
|   resize: none; | |
| } | |
| 
 | |
| img { | |
|   display: block; | |
| } | |
| 
 | |
| a { | |
|   text-decoration: none; | |
| } | |
| 
 | |
| // iframe { | |
| //   display: none; | |
| // } | |
|  | |
| #app { | |
|   height: 100%; | |
|   font-size: 28rpx; | |
|   word-break: break-all; | |
| }
 |