﻿/* 整体样式 */
*{ margin:0; padding:0; }
html,body,form{ height:100%; width:100%; }
body{ font-family:Segoe UI, Arial, 微软雅黑; font-size:11px; color:#202020; }
input, textarea{ font-family:Segoe UI, Arial, 微软雅黑; }
table{ border:0; margin:0; border-collapse:collapse; }
a{ text-decoration:none; color:grey; cursor:default; }
a:link{ color:#27869a; cursor:pointer; }
a:active{  }
a:hover{ text-decoration:underline; }
a:visited{ color:#27869a; }

/* 快速类 */
.hidden{ display:none; }
.wordEllipsis{ word-break:keep-all; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.wordBreak{ word-break:break-all; }
.shadow1{
	box-shadow: 1px 1px 3px black;
	-moz-box-shadow: 1px 1px 3px black;
	-webkit-box-shadow: 1px 1px 3px black;
	filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='black');
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='black')";
}
.shadow2{
	box-shadow: 0px 0px 12px gray;
	-moz-box-shadow: 0px 0px 12px gray;
	-webkit-box-shadow: 0px 0px 12px gray;
	filter:progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='gray');
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='gray')";
}

/* 表格样式 */
.tableStyle{ width:100%; table-layout:fixed; border-collapse:separate; }
.tableStyle td{ line-height:40px; padding:0 8px; }
.tableStyle thead{ color:#2d3d5b; }
.tableStyle thead td{ background:#e9ecf1; border-right:1px solid white; border-bottom:10px solid white; }
.tableStyle tbody .trStyle td{ background:#f6fafd; border-right:1px solid white; border-bottom:10px solid white; vertical-align:top; }
.tableStyle tbody .trStyle_hot td{ background:#d8eaf8; }

/* 快速颜色类 */
.color_green{ color:green; }
.color_red{ color:red; }
.color_orange{ color:orange; }


.hiddenfield{ display:none !important; }

