index.scss 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .title {
  2. font-size: 28rpx;
  3. color: #333333;
  4. margin: 30rpx;
  5. }
  6. .binding-box {
  7. width: 100vw;
  8. padding: 20rpx 30rpx 0rpx;
  9. background-color: #fff;
  10. box-sizing: border-box;
  11. border-bottom: 1rpx solid #ddd;
  12. .numno {
  13. font-size: 28rpx;
  14. margin-bottom: 15rpx;
  15. }
  16. .product {
  17. display: flex;
  18. align-items: center;
  19. width: 100%;
  20. margin-bottom: 20rpx;
  21. .image {
  22. width: 130rpx;
  23. height: 130rpx;
  24. margin-right: 20rpx;
  25. border-radius: 16rpx;
  26. overflow: hidden;
  27. flex-shrink: 0;
  28. }
  29. .content {
  30. flex: 1;
  31. color: #333;
  32. .content-title {
  33. line-height: 40rpx;
  34. font-size: 30rpx;
  35. font-weight: bold;
  36. }
  37. .row {
  38. font-size: 26rpx;
  39. width: 100%;
  40. margin-top: 8rpx;
  41. text {
  42. line-height: 30rpx;
  43. display: inline-block;
  44. width: 50%;
  45. word-break: break-all;
  46. overflow: hidden;
  47. white-space: nowrap;
  48. text-overflow: ellipsis;
  49. }
  50. .qty {
  51. font-weight: bold;
  52. text-align: center;
  53. font-size: 30rpx;
  54. }
  55. }
  56. }
  57. }
  58. }