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.
74 lines
1.6 KiB
74 lines
1.6 KiB
.page { |
|
position: relative; |
|
box-sizing: border-box; |
|
background-color: #fff; |
|
height: 100vh; |
|
overflow: hidden; |
|
.bg { |
|
width: 100%; |
|
} |
|
.page-container { |
|
position: absolute; |
|
width: 100%; |
|
top: 0; |
|
left: 0; |
|
display: flex; |
|
flex-direction: column; |
|
height: 100vh; |
|
padding-bottom: 80rpx; |
|
box-sizing: border-box; |
|
.navbar { |
|
flex-shrink: 0; |
|
} |
|
.content { |
|
position: relative; |
|
flex: 1; |
|
margin: 80rpx auto 0; |
|
overflow-y: auto; |
|
overflow-x: hidden; |
|
padding: 40rpx 48rpx; |
|
width: 654rpx; |
|
font-size: 28rpx; |
|
color: #666666; |
|
box-sizing: border-box; |
|
background: #ffffff; |
|
box-shadow: 0rpx 4rpx 24rpx 0rpx rgba(0, 0, 0, 0.09); |
|
border: 2rpx solid rgba(224, 71, 117, 0.25); |
|
border-radius: 24rpx; |
|
.mask { |
|
position: sticky; |
|
bottom: -40rpx; |
|
left: 0; |
|
width: 100%; |
|
height: 250rpx; |
|
background: linear-gradient(rgba(255, 255, 255, 0.3), #fff); |
|
} |
|
} |
|
.footer { |
|
flex-shrink: 0; |
|
margin: 81rpx 48rpx 0; |
|
box-sizing: border-box; |
|
display: flex; |
|
> view:not(:last-of-type), |
|
> image { |
|
margin-right: 30rpx; |
|
} |
|
.btn { |
|
flex: 1; |
|
text-align: center; |
|
height: 80rpx; |
|
line-height: 80rpx; |
|
text-align: center; |
|
border: 2rpx solid #e04775; |
|
border-radius: 24rpx; |
|
font-size: 34rpx; |
|
font-weight: bold; |
|
color: #e04775; |
|
} |
|
.sure { |
|
background-color: #e04775; |
|
color: #fff; |
|
} |
|
} |
|
} |
|
}
|
|
|