You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
397 B
33 lines
397 B
* {
|
|
font-family: '微软雅黑';
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.off-select,
|
|
.menu-item {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.on-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
input::-webkit-input-placeholder {
|
|
color: #aaa;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #ff9600;
|
|
}
|
|
|
|
a:hover {
|
|
border-bottom: 1px solid #ff9600;
|
|
}
|
|
|
|
|
|
|