62 lines
573 B
CSS
62 lines
573 B
CSS
html,
|
|
body,
|
|
ul,
|
|
li,
|
|
ol,
|
|
dl,
|
|
dd,
|
|
dt,
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
form,
|
|
fieldset,
|
|
legend,
|
|
img,input{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
fieldset,
|
|
img {
|
|
border: none;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
}
|
|
|
|
|
|
|
|
ul,
|
|
ol {
|
|
list-style: none;
|
|
}
|
|
|
|
body {
|
|
color: #333;
|
|
font: 12px/20px "SimSun", "宋体", "Arial Narrow", HELVETICA;
|
|
background: #fff;
|
|
/* overflow-y:scroll;*/
|
|
/* overflow-x: hidden; */
|
|
}
|
|
|
|
a {
|
|
color: #666;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: #666;
|
|
}
|
|
|
|
a:hover,
|
|
a:active,
|
|
a:focus {
|
|
color: #ff8400;
|
|
text-decoration: underline;
|
|
} |