order.scss 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. .container {
  2. position: relative;
  3. width: 750rpx;
  4. height: 1334rpx;
  5. background-image: url(../../static/images/bg.png);
  6. background-size: 100% 100%;
  7. background-attachment: fixed;
  8. background-repeat: no-repeat;
  9. box-sizing: border-box;
  10. font-family: "Microsoft YaHei";
  11. font-weight: 400;
  12. box-sizing: border-box;
  13. overflow: hidden;
  14. .hint {
  15. position: fixed;
  16. top: 250rpx;
  17. left: 50%;
  18. transform: translateX(-375rpx);
  19. width: 750rpx;
  20. height: 50rpx;
  21. line-height: 50rpx;
  22. text-align: center;
  23. color: #615f5f;
  24. font-size: 28rpx;
  25. }
  26. .mark {
  27. position: absolute;
  28. width: 100%;
  29. height: 100%;
  30. background: #000000;
  31. opacity: 0.2;
  32. z-index: 4;
  33. }
  34. button::after {
  35. border: none;
  36. }
  37. button {
  38. margin: 0;
  39. outline: none;
  40. padding: 0;
  41. }
  42. .list {
  43. width: 700rpx;
  44. height: 1300rpx;
  45. overflow: scroll;
  46. margin: 0 auto;
  47. padding-top: 163rpx;
  48. border-radius: 10rpx;
  49. box-sizing: border-box;
  50. &::-webkit-scrollbar {
  51. display: none;
  52. }
  53. .messCard {
  54. position: relative;
  55. width: 690rpx;
  56. height: 464rpx;
  57. margin-bottom: 30rpx;
  58. border-radius: 10rpx;
  59. box-sizing: border-box;
  60. .field {
  61. position: absolute;
  62. top: 0;
  63. left: 0;
  64. width: 690rpx;
  65. height: 453rpx;
  66. background: #ffffff;
  67. border-radius: 10rpx;
  68. z-index: 3;
  69. overflow: hidden;
  70. .header {
  71. display: flex;
  72. justify-content: space-between;
  73. width: 690rpx;
  74. height: 90rpx;
  75. background: #e7eef5;
  76. text {
  77. width: 500rpx;
  78. height: 90rpx;
  79. font-size: 28rpx;
  80. margin-left: 20rpx;
  81. color: #333333;
  82. text-align: left;
  83. line-height: 90rpx;
  84. }
  85. & text:nth-child(2) {
  86. width: 140rpx;
  87. height: 88rpx;
  88. line-height: 88rpx;
  89. color: #999999;
  90. }
  91. }
  92. .content {
  93. width: 690rpx;
  94. height: 242rpx;
  95. .mess-itm {
  96. display: flex;
  97. justify-content: space-between;
  98. width: 650rpx;
  99. height: 30rpx;
  100. margin: 0 auto;
  101. margin-top: 28rpx;
  102. text {
  103. width: 100rpx;
  104. height: 30rpx;
  105. font-size: 28rpx;
  106. color: #808080;
  107. line-height: 30rpx;
  108. text-align: left;
  109. }
  110. & text:nth-child(2) {
  111. width: 550rpx;
  112. color: rgba(51, 51, 51, 1);
  113. }
  114. .time {
  115. width: 400rpx;
  116. margin-top: 20rpx;
  117. font-size: 24rpx;
  118. color: #808080;
  119. }
  120. .amount {
  121. width: 245px;
  122. margin-top: 18rpx;
  123. font-weight: bold;
  124. color: #333333;
  125. text-align: right;
  126. }
  127. }
  128. }
  129. .footer {
  130. width: 690rpx;
  131. height: 121rpx;
  132. .bt-item {
  133. display: flex;
  134. justify-content: flex-end;
  135. width: 460rpx;
  136. height: 70rpx;
  137. margin-top: 15rpx;
  138. margin-left: 210rpx;
  139. .button {
  140. width: 140rpx;
  141. height: 60rpx;
  142. margin-left: 20rpx;
  143. line-height: 60rpx;
  144. text-align: center;
  145. font-size: 28rpx;
  146. color: #298def;
  147. border: 1px solid #298def;
  148. border-radius: 30rpx;
  149. background: #fff;
  150. }
  151. }
  152. }
  153. }
  154. .fieldBg {
  155. position: absolute;
  156. top: 148rpx;
  157. left: 21rpx;
  158. width: 648rpx;
  159. height: 316rpx;
  160. background: #ffffff;
  161. opacity: 0.7;
  162. border-radius: 14rpx;
  163. z-index: 2;
  164. }
  165. }
  166. }
  167. .detail {
  168. display: flex;
  169. flex-direction: column;
  170. justify-content: flex-start;
  171. position: absolute;
  172. top: 301rpx;
  173. left: 50%;
  174. transform: translateX(-325rpx);
  175. z-index: 5;
  176. width: 650rpx;
  177. height: 742rpx;
  178. background: #ffffff;
  179. box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(0, 0, 0, 0.29);
  180. border-radius: 10rpx;
  181. overflow: hidden;
  182. box-sizing: border-box;
  183. .top {
  184. display: flex;
  185. justify-content: space-between;
  186. width: 650rpx;
  187. height: 90rpx;
  188. background: #e7eef5;
  189. line-height: 90rpx;
  190. text {
  191. width: 161rpx;
  192. height: 90rpx;
  193. margin-left: 35rpx;
  194. line-height: 90rpx;
  195. font-size: 32rpx;
  196. color: #333333;
  197. }
  198. .close {
  199. position: relative;
  200. width: 120rpx;
  201. height: 80rpx;
  202. background: #e7eef5;
  203. .image {
  204. position: absolute;
  205. top: 40%;
  206. left: 50%;
  207. width: 18rpx;
  208. height: 18rpx;
  209. background-image: url(../../static/images/close.png);
  210. background-size: 100%;
  211. }
  212. }
  213. }
  214. .content {
  215. width: 650rpx;
  216. height: 652rpx;
  217. overflow-y: scroll;
  218. box-sizing: border-box;
  219. .mess-itm,
  220. .mess-itm-pay {
  221. display: flex;
  222. justify-content: flex-start;
  223. width: 590rpx;
  224. height: 30rpx;
  225. margin: 0 auto;
  226. margin-top: 32rpx;
  227. box-sizing: border-box;
  228. text {
  229. // width: 200rpx;
  230. height: 30rpx;
  231. font-size: 28rpx;
  232. color: #808080;
  233. line-height: 30rpx;
  234. text-align: left;
  235. }
  236. & text:nth-child(2) {
  237. // width: 550rpx;
  238. color: rgba(51, 51, 51, 1);
  239. }
  240. }
  241. }
  242. }
  243. .messageCard {
  244. display: flex;
  245. flex-direction: column;
  246. justify-content: flex-start;
  247. position: absolute;
  248. top: 125rpx;
  249. left: 50%;
  250. transform: translateX(-350rpx);
  251. width: 700rpx;
  252. height: 1000rpx;
  253. box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(0, 0, 0, 0.29);
  254. background: #fff;
  255. border-radius: 14rpx;
  256. z-index: 4;
  257. .item-form {
  258. width: 618rpx;
  259. height: 800rpx;
  260. margin: 0 auto;
  261. overflow: scroll;
  262. &::-webkit-scrollbar {
  263. display: none;
  264. }
  265. .item,
  266. .item-pay {
  267. display: flex;
  268. justify-content: space-between;
  269. width: 618rpx;
  270. height: 89rpx;
  271. margin: 0 auto;
  272. margin-top: 8rpx;
  273. border-bottom: 1rpx solid #d9d9d9;
  274. line-height: 89rpx;
  275. box-sizing: border-box;
  276. .ite {
  277. display: inline-block;
  278. width: 200rpx;
  279. height: 60rpx;
  280. line-height: 89rpx;
  281. margin-left: 20rpx;
  282. font-size: 32rpx;
  283. color: #808080;
  284. box-sizing: border-box;
  285. }
  286. .content {
  287. display: inline-block;
  288. width: 400rpx;
  289. height: 60rpx;
  290. overflow: hidden; //多出部分隐藏
  291. white-space: nowrap; //一行显示
  292. text-overflow: ellipsis; //是否显示省略号
  293. line-height: 89rpx;
  294. margin-left: 40rpx;
  295. color: #000;
  296. background: #fff;
  297. box-sizing: border-box;
  298. }
  299. }
  300. }
  301. button {
  302. width: 618rpx;
  303. height: 90rpx;
  304. margin: 0 auto;
  305. margin-bottom: 20rpx;
  306. background: #298def;
  307. font-size: 28rpx;
  308. color: #fff;
  309. border: 2rpx solid #fff;
  310. text-align: center;
  311. line-height: 90rpx;
  312. box-sizing: border-box;
  313. }
  314. & button:nth-of-type(2) {
  315. background: #fff;
  316. color: #298def;
  317. border: 2rpx solid #298def;
  318. }
  319. }
  320. }