SelfRidicule 2ef2928f3a 1
2024-08-22 18:30:58 +08:00

52 lines
964 B
Plaintext

.containerView.public {
background: none;
}
.roomContainer {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.roomContainer .roomItem {
box-shadow: rgba(214,214,214,0.5) 0px 1px 0px 0px,rgb(238,238,238) 0px 1px 2px 0px;
border-radius: 10rpx;
position: relative;
width: 330rpx;
height: 280rpx;
margin-top: 24rpx;
background: white;
display: flex;
justify-content: center;
align-items: center;
}
.roomContainer .roomItem .label {
position: absolute;
left: 20rpx;
top: 20rpx;
font-size: 28rpx;
}
.roomContainer .roomItem .img {
width: 100rpx;
height: 100rpx;
}
.roomContainer .roomItem .deviceNum {
position: absolute;
left: 20rpx;
bottom: 20rpx;
font-size: 24rpx;
color: gray;
}
.roomContainer .roomItem .sceneNum {
position: absolute;
right: 20rpx;
bottom: 20rpx;
font-size: 24rpx;
color: gray;
}