/*
 * css 重置
 */

body {
  font: normal 14px/1.2 "宋体";
  color: #333;
  background-color: #f5f5f5;
}

body,
ul, ol,
p,
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul, ol {
  padding: 0;
}

ul, ol {
  list-style: none;
}

p {
  font-size: 12px;
  margin-bottom: 10px;
}

img {
  max-width: 100%; /* 为了不让图片太大影响布局, IE5无效 */
  display: block; /* 行内元素的 img 会有高度不正确的问题 */
  border: 0; /* 低版本 IE 下, 如果图片是链接会出现边框 */
}

a {
  text-decoration: none;
  color:#333;
  font-size: 12px;
}
a:hover{
	color: #2483cb;
}

/*
 * 居中
 */

body {
  text-align: center; /* 总体居中, 为了兼容IE5 */
}

.container {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

/*
 * 对齐方式
 */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/*
 * 浮动
 */

.left {
  float: left;
}

.right {
  float: right;
}

/*
 * 清除浮动
 */

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: " ";
  visibility: hidden;
  height: 0;
  overflow: hidden;
  clear: both;
  display: block;
}

/*
 * 外边距
 */

.mRight{
	margin-right: 20px;
}
.mTop{
	margin-top: 10px;
}