.co-table{
	
	&.dark{
		/*table透明背景*/
		background-color: transparent; color: rgb(255, 255, 255);
		
		/* 单元格颜色*/
		th,tr{background-color: transparent;}
		td,th.is-leaf{ /*border-color: rgba(255, 255, 255, 0.1);*/ border-bottom: none;}
		/* ：hover行颜色  #F5F7FA*/
		.el-table__body tr.hover-row>td, &.el-table--enable-row-hover .el-table__body tr:hover>td{ background-color: rgba(255, 255, 255, 0.08);}	
		/* 最后一行，和border-color颜色一致 */
		&::before{ background-color:rgba(255,255,255,.1); }	
		/* 固定列投影 */
		.el-table__fixed, .el-table__fixed-right{box-shadow: 0 0 10px rgba(0,0,0,.52);}
		/* 文字颜色 */
		thead{ color: rgba(255, 255, 255, 0.6);}
		/* 滚动条颜色 */
		&:hover .thumb{ background: rgba(255,255,255,.3);}
		
		
		// 表头样式
		.el-table__header tr>th{ border-top:2px solid rgb(30,112,255); border-bottom:2px solid rgb(30,112,255); background-color: rgba(30,112,255,.3); }
		.el-table__header tr>th:first-child{ border-left:2px solid rgb(30,112,255); border-radius: 80px 0 0 80px; }
		
		&.el-table-col1 .el-table__header tr>th:nth-child(1),
		&.el-table-col2 .el-table__header tr>th:nth-child(2),
		&.el-table-col3 .el-table__header tr>th:nth-child(3),
		&.el-table-col4 .el-table__header tr>th:nth-child(4),
		&.el-table-col5 .el-table__header tr>th:nth-child(5),
		&.el-table-col6 .el-table__header tr>th:nth-child(6),
		&.el-table-col7 .el-table__header tr>th:nth-child(7),
		&.el-table-col8 .el-table__header tr>th:nth-child(8),
		&.el-table-col9 .el-table__header tr>th:nth-child(9),
		&.el-table-col10 .el-table__header tr>th:nth-child(10){ border-right:2px solid rgb(30,112,255); border-radius: 0 80px 80px 0; }

		
		
		// 隔行换色
		.el-table__body tr td:first-child{ border-radius: 80px 0 0 80px; }
		.el-table__body tr.el-table__row--striped td:first-child{ border:1px solid rgba(255,255,255,.2); border-right:none;}
		.el-table__body tr td:last-child{ border-radius: 0 80px 80px 0; }
		.el-table__body tr.el-table__row--striped td:last-child{ border:1px solid rgba(255,255,255,.2); border-left:none;}
		.el-table__body tr.el-table__row--striped td{
			border-top:1px solid rgba(255,255,255,.2);
			border-bottom:1px solid rgba(255,255,255,.2);
			background-color: rgba(255, 255, 255, 0.05);
		}
		// .el-table_1_column_1{ padding-left: 15px;}
		.el-table__header tr>th:first-child,
		.el-table__row>td:first-child{ padding-left: 15px; box-sizing:border-box;}
	}
	
	&.sm{
		td,th{padding: 6px 0;}
	}

}

/* el-table  */
.dark{
	.el-table{color: rgba(255, 255, 255, 0.9);border-radius: 6px;}
	.el-table thead{color:#5FABF2 ;}
	.el-table th.el-table__cell{background: rgba(24,144, 255,0.2);}
	.el-table, 
	.el-table__expanded-cell,
	.el-table tr{background: rgba(24,144, 255,0.06);border: #1890FF 2px solid; border-bottom-width: 1px;}
	.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell{background: rgba(24,144, 255,0.12);}
	.el-table--border, .dark .el-table--group,
	.el-table td.el-table__cell,
	.el-table th.el-table__cell,
	.el-table--border .el-table__cell{border-color: #1890FF;}
	
	.el-table--border:after,
	.el-table--group:after,
	.el-table:before{background: transparent;} 
	.el-table__row:hover,
	.el-table tr:hover,
	.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{background: rgba(24,144, 255,0.4) !important;}
	
}



.el-table{ border-radius: 4px; z-index: 1;}
// .el-table__fixed-header-wrapper{ border-radius: 4px 4px 0 0; overflow: hidden;}
// .el-table__fixed-right-patch{ border-top-right-radius: 4px; top: 1px;}