order.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .container {
  2. background-color: #F7F7F7;
  3. // 倒计时
  4. .timer {
  5. background-color: #DF3361;
  6. width: 100%;
  7. height: 60rpx;
  8. font-size: 14px;
  9. text-align: center;
  10. line-height: 60rpx;
  11. color: #fff;
  12. }
  13. .code-info {
  14. width: 100%;
  15. height: 390rpx;
  16. background-color: #fff;
  17. .code {
  18. width: 320rpx;
  19. height: 320rpx;
  20. border: 1px solid #ebeef5;
  21. margin: 20rpx auto;
  22. .canvas-code {
  23. background-color: #fff;
  24. width: 280rpx;
  25. height: 280rpx;
  26. margin: 20rpx auto;
  27. }
  28. .code-text {
  29. text-align: center;
  30. margin: 30rpx auto;
  31. }
  32. }
  33. }
  34. .order {
  35. margin-top: 20rpx;
  36. display: flex;
  37. height: 250rpx;
  38. background-color: #fff;
  39. justify-content: flex-start;
  40. .order-img {
  41. width: 200rpx;
  42. height: 190rpx;
  43. margin: 20rpx 20rpx;
  44. padding-top: 25rpx;
  45. image {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. }
  50. .order-info {
  51. flex: 1;
  52. padding-top: 10rpx;
  53. padding-left: 30rpx;
  54. .order-id {
  55. height: 50rpx;
  56. text-align: right;
  57. }
  58. .order-title {
  59. height: 60rpx;
  60. }
  61. .order-price {
  62. height: 80rpx;
  63. }
  64. .order-date {
  65. height: 50rpx;
  66. }
  67. }
  68. }
  69. .shop-info {
  70. height: 250rpx;
  71. margin-top: 20rpx;
  72. padding: 20rpx 30rpx;
  73. background-color: #fff;
  74. .shop {
  75. height: 50rpx;
  76. line-height: 50rpx;
  77. }
  78. .address,
  79. .tel {
  80. height: 30rpx;
  81. line-height: 30rpx;
  82. margin: 20rpx;
  83. position: relative;
  84. image {
  85. width: 40rpx;
  86. height: 40rpx;
  87. position: absolute;
  88. right: 0;
  89. bottom: 0;
  90. }
  91. }
  92. }
  93. .order-btn {
  94. position: fixed;
  95. bottom: 0;
  96. left: 0;
  97. width: 100%;
  98. height: 100rpx;
  99. display: flex;
  100. justify-content: flex-end;
  101. align-items: center;
  102. border-top: 1rpx solid #ECECEC;
  103. .confirm-btn,
  104. .pay-btn {
  105. background-color: #DF3361;
  106. width: 180rpx;
  107. height: 50rpx;
  108. font-size: 14px;
  109. text-align: center;
  110. line-height: 50rpx;
  111. border-radius: 25rpx;
  112. color: #fff;
  113. margin-right: 20rpx;
  114. }
  115. .delete-btn {
  116. width: 180rpx;
  117. height: 50rpx;
  118. font-size: 14px;
  119. text-align: center;
  120. line-height: 50rpx;
  121. border-radius: 25rpx;
  122. color: #999;
  123. border: 1rpx solid #999;
  124. margin: 0 20rpx;
  125. }
  126. }
  127. }