cashier.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* pages/my/cashier/cashier.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .topBox {
  8. flex-direction: column;
  9. width: 750rpx;
  10. height: 316rpx;
  11. background: #FFFFFF;
  12. }
  13. .topBox .num {
  14. font-size: 80rpx;
  15. font-weight: 500;
  16. color: #191C27;
  17. }
  18. .topBox .tips {
  19. font-size: 28rpx;
  20. color: #FF663D;
  21. }
  22. .centerBox {
  23. width: 750rpx;
  24. background: #FFFFFF;
  25. padding: 32rpx;
  26. }
  27. .centerBox .tit {
  28. font-size: 32rpx;
  29. font-weight: 500;
  30. color: #191C27;
  31. margin-bottom: 32rpx;
  32. }
  33. .centerBox .message {
  34. margin-bottom: 88rpx;
  35. }
  36. .centerBox .message .le {
  37. font-size: 30rpx;
  38. color: #191C27;
  39. }
  40. .centerBox .message .icon {
  41. width: 48rpx;
  42. height: 48rpx;
  43. }
  44. .centerBox .message .active {
  45. width: 46rpx;
  46. height: 46rpx;
  47. }
  48. .centerBox .content{
  49. margin-bottom: 60rpx;
  50. }
  51. .centerBox .content .items {
  52. width: 207rpx;
  53. height: 154rpx;
  54. background: #FFFFFF;
  55. box-shadow: 0px 10rpx 10rpx 0px rgba(188, 188, 188, 0.15);
  56. border-radius: 8rpx;
  57. margin-right: 32rpx;
  58. flex-direction: column;
  59. position: relative;
  60. }
  61. .centerBox .content .items .icon{
  62. width: 40rpx;
  63. height: 40rpx;
  64. position: absolute;
  65. right: 0;
  66. bottom: 0;
  67. z-index: 10;
  68. }
  69. .centerBox .content .items .name {
  70. font-size: 32rpx;
  71. color: #191C27;
  72. }
  73. .centerBox .content .items .val {
  74. font-size: 24rpx;
  75. color: #FF663D;
  76. }
  77. .footerNav {
  78. position: fixed;
  79. left: 0;
  80. bottom: 0;
  81. width: 750rpx;
  82. height: 162rpx;
  83. background: #FFFFFF;
  84. }
  85. .footerNav .btn {
  86. width: 686rpx;
  87. height: 98rpx;
  88. line-height: 98rpx;
  89. box-shadow: 0px 10rpx 20rpx 0px rgba(35, 107, 248, 0.2);
  90. border-radius: 49rpx;
  91. font-size: 32rpx;
  92. font-weight: 500;
  93. color: #FFFFFF;
  94. }