@charset "utf-8";
/*列表-表格*/
.panel-table {
	margin-top: 14px;
	padding-top: 26px;
	padding-left: 30px;
	padding-right: 30px;
}
.table {
	width:100%;
	font-size: 14px;
	text-align: left;
	border-collapse: collapse;
}
.table tr th {
	padding: 12px 15px;
	font-size: 13px;
	line-height:20px;
	white-space: nowrap;
	border-collapse: collapse;
}
.table tr td {
	padding: 15px;
	line-height:20px;
	background-color:#fff;
	word-break: break-all;
}
.table tr td .box-nowrap {
	white-space: nowrap;
}
.table tr td .box-btn {
	display:inline-block;
	margin-top:4px;
	margin-bottom:4px;
	padding-left:7px;
	padding-right:7px;
	min-width:66px;
	height:32px;
	font-size: 14px;
	line-height:26px;
	text-align: center;
}
.table tr td a.box-btn {
	line-height: 32px;
}
.table tr td .box-btn[data-long="true"] {
	width: 104px;
}
.table tr td .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 34px;
}
.table tr td .select2-container .select2-selection--single {
	height: 34px;
}
.table tr td .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 34px;
	line-height: 34px;
}
.table tr td .select2-container--default .select2-selection--single .select2-selection__arrow i {
	height: 34px;
	line-height: 34px;
}


/* 【斑马纹】表格格式 */
.table-striped thead tr th {
	background-color: #f5f5f5;
}
.table-striped tbody tr:nth-child(even) td {
	background-color: #f5f5f5;;
}
.table-striped tbody tr:nth-child(odd) td {
	background-color: #fff;
}

/* 【带边框】表格格式 */
.table-bordered tr th,
.table-bordered tr td {
	border: 1px solid var(--borColor);
}
.table-bordered tr th {
	background-color: #f5f5f5;
}

/* 【无边框】表格格式 */
.table-borderless thead tr th,
.table-borderless tbody tr td {
	border: none;
}
/* 【紧凑模式】表格格式 */
.table-compact thead tr th,
.table-compact tbody tr td {
	padding-top:6px;
	padding-bottom:6px;
}

/* 【固定表头】 */
.table-theadFixed tr th {
	position: sticky;
	z-index: 1;
	top: 0;
}


/* 【表格冻结-头部/左右2侧】 */
.fixed-header-wrapper {
	position: fixed;
	top: 0;
	left: 50px;
	right: 64px;
	background: white;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.fixed-header-wrapper .table thead th {
	color: #fff;
	/*border: 1px solid rgba(0,0,0,0.1);*/
	/*border-top: 0;*/
	/*border-bottom: 0;*/
	background-color: #646565;
}
.fixed-header-wrapper .table thead th .chkbox,
.fixed-header-wrapper .table thead th input[type='checkbox'],
.fixed-header-wrapper .table thead th input[type='radio']{
	opacity: 0;
}
.table-scroll-wrapper {
	overflow-x: auto;
	user-select: auto; /* 允许文本选择 */
}
.fixed-header-wrapper .item-fixed,
.table-fixed .item-fixed {
	position: sticky;
	z-index: 1;
	background-color: #fff;
}
.table-fixed th.item-fixed {
	background-color: #f5f5f5;
}
.fixed-header-wrapper .item-shadow-left,
.table-fixed .item-shadow-left {
	box-shadow: inset -10px 0 10px -8px rgba(0, 0, 0, 0.07);
}
.fixed-header-wrapper .item-shadow-right,
.table-fixed .item-shadow-right {
	box-shadow: inset 10px 0 10px -8px rgba(0,0,0,0.07);
}
.table-fixed .item-border {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1px;
	border-left: 1px solid var(--borColor);
}
.fixed-header-wrapper .item-border {
	display: none;
}

/* 表格无数据 */
.table-nodata {
	text-align: center;
}
.table-nodata {
	width: calc(100vw - 161px);
	padding-top: 20px;
	padding-bottom: 30px;
	text-align: center;
}
.table-nodata img {
	width: 100px;
}
.table-nodata p {
	margin-top: 10px;
	font-size: 13px;
}


