30 lines
706 B
Plaintext
30 lines
706 B
Plaintext
|
|
page {
|
||
|
|
background-color: #f8f8f8;
|
||
|
|
}
|
||
|
|
.collection {
|
||
|
|
background: linear-gradient(180deg, #d8e7ff 0%, rgba(255, 255, 255, 0) 500rpx);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
padding-bottom: calc(130rpx + constant(safe-area-inset-bottom));
|
||
|
|
padding-bottom: calc(130rpx + env(safe-area-inset-bottom));
|
||
|
|
}
|
||
|
|
.collection_title {
|
||
|
|
color: #333;
|
||
|
|
font-size: 40rpx;
|
||
|
|
font-weight: 500;
|
||
|
|
padding: 60rpx 30rpx 0 30rpx;
|
||
|
|
}
|
||
|
|
.collection_list {
|
||
|
|
padding: 30rpx;
|
||
|
|
}
|
||
|
|
.collection_list .collection_item {
|
||
|
|
background-color: #fff;
|
||
|
|
padding: 30rpx;
|
||
|
|
border-radius: 15rpx;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
color: #3d3d3d;
|
||
|
|
font-size: 29rpx;
|
||
|
|
font-weight: 500;
|
||
|
|
margin-bottom: 30rpx;
|
||
|
|
}
|