| 1234567891011121314151617181920212223242526 |
- .popup-block {
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- overflow: hidden;
- background-color: #f5f5f5;
- padding-bottom: 0;
- .popup-row {
- height: 100rpx;
- background-color: #fff;
- text-align: center;
- line-height: 100rpx;
- border-bottom: 2rpx solid #f5f5f5;
- &:nth-last-child(2) {
- margin-bottom: 20rpx;
- }
- &:last-child {
- height: 112rpx;
- border: none;
- line-height: 112rpx;
- //padding-bottom:constant(safe-area-inset-bottom);
- padding-bottom:calc(env(safe-area-inset-bottom) - 40rpx);
- }
- &:active {
- background-color: rgb(244, 244, 244);
- }
- }
- }
|