1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| body, div, span, header, footer, nav, section, aside, article, ul, dl, dt, dd, li, a, p, h1, h2, h3, h4, h5, h6, i, b, textarea, button, input, select, figure, figcaption, { padding: 0; margin: 0; list-style: none; font-style: normal; text-decoration: none; border: none; color: #333; font-weight: normal; font-family: "Microsoft Yahei"; box-sizing: border-box; -webkit-tap-highlight-color:transparent; -webkit-font-smoothing: antialiased; &:hover{ outline: none; } }
html,body{ height: 100%; width: 100%; background-color: #F5F5F5; }
.clear:after{ content: ''; display: block; clear: both; }
.clear{ zoom:1; }
.back_img{ background-repeat: no-repeat; background-size: 100% 100%; }
.margin{ margin: 0 auto; }
.left{ float: left; }
.right{ float: right; }
.hide{ display: none; }
.show{ display: block; }
.ellipsis{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|