@charset "utf-8";

/* ----------------------------------



Common CSS file for



----------------------------------



结构目录：

	

	1. 全局常用 CSS 样式

	2. 表单及表单元素

	3. 页面布局以及通用的区块样式



----------------------------------

*/



/*

     全局公用样式

*/





* {

	margin: 0;

	padding: 0;

}

/* 文本属性：字号、颜色、粗细 */



	

body {

	color: #000000;
	font-family:"microsoft yahei", "微软雅黑", "SimSun", "宋体", "Arial", "Verdana";
	
	background: #fff;

	word-wrap: break-word ;

    overflow-x: hidden !important;

	min-width:1028px;

}

/* A标签链接样式 */

	

a {

	color: #000000;

	text-decoration: none;

}



a:hover{

	color: #bf0008 ;

	text-decoration: none;

}

a img {

	border: none;

}

p {

	word-wrap: break-word

}

/* 表格  */

	

table {

	empty-cells: show;

	border-collapse: collapse;

}

caption, th {

	text-align: left;

	font-weight: 400;

}

ul li {

	list-style: none;

}

img {

	display: block;

	border: none;

}

/* 清除  */

	

.clearfix:after {

	content: ".";

	display: block;

	height: 0;

	clear: both;

	visibility: hidden;

}

*html .clearfix {

	height: 1%;

}

*+html .clearfix {

	height: 1%;

}

.hidden {

	visibility: hidden;

}

/*

     网站公用main,header,footer，根据实际情况，修改宽度

*/

.fl{float:left;}

.fr{float:right;}

.wrap {

	width: 1028px;

	margin: 0 auto;

}

.clear {

	clear: both;

}

     /* 头部header  */

	 

.header {

	margin: 0 auto;

}

/* 底部footer  */

     

.footer {	

	margin: 0 auto;

}

/* 主体main  */

     

.main {

	margin: 0 auto;

}

