orderDetail.scss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. .sld_order_detail {
  2. width: 1200px;
  3. margin: 0 auto;
  4. .container {
  5. width: 100%;
  6. border: 1px solid #d9d9e4;
  7. background-color: white;
  8. .top_info {
  9. height: 185px;
  10. .top_info_state {
  11. width: 318px;
  12. text-align: center;
  13. height: 100%;
  14. position: relative;
  15. border-right: 1px solid #d9d9e4;
  16. .state {
  17. font-size: 20px;
  18. text-align: center;
  19. //font-family: MicrosoftYaHei-Bold;
  20. font-weight: 600;
  21. color: $colorMain2;
  22. }
  23. .refuse_reason {
  24. padding-top: 25px;
  25. color: #666666;
  26. }
  27. .oprate_btn {
  28. display: inline-block;
  29. height: 27px;
  30. line-height: 25px;
  31. padding: 0 12px;
  32. color: $colorMain2;
  33. margin: 15px auto 0;
  34. border: 1px solid $colorMain2;
  35. -webkit-border-radius: 2px;
  36. -moz-border-radius: 2px;
  37. border-radius: 2px;
  38. }
  39. .cancel {
  40. position: absolute;
  41. bottom: 15px;
  42. span {
  43. display: inline-block;
  44. padding: 0 10px;
  45. }
  46. span:nth-child(2) {
  47. border-left: 1px solid #bbbbbb;
  48. }
  49. span:hover {
  50. color: $colorMain2;
  51. }
  52. }
  53. }
  54. .top_info_progress {
  55. width: 880px;
  56. .progress_item {
  57. .progress {
  58. text-align: center;
  59. margin-top: 20px;
  60. span {
  61. position: relative;
  62. display: inline-block;
  63. width: 24px;
  64. height: 24px;
  65. line-height: 14px;
  66. border: 5px solid #eeeeee;
  67. border-radius: 50%;
  68. color: #9f9f9f;
  69. z-index: 2;
  70. &.active {
  71. border: 5px solid #2abf5c;
  72. color: #2abf5c;
  73. }
  74. }
  75. .progress_line {
  76. width: 140px;
  77. height: 6px;
  78. background-color: #eeeeee;
  79. z-index: 1;
  80. .content {
  81. width: 100%;
  82. height: 100%;
  83. &.active {
  84. background-color: #2abf5c;
  85. }
  86. &.current {
  87. width: 60%;
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }
  94. }
  95. .logistics_info {
  96. height: 185px;
  97. border-top: 1px solid #d9d9e4;
  98. .logistics_info_left {
  99. height: 100%;
  100. width: 318px;
  101. border-right: 1px solid #d9d9e4;
  102. .image {
  103. width: 80px;
  104. height: 80px;
  105. overflow: hidden;
  106. img {
  107. max-width: 100%;
  108. max-height: 100%;
  109. }
  110. }
  111. .info {
  112. margin-left: 18px;
  113. p {
  114. line-height: 20px;
  115. }
  116. }
  117. }
  118. .logistics_info_right {
  119. width: 880px;
  120. ::-webkit-scrollbar {
  121. width: 0 !important;
  122. }
  123. ::-webkit-scrollbar {
  124. width: 0 !important;
  125. height: 0;
  126. }
  127. .right_container {
  128. width: 95%;
  129. height: 150px;
  130. margin: 0 auto;
  131. overflow-y: scroll;
  132. img {
  133. width: 140px;
  134. height: 78px;
  135. display: block;
  136. margin: 0 auto;
  137. }
  138. p {
  139. color: #1c1c1c;
  140. font-size: 16px;
  141. margin-top: 40px;
  142. text-align: center;
  143. }
  144. }
  145. }
  146. }
  147. .order_info,
  148. .shop_info {
  149. border-top: 1px solid #d9d9e4;
  150. padding: 24px 45px 0 45px;
  151. width: 100%;
  152. p {
  153. color: #1c1c1c;
  154. font-size: 16px;
  155. line-height: 35px;
  156. font-weight: 600;
  157. }
  158. .order_info_item {
  159. div {
  160. width: 50%;
  161. line-height: 30px;
  162. color: #333333;
  163. span {
  164. color: #999999;
  165. }
  166. }
  167. }
  168. }
  169. .order_mark {
  170. padding: 24px 45px 0 45px;
  171. width: 100%;
  172. margin-bottom: 20px;
  173. p {
  174. color: #1c1c1c;
  175. font-size: 16px;
  176. line-height: 35px;
  177. font-weight: 600;
  178. }
  179. .order_mark_item {
  180. width: 100%;
  181. line-height: 30px;
  182. color: #999999;
  183. span {
  184. color: #999999;
  185. }
  186. }
  187. }
  188. .shop_info {
  189. width: 100%;
  190. // margin-top: 40px;
  191. border-top: none;
  192. .shop_title {
  193. width: 100%;
  194. height: 36px;
  195. background-color: #efeff3;
  196. line-height: 36px;
  197. .detail {
  198. width: 60%;
  199. text-align: center;
  200. }
  201. .price {
  202. flex: 1;
  203. text-align: center;
  204. }
  205. .num {
  206. width: 15%;
  207. text-align: center;
  208. }
  209. .oprate {
  210. width: 15%;
  211. text-align: center;
  212. }
  213. }
  214. .good_item {
  215. height: 126px;
  216. padding: 30px 0;
  217. // &:not(:first-child){
  218. // border-top: 1px solid #E8E8F1;
  219. // }
  220. border-top: 1px solid #e8e8f1;
  221. .good_info {
  222. width: 60%;
  223. .image {
  224. width: 64px;
  225. height: 64px;
  226. border: 1px solid #efeff3;
  227. img {
  228. max-width: 100%;
  229. max-height: 100%;
  230. }
  231. }
  232. .good_info_con {
  233. margin-left: 10px;
  234. .name,
  235. .spec {
  236. margin-top: 5px;
  237. }
  238. .gift {
  239. display: inline-block;
  240. border: 1px solid #e2231a;
  241. color: #e2231a;
  242. width: 33px;
  243. height: 16px;
  244. border-radius: 3px;
  245. font-size: 12px;
  246. line-height: 16px;
  247. text-align: center;
  248. margin-right: 4px;
  249. }
  250. a {
  251. color: #333;
  252. }
  253. }
  254. }
  255. .price {
  256. flex: 1;
  257. text-align: center;
  258. }
  259. .num {
  260. width: 15%;
  261. text-align: center;
  262. }
  263. .oprate {
  264. width: 15%;
  265. text-align: center;
  266. &:hover {
  267. color: $colorMain2;
  268. }
  269. }
  270. }
  271. }
  272. .settle_info {
  273. border-top: 1px solid #d9d9e4;
  274. text-align: right;
  275. padding: 15px 46px 15px 0;
  276. color: #666;
  277. line-height: 30px;
  278. p {
  279. span {
  280. display: inline-block;
  281. width: 162px;
  282. color: #333;
  283. }
  284. }
  285. .total {
  286. color: #010101;
  287. margin-top: 6px;
  288. span {
  289. color: $colorMain;
  290. font-size: 18px;
  291. }
  292. }
  293. }
  294. }
  295. .cancel_list_con,
  296. .logistics_list_con {
  297. width: 520px;
  298. margin: 0 auto;
  299. height: 300px;
  300. overflow-y: scroll;
  301. .reason_item {
  302. padding: 0 30px;
  303. height: 40px;
  304. width: 100%;
  305. margin-bottom: 15px;
  306. img {
  307. width: 18px;
  308. height: 18px;
  309. }
  310. &.active {
  311. background: #f8f8f8;
  312. }
  313. }
  314. }
  315. .confirm_cancel_btn {
  316. width: 80px;
  317. height: 30px;
  318. background: $colorMain2;
  319. border-radius: 3px;
  320. line-height: 30px;
  321. text-align: center;
  322. color: white;
  323. margin: 0 auto;
  324. margin-top: 20px;
  325. cursor: pointer;
  326. }
  327. .logistics_info {
  328. width: 100%;
  329. height: 86px;
  330. background: #f8f8f8;
  331. // border: 1px solid #DFDFDF;
  332. font-size: 14px;
  333. // padding: 20px;
  334. // p:nth-child(2){
  335. // margin-top: 10px;
  336. // }
  337. // margin-bottom: 20px;
  338. }
  339. // 选择地址
  340. .address_con {
  341. height: 330px;
  342. overflow-y: scroll;
  343. width: 460px;
  344. margin: 0 auto;
  345. .address_item {
  346. &:not(:first-child) {
  347. margin-top: 20px;
  348. }
  349. width: 458px;
  350. // height: 104px;
  351. box-sizing: border-box;
  352. border: 1px solid #dfdfdf;
  353. position: relative;
  354. padding: 20px;
  355. span:not(:first-child) {
  356. margin-top: 12px;
  357. }
  358. .address_text {
  359. display: flex;
  360. div:first-child {
  361. white-space: nowrap;
  362. }
  363. div:last-child {
  364. word-break: break-all;
  365. line-height: 20px;
  366. }
  367. }
  368. .selected {
  369. width: 14px;
  370. height: 14px;
  371. position: absolute;
  372. right: 0;
  373. bottom: 0;
  374. }
  375. }
  376. .select {
  377. border: 1px solid $colorMain2;
  378. }
  379. }
  380. }
  381. .select_reason_width {
  382. width: 560px !important;
  383. ::-webkit-scrollbar {
  384. width: 0 !important;
  385. }
  386. ::-webkit-scrollbar {
  387. width: 0 !important;
  388. height: 0;
  389. }
  390. }
  391. .select_address_width {
  392. width: 500px !important;
  393. ::-webkit-scrollbar {
  394. width: 0 !important;
  395. }
  396. ::-webkit-scrollbar {
  397. width: 0 !important;
  398. height: 0;
  399. }
  400. }
  401. .el-dialog__body {
  402. padding-top: 10px;
  403. padding-bottom: 20px;
  404. }