index.wxss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. .tabs {
  2. box-sizing: border-box;
  3. position: relative;
  4. overflow: hidden;
  5. zoom: 1;
  6. color: #666;
  7. }
  8. .tabs-bar, .tabs-link-bar {
  9. box-sizing: border-box;
  10. }
  11. .tabs-bar {
  12. outline: none;
  13. width: 100%;
  14. background-color: #fff;
  15. }
  16. .tabs-nav--container {
  17. overflow: hidden;
  18. font-size: 0.75rem;
  19. line-height: 1.5rem;
  20. box-sizing: border-box;
  21. position: relative;
  22. white-space: nowrap;
  23. margin-bottom: -1px;
  24. zoom: 1;
  25. }
  26. .tabs-nav--container:after, .tabs-nav--container:before {
  27. content: " ";
  28. display: table;
  29. }
  30. .tabs-nav--container:after {
  31. clear: both;
  32. visibility: hidden;
  33. font-size: 0;
  34. height: 0;
  35. }
  36. .tabs.tabs-card>.tabs-bar .tabs-nav--wrap {
  37. margin-bottom: 0;
  38. }
  39. .tabs-nav--wrap {
  40. overflow: hidden;
  41. margin-bottom: -.01rem;
  42. }
  43. .tabs-nav {
  44. display: -webkit-box;
  45. display: -webkit-flex;
  46. display: -moz-box;
  47. display: -ms-flexbox;
  48. display: flex;
  49. -moz-box-sizing: border-box;
  50. box-sizing: border-box;
  51. padding-left: 0;
  52. -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  53. transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  54. transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  55. transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
  56. -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  57. position: relative;
  58. margin: 0;
  59. list-style: none;
  60. justify-content: space-around;
  61. }
  62. .tabs-nav:after, .tabs-nav:before {
  63. display: table;
  64. content: " ";
  65. }
  66. .tabs-nav:after {
  67. clear: both;
  68. }
  69. .tabs-nav .tabs-tab {
  70. display: block;
  71. height: 2.2rem;
  72. line-height: 2.2rem;
  73. margin: 0 5px;
  74. -moz-box-sizing: border-box;
  75. box-sizing: border-box;
  76. position: relative;
  77. -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  78. transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  79. cursor: pointer;
  80. text-decoration: none;
  81. text-align: center;
  82. font-size: 28rpx;
  83. color: #333;
  84. }
  85. .tabs-nav .tabs-tab-active {
  86. color: #f57;
  87. }
  88. .tabs.tabs-card>.tabs-bar .tabs-tab {
  89. margin: 0;
  90. border: 1px solid #d9d9d9;
  91. border-bottom: 0;
  92. border-radius: 0.06rem 0.06rem 0 0;
  93. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  94. background: #f9f9f9;
  95. margin-right: 0.02rem;
  96. }
  97. .tabs.tabs-card>.tabs-bar .tabs-tab-active {
  98. background: #fff;
  99. color: #f13e3a;
  100. }
  101. .tabs.tabs-card>.tabs-bar .tabs-tab-active {
  102. color: #ff5777;
  103. }
  104. .tabs.tabs-card>.tabs-bar .tabs-tab.list-line {
  105. border: 0;
  106. background: #fff;
  107. }
  108. .tabs:not(.tabs-vertical) .tabs-content-animated {
  109. display: -webkit-box;
  110. display: -webkit-flex;
  111. display: -moz-box;
  112. display: -ms-flexbox;
  113. display: flex;
  114. -webkit-box-orient: horizontal;
  115. -webkit-box-direction: normal;
  116. -webkit-flex-direction: row;
  117. -moz-box-orient: horizontal;
  118. -moz-box-direction: normal;
  119. -ms-flex-direction: row;
  120. flex-direction: row;
  121. will-change: transform;
  122. transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  123. transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
  124. -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  125. }
  126. .tabs:not(.tabs-vertical) .tabs-tabpane {
  127. -webkit-flex-shrink: 0;
  128. -ms-flex-negative: 0;
  129. flex-shrink: 0;
  130. width: 100%;
  131. }
  132. .meili-all-vue-base-goodswall .module-list-wrap {
  133. display: block !important;
  134. }
  135. .meili-all-vue-base-goodswall .module-list-wrap[data-v-498b2138] {
  136. display: -webkit-box;
  137. display: -webkit-flex;
  138. display: -moz-box;
  139. display: -ms-flexbox;
  140. display: flex;
  141. overflow: hidden;
  142. -webkit-box-orient: horizontal;
  143. -webkit-box-direction: normal;
  144. -webkit-flex-flow: row wrap;
  145. -moz-box-orient: horizontal;
  146. -moz-box-direction: normal;
  147. -ms-flex-flow: row wrap;
  148. flex-flow: row wrap;
  149. }
  150. .meili-all-vue-base-goodswall .show {
  151. height: auto !important;
  152. }
  153. .meili-all-vue-base-goodswall .module-item-wrap {
  154. width: 100%;
  155. margin-bottom: 10rpx;
  156. }
  157. .order {
  158. width: 100%;
  159. background: #fff;
  160. }
  161. .order-panel {
  162. padding: 0 10px;
  163. }
  164. .shop-product, .shop-title {
  165. padding: 0 10px;
  166. margin: 0 -10px;
  167. }
  168. .shop-title image {
  169. width: 40rpx;
  170. height: 40rpx;
  171. border-radius: 100%;
  172. display: inline-block;
  173. vertical-align: top;
  174. margin-top: 20rpx;
  175. margin-right: 10rpx;
  176. }
  177. .no_order {
  178. margin-top: 30%;
  179. text-align: center;
  180. }
  181. .shop-title {
  182. border: 1px solid #e5e5e5;
  183. border-right: none;
  184. border-left: none;
  185. font-size: 28rpx;
  186. height: 90rpx;
  187. line-height: 90rpx;
  188. }
  189. .shop:first-child .shop-title {
  190. border-top: none;
  191. }
  192. .shop-title--name {
  193. color: #333;
  194. display: inline-block;
  195. max-width: 10rem;
  196. text-overflow: ellipsis;
  197. overflow: hidden;
  198. white-space: nowrap;
  199. }
  200. .shop-title--status {
  201. float: right;
  202. margin-left: 0.2rem;
  203. color: #ff5777;
  204. white-space: nowrap;
  205. }
  206. .shop-product, .shop-title {
  207. padding: 0 10px;
  208. margin: 0 -10px;
  209. }
  210. .product {
  211. border-bottom: 1px solid #ddd;
  212. min-height: 1.8rem;
  213. }
  214. .product-list {
  215. padding: 10px 0;
  216. }
  217. .product.is-noborder {
  218. border: none;
  219. }
  220. .product-wrap {
  221. display: -webkit-box;
  222. display: -webkit-flex;
  223. display: -moz-box;
  224. display: -ms-flexbox;
  225. display: flex;
  226. }
  227. .product-pic {
  228. width: 150rpx;
  229. height: 150rpx;
  230. display: inline-block;
  231. }
  232. .product-pic image {
  233. width: 150rpx;
  234. height: 150rpx;
  235. visibility: inherit;
  236. display: inherit;
  237. }
  238. .product-des {
  239. -webkit-box-flex: 1;
  240. -webkit-flex: 1;
  241. -moz-box-flex: 1;
  242. -ms-flex: 1;
  243. flex: 1;
  244. margin: 0 10px;
  245. position: relative;
  246. }
  247. .red {
  248. color: #ff5777;
  249. padding-right: 5rpx;
  250. }
  251. .product-des--name {
  252. color: #333;
  253. font-size: 28rpx;
  254. height: 46px;
  255. text-overflow: ellipsis;
  256. overflow: hidden;
  257. display: block;
  258. margin-bottom: 14px;
  259. font-weight: 400;
  260. }
  261. .product-des--sku {
  262. margin-bottom: 5px;
  263. font-size: 24rpx;
  264. color: #999;
  265. }
  266. .meili-all-order-list-order-shop .product-des--sku view {
  267. display: inline-block;
  268. margin-right: 5px;
  269. }
  270. .product-price {
  271. text-align: right;
  272. line-height: 1rem;
  273. font-size: 24rpx;
  274. }
  275. .product-price--origin {
  276. text-decoration: line-through;
  277. color: #999;
  278. }
  279. .product-price--number {
  280. color: #999;
  281. }
  282. .order-panel--operate {
  283. border-top: 1px solid #e5e5e5;
  284. margin: 0 -10px;
  285. vertical-align: middle;
  286. text-align: right;
  287. }
  288. .operate-button {
  289. overflow: hidden;
  290. }
  291. .meili-all-vue-base-button {
  292. display: inline-block;
  293. -moz-box-sizing: border-box;
  294. box-sizing: border-box;
  295. font-size: 0.75rem;
  296. padding: 5px 10px;
  297. border-radius: 5px;
  298. vertical-align: middle;
  299. margin: 10px 5px;
  300. cursor: pointer;
  301. -webkit-user-select: none;
  302. -moz-user-select: none;
  303. -ms-user-select: none;
  304. user-select: none;
  305. min-width: 5rem;
  306. text-align: center;
  307. }
  308. .primary {
  309. color: #fff;
  310. background: #ff5777;
  311. }
  312. .operate-button .meili-all-vue-base-button {
  313. width: 6rem;
  314. height: 1.8rem;
  315. line-height: 1.8rem;
  316. font-size: 0.75rem;
  317. padding: 0;
  318. margin: 10px;
  319. border-radius: 5px;
  320. }
  321. .operate-button--white.primary {
  322. color: #666;
  323. border: 1px solid #999;
  324. background: #fdfdfd;
  325. }
  326. .buy {
  327. margin-bottom: 116rpxpx;
  328. }
  329. .order-panel--price {
  330. margin: 0 -10px;
  331. padding: 10px;
  332. border-top: 1px solid #e5e5e5;
  333. text-align: right;
  334. color: #999;
  335. }
  336. .pay {
  337. color: #333;
  338. }
  339. .pay-delivery {
  340. margin-right: -5px;
  341. font-size: 0.75rem;
  342. }
  343. .pay-price {
  344. line-height: 1rem;
  345. font-size: 0.75rem;
  346. }
  347. .pay-price--content {
  348. font-size: 0.75rem;
  349. color: #ff5777;
  350. }
  351. .weui-loading {
  352. margin: 0 5px;
  353. width: 20px;
  354. height: 20px;
  355. display: inline-block;
  356. vertical-align: middle;
  357. -webkit-animation: weuiLoading 1s steps(12, end) infinite;
  358. animation: weuiLoading 1s steps(12, end) infinite;
  359. background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
  360. background-size: 100%;
  361. }
  362. .weui-loadmore {
  363. width: 65%;
  364. margin: 1.5em auto;
  365. line-height: 1.6em;
  366. font-size: 14px;
  367. text-align: center;
  368. }
  369. .weui-loadmore__tips {
  370. display: inline-block;
  371. vertical-align: middle;
  372. }
  373. /* lottery begin */
  374. .orders-lottery-status {
  375. z-index: 99;
  376. position: absolute;
  377. width: 67px;
  378. height: 67px;
  379. right: 12px;
  380. top: 7px;
  381. }
  382. .order-lottery-lucky, .order-lottery-not, .order-lottery-wait {
  383. background-image: url(https://mall.shiziyu888.com/Common/image/sprites_stamps-02e13e88f3.png);
  384. background-repeat: no-repeat;
  385. background-size: 299.83425px 299.83425px;
  386. background-position: -199.8895px -99.94475px;
  387. }
  388. .order-lottery-lucky {
  389. background-position: -99.94475px 0;
  390. }
  391. .order-lottery-not {
  392. background-position: -199.8895px 0;
  393. }
  394. .order-lottery-wait {
  395. background-position: -199.8895px -99.94475px;
  396. }
  397. /* lottery end */
  398. /* 20181206 */
  399. .nav-bar {
  400. width: 100%;
  401. position: fixed;
  402. left: 0;
  403. top: 0;
  404. z-index: 10;
  405. }
  406. .nav-bar .nav-bar-inner {
  407. display: flex;
  408. justify-content: space-between;
  409. padding: 0 40rpx;
  410. background-color: white;
  411. }
  412. .nav-bar .nav-bar-item {
  413. position: relative;
  414. word-break: keep-all;
  415. font-size: 28rpx;
  416. font-weight: 500;
  417. color: #666;
  418. padding: 20rpx 0;
  419. }
  420. .nav-bar .current.nav-bar-item {
  421. border-bottom: 3px solid #ff4936;
  422. }
  423. .nav-bar-content {
  424. margin-top:49px;
  425. padding-bottom: 30rpx;
  426. }
  427. .mar-right-10 {
  428. margin-right: 20rpx;
  429. }
  430. .card {
  431. margin-bottom: 20rpx;
  432. margin-left: 20rpx;
  433. color: #444;
  434. }
  435. .card .card-header {
  436. display: flex;
  437. align-items: center;
  438. justify-content: space-between;
  439. padding: 30rpx;
  440. font-size: 24rpx;
  441. }
  442. .card .card-content {
  443. padding: 30rpx;
  444. border-top: 0.1rpx solid #efefef;
  445. border-bottom: 0.1rpx solid #efefef;
  446. }
  447. .card .card-content .content-wrap {
  448. display: flex;
  449. align-items: center;
  450. justify-content: space-between;
  451. }
  452. .card .card-content .show-img {
  453. float: left;
  454. width: 120rpx !important;
  455. height: 120rpx !important;
  456. }
  457. .clearfix:after {
  458. visibility: hidden;
  459. display: block;
  460. font-size: 0;
  461. content: " ";
  462. clear: both;
  463. height: 0;
  464. }
  465. .card .card-content .dot {
  466. display: flex;
  467. align-items: center;
  468. justify-content: space-between;
  469. }
  470. .card .card-content .dot .dot-item {
  471. width: 12rpx;
  472. height: 12rpx;
  473. border-radius: 50%;
  474. background: #d8d8d8;
  475. }
  476. .card .card-content .dot .dot-middle {
  477. margin: 0 10rpx;
  478. }
  479. .card .card-footer {
  480. display: flex;
  481. align-items: center;
  482. justify-content: space-between;
  483. padding: 30rpx;
  484. font-size: 24rpx;
  485. }
  486. .card .card-footer .money {
  487. font-size: 32rpx;
  488. font-weight: bold;
  489. display: inline-block;
  490. }
  491. .card .card-footer .accual-pay {
  492. display: inline-block;
  493. }
  494. .empty-wrap {
  495. padding-top: 300rpx;
  496. display: flex;
  497. justify-content: center;
  498. align-items: center;
  499. flex-direction: column;
  500. }
  501. .empty-wrap .empty-img {
  502. width: 218rpx;
  503. height: 218rpx;
  504. }
  505. .empty-wrap .empty-txt {
  506. font-size: 30rpx;
  507. font-weight: 400;
  508. color: #777;
  509. margin-top: 32rpx;
  510. }
  511. .padding-15 {
  512. margin-left: 16rpx;
  513. }
  514. .button-group {
  515. display: flex;
  516. justify-content: space-between;
  517. }
  518. .my-button {
  519. position: relative;
  520. color: #666;
  521. width: 136rpx;
  522. height: 52rpx;
  523. line-height: 52rpx;
  524. font-size: 24rpx;
  525. text-align: center;
  526. }
  527. .my-button::after {
  528. box-sizing: border-box;
  529. content: '';
  530. position: absolute;
  531. top: 0;
  532. left: 0;
  533. width: 200%;
  534. height: 200%;
  535. transform: scale(0.5);
  536. transform-origin: 0 0;
  537. border: 2rpx solid #b6b6b6;
  538. border-radius: 52rpx;
  539. pointer-events: none;
  540. }
  541. .get-goods {
  542. display: flex;
  543. justify-content: space-between;
  544. align-items: center;
  545. }
  546. .get-goods .sure-get {
  547. color: #aaa;
  548. }
  549. .my-button-pay {
  550. position: relative;
  551. width: 136rpx;
  552. height: 52rpx;
  553. line-height: 52rpx;
  554. font-size: 24rpx;
  555. text-align: center;
  556. color: white;
  557. border: none;
  558. border-radius: 26rpx;
  559. background: linear-gradient(90deg, #ff5041 0%, #ff877d 100%);
  560. }
  561. .right-arrow {
  562. width: 12rpx;
  563. height: 22rpx;
  564. margin-left: 10rpx;
  565. }
  566. /* 20181206 */
  567. .bold {
  568. font-weight: 500;
  569. }
  570. .red {
  571. color: #ff5344;
  572. font-size: 24rpx;
  573. }
  574. .gray {
  575. color: #aaa;
  576. }
  577. .name {
  578. width: 510rpx;
  579. font-size: 26rpx;
  580. color: #444;
  581. text-overflow: ellipsis;
  582. white-space: nowrap;
  583. overflow: hidden;
  584. }
  585. .pintag {
  586. background: linear-gradient(to right, #ff5041, #ff695c);
  587. color: #fff;
  588. font-size: 20rpx;
  589. padding: 1rpx 8rpx;
  590. border-radius: 6rpx;
  591. font-weight: bold;
  592. margin-right: 10rpx;
  593. }
  594. .mount {
  595. font-size: 22rpx;
  596. color: #aaa;
  597. margin-top: 10rpx;
  598. }
  599. .bottom-info {
  600. justify-content: space-between;
  601. font-size: 28rpx;
  602. color: #444;
  603. margin-top: 18rpx;
  604. }
  605. .bottom-info text {
  606. text-decoration: line-through;
  607. color: #999;
  608. font-size: 22rpx;
  609. }