order.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* pages/order/order.wxss */
  2. page{
  3. padding: 0;
  4. }
  5. .tab{
  6. height: 80rpx;
  7. display: flex;
  8. }
  9. .tab text{
  10. width: 50%;
  11. line-height: 80rpx;
  12. text-align: center;
  13. color: #333;
  14. font-size: 26rpx;
  15. background: #fff;
  16. transition: .5s;
  17. }
  18. .tab .act{
  19. color: #fff;
  20. background: #3780CD;
  21. }
  22. .content{
  23. height: calc(100vh - 80rpx);
  24. overflow: auto;
  25. padding: 30rpx;
  26. }
  27. .list{
  28. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  29. border-radius: 20rpx;
  30. display: flex;
  31. /* padding: 20rpx; */
  32. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  33. /* margin: 0 20rpx 40rpx; */
  34. padding: 28rpx;
  35. background: #fff;
  36. position: relative;
  37. margin-bottom: 40rpx;
  38. }
  39. .list image{
  40. width: 25%;
  41. height: 210rpx;
  42. }
  43. .list>view{
  44. width: 75%;
  45. padding-left: 20rpx;
  46. vertical-align: middle;
  47. }
  48. .list .title{
  49. margin-bottom: 20rpx;
  50. text-overflow: ellipsis;
  51. overflow: hidden;
  52. white-space: nowrap;
  53. font-size: 28rpx;
  54. }
  55. .list text{
  56. color: #999;
  57. display: block;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. display: -webkit-box;
  61. -webkit-line-clamp: 2;
  62. -webkit-box-orient: vertical;
  63. white-space: normal;
  64. font-size: 22rpx;
  65. }
  66. .btn{
  67. /* width: 132rpx; */
  68. height: 56rpx;
  69. background: #09A65E;
  70. border-radius: 6px;
  71. text-align: center;
  72. line-height: 56rpx;
  73. color: #fff;
  74. font-size: 26rpx;
  75. position: absolute;
  76. bottom: 28rpx;
  77. right: 28rpx;
  78. padding: 0 6rpx;
  79. }
  80. .ewm{
  81. position: fixed;
  82. width: 100%;
  83. height: 100vh;
  84. top: 0;
  85. left: 0;
  86. }
  87. .bg{
  88. position: fixed;
  89. width: 100%;
  90. height: 100vh;
  91. top: 0;
  92. left: 0;
  93. z-index: 99;
  94. background: rgba(0,0,0,.5);
  95. padding: 50rpx 0;
  96. }
  97. .ewm>.ww{
  98. background: #fff;
  99. border-radius: 18rpx;
  100. padding: 100rpx;
  101. display: block;
  102. position: absolute;
  103. width: 90%;
  104. top: 0;
  105. bottom: 0;
  106. left: 0;
  107. right: 0;
  108. margin: auto;
  109. height: 60vh;
  110. z-index: 99;
  111. overflow: auto;
  112. }
  113. .form{
  114. background: #fff;
  115. border-radius: 18rpx;
  116. padding: 80rpx 100rpx;
  117. display: block;
  118. position: absolute;
  119. width: 90%;
  120. height: 700rpx;
  121. margin: auto;
  122. top: 0;
  123. bottom: 0;
  124. left: 0;
  125. right: 0;
  126. text-align: center;
  127. }
  128. .form .tt{
  129. font-size: 32rpx;
  130. }
  131. .code{
  132. width: 400rpx;
  133. height: 400rpx;
  134. border: 1px solid #D0D0D0;
  135. margin: 40rpx auto;
  136. }
  137. .code image{
  138. width: 100%;
  139. }
  140. .form text{
  141. color: #999;
  142. font-size: 26rpx;
  143. }
  144. .addr{
  145. word-break: break-all;
  146. }