cashier.wxss 1.8 KB

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