42 lines
612 B
Plaintext
42 lines
612 B
Plaintext
.form-section {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.timeline-content {
|
|
min-height: 250rpx;
|
|
}
|
|
|
|
.image-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 12rpx;
|
|
margin-top: 18rpx;
|
|
}
|
|
|
|
.image-cell {
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: 180rpx;
|
|
border-radius: 20rpx;
|
|
background: #efe0ca;
|
|
}
|
|
|
|
.image-cell image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.image-remove {
|
|
position: absolute;
|
|
top: 8rpx;
|
|
right: 8rpx;
|
|
width: 42rpx;
|
|
height: 42rpx;
|
|
border-radius: 999rpx;
|
|
background: rgba(47, 33, 28, 0.72);
|
|
color: #fff;
|
|
font-size: 32rpx;
|
|
line-height: 38rpx;
|
|
text-align: center;
|
|
}
|