index.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* pages/mine/myorder/confirm/index.wxss */
  2. @color0: #292929; // Appears 4 times
  3. @color1: #f5f5f5; // Appears 3 times
  4. @color2: #3f3f3f; // Appears 2 times
  5. @white: #ffffff; // Appears 2 times
  6. page {
  7. background-color: @color1;
  8. .borderbottom {
  9. margin: 0 30rpx;
  10. height: 0;
  11. border-bottom: 1px solid #e1e1e1;
  12. }
  13. .card {
  14. background: @white;
  15. }
  16. .t-table {
  17. padding: 20rpx 0;
  18. }
  19. .t-cell {
  20. margin: 0 30rpx;
  21. height: 60rpx;
  22. display: flex;
  23. font-size: 28rpx;
  24. line-height: 36rpx;
  25. align-items: center;
  26. color: #333;
  27. &-title {
  28. margin-right: 20rpx;
  29. }
  30. &-value {
  31. text-align: right;
  32. flex: 1;
  33. }
  34. }
  35. .t-wrap {
  36. margin: 0 30rpx;
  37. display: flex;
  38. font-size: 28rpx;
  39. line-height: 36rpx;
  40. color: #333;
  41. }
  42. }
  43. .skuimage {
  44. width: 320rpx;
  45. height: 216rpx;
  46. float: left;
  47. }
  48. .skudetail {
  49. display: flex;
  50. flex: 1;
  51. flex-direction: column;
  52. margin-left: 30rpx;
  53. row-gap: 16rpx;
  54. color: #333;
  55. }
  56. .skutitle {
  57. font-weight: bold;
  58. font-size: 30rpx;
  59. }
  60. .skuspecs {
  61. flex: 1;
  62. color: #777;
  63. font-size: 28rpx;
  64. }
  65. .skuprice {
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. }
  70. .boldprice {
  71. font-weight: bold;
  72. font-size: 34rpx;
  73. }
  74. .buybar {
  75. height: 50rpx;
  76. .fixbar {
  77. border-top: 1px solid #e1e1e1;
  78. position: fixed;
  79. z-index: 99;
  80. padding-bottom: calc(env(safe-area-inset-bottom));
  81. left: 0;
  82. right: 0;
  83. bottom: 0;
  84. background: @white;
  85. .btn-list {
  86. height: 120rpx;
  87. display: flex;
  88. align-items: center;
  89. padding: 0 30rpx;
  90. justify-content: flex-end;
  91. }
  92. }
  93. }