order.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @import "./order.skeleton.wxss";
  2. .row {
  3. width: 100vw;
  4. padding-left: 30rpx;
  5. background-color: #fff;
  6. box-sizing: border-box;
  7. >view {
  8. width: 720rpx;
  9. display: flex;
  10. justify-content: space-between;
  11. padding: 20rpx 0;
  12. border-bottom: 1rpx solid #EEEEEE;
  13. font-size: 28rpx;
  14. font-family: PingFang SC-Regular, PingFang SC;
  15. .label {
  16. color: #666666;
  17. width: 176rpx;
  18. }
  19. .text {
  20. margin-right: 30rpx;
  21. max-width: 500rpx;
  22. }
  23. }
  24. }
  25. .title {
  26. font-size: 28rpx;
  27. color: #333333;
  28. padding-top: 30rpx;
  29. padding-left: 30rpx;
  30. }
  31. .card {
  32. width: 690rpx;
  33. background: #FFFFFF;
  34. border-radius: 16rpx;
  35. margin: 20rpx auto 0;
  36. box-sizing: border-box;
  37. padding: 20rpx 30rpx;
  38. .label {
  39. line-height: 42rpx;
  40. font-size: 30rpx;
  41. font-family: PingFang SC-Bold, PingFang SC;
  42. font-weight: bold;
  43. color: #333333;
  44. margin-top: 0;
  45. }
  46. >view {
  47. display: flex;
  48. align-items: center;
  49. font-size: 24rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. color: #666666;
  52. line-height: 34rpx;
  53. margin-top: 10rpx;
  54. }
  55. .price {
  56. color: #FF3B30;
  57. }
  58. .tag {
  59. background-color: #F59A23;
  60. padding: 4rpx 8rpx;
  61. color: #fff;
  62. border-radius: 8rpx;
  63. margin-left: 14rpx;
  64. font-size: 22rpx;
  65. }
  66. }
  67. .footer {
  68. display: flex;
  69. justify-content: space-between;
  70. padding: 0 30rpx;
  71. position: fixed;
  72. width: 100vw;
  73. height: 130rpx;
  74. background: #FFFFFF;
  75. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  76. bottom: 0;
  77. box-sizing: border-box;
  78. z-index: 9999;
  79. padding-top: 10rpx;
  80. .left {
  81. flex: 1;
  82. display: flex;
  83. justify-content: space-between;
  84. font-size: 24rpx;
  85. font-family: PingFang SC-Regular, PingFang SC;
  86. color: #333333;
  87. line-height: 86rpx;
  88. .price {
  89. font-size: 32rpx;
  90. font-family: PingFang SC-Medium, PingFang SC;
  91. font-weight: 500;
  92. color: #FF3B30;
  93. margin-right: 20rpx;
  94. }
  95. }
  96. .but-box {
  97. .but {
  98. min-width: 156rpx;
  99. height: 90rpx;
  100. background: var(--warning);
  101. border-radius: 8rpx;
  102. font-size: 28rpx;
  103. font-family: PingFang SC-Bold, PingFang SC;
  104. font-weight: bold;
  105. color: #FFFFFF;
  106. }
  107. .delete {
  108. background: var(--error) !important;
  109. }
  110. }
  111. }