index.less 626 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @import '../../../styles/base.less';
  2. page {
  3. background: #f6f6f6;
  4. }
  5. .tags {
  6. width: 100%;
  7. margin: 8rpx 0;
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. display: -webkit-box;
  11. -webkit-line-clamp: 2;
  12. -webkit-box-orient: vertical;
  13. }
  14. .num-picker {
  15. position: fixed;
  16. bottom: 128rpx;
  17. left:0;
  18. right: 0;
  19. }
  20. .footer-bar {
  21. position:fixed;
  22. bottom: 0;
  23. left: 0;
  24. right: 0;
  25. z-index: 99;
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. padding: 20rpx;
  30. background-color: #ffffff;
  31. .price {
  32. color:@red;
  33. font-weight: 600;
  34. }
  35. .btn {
  36. letter-spacing: 2px;
  37. }
  38. }