拷贝铜箔手持

This commit is contained in:
2024-02-01 13:55:27 +08:00
commit 076e6bfc76
145 changed files with 22312 additions and 0 deletions

43
common/style/reset.css Normal file
View File

@@ -0,0 +1,43 @@
* {
padding: 0;
margin: 0;
list-style: none;
font-style: normal;
text-decoration: none;
border: none;
outline: none;
font-family: uniicons, Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, 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;
}