/*div默认是块状元素，新增一个div就要新开一行显示,两个div要在一行显示要用浮动float*/


/* main */
.main {
	/**div据中*/
	margin-left: auto;
	margin-right: auto;
	/*设置div块宽度和高度*/
	width:1024px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #0099CC;
	border-right-color: #0099CC;
	border-bottom-color: #0099CC;
	border-left-color: #0099CC;
	padding-bottom: 20px;
}

.about{
	color: #717171;
	float: left;
	width:680px;
	margin-top: 20px;
	margin-left: 10px;
}

.news{
	color: #717171;
	float: left;
	width:300px;
	margin-top: 20px;
	margin-right: 10px;
	margin-left: 20px;
}

.title {
	font-size: 12px;
	font-weight: bold;
	float: left;
	/*line-height: 30px;*/
	width: 100%; 
}

.date {
	font-size: 10px;
	float: left;
	font-weight: 600;
	width: 100%;
	color: #d7a05f;
	padding-top: 5px;
	padding-bottom: 2px;
}

.text {
	float: left;
	width: 100%; 
	margin-top: 5px;
}

.image img {
	width: 100%;
	margin-bottom: 20px; }



.box { 
	float: left;
	margin-bottom: 20px; }
