index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .order-status {
  2. height: 84rpx;
  3. line-height: 84rpx;
  4. border-bottom: 1rpx solid #efefef;
  5. padding: 0 30rpx;
  6. font-size: 24rpx;
  7. font-family: PingFangSC-Regular;
  8. font-weight: 400;
  9. color: #444;
  10. display: flex;
  11. justify-content: space-between;
  12. }
  13. .status-color-gray {
  14. color: #aaa;
  15. font-family: PingFangSC-Medium;
  16. font-weight: 500;
  17. }
  18. .status-color-pink {
  19. color: #ff5344;
  20. font-family: PingFangSC-Medium;
  21. font-weight: 500;
  22. }
  23. .spu {
  24. margin-top: 32rpx;
  25. padding: 0 30rpx;
  26. display: flex;
  27. justify-content: flex-start;
  28. }
  29. .spu .spu-info {
  30. flex: 1;
  31. margin-left: 20rpx;
  32. margin-top: -6rpx;
  33. }
  34. .spu .sku-img {
  35. height: 120rpx;
  36. width: 120rpx;
  37. }
  38. .spu .sku-name {
  39. font-size: 26rpx;
  40. margin-bottom: 10rpx;
  41. font-family: PingFangSC-Medium;
  42. font-weight: 500;
  43. color: #444;
  44. display: -webkit-box;
  45. -webkit-box-orient: vertical;
  46. -webkit-line-clamp: 1;
  47. overflow: hidden;
  48. text-overflow: initial;
  49. white-space: normal;
  50. }
  51. .spu .desc {
  52. font-size: 22rpx;
  53. font-family: PingFangSC-Regular;
  54. font-weight: 400;
  55. color: #aaa;
  56. }
  57. .spu .bottom {
  58. width: 100%;
  59. margin-top: 6rpx;
  60. display: flex;
  61. justify-content: space-between;
  62. line-height: 52rpx;
  63. }
  64. .spu .amount {
  65. font-size: 28rpx;
  66. font-family: PingFangSC-Medium;
  67. font-weight: 500;
  68. color: #444;
  69. }
  70. .spu .link-btn {
  71. display: inline-block;
  72. width: 136rpx;
  73. height: 52rpx;
  74. line-height: 52rpx;
  75. border-radius: 26rpx;
  76. border: 0.1rpx solid #b6b6b6;
  77. font-size: 24rpx;
  78. font-family: PingFangSC-Regular;
  79. font-weight: 400;
  80. color: #666;
  81. text-align: center;
  82. }
  83. .spu .link-btn:last-of-type {
  84. margin-left: 20rpx;
  85. }