pintuan.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. .tabs {
  2. -moz-box-sizing: border-box;
  3. box-sizing: border-box;
  4. position: relative;
  5. overflow: hidden;
  6. zoom: 1;
  7. color: #666;
  8. }
  9. .tabs-bar {
  10. border-bottom: 1px solid #d9d9d9;
  11. }
  12. .red{
  13. color:#ff5777;
  14. padding-right:8rpx;
  15. }
  16. .no_order{
  17. margin-top:30%;
  18. text-align:center;
  19. }
  20. .shop-title{
  21. overflow:hidden;
  22. position:relative;
  23. }
  24. .shop-title image{
  25. width:40rpx;
  26. height:40rpx;
  27. border-radius: 100%;
  28. display: inline-block;
  29. vertical-align: top;
  30. margin-top:20rpx;
  31. margin-right:10rpx;
  32. }
  33. .tabs-bar, .tabs-link-bar {
  34. -moz-box-sizing: border-box;
  35. box-sizing: border-box;
  36. }
  37. .tabs-bar {
  38. outline: none;
  39. width: 100%;
  40. background-color: #fff;
  41. }
  42. .tabs-nav--container {
  43. overflow: hidden;
  44. font-size: .75rem;
  45. line-height: 1.5rem;
  46. -moz-box-sizing: border-box;
  47. box-sizing: border-box;
  48. position: relative;
  49. white-space: nowrap;
  50. margin-bottom: -1px;
  51. zoom: 1;
  52. }
  53. .tabs-nav--container:after, .tabs-nav--container:before {
  54. content: " ";
  55. display: table;
  56. }
  57. .tabs-nav--container:after {
  58. clear: both;
  59. visibility: hidden;
  60. font-size: 0;
  61. height: 0;
  62. }
  63. .tabs.tabs-card>.tabs-bar .tabs-nav--wrap {
  64. margin-bottom: 0;
  65. }
  66. .tabs-nav--wrap {
  67. overflow: hidden;
  68. margin-bottom: -.01rem;
  69. }
  70. .tabs-nav {
  71. display: -webkit-box;
  72. display: -webkit-flex;
  73. display: -moz-box;
  74. display: -ms-flexbox;
  75. display: flex;
  76. -moz-box-sizing: border-box;
  77. box-sizing: border-box;
  78. padding-left: 0;
  79. -webkit-transition: -webkit-transform .5s cubic-bezier(.645,.045,.355,1);
  80. transition: -webkit-transform .5s cubic-bezier(.645,.045,.355,1);
  81. transition: transform .5s cubic-bezier(.645,.045,.355,1);
  82. transition: transform .5s cubic-bezier(.645,.045,.355,1),-webkit-transform .5s cubic-bezier(.645,.045,.355,1);
  83. position: relative;
  84. margin: 0;
  85. list-style: none;
  86. }
  87. .tabs-nav:after, .tabs-nav:before {
  88. display: table;
  89. content: " ";
  90. }
  91. .tabs-nav:after {
  92. clear: both;
  93. }
  94. .tabs-nav .tabs-tab {
  95. -webkit-box-flex: 1;
  96. -webkit-flex: 1;
  97. -moz-box-flex: 1;
  98. -ms-flex: 1;
  99. flex: 1;
  100. display: block;
  101. height: 2.2rem;
  102. line-height: 2.2rem;
  103. margin: 0 5px;
  104. -moz-box-sizing: border-box;
  105. box-sizing: border-box;
  106. position: relative;
  107. -webkit-transition: color .3s cubic-bezier(.645,.045,.355,1);
  108. transition: color .3s cubic-bezier(.645,.045,.355,1);
  109. cursor: pointer;
  110. text-decoration: none;
  111. text-align: center;
  112. font-size: 28rpx;
  113. color: #333;
  114. }
  115. .tabs-nav .tabs-tab-active {
  116. color: #f57;
  117. }
  118. .tabs.tabs-card>.tabs-bar .tabs-tab {
  119. margin: 0;
  120. border: 1px solid #d9d9d9;
  121. border-bottom: 0;
  122. border-radius: .06rem .06rem 0 0;
  123. background: #f9f9f9;
  124. margin-right: .02rem;
  125. }
  126. .tabs.tabs-card>.tabs-bar .tabs-tab-active {
  127. background: #fff;
  128. color: #f13e3a;
  129. }
  130. .tabs.tabs-card>.tabs-bar .tabs-tab-active {
  131. color: #ff5777;
  132. }
  133. .tabs.tabs-card>.tabs-bar .tabs-tab.list-line {
  134. border: 0;
  135. background: #fff;
  136. }
  137. .tabs:not(.tabs-vertical) .tabs-content-animated {
  138. display: -webkit-box;
  139. display: -webkit-flex;
  140. display: -moz-box;
  141. display: -ms-flexbox;
  142. display: flex;
  143. -webkit-box-orient: horizontal;
  144. -webkit-box-direction: normal;
  145. -webkit-flex-direction: row;
  146. -moz-box-orient: horizontal;
  147. -moz-box-direction: normal;
  148. -ms-flex-direction: row;
  149. flex-direction: row;
  150. will-change: transform;
  151. -webkit-transition: -webkit-transform .3s cubic-bezier(.645,.045,.355,1);
  152. transition: -webkit-transform .3s cubic-bezier(.645,.045,.355,1);
  153. transition: transform .3s cubic-bezier(.645,.045,.355,1);
  154. transition: transform .3s cubic-bezier(.645,.045,.355,1),-webkit-transform .3s cubic-bezier(.645,.045,.355,1);
  155. }
  156. .tabs:not(.tabs-vertical) .tabs-tabpane {
  157. -webkit-flex-shrink: 0;
  158. -ms-flex-negative: 0;
  159. flex-shrink: 0;
  160. width: 100%;
  161. }
  162. .meili-all-vue-base-goodswall .module-list-wrap {
  163. display: block!important;
  164. }
  165. .meili-all-vue-base-goodswall .module-list-wrap[data-v-498b2138] {
  166. display: -webkit-box;
  167. display: -webkit-flex;
  168. display: -moz-box;
  169. display: -ms-flexbox;
  170. display: flex;
  171. overflow: hidden;
  172. -webkit-box-orient: horizontal;
  173. -webkit-box-direction: normal;
  174. -webkit-flex-flow: row wrap;
  175. -moz-box-orient: horizontal;
  176. -moz-box-direction: normal;
  177. -ms-flex-flow: row wrap;
  178. flex-flow: row wrap;
  179. }
  180. .meili-all-vue-base-goodswall .show {
  181. height: auto!important;
  182. }
  183. .meili-all-vue-base-goodswall .module-item-wrap {
  184. width: 100%;
  185. margin-bottom: 10rpx;
  186. }
  187. .order {
  188. width: 100%;
  189. background: #fff;
  190. }
  191. .order-panel {
  192. padding: 0 10px;
  193. }
  194. .shop-product, .shop-title {
  195. padding: 0 10px;
  196. margin: 0 -10px;
  197. }
  198. .shop-title {
  199. border: 1px solid #e5e5e5;
  200. border-right: none;
  201. border-left: none;
  202. font-size: .75rem;
  203. height: 2.4rem;
  204. line-height: 2.4rem;
  205. }
  206. .shop:first-child .shop-title {
  207. border-top: none;
  208. }
  209. .shop-title--name{
  210. color: #333;
  211. display: inline-block;
  212. max-width: 10rem;
  213. text-overflow: ellipsis;
  214. overflow: hidden;
  215. white-space: nowrap;
  216. }
  217. .shop-title--status {
  218. float: right;
  219. margin-left: .2rem;
  220. color: #ff5777;
  221. white-space: nowrap;
  222. }
  223. .shop-product, .shop-title {
  224. padding: 0 10px;
  225. margin: 0 -10px;
  226. }
  227. .product {
  228. border-bottom: 1px solid #ddd;
  229. min-height: 1.8rem;
  230. }
  231. .product-list{
  232. padding: 10px 0;
  233. }
  234. .product.is-noborder{
  235. border: none;
  236. }
  237. .product-wrap{
  238. display: -webkit-box;
  239. display: -webkit-flex;
  240. display: -moz-box;
  241. display: -ms-flexbox;
  242. display: flex;
  243. }
  244. .product-pic{
  245. width: 4rem;
  246. height: 4rem;
  247. border: 1px solid #e2e2e2;
  248. display: inline-block;
  249. }
  250. .product-pic image {
  251. width: 4rem;
  252. height: 4rem;
  253. visibility: inherit;
  254. display: inherit;
  255. }
  256. .product-des{
  257. -webkit-box-flex: 1;
  258. -webkit-flex: 1;
  259. -moz-box-flex: 1;
  260. -ms-flex: 1;
  261. flex: 1;
  262. margin: 0 10px;
  263. position: relative;
  264. }
  265. .product-des--name {
  266. color: #333;
  267. height: 2.2rem;
  268. font-size: .75rem;
  269. text-overflow: ellipsis;
  270. overflow: hidden;
  271. -webkit-line-clamp: 2;
  272. -webkit-box-orient: vertical;
  273. display: -webkit-box;
  274. margin-bottom: 5px;
  275. font-weight: 400;
  276. }
  277. .product-des--sku{
  278. margin-bottom: 5px;
  279. font-size: .65rem;
  280. color: #999;
  281. }
  282. .meili-all-order-list-order-shop .product-des--sku view {
  283. display: inline-block;
  284. margin-right: 5px;
  285. }
  286. .product-price {
  287. text-align: right;
  288. line-height: 1rem;
  289. font-size: .75rem;
  290. }
  291. .product-price--origin {
  292. text-decoration: line-through;
  293. color: #999;
  294. }
  295. .product-price--number {
  296. color: #999;
  297. }
  298. .order-panel--operate {
  299. border-top: 1px solid #e5e5e5;
  300. vertical-align: middle;
  301. text-align: right;
  302. }
  303. .operate-button{
  304. overflow: hidden;
  305. }
  306. .meili-all-vue-base-button {
  307. display: inline-block;
  308. -moz-box-sizing: border-box;
  309. box-sizing: border-box;
  310. font-size: .75rem;
  311. padding: 5px 10px;
  312. border-radius: 5px;
  313. vertical-align: middle;
  314. margin: 10px 5px;
  315. cursor: pointer;
  316. -webkit-user-select: none;
  317. -moz-user-select: none;
  318. -ms-user-select: none;
  319. user-select: none;
  320. min-width: 5rem;
  321. text-align: center;
  322. }
  323. .primary{
  324. color: #fff;
  325. background: #ff5777;
  326. }
  327. .operate-button .meili-all-vue-base-button {
  328. width: 6rem;
  329. height: 1.8rem;
  330. line-height: 1.8rem;
  331. font-size: .75rem;
  332. padding: 0;
  333. margin: 10px;
  334. border-radius: 5px;
  335. }
  336. .operate-button--white.primary{
  337. color: #666;
  338. border: 1px solid #999;
  339. background: #fdfdfd;
  340. }
  341. .buy{
  342. margin-bottom:116rpx;
  343. }
  344. .ft_bt{
  345. height:20rpx;
  346. }
  347. .order-panel--price {
  348. margin: 0 -10px;
  349. padding: 10px;
  350. border-top: 1px solid #e5e5e5;
  351. text-align: right;
  352. color: #999;
  353. }
  354. .pay {
  355. color: #333;
  356. }
  357. .pay-delivery{
  358. margin-right: -5px;
  359. font-size: .75rem;
  360. }
  361. .pay-price{
  362. line-height: 1rem;
  363. font-size: .75rem;
  364. }
  365. .pay-price--content{
  366. font-size: .75rem;
  367. color: #ff5777;
  368. }
  369. .weui-loading {
  370. margin: 0 5px;
  371. width: 20px;
  372. height: 20px;
  373. display: inline-block;
  374. vertical-align: middle;
  375. -webkit-animation: weuiLoading 1s steps(12, end) infinite;
  376. animation: weuiLoading 1s steps(12, end) infinite;
  377. background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
  378. background-size: 100%;
  379. }
  380. .weui-loadmore {
  381. width: 65%;
  382. margin: 1.5em auto;
  383. line-height: 1.6em;
  384. font-size: 14px;
  385. text-align: center;
  386. }
  387. .weui-loadmore__tips {
  388. display: inline-block;
  389. vertical-align: middle;
  390. }
  391. /* lottery begin */
  392. .orders-lottery-status {
  393. z-index: 99;
  394. position: absolute;
  395. width: 67px;
  396. height: 67px;
  397. right: 12px;
  398. top: 7px;
  399. }
  400. .order-lottery-lucky, .order-lottery-not, .order-lottery-wait {
  401. background-image: url(https://mall.shiziyu888.com/Common/image/sprites_stamps-02e13e88f3.png);
  402. background-repeat: no-repeat;
  403. background-size: 299.83425px 299.83425px;
  404. background-position: -199.8895px -99.94475px;
  405. }
  406. .order-lottery-lucky {
  407. background-position: -99.94475px 0;
  408. }
  409. .order-lottery-not{background-position:-199.8895px 0}
  410. .order-lottery-wait{
  411. background-position: -199.8895px -99.94475px;
  412. }
  413. /* lottery end */