wh-common.scss 622 B

1234567891011121314151617181920212223242526
  1. .popup-block {
  2. border-radius: 20rpx 20rpx 0rpx 0rpx;
  3. overflow: hidden;
  4. background-color: #f5f5f5;
  5. padding-bottom: 0;
  6. .popup-row {
  7. height: 100rpx;
  8. background-color: #fff;
  9. text-align: center;
  10. line-height: 100rpx;
  11. border-bottom: 2rpx solid #f5f5f5;
  12. &:nth-last-child(2) {
  13. margin-bottom: 20rpx;
  14. }
  15. &:last-child {
  16. height: 112rpx;
  17. border: none;
  18. line-height: 112rpx;
  19. //padding-bottom:constant(safe-area-inset-bottom);
  20. padding-bottom:calc(env(safe-area-inset-bottom) - 40rpx);
  21. }
  22. &:active {
  23. background-color: rgb(244, 244, 244);
  24. }
  25. }
  26. }