index.scss 1.0 KB

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