common.scss 963 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. view, scroll-view, text {
  2. box-sizing: border-box !important;
  3. }
  4. // u-button
  5. page .u-button.u-button--primary {
  6. line-height: 94rpx;
  7. color: #fff;
  8. font-size: 34rpx;
  9. height: 94rpx;
  10. background-color: $color-main;
  11. border-color: $color-main;
  12. border: 0;
  13. border-radius: 16rpx;
  14. &::before{
  15. border: 0;
  16. }
  17. &::after{
  18. border: 0;
  19. }
  20. }
  21. page .u-button{
  22. height: 80rpx;
  23. }
  24. image{
  25. display: block;
  26. }
  27. .white-box{
  28. background-color: #fff;
  29. border-radius: 16rpx;
  30. padding: 20rpx;
  31. }
  32. // 底部安全区域
  33. .safe-area-inset-bottom{
  34. padding-bottom: constant(safe-area-inset-bottom) !important;
  35. padding-bottom: env(safe-area-inset-bottom) !important;
  36. }
  37. .safe-area-issue {
  38. margin-bottom: constant(safe-area-inset-bottom) !important;
  39. margin-bottom: env(safe-area-inset-bottom) !important;
  40. }
  41. // 暂无数据
  42. .no-data{
  43. text-align: center;
  44. font-size: 28rpx;
  45. color: #707476;
  46. height: 200rpx;
  47. line-height: 200rpx;
  48. }