﻿/* 边色: bordercolor='gray'(在table设置的字体颜色就不会影响边框)    */
/* 线型: 单线 cellspacing='0'(为1则有空点), border='0'            */
/*      双线 cellspacing='1'(为0则是粗线), border='1'            */
/* 填充: cellpadding='0'                                       */
/* 注意: 不在属性中设置表格的bordercolor、cellspacing、cellpadding */

table.DataGrid0 {
	border: 0;
	table-layout: auto;
	word-break: break-all;
	word-wrap: break-word;
	padding: 0px;
}

table.DataGrid 
{
	border: 1px solid gray;
	table-layout:auto; 
	word-break: break-all; 
	word-wrap: break-word;
	padding: 0px;
}  

table.DataGrid tr td 
{
	border: 1px solid gray;
}

table.DataGrid.Single
{
	border-collapse: collapse;
	border-spacing: 0px;
}

table.DataGrid.Double
{
	border: 1px solid gray;
	border-spacing: 1px;
}

/* 列表前部的参数控件的表格设置 */

table.TitleTableBorder 
{
	border: 0px none gray; 
	width: 100%; 
	margin-left: 5px; 
	margin-top: 0px;
} 
tr.TitleTableRow 
{
	border: 0px none gray; 
	height: 32px; 
	vertical-align: bottom;
} 
td.TitleTableCell 
{
	border: 0px none gray; 
	color: black; 
	font-size: 14px;
	font-family: 黑体;
}

/* easyui-panel-----------------------------------------------------*/

.panel-title {
	font-size: 12px;
	color: navy;
}
/*----------------------------------------------------------------*/

/* easyui-datagrid -----------------------------------------------*/
.datagrid-btable .datagrid-cell {
	font-size: 12px;
	color: blue;
}

.datagrid-cell {
	font-size: 12px;
}

.datagrid-header .datagrid-cell span {
	font-size: 12px;
}

.datagrid-header-rownumber, .datagrid-cell-rownumber {
	font-size: 12px;
}

/* 圆角 fieldset -------------------------------------------------*/

fieldset.CircleAngle {
	border: solid 1px gray;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/*蓝色下拉框和文本框字体-----------------------------------------------------------*/

.combobox-item, .textbox-text {
	color: blue;
	font-size: 12px;
}

/* mobile tree -----------------------------------------------------------------*/
.tree-expanded {
	background: url('icons/minus.gif') no-repeat center center
}

.tree-collapsed {
	background: url('icons/plus.gif') no-repeat center center
}

/* checkbox 2022.7.4*/
span.chkBox input {
	vertical-align: middle;
}

span.chkBox label {
	vertical-align: middle;
	margin-left: 1px;
	margin-right: 3px;
	margin-top: 0;
	margin-bottom: 0;
	color: blue;
	cursor: pointer;
}

/* 2022.07.24 右端充满宽度，文本框width: 100% */
div.leftPart{
	float: left; display: inline-block;
}
div.rightPart
{
	border: 0;
	margin: 0;
	float: none;
	overflow: hidden;
	padding-right: 1px; /* 1px 防止在360等浏览器中剪切文本框等的1个像素 */
}

tr.hidden{
	display: none;
}

    