@charset "gb2312";
body{/*背景设置颜色和下边距*/
	background-color:aliceblue;
	margin-bottom:35px;}
p {text-indent:33px;}
.hdhz{
	color:red;
	background-color:yellow;}
a{/*所有超链接*/
	color:#08E;
	text-decoration:none;}
a:visited{
	color:#08E;
	text-decoration:none;}
hr{/*蓝色横线*/
	height:1px;
	background-color:#08e;
	border:none;}
ul {/*默认列表项，背景也是同样的颜色*/
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: aliceblue;
}
li{/*列表项，单间距2px，共4px*/
    display: block;
	margin:2px;
	text-align:center;
}
li.dl{/*本来想设置成下方边框。暂时无用*/
	padding:5px;
	}
li a {/*链接，8px的圆角*/
    display: block;
    color: #000;
	padding:4px 5px 4px 5px;
	border-radius:7px;
	border-left:1px white solid;
	border-top:1px white solid;
	border-right:1px gray solid;
	border-bottom:1px gray solid;
}
li a:visited{
	color:#000;}
li a:hover {/*鼠标移到上方*/
    background-color: #C7EDCC;
    color: green;
}
li a:active{/*按下鼠标时*/
	color:red;
	padding:5px 4px 3px 6px;
	border-left:1px black solid;
	border-top:1px black solid;
	border-right:1px white solid;
	border-bottom:1px white solid;
	}
.banner{
	height:60px;
	list-style-type: none;
	border-radius:5px;
	background-color:powderblue;
	overflow: hidden;
	}
.banner li{/*顶部文字*/
    display: block;
	margin:0;
	padding:8px 30px;
	float:left;
	}
ul.nav{/*导航栏整体*/
	overflow:hidden;
	background-color:silver;
	}
.nav li{/*导航栏*/
	float:left;
	display:inline;
	}
.nav li:first-child{/*导航栏第一个空白项*/
	width:50px;
	}
.nav a{/*导航栏链接*/
	color:black;
	padding:4px 16px;
	display:block;
	}
.nav a:active{/*导航栏鼠标点下的时候*/
	padding:5px 15px 3px 17px;
}
.sch{/*搜索栏*/
	margin:0;
	padding:0;
	width:100%;
	text-align:center;
	}
.sch input{/*搜索栏中的输入框和按钮*/
	margin:0 2px;
	width:105px;
	height:25px;
	border:1px #08e solid;
	border-radius:3px;
	background-color:#F4FAFF;
	}
.sch select{/*搜索栏中的列表*/
	margin:0 2px;
	width:75px;
	height:29px;
	border:1px #08e solid;
	border-radius:3px;
	background-color:#F4FAFF;
	}
input.ckbx{/*为单选框和复选框单独设置一个类*/
	margin:5px;
	width:20px;
	height:20px;
}
button{/*橙色调按钮*/
	margin:0;
	padding:0 15px;
	height:29px;
	border:1px #e80 solid;
	border-radius:4px;
	background-color:#FDF4E0;
	}
.sch button{/*搜索栏中的按钮*/
	margin:0 10px;
	}
button:hover{/*鼠标经过按钮会变色*/
	background-color:#FFFAF4;
	}
button:active{/*按下鼠标*/
	color:red;
	}
.sbbs:hover{/*鼠标变色*/
	background-color:#CAF1D1;
}








