@charset "utf-8";
/* CSS Document */
/* 以下是导航栏 */
nav{
    float: center;
    width:800px;
    height:55px;
    background:#0080FF;
    margin: 0px;
    padding: 0 ;
}
nav ul {
    float:center;
    margin: 0px;
    padding: 0 0 0 0;
    width: 1000px;
    list-style: none;
}
nav ul li {
    display: inline;
}
nav ul li a {
    float: left;
    padding: 15px 35px; 
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    color: #fff;    
    font-family: Tahoma;
    outline: none;
	font-weight:bold
}
nav li a:hover {
    color: #00F;
}
/* 底 部 导 航 *//* 通 用 开 始*/
* {
	margin: 0;
	padding: 0;
	font-family: '微软雅黑', Arial, Helvetica, sans-serif;
			}
a {
	text-decoration: none;
			}
img {
	border: none;
			}
li {
	list-style: none;
			}
body {
	font-size: 12px;
			}
div {
	font-size: 12px;
			}
span {
	font-size: 20px;
			}
/* 通  用 结 束 */
.footer {
	background: #2b2e33;
			}
.footer .alt {
	overflow: hidden;
	width: 800px;
	margin: auto;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
			}
.footer .alt .foot {
	width: 150px;
	float: left;
			}
.footer .alt .foot p {
	color: #FFF;
	line-height: 15px;
			}
.footer .alt .foot a {
	color: #999;
	display: block;
	line-height: 15px;
			}
.footer .alt .foot a:hover {
	color: #CCC;
			}
.footer .alt .foot img {
	padding-top: 20px;
			}
.piaofuziti {
	font-size: 25px;
	color: #F00;
}
.outer{
		         width:790px;
		         /* height:473px;
		         background-color:orange; */

		     }
		     
		     .title{
		         /*设置宽度*/
		         width:790px;
		         /*设置高度*/
		         height:36px;
		         /*设置上边距*/
		         border-top:2px green solid;
		         /*设置背景*/
                 background-color:rgb(243,245,242);
	          /*设置一个内边距*/
	           padding:5px 5px;
	           /*设置行距*/
	           line-height:36px;
		     }

       .title a{
           float:right;
           color:red;
       }
       
       .content{
           width:100%;/* 若未设置，则自己设置padding时，不能auto的去调整，来适应outer */
           
           
           background-color:white;
           padding:0 5px;
           border:1px rgb(223,224,220) solid;
       }
       .content a{
           /*为超链接设置颜色*/
           color:black;
           /*去掉下划线*/
           text-decoration:none;
           
           /*a为内联元素 不能设置垂直外间距*/
          /*margin-top:5px; */
       }
       .content li{
           margin-bottom:15px;
       }
       .content h3{
           margin-top:14px;/* 为什么不行呢？  可以了，width:100%*/
           margin-bottom:16px;
       }
       /*设置特殊的字体颜色*/
       .content .red{
           color:red;
           font-weight:bold;
       }
       /*超链接设置向右移         可以到上一行，因为上一行是内联元素*/
       .content .right{
           float:right;
		   font-size: 20px;
       }
       .content ul{
           list-style:none;/* 细心 */
           
           
           border-bottom:2px rgb(228,229,227) dashed;
       }
       .content .no-border{
           border:none;
       }
       
       .content a:hover{
           color:purple;
           text-decoration:underline;
       }