|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- 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;
- box-sizing: border-box;
- font-family: "Microsoft Yahei", sans-serif;
- -webkit-tap-highlight-color: transparent;
- -webkit-font-smoothing: antialiased;
-
- &:focus {
- outline: none;
- }
- }
-
- * { touch-action: pan-y; }
- body {
- color: #323233;
- }
-
- /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
- ::-webkit-scrollbar {
- width: 0px;
- height: 0px;
- background-color: #F5F5F5;
- }
-
- /*定义滚动条轨道 内阴影+圆角*/
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
- border-radius: 10px;
- background-color: #F5F5F5;
- }
-
- /*定义滑块 内阴影+圆角*/
- ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
- background-color: #555;
- }
-
- input[type="button"],
- input[type="submit"],
- input[type="search"],
- input[type="reset"] {
- -webkit-appearance: none;
- }
-
- textarea {
- -webkit-appearance: 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;
- }
|