addOrder.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. .label {
  63. font-size: 30rpx;
  64. font-family: PingFang SC-Bold, PingFang SC;
  65. font-weight: bold;
  66. color: #333333;
  67. margin-top: 0;
  68. }
  69. view {
  70. font-size: 24rpx;
  71. font-family: PingFang SC-Regular, PingFang SC;
  72. color: #666666;
  73. margin-top: 8rpx;
  74. }
  75. }
  76. }
  77. .footer {
  78. display: flex;
  79. justify-content: space-between;
  80. padding: 0 30rpx;
  81. position: fixed;
  82. width: 100vw;
  83. height: 130rpx;
  84. background: #FFFFFF;
  85. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  86. bottom: 0;
  87. box-sizing: border-box;
  88. z-index: 9999;
  89. padding-top: 10rpx;
  90. .left {
  91. flex: 1;
  92. display: flex;
  93. justify-content: space-between;
  94. font-size: 24rpx;
  95. font-family: PingFang SC-Regular, PingFang SC;
  96. color: #333333;
  97. line-height: 86rpx;
  98. .price {
  99. font-size: 32rpx;
  100. font-family: PingFang SC-Medium, PingFang SC;
  101. font-weight: 500;
  102. color: #FF3B30;
  103. margin-right: 20rpx;
  104. }
  105. }
  106. .but-box {
  107. .but {
  108. min-width: 156rpx;
  109. height: 90rpx;
  110. background: var(--warning);
  111. border-radius: 8rpx;
  112. font-size: 28rpx;
  113. font-family: PingFang SC-Bold, PingFang SC;
  114. font-weight: bold;
  115. color: #FFFFFF;
  116. }
  117. }
  118. }