order.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. font-size: 24rpx;
  48. font-family: PingFang SC-Regular, PingFang SC;
  49. color: #666666;
  50. line-height: 34rpx;
  51. margin-top: 10rpx;
  52. }
  53. .price {
  54. color: #FF3B30;
  55. }
  56. }
  57. .footer {
  58. display: flex;
  59. justify-content: space-between;
  60. padding: 0 30rpx;
  61. position: fixed;
  62. width: 100vw;
  63. height: 130rpx;
  64. background: #FFFFFF;
  65. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  66. bottom: 0;
  67. box-sizing: border-box;
  68. z-index: 9999;
  69. padding-top: 10rpx;
  70. .left {
  71. flex: 1;
  72. display: flex;
  73. justify-content: space-between;
  74. font-size: 24rpx;
  75. font-family: PingFang SC-Regular, PingFang SC;
  76. color: #333333;
  77. line-height: 86rpx;
  78. .price {
  79. font-size: 32rpx;
  80. font-family: PingFang SC-Medium, PingFang SC;
  81. font-weight: 500;
  82. color: #FF3B30;
  83. margin-right: 20rpx;
  84. }
  85. }
  86. .but-box {
  87. .but {
  88. min-width: 156rpx;
  89. height: 90rpx;
  90. background: var(--warning);
  91. border-radius: 8rpx;
  92. font-size: 28rpx;
  93. font-family: PingFang SC-Bold, PingFang SC;
  94. font-weight: bold;
  95. color: #FFFFFF;
  96. }
  97. .delete {
  98. background: var(--error) !important;
  99. }
  100. }
  101. }