/* 收集的常见的web页面需要格式化的CSS代码   */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tfoot,th,thead,time,tt,u,ul,var,video {
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:middle;
	margin:0;
	padding:0;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}
body {
	line-height:1;
}
ol,ul {
	list-style:none;
}
blockquote,q {
	quotes:none;
}
blockquote:after,blockquote:before,q:after,q:before {
	content:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-weight:400;
	font-style:normal;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-weight:400;
	font-size:100%;
}
q:before,q:after {
	content:'';
}
*,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
fieldset,img,abbr,acronym {
	border:0;
}
/* all */

body {
	margin:0;
	padding:0;
	background:#fff;
	color:#333333;
	font-family:'Microsoft YaHei','SimHei','Arial',sans-serif;
	font-size:14px;
	line-height:30px;
}
input,img {
	border:0;
	vertical-align:middle;
}
ul,ol,li {
	list-style:none;
}
table,tbody,tr,th,td {
	border-spacing:0;
	vertical-align:top;
}
th {
	text-align:center;
}
article,aside,footer,header,hgroup,nav,section {
	display:block;
}
div,form,h1,dl,dt,dd,ul,ol,li,table,tr,td,th,p,span,input,select,img {
	margin:0;
	padding:0;
}
a,a:link,a:visited {
	text-decoration:none;
	cursor:pointer;
}
a:hover,a:active {
	text-decoration:none;
}
/*CSS解决谷歌浏览器Chrome中鼠标点击输入框时（输入内容时）输入框边框变橘黄色或蓝色*/
:focus {
	outline:none;
}

/* 解决谷歌模式下输入框嵌入黄色背景    */
input:-webkit-autofill, 
textarea:-webkit-autofill, 
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
      -webkit-box-shadow: 0 0 0 1000px white inset; 
}
/* 从这里开始是css自己用的公用类集合  */

/* -------控制栏目div是否有带颜色边框---------   */
.hasborder{
	border:1px solid #ccc;
}
.hasborder_red{
	border:1px solid #E3121F;
}
.hasborder_blue{
	border:1px solid #004A96;
}
.noborder{
	border:none;
}
/*-----------------控制栏目的左右浮动-------------------*/
.float_l{
	float: left;
}
.float_r{
	float: right;
}
/*----------------清除栏目浮动-----------------*/
.wpthemeClear{
	clear: both;
	width: 0px;
	height: 0px;
}

/* -----------------控制栏目加载的时候先出现等待加载的小图标----------------- */
.hasload{
	background: url(../img/load1.gif) no-repeat center;
}

/*  控制当超过一定长度显示省略号...   */
.omit{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}