/* 全局样式重置和基础设置 */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background: url(../../image/index_02.jpg) repeat-x center top #fff;
	font-family: "微软雅黑", "宋体", sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}

/* 基础文本样式 */
h1 {
	font-size: 24px;
	margin: 0;
}
h2 {
	font-size: 20px;
	margin: 0 0 15px 0;
}
h3 {
	font-size: 18px;
	margin: 0 0 10px 0;
}
/* 链接样式 */
a {
	color: #000;
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover {
	text-decoration: underline;
	color: #c00;
}
a:active {
	color: #660099;
}
h1{font-size:24px;}
/* 文本和间距工具类 */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.line-height-150 {
	line-height: 150%;
}
.line-height-160 {
	line-height: 160%;
}
.padding-6 {
	padding: 6px;
}
.padding-tb-6 {
	padding-top: 6px;
	padding-bottom: 6px;
}
.margin-top-10 {
	margin-top: 10px;
}

/* 导航样式 */
.nav-container {
	width: 950px;
	margin: 0 auto;
	background: url(../image/index_12.jpg) repeat-x;
}
.nav-container a {
	color: #fff;
	line-height: 38px;
	font-size: 17px;
	display: block;
	transition: background 0.3s ease;
}
.nav-container a:hover {
	background: url(../image/index_14.jpg) repeat-x;
	text-decoration: none;
}
.nav-item {
	width: 93px;
	text-align: center;
}
.nav-item-active {
	background: url(../image/index_14.jpg) repeat-x;
}
.nav-divider {
	width: 2px;
}

/* 高亮通知区域 */
.notification-bar {
	background: url(../image/index_14.jpg) repeat-x;
	color: #fff;
	font-size: 18px;
	padding: 20px 15px;
	line-height: 1.6;
	min-height: 80px;
	text-align: center;
}

/* 标题样式 */
.section-title {
	color: #000;
	font-size: 16px;
}
.section-title-red {
	color: #ff0000;
	font-size: 16px;
}
.section-header {
	background-image: url(../image/topmh35.jpg);
	background-repeat: repeat-x center top;
}

/* 卡片和框样式 */
.card {
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}
.card-item {
	border-right: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}
.card-title {
	color: #ff3300;
	background: url(../image/index_62.jpg) repeat-x center bottom;
}

/* 底部样式 */
.footer {
	line-height: 22px;
	color: #fff;
	background-color: #333;
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: #ff0033;
}
.footer-banner {
	line-height: 22px;
	background: url(../../image/index_104.jpg);
	color: #fff;
	margin-top: 5px;
}
.bottom a {color:#fff;}
.bottom a:link {color:#fff;}
.bottom a:visited {color:#fff;}
.bottom a:hover {color:#FF0033;}
.bottom a:active {color:#FF0033;}

/* 响应式设计基础支持 */
@media (max-width: 950px) {
	.nav-container {
		width: 100%;
	}
	
	.container {
		width: 100%;
		padding: 0 10px;
	}
}
