@charset "utf-8";
/*
  项目名称: CVS 2.0
  作者: 陈文君
  E-mail: chenwenjun@kedacom.com / cwj1984226@aliyun.com
  编写日期: 2014.4
*/

/* css reset */
/* 将元素内外边距清零 */
body, div, ul, ol, li, dl, dt, dd, th, td, form, input, button, textarea, fieldset, lengend, p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
/* 去掉默认边框 */
fieldset, img {
	border: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
/* 重置输入控件字体样式 */
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
}
/* 兼容IE6、IE7重置输入控件字体样式 */
input, textarea, select, button {
	*font-size: 100%;
}
/* 清除列表样式 */
li {
	list-style: none;
}
/* 设置表格的边框被合并为一个单一的边框，指定分隔边框模型中单元格边界之间的距离为0 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 设置表格控件及图片中线对齐 */
input, img, select {
	vertical-align: middle;
}
/* 清除链接下划线样式 */
:visited, :link {
	text-decoration: none;
}
/* 清除链接的虚线框 */
a {
	outline: none;     /* firefox清除链接虚线框 */
}
:focuse {
	outline: 0;        /* 全局清除链接虚线框 */
}
:visited {
	star: expression(this.onFocus=this.blur());     /* IE清除链接虚线框 */
}

/* font style */
body {
	font: 12px  microsoft yahei, simsun, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

input, textarea, button, select {
	font: 12px  microsoft yahei, simsun, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

h1 {
	font-size: 24px;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 12px;
}

/* font color */
.mainText {
	color: #4e4e4e;     /* rgb(78, 78, 78) */
}
.focalText {
	color: #ff9500;    /* rgb(255, 149, 0); 重点标识出来的文字 */
}
.weakText {
	color: #d2d2d2;    /* rgb(230, 230, 230); CVS2.0中弱化表现的字，比如快速通道中的文字 */
}
.weakText2 {
	color: #b4b4b4;
}
.whiteText {
	color: #fff;       /* 白色的文字 */
}
.greenText {
	color: green;
}
.redText {
	color: red;
}
.blueText {
	color: #006896;    /* 蓝色的文字 */
}

/* font link */
.linkText:hover {
	color: #ff9500;    /* rgb(255, 149, 0); 链接文字hover状态的文字颜色 */
}
.linkText:focus {
	outline: 0;
	color: #ff9500;    /* rgb(255, 149, 0); 链接文字tab导航时的文字颜色 */
}

/* font size */
.fontB {
	font-weight: bold;
}
.font16 {
	font-size: 16px;
}
.font14 {
	font-size: 14px;
}
.font24 {
	font-size: 24px;
}