73 lines
1.5 KiB
Plaintext
73 lines
1.5 KiB
Plaintext
.activities_header {
|
|
padding: 30rpx;
|
|
display: flex;
|
|
align-items: self-start;
|
|
border-top: 1rpx solid #eee;
|
|
justify-content: space-between;
|
|
}
|
|
.activities_header .activities_name_time {
|
|
flex: 1;
|
|
}
|
|
.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_NotStarted {
|
|
background-color: #ffa100;
|
|
}
|
|
.activities_header .event_status_InProgress {
|
|
background-color: #4096ff;
|
|
}
|
|
.activities_header .event_status_Finished {
|
|
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:first-child {
|
|
padding-right: 30rpx;
|
|
}
|
|
.footer .btn:last-child {
|
|
padding: 0;
|
|
}
|
|
.up-content {
|
|
padding: 24rpx;
|
|
font-size: 32rpx;
|
|
color: #606266;
|
|
line-height: 1.6;
|
|
} |