43 lines
819 B
CSS
43 lines
819 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
font-style: normal;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
font-family: uniicons, Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-webkit-tap-highlight-color:transparent;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
body, html {
|
|
-webkit-user-select: auto;
|
|
-ms-user-select: auto;
|
|
user-select: auto;
|
|
}
|
|
|
|
input[type="button"], input[type="submit"], input[type="search"], input[type="reset"], textarea, select{
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
.hide {
|
|
display: none;
|
|
}
|
|
.vhide {
|
|
visibility:hidden;
|
|
}
|
|
.show {
|
|
display: block;
|
|
}
|
|
.ellipsis{
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
} |