mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 18:59:36 +08:00
52 lines
964 B
Plaintext
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: 260rpx;
|
|
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;
|
|
} |