﻿@charset "utf-8";
/**
 * common.css 提供中间组件层css
 *
 * 主要提供组件层css, 将页面中大量重复的模块提取出来，放在组件层里。
 * 组件是把页面中的元素拆分成一小块一小块功能和样式独立的“模块”， 对于大量重复的模块，视为组件
 * 
 * comon层是网站级的，不同网站有不同的common层
 */
/**** 基本 ****/
.clear {
	clear: both;
}
.clearfix:after {
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}

.clearfix {
	zoom:1;
}

.clearit {
	clear:both;
	height:0;
	font-size:0;
	overflow:hidden;
}

.hidden {
	display:none!important;
	visibility:hidden;
}

/**** 布局组件 ****/
.top {
    height:30px;
	background:url(../images/top_bg.jpg) 0 bottom repeat-x;
}
.top_a {
    line-height:28px;
}
.top_a a, .top_a a:visited, .top_a a:hover, .top_a a:active {
    color:#4c4b4b;
}

/** 尺寸 **/

.w960{
	width:960px;
}

.w1000 {
	width:1000px;
}

/*----- footer{ -----*/

.footer{
	width:100%;
	height:90px;
	background-color:#fff;
	padding:20px 0 15px;
	font-size:12px;
}
.footer_main {
	width:1000px;
	margin:0 auto;
}
.footer_logo {
	width:410px;
	padding:20px 25px 0 0;
}
.footer_logo img {
	float:right;
}
.footer_text {
	padding-left:10px;
	border-left:solid 1px #313131;
}
.footer_text p {
	line-height:20px;
	color:#595959;
}
.footer_text p span {
	padding:0 4px;
}
.footer_text p a {
	color:#595959;
}
.footer_text p a:visited {
	color:#595959;
}
.footer_text p a:hover {
	color:#595959;
}
.footer_text p a:active {
	color:#595959;
}