mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 14:19:38 +08:00
65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
.container{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
background: #fcfcfc;
|
|
}
|
|
|
|
|
|
.van-collapse-item__content{
|
|
background-color: #f7f7f7 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.controlView{
|
|
|
|
}
|
|
|
|
.controlView .controlItem{
|
|
box-shadow: rgba(0,0,0,0.075) 0px 1px 2px 0px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: #ffffff;
|
|
border-radius: 10rpx;
|
|
margin: 24rpx 20rpx;
|
|
padding: 24rpx 30rpx;
|
|
}
|
|
|
|
.controlView .controlItem .msg{
|
|
flex: 1;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.controlView .controlItem .msg .title{
|
|
font-size: 36rpx;
|
|
}
|
|
|
|
.controlView .controlItem .msg .status{
|
|
position: relative;
|
|
margin-top: 24rpx;
|
|
margin-left: 24rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.controlView .controlItem .msg .status::after{
|
|
display: block;
|
|
content: '';
|
|
position: absolute;
|
|
margin-right: 10rpx;
|
|
right: 100%;
|
|
top: 10rpx;
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
background: #84c786;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
|
|
.controlView .controlItem .openCloseImg{
|
|
width: 69rpx;
|
|
height: 69rpx;
|
|
}
|
|
|
|
|