遮罩层
/* 遮罩层 START */
.baie-mask { /* 黑色半透明 */
position: fixed;
z-index: 1023;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
}
.baie-mask-white { /* 白色半透明 */
position: fixed;
z-index: 1023;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.6);
}
.baie-mask-gray { /* 灰色半透明 */
position: fixed;
z-index: 1023;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(248, 245, 245, 0.6);
}
.baie-mask_transparent { /* 透明 */
position: fixed;
z-index: 1023;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
/* 遮罩层 END */