// 日历边框背景颜色
:deep(.el-calendar-table td, .el-calendar-table tr:first-child td, .el-calendar-table tr td:first-child) {
border-color: $border !important;
}
// 日历取消的背景
:deep(.el-calendar-table td.is-selected) {
background-color: $hoverOrSelectBG;
}
/* 日历单元格鼠标滑过背景色 */
:deep(.el-calendar-table .el-calendar-day:hover) {
background-color: $hoverOrSelectBG !important;
}
.is-selected, .is-today {
color: #37e2ce;
background-color: $hoverOrSelectBG !important;
}