44 lines
638 B
Stylus
44 lines
638 B
Stylus
html {
|
|
margin: 0
|
|
padding: 0
|
|
background-color: #fff;
|
|
font-smoothing: antialiased;
|
|
}
|
|
|
|
body {
|
|
color: rgba(0, 0, 0, 0.5);
|
|
font-family: 'PingHei', 'PingFang SC', Helvetica Neue, 'Work Sans', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
|
|
font-size: 15px;
|
|
width: 100%;
|
|
margin: 0 auto 30px auto;
|
|
background-color: #fff;
|
|
}
|
|
|
|
ul, li, ol {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none
|
|
}
|
|
|
|
p {
|
|
line-height: 1.9em;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
opacity: 1;
|
|
transition: all .15s linear;
|
|
color: #424242;
|
|
}
|
|
|
|
a:hover, a:active {
|
|
color: #4786D6;
|
|
}
|
|
|
|
|