﻿/*
td,input,select,textarea,span,font,a,label,div {
	font-family:微软雅黑,Tahoma,Helvetica;
	font-size:14px;
	-webkit-overflow-scrolling:touch;
}
*/

:root {
	--blue: #3f80ea;
	--blue-accent:#265cff;
	--def: #181d1f;
	--gray: #999;
	--red: #f53f3f;
	/*--shadow: rgb(41 48 66 / 5%);*/
	--shadow: rgb(41 48 66 / 10%);
}

html {
	overflow:hidden;
	touch-action:none;		/*元素拖动JS打印错误时加上*/
}
body {
	margin: 0px;
	font-family: Poppins,微软雅黑,Tahoma,Helvetica;
	background: #f7f9fc;
	color: var(--def);
	overflow: auto;
}
*:focus {
	outline:none;
}
img{
	border:0px;
}
a:link {
	color:#000000;
	text-decoration:none;
}
a:visited {
	text-decoration:none;
	color:#000000;
}
a:hover {
	text-decoration:none;
}
/*
.myul {
	list-style: none;
	display: inline-block;
	margin: 0px;
	padding: 0px;
	width: auto;
}
.myli {
	float: left;
}
*/

/*自定义的 arco grid 组件*/
.mygrid {

}
	.mygrid .head {
		line-height:50px; border-bottom: 1px solid #e0e0e0; font-weight:bold;
	}
	.mygrid .body {
		line-height:50px; border-bottom: 1px solid #e0e0e0;
	}
	.mygrid .body:hover {
		background: #fafafa;
	}
	.mygrid .arco-col {
		overflow:hidden;
		white-space:nowrap;
		text-overflow:ellipsis;
	}

.mytable{
	word-break:break-all;
	border:#bbb 1px solid;
    border-collapse:collapse;
}
	.mytable.layout {
		table-layout: fixed;
	}
	.mytable td {
		border:#bbb 1px solid;
		border-collapse:collapse;
		padding:10px;
	}
	.mytable th {
		border:#bbb 1px solid;
		border-collapse:collapse;
		font-weight:bold;
	}

/* 文字截断 */
.text_overflow {
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

/* 滚动条 */
::-webkit-scrollbar {
	width:6px;
	height:6px;
	background-color:#ddd;
	border-radius:3px;
}
/* 滚动条,滑块 */
::-webkit-scrollbar-thumb {
    border-radius:3px;
    background-color:#999;
}


/* dataTables 样式 */
.dt_table {
	width:100%;
	height:500px;
	overflow:hidden;
	display:flex;
	flex-direction:row;
}

.dt_box {
	box-sizing:border-box;
	background:white;
	overflow:hidden;

	display:flex;
	flex-direction:column;
}

.dt_box table {
	border-collapse: collapse;
	table-layout: fixed;
	width: min-content;
	min-width: 100%;
}
.dt_table td {
	box-sizing: border-box;
	height: 50px;
	line-height: 50px;
	padding: 0px 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
	font-size: 14px;
}
.dt_table tr {
	border-bottom:1px solid #e0e0e0;
}

.dt_left {
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	background:white;
	box-shadow:#ddd 0px 0px 10px;
	z-index:1;
}
.dt_left_head {
	box-sizing: border-box;
	user-select: none;
	width: 100%;
	display: flex;
	flex-direction: row;
	z-index:1;
}
.dt_left_body {
	border-top:1px solid #e0e0e0;
	width: 100%;
	height: calc(100% - 50px);
	padding-bottom:6px;
	z-index:0;
}



.dt_right {
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	width:100%;
	flex:1;
	overflow:hidden;
}
.dt_right_head {
	box-sizing: border-box;
	user-select: none;
	min-width: 100%;
	width: min-content;
	cursor: pointer;
	display:flex;
	flex-direction:row;
	padding-right:6px;
}
.dt_right_body {
	border-top:1px solid #e0e0e0;
	min-width: 100%;
	width: 100%;
	height: calc(100% - 50px);
	overflow:scroll;
}
	
.dt_left_head div {
	font-weight: bold;
	padding: 0px 15px;
	box-sizing: border-box;
	line-height: 50px;
	position: relative;
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	background:white;
}
.dt_right_head div {
	font-weight: bold;
	padding: 0px 15px;
	box-sizing: border-box;
	line-height: 50px;
	height: 50px;
	position: relative;
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.dt_right_head .sort {
	color: transparent;
}
.dt_right_head .split {
	display:none;
	box-sizing:border-box;
	width:5px; 
	height:30px; 
	position:absolute; 
	right:0px; 
	top:10px; 
	vertical-align:middle; 
	background:#E0E0E0; 
	border-left:2px solid white; 
	border-right:2px solid white;
	cursor:ew-resize;
}
.dt_right_head div:hover .sort {
	color: var(--def);
}
.dt_right_head div:hover .split {
	display: initial;
}
.dt_right_body tr:hover {
	background: #f5f5f5;
}
.ghost_class {
	color:var(--blue-accent);
}

/* dataEditor 样式 */
.me_center{
	width:100px;
	text-align:center;
	height:28px;
}