FirstOrderFreePopup.wxss 865 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. padding-right: 16rpx;
  22. }
  23. .popup-content .gift-image {
  24. width: 100%;
  25. height: auto;
  26. }
  27. .popup-content .action-buttons {
  28. position: absolute;
  29. bottom: 100rpx;
  30. width: 100%;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. .popup-content .check-rules {
  36. font-size: 40rpx;
  37. color: #FFFFFF;
  38. text-align: center;
  39. padding: 10rpx;
  40. padding-left: 80rpx;
  41. }