OrderSuccessPopup.wxss 841 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .popup-content {
  17. position: relative;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .popup-content .gift-image {
  23. width: 100%;
  24. height: auto;
  25. }
  26. .popup-content .action-buttons {
  27. position: absolute;
  28. bottom: 100rpx;
  29. width: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. }
  34. .popup-content .check-rules {
  35. font-size: 40rpx;
  36. color: #ffffff;
  37. text-align: center;
  38. padding: 10rpx;
  39. padding-left: 80rpx;
  40. }