.custom-balcony-box {
|
background: #ffffff;
|
background-position: center center;
|
background-repeat: no-repeat;
|
background-size: cover;
|
position: relative;
|
display: flex;
|
|
>.check-all {
|
width: 70px;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
>.card-cell-list {
|
flex: 1;
|
}
|
|
.card-row-list::after {
|
content: ' ';
|
display: block;
|
clear: both;
|
}
|
|
.card-row-list {
|
.card-item-box {
|
background-color: #ffffff;
|
transition: all 0.3s;
|
}
|
>.pointer {
|
cursor: pointer;
|
}
|
>.active >.card-item-box {
|
border-color: #1890ff!important;
|
box-shadow: 0 0 4px #1890ff;
|
}
|
}
|
|
.card-item-box {
|
position: relative;
|
background-position: center center;
|
background-repeat: no-repeat;
|
background-size: cover;
|
transition: all 0.3s;
|
}
|
|
.loading-mask {
|
position: absolute;
|
left: 40px;
|
top: 0;
|
right: 40px;
|
bottom: 0px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
text-align: justify;
|
z-index: 1;
|
|
.ant-spin-blur {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
opacity: 0.5;
|
background: #ffffff;
|
}
|
}
|
}
|
.custom-balcony-box.hidden {
|
display: none;
|
}
|
|
.custom-balcony-box::after {
|
content: ' ';
|
display: block;
|
clear: both;
|
}
|