index.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. page {
  2. background: #f6f6f6;
  3. padding-bottom: 148rpx;
  4. }
  5. .box {
  6. background: #ffffff;
  7. margin: 30rpx;
  8. padding: 30rpx;
  9. border-radius: 30rpx;
  10. .order-times {
  11. width: 90%;
  12. background: #FFFFFF;
  13. border: 1rpx solid #FFE300;
  14. border-radius: 30rpx;
  15. margin: 20rpx 5%;
  16. display: flex;
  17. justify-content: space-between;
  18. padding: 10rpx 30rpx;
  19. .order-date {
  20. display: flex;
  21. .date {
  22. margin-right: 20rpx;
  23. }
  24. }
  25. .price {
  26. color: red;
  27. }
  28. }
  29. .order-number2 {
  30. display: flex;
  31. justify-content: space-between;
  32. margin-bottom: 20rpx;
  33. margin-top: 10rpx;
  34. .order-title {
  35. margin-right: 20rpx;
  36. }
  37. .order-txts {
  38. color: #767676;
  39. }
  40. .number {
  41. font-size: 30rpx;
  42. }
  43. .state {
  44. font-size: 30rpx;
  45. }
  46. }
  47. .submitbox{
  48. width: 100%;
  49. height: 68rpx;
  50. .submit{
  51. width: 168rpx;
  52. height: 68rpx;
  53. margin-left: auto;
  54. margin-right: 20rpx;
  55. border-radius: 20rpx;
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. font-size: 28rpx;
  60. font-weight: 400;
  61. border: #F37B40 solid 2rpx;
  62. background-color: white;
  63. color: #F37B40;
  64. z-index: 20;
  65. }
  66. }
  67. .order-number {
  68. display: flex;
  69. justify-content: space-between;
  70. .number {
  71. font-size: 30rpx;
  72. }
  73. .state {
  74. font-size: 30rpx;
  75. }
  76. }
  77. .order-txt {
  78. display: flex;
  79. margin: 20rpx 0rpx 0 0;
  80. .order-image {
  81. width: 240rpx;
  82. height: 180rpx;
  83. margin-right: 20rpx;
  84. }
  85. .order-name {
  86. margin-top: 5rpx;
  87. .name {
  88. overflow: hidden; //一定要写
  89. text-overflow: ellipsis; //超出省略号
  90. display: -webkit-box; //一定要写
  91. -webkit-line-clamp: 1; //控制行数
  92. -webkit-box-orient: vertical; //一定要写
  93. }
  94. .order-price {
  95. color: red;
  96. margin-top: 20rpx;
  97. }
  98. .order-time {
  99. margin-top: 20rpx;
  100. }
  101. }
  102. }
  103. .order-order {
  104. display: flex;
  105. justify-content: flex-end;
  106. margin-top: 20rpx;
  107. .bu {
  108. border: 1rpx solid #BBBBBB !important;
  109. border-radius: 24rpx !important;
  110. font-size: 30rpx !important;
  111. padding: 0rpx 20rpx !important;
  112. margin-right: 20rpx !important;
  113. background: #ffffff !important;
  114. }
  115. .service {
  116. border: 1rpx solid #BBBBBB;
  117. border-radius: 24rpx;
  118. font-size: 30rpx;
  119. padding: 20rpx 20rpx;
  120. margin-right: 20rpx;
  121. }
  122. .pay {
  123. // border: 1rpx solid #BBBBBB;
  124. border-radius: 24rpx;
  125. font-size: 30rpx;
  126. padding: 20rpx 0;
  127. width: 180rpx;
  128. text-align: center;
  129. background: #46a9a4;
  130. }
  131. }
  132. }