select.scss 816 B

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