addOrder.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. .head {
  2. width: 750rpx;
  3. background: #FFF9F2;
  4. font-size: 24rpx;
  5. line-height: 40rpx;
  6. color: #FA8C16;
  7. box-sizing: border-box;
  8. padding: 12rpx 30rpx;
  9. }
  10. .remarks {
  11. display: flex;
  12. justify-content: space-between;
  13. width: 750rpx;
  14. background-color: #FFFFFF;
  15. padding: 26rpx 0;
  16. view {
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Regular, PingFang SC;
  19. color: #666666;
  20. margin-left: 30rpx;
  21. }
  22. textarea {
  23. margin-right: 30rpx;
  24. }
  25. }
  26. .tips {
  27. width: 750rpx;
  28. height: 56rpx;
  29. line-height: 56rpx;
  30. text-align: center;
  31. font-size: 24rpx;
  32. font-family: PingFang SC-Regular, PingFang SC;
  33. color: #999999;
  34. }
  35. .versions {
  36. display: flex;
  37. align-items: center;
  38. justify-content: space-between;
  39. width: 750rpx;
  40. height: 90rpx;
  41. background: #FFFFFF;
  42. font-size: 30rpx;
  43. font-family: PingFang SC-Bold, PingFang SC;
  44. font-weight: bold;
  45. color: #333333;
  46. padding: 0 30rpx;
  47. box-sizing: border-box;
  48. >view {
  49. font-size: 26rpx;
  50. color: #3874F6;
  51. padding: 0 20rpx;
  52. }
  53. }
  54. .user-item {
  55. display: flex;
  56. width: 100vw;
  57. box-sizing: border-box;
  58. background-color: #fff;
  59. padding: 20rpx 30rpx;
  60. align-items: center;
  61. .content {
  62. position: relative;
  63. width: 100%;
  64. .label {
  65. font-size: 30rpx;
  66. font-family: PingFang SC-Bold, PingFang SC;
  67. font-weight: bold;
  68. color: #333333;
  69. margin-top: 0;
  70. }
  71. view {
  72. font-size: 24rpx;
  73. font-family: PingFang SC-Regular, PingFang SC;
  74. color: #666666;
  75. margin-top: 8rpx;
  76. }
  77. .tag {
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. width: 100rpx;
  82. height: 45rpx;
  83. font-size: 30rpx;
  84. border: 1px solid red;
  85. position: absolute;
  86. color: red;
  87. right: 0;
  88. top: 50%;
  89. margin-top: -22.5rpx;
  90. border-radius: 4rpx;
  91. }
  92. }
  93. }
  94. .footer {
  95. display: flex;
  96. justify-content: space-between;
  97. padding: 0 30rpx;
  98. position: fixed;
  99. width: 100vw;
  100. height: 130rpx;
  101. background: #FFFFFF;
  102. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  103. bottom: 0;
  104. box-sizing: border-box;
  105. z-index: 9999;
  106. padding-top: 10rpx;
  107. .left {
  108. flex: 1;
  109. display: flex;
  110. justify-content: space-between;
  111. font-size: 24rpx;
  112. font-family: PingFang SC-Regular, PingFang SC;
  113. color: #333333;
  114. line-height: 86rpx;
  115. .price {
  116. font-size: 32rpx;
  117. font-family: PingFang SC-Medium, PingFang SC;
  118. font-weight: 500;
  119. color: #FF3B30;
  120. margin-right: 20rpx;
  121. }
  122. }
  123. .but-box {
  124. .but {
  125. min-width: 156rpx;
  126. height: 90rpx;
  127. background: var(--warning);
  128. border-radius: 8rpx;
  129. font-size: 28rpx;
  130. font-family: PingFang SC-Bold, PingFang SC;
  131. font-weight: bold;
  132. color: #FFFFFF;
  133. }
  134. }
  135. }