select.scss 865 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .item {
  6. padding-left: 20rpx;
  7. display: flex;
  8. align-items: center;
  9. background-color: #fff;
  10. margin-bottom: 20rpx;
  11. }
  12. .footer {
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. padding: 0 30rpx;
  17. position: fixed;
  18. width: 100vw;
  19. height: 130rpx;
  20. background: #FFFFFF;
  21. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  22. bottom: 0;
  23. box-sizing: border-box;
  24. .count {
  25. font-size: 28rpx;
  26. font-family: PingFang SC-Regular, PingFang SC;
  27. color: #333333;
  28. }
  29. .but {
  30. width: 156rpx;
  31. height: 90rpx;
  32. background: #3874F6;
  33. border-radius: 8rpx;
  34. font-size: 28rpx;
  35. font-family: PingFang SC-Bold, PingFang SC;
  36. font-weight: bold;
  37. color: #FFFFFF;
  38. }
  39. }