mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 18:59:36 +08:00
140 lines
2.7 KiB
Plaintext
140 lines
2.7 KiB
Plaintext
.queryView {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.meetingRoomView {
|
|
margin-top: 100rpx;
|
|
padding: 30rpx 30rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem {
|
|
/* display: inline-block; */
|
|
width: 33%;
|
|
float: left;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 30rpx;
|
|
padding-bottom: 30rpx;
|
|
/* border-bottom: 1px solid rgb(126, 126, 126, 0.3); */
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content {
|
|
position: relative;
|
|
width: 85%;
|
|
margin: 0px auto;
|
|
height: 228rpx;
|
|
/* border: 1px solid #A3CDFF; */
|
|
/* background-color: #A3CDFF; */
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .disabled {
|
|
/* border: 1px solid #F2F2F2; */
|
|
background-color: #F2F2F2 !important;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .title {
|
|
font-size: 40rpx;
|
|
font-weight: 700;
|
|
color: black;
|
|
text-align: center;
|
|
|
|
/* margin-top: 40rpx; */
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .am,.meetingRoomView .meetingRoomItem .content .pm,.meetingRoomView .meetingRoomItem .content .night {
|
|
height: 59rpx;
|
|
line-height: 59rpx;
|
|
font-size: 20rpx;
|
|
color: black;
|
|
text-align: center;
|
|
background-color: #A3CDFF;
|
|
margin-top: 5rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .articleView {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: start;
|
|
align-items: center;
|
|
margin-top: 18rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .articleView .article {
|
|
font-size: 28rpx;
|
|
color: gray;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .articleView .article:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
|
|
.meetingRoomView .meetingRoomItem .content .propOpen {
|
|
flex: 1;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .priceView {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 50rpx;
|
|
line-height: 50rpx;
|
|
text-align: center;
|
|
background-color: #D8E9FC;
|
|
color: #000;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .disabled .priceView {
|
|
background-color: #F2F2F2 !important;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .priceView .price {
|
|
font-size: 32rpx;
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .content .priceView .unit {
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
}
|
|
|
|
|
|
.meetingRoomView .meetingRoomItem .imgView {
|
|
position: relative;
|
|
width: 320rpx;
|
|
height: 180rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .imgView .title {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 16rpx;
|
|
background: #76aef9;
|
|
font-size: 24rpx;
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: 8rpx 16rpx;
|
|
border-top-right-radius: 6rpx;
|
|
border-bottom-right-radius: 6rpx;
|
|
}
|
|
|
|
.meetingRoomView .meetingRoomItem .imgView .img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.roomType {
|
|
width: 100%;
|
|
padding: 15rpx 30rpx;
|
|
font-weight: 700;
|
|
font-size: 32rpx;
|
|
} |