index.scss 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Eservice/agent/billCanUseProduct/index.wxss */
  2. page {
  3. position: relative;
  4. height: 100vh;
  5. overflow: hidden;
  6. }
  7. .footer {
  8. display: flex;
  9. justify-content: space-between;
  10. padding: 0 30rpx;
  11. position: fixed;
  12. width: 100vw;
  13. height: 130rpx;
  14. background: #FFFFFF;
  15. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  16. bottom: 0;
  17. box-sizing: border-box;
  18. z-index: 9999;
  19. padding-top: 10rpx;
  20. .count {
  21. height: 90rpx;
  22. line-height: 90rpx;
  23. font-size: 32rpx;
  24. font-weight: bold;
  25. color: var(--error);
  26. }
  27. .but-box {
  28. .but {
  29. min-width: 156rpx;
  30. height: 90rpx;
  31. background: #3874F6;
  32. border-radius: 8rpx;
  33. font-size: 28rpx;
  34. font-family: PingFang SC-Bold, PingFang SC;
  35. font-weight: bold;
  36. color: #FFFFFF;
  37. margin-left: 8rpx;
  38. }
  39. .delete {
  40. background: var(--warning);
  41. }
  42. }
  43. }