You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.7 KiB
86 lines
1.7 KiB
.page { |
|
padding: 60rpx 30rpx calc(120rpx + env(safe-area-inset-bottom)); |
|
.title { |
|
font-size: 40rpx; |
|
color: rgba(1, 1, 5, 1); |
|
line-height: 64rpx; |
|
font-weight: bold; |
|
} |
|
.info { |
|
margin-top: 20rpx; |
|
padding-bottom: 24rpx; |
|
display: flex; |
|
align-items: center; |
|
gap: 86rpx; |
|
.date { |
|
font-size: 28rpx; |
|
color: rgba(18, 18, 18, 0.4); |
|
} |
|
.eye { |
|
display: flex; |
|
align-items: center; |
|
.icon { |
|
width: 32rpx; |
|
height: 32rpx; |
|
} |
|
.num { |
|
margin-left: 10rpx; |
|
font-size: 28rpx; |
|
color: rgba(18, 18, 18, 0.4); |
|
} |
|
} |
|
} |
|
.animate { |
|
position: fixed; |
|
z-index: 1; |
|
left: 1000000px; |
|
bottom: calc(env(safe-area-inset-bottom) + 80rpx); |
|
transform: translateX(-50%); |
|
width: 200rpx; |
|
height: 400rpx; |
|
&.active { |
|
left: 75%; |
|
} |
|
} |
|
.footer { |
|
position: fixed; |
|
bottom: 0; |
|
left: 0; |
|
width: 100%; |
|
padding-bottom: env(safe-area-inset-bottom); |
|
display: flex; |
|
align-items: center; |
|
background-color: #fff; |
|
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05); |
|
.btn { |
|
flex: 1; |
|
padding: 24rpx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border: none; |
|
background-color: transparent; |
|
outline: none; |
|
&::after { |
|
border: none; |
|
} |
|
.icon { |
|
width: 36rpx; |
|
height: 36rpx; |
|
} |
|
.num { |
|
margin-left: 12rpx; |
|
font-size: 32rpx; |
|
color: rgba(1, 1, 5, 0.4); |
|
&.active { |
|
color: rgba(242, 58, 47, 1); |
|
} |
|
} |
|
} |
|
.line { |
|
height: 28rpx; |
|
width: 1px; |
|
background-color: rgba(1, 1, 5, 0.16); |
|
} |
|
} |
|
}
|
|
|