67 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-10-29 13:53:05 +08:00
.activities_header {
padding: 30rpx;
display: flex;
align-items: self-start;
border-top: 1rpx solid #eee;
justify-content: space-between;
}
.activities_header .name {
font-size: 32rpx;
color: #333;
font-weight: 500;
}
.activities_header .time {
color: #666;
font-size: 24rpx;
padding-top: 5rpx;
}
.activities_header .status {
color: #fff;
border-radius: 5rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 24rpx;
height: 40rpx;
line-height: 40rpx;
}
.activities_header .event_status_Pending {
background-color: #ffa100;
}
.activities_header .event_status_InProgress {
background-color: #4096ff;
}
.activities_header .event_status_Completed {
background-color: #939393;
}
.activities_content {
padding: 0 30rpx;
padding-bottom: calc(130rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(130rpx + env(safe-area-inset-bottom));
}
.footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
box-shadow: 0px -3px 7px rgba(206, 206, 206, 0.25);
padding: 20rpx 30rpx 0 30rpx;
padding-bottom: calc(20rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer .btn {
flex: 1;
}
.footer .btn:last-child {
padding-left: 30rpx;
}
.up-content {
padding: 24rpx;
font-size: 32rpx;
color: #606266;
line-height: 1.6;
}