order.scss 2.3 KB

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