132 lines
2.3 KiB
Plaintext
Raw Normal View History

2024-02-25 10:21:44 +08:00
.container {
2024-02-23 17:54:15 +08:00
width: 100vw;
height: 100vh;
overflow-y: auto;
background: #fcfcfc;
}
2024-02-25 10:21:44 +08:00
.van-collapse-item__content {
2024-02-23 17:54:15 +08:00
background-color: #f7f7f7 !important;
padding: 0 !important;
}
2024-02-25 10:21:44 +08:00
.controlView {}
2024-02-23 17:54:15 +08:00
2024-02-25 10:21:44 +08:00
.controlView .controlItem {
box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 2px 0px;
2024-02-23 17:54:15 +08:00
display: flex;
justify-content: space-between;
align-items: center;
background: #ffffff;
border-radius: 10rpx;
margin: 24rpx 20rpx;
padding: 24rpx 30rpx;
}
2024-02-25 10:21:44 +08:00
.controlView .controlItem .msg {
2024-02-23 17:54:15 +08:00
flex: 1;
word-break: break-all;
}
2024-02-25 10:21:44 +08:00
.controlView .controlItem .msg .title {
font-size: 36rpx;
2024-02-23 17:54:15 +08:00
}
2024-02-25 10:21:44 +08:00
.controlView .controlItem .msg .status {
2024-02-23 17:54:15 +08:00
position: relative;
margin-top: 24rpx;
margin-left: 24rpx;
font-size: 24rpx;
}
2024-02-25 10:21:44 +08:00
.controlView .controlItem .msg .status::after {
2024-02-23 17:54:15 +08:00
display: block;
content: '';
position: absolute;
margin-right: 10rpx;
right: 100%;
top: 10rpx;
width: 16rpx;
height: 16rpx;
background: #84c786;
border-radius: 10rpx;
}
2024-02-25 10:21:44 +08:00
.controlView .controlItem .openCloseImg {
2024-02-23 17:54:15 +08:00
width: 69rpx;
2024-02-25 10:21:44 +08:00
height: 69rpx;
}
.itemTitleView {
border-left: 8rpx solid #2A6FFF;
display: flex;
justify-content: space-between;
align-items: center;
margin: 40rpx 24rpx 0;
}
.itemTitleView .title {
margin-left: 10rpx;
font-size: 28rpx;
color: #141414;
}
.itemTitleView .more {
font-size: 26rpx;
color: #4b89ef;
}
.recordView {
padding: 60rpx 24rpx 140rpx;
background: white;
}
.recordView .recordItem {
display: flex;
justify-content: start;
align-items: flex-start;
padding: 20rpx 10rpx 20rpx 60rpx;
background: #ffffff;
}
.recordView .recordItem:nth-child(2n){
background: #f9fafc;
2024-02-23 17:54:15 +08:00
}
2024-02-25 10:21:44 +08:00
.recordView .recordItem .timeView {
font-size: 26rpx;
line-height: 1;
}
.recordView .recordItem .timeView .timeYMD {
position: relative;
}
.recordView .recordItem .timeView .timeYMD::after {
display: block;
content: '';
position: absolute;
margin-right: 20rpx;
right: 100%;
top: 6rpx;
width: 12rpx;
height: 12rpx;
background: #2A6FFF;
border-radius: 10rpx;
}
.recordView .recordItem .timeView .timeHm {
margin-top: 10rpx;
}
.recordView .recordItem .msg {
flex: 1;
margin-left: 60rpx;
font-size: 26rpx;
word-break: break-all;
line-height: 1;
}