.common-dialog .mat-dialog-container {
    /* width: 800px !important; */
    background: none;
    overflow: visible;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    border-radius: 0;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar {
    /* 背景色 */
    width: 10px;
    height: 10px;
    background-color: var(--default-scroll-bg-color);
    /* background-color: #e8ecf0; */
}


/*定义滚动条轨道 内阴影+圆角*/


/* 滚动槽 */

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: none;
    /*滚动条槽的颜色*/
}


/*定义滑块 内阴影+圆角*/


/* 滚动条滑块 */

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #95aac9;
}


/*交互时样式设置*/

::-webkit-scrollbar-thumb:window-inactive {
    background: #95aac9;
    width: 4px;
    height: 10px;
    border: 4px;
}


/* 两边按钮设置*/

::-webkit-scrollbar-button {
    width: 4px;
    height: 10px;
    border: 2px;
    /* background: #d3b71d; */
    background: none;
}

::-webkit-scrollbar-button:horizontal:decrement:hover {
    /*当鼠标在水平滚动条递减属性的按钮上的状态，在该文件中就只有水平方向的第一个按钮*/
    /* decrement 表示递减的碎片 */
    width: 4px;
    height: 10px;
    border: 6px;
    background: none;
}


/*内层轨道，滚动条中间部分（除去）,滚动槽颜色可能会遮挡该颜色*/

::-webkit-scrollbar-track-piece {
    background: (149, 170, 201, 0.1);
}


/*两个滚动条的交汇处*/

::-webkit-scrollbar-corner {
    width: 4px;
    height: 10px;
    border: 2px;
    background: none;
}

::-webkit-scrollbar-track-piece:start {
    /*滚动条上半边或左半边*/
    width: 4px;
    height: 10px;
    border: 2px;
    background: none;
}


.select-box::-webkit-scrollbar,
.choice-tags::-webkit-scrollbar,
.vg_htime::-webkit-scrollbar,
.vg_mtime::-webkit-scrollbar,
.vg_stime::-webkit-scrollbar {
    /* 背景色 */
    width: 10px;
    height: 10px;
    background-color: #e8ecf0;
}

.mat-checkbox-checked.mat-accent .mat-checkbox-background,
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
    background-color: #0085fa !important;
}

mat-checkbox.zzz.mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #dddfe5 !important;
}