*{//所以的外边距个内边距都零
margin:0;
padding :0;
}
body {/*统一的所有的字体*/
font-size:14px;
}
#footer{ /*尾部区域样式居中*/
text-align:center;/*尾部文字样式居中*/
border-top:2px solid #EDEAFD
;
padding:10px;
width:767px;
margin:10px auto 10px auto;/*上下10px左右是自动居中*/
clear:left ;
}
a:link,a:visited{
/*鼠标未上去的超链接样式 .访问后的超链接样式*/
color:#000;
text-decoration:none;
}
a:hover{ /*鼠标移上去的超链接样式*/
color:#00f;
text-decoration:underline;
}
input{ //各元素的垂直居中(属于html)
vertical-align:middle;
}
.cssTextkey{
border :2px solid #3BA7CD;
background-color:#E9FDF1;
height:20px;
line-height:20px;
font-size:16px;
width:450px;
}
li{
text-align:center ;
margin:25px;
}
ul,li{/* 项目列表样式*/
list-style-type:none ;
}
li a:link, li a:visited{ /*分类名称的样式*/
color:#00f;
text-decoration:underline;
font-weight:bold ;
}
li a:hover{
color:#f00;
}
.commonfrm table{/*框架下面的表格*/
width:100%;
text-align :center ;
border-collapse :collapse ; /*表格细线*/
}
#newscontent .con{ /*首行缩进两个字*/
text-indent:2em;
line-height:20px;
}