shop.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. .shop-container{
  2. width: 1600px;
  3. margin: 0 auto;
  4. .shop-container-title{
  5. display: flex;
  6. align-items: center;
  7. margin: 20px 0;
  8. .shop-container-title-state{
  9. font-size:14px;
  10. font-family:PingFangSC-Medium,PingFang SC;
  11. font-weight:500;
  12. color:rgba(255,79,0,1);
  13. }
  14. }
  15. .shop-container-info-box{
  16. display: flex;
  17. justify-content: space-between;
  18. .shop-container-info-item{
  19. width:355px;
  20. min-height:117px;
  21. border:1px solid rgba(238,238,238,1);
  22. padding: 15px;
  23. >h4{
  24. font-size:14px;
  25. font-family:PingFangSC-Medium,PingFang SC;
  26. font-weight:500;
  27. color:rgba(60,60,60,1);
  28. }
  29. .shop-container-info-item-message{
  30. margin-top: 10px;
  31. display: flex;
  32. >span{
  33. display: block;
  34. font-size:12px;
  35. font-family:PingFangSC-Medium,PingFang SC;
  36. font-weight:500;
  37. color:rgba(85,85,85,1);
  38. width: 70px;
  39. min-width: 70px;
  40. }
  41. >p{
  42. font-size:12px;
  43. font-family:PingFangSC-Regular,PingFang SC;
  44. font-weight:400;
  45. color:rgba(102,102,102,1);
  46. }
  47. }
  48. }
  49. }
  50. .shop-container-table-box{
  51. .table-operation2{
  52. margin-top: 50px;
  53. padding: 10px;
  54. background:rgba(246,246,246,1);
  55. border:1px solid rgba(221,221,221,1);
  56. display: flex;
  57. position: relative;
  58. justify-content: flex-end;
  59. .table-operation2-item{
  60. padding: 5px;
  61. text-align: right;
  62. margin-right: 10px;
  63. >span,>a{
  64. font-size:13px;
  65. font-family:PingFangSC-Regular,PingFang SC;
  66. font-weight:400;
  67. color:rgba(60,60,60,1);
  68. }
  69. }
  70. }
  71. .table-operation{
  72. margin-top: 50px;
  73. height:50px;
  74. background:rgba(246,246,246,1);
  75. border:1px solid rgba(221,221,221,1);
  76. display: flex;
  77. align-items: center;
  78. padding-left: 20px;
  79. position: relative;
  80. >span,>a{
  81. font-size:13px;
  82. font-family:PingFangSC-Regular,PingFang SC;
  83. font-weight:400;
  84. color:rgba(60,60,60,1)
  85. }
  86. .right-oper{
  87. position: absolute;
  88. right: 0;
  89. display: flex;
  90. align-items: center;
  91. >span{
  92. font-size:13px;
  93. font-family:PingFangSC-Regular,PingFang SC;
  94. font-weight:400;
  95. color:rgba(102,102,102,1);
  96. }
  97. >b{
  98. font-size:16px;
  99. font-family:PingFangSC-Medium,PingFang SC;
  100. font-weight:500;
  101. }
  102. .buy-btn{
  103. width:120px;
  104. height:52px;
  105. background:rgba(255,79,0,1);
  106. font-size:14px;
  107. font-family:PingFangSC-Medium,PingFang SC;
  108. font-weight:500;
  109. color:rgba(255,255,255,1);
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. cursor: pointer;
  114. }
  115. }
  116. }
  117. >table{
  118. width: 100%;
  119. max-height: 800px;
  120. overflow-y: auto;
  121. thead{
  122. background:rgba(246,246,246,1);
  123. th{
  124. height:40px;
  125. font-size:13px;
  126. font-family:PingFangSC-Medium,PingFang SC;
  127. font-weight:500;
  128. color:rgba(102,102,102,1);
  129. text-align: left;
  130. padding: 0 10px;
  131. &:first-child{
  132. padding-left: 20px;
  133. }
  134. .th-center{
  135. display: flex;
  136. align-items: center;
  137. >input{
  138. margin-right: 10px;
  139. }
  140. }
  141. }
  142. }
  143. tbody{
  144. tr{
  145. border-bottom: 2px solid #DDDDDD;
  146. &.disabled-tr{
  147. background:rgba(246,246,246,1);
  148. .rmb-title{
  149. color: #999999;
  150. }
  151. .disabled-tag{
  152. width:43px;
  153. height:20px;
  154. background:rgba(208,208,208,1);
  155. border-radius:10px;
  156. font-size:12px;
  157. font-family:PingFangSC-Regular,PingFang SC;
  158. font-weight:400;
  159. color:rgba(255,255,255,1);
  160. display: flex;
  161. align-items: center;
  162. justify-content: center;
  163. }
  164. td{
  165. >p{
  166. color: #999999;
  167. }
  168. >span{
  169. color: #999999;
  170. }
  171. }
  172. .td-containe{
  173. >p{
  174. color: #999999;
  175. }
  176. >span{
  177. color: #999999;
  178. }
  179. }
  180. }
  181. &.table-interval{
  182. border: none;
  183. td{
  184. font-size:14px;
  185. font-family:PingFangSC-Medium,PingFang SC;
  186. font-weight:500;
  187. color:rgba(60,60,60,1);
  188. }
  189. }
  190. td{
  191. height: 100px;
  192. //display: flex;
  193. text-align: left;
  194. padding: 0 10px;
  195. .td-containe{
  196. text-align: left;
  197. >p{
  198. font-size:14px;
  199. font-family:PingFangSC-Medium,PingFang SC;
  200. font-weight:500;
  201. color:rgba(60,60,60,1);
  202. padding-bottom: 4px;
  203. }
  204. >span{
  205. font-size:13px;
  206. font-family:PingFangSC-Regular,PingFang SC;
  207. font-weight:400;
  208. color:rgba(102,102,102,1);
  209. display: block;
  210. padding-bottom: 4px;
  211. }
  212. }
  213. >p{
  214. font-size:14px;
  215. font-family:PingFangSC-Medium,PingFang SC;
  216. font-weight:500;
  217. color:rgba(60,60,60,1);
  218. padding-bottom: 4px;
  219. }
  220. >span{
  221. font-size:13px;
  222. font-family:PingFangSC-Regular,PingFang SC;
  223. font-weight:400;
  224. color:rgba(102,102,102,1);
  225. display: block;
  226. padding-bottom: 4px;
  227. &.color-blue{
  228. color: #3F90F7;
  229. }
  230. .rmb-title{
  231. font-size:14px;
  232. font-family:PingFangSC-Medium,PingFang SC;
  233. font-weight:500;
  234. color:rgba(255,79,0,1);
  235. }
  236. .rmb-title-2{
  237. font-size:14px;
  238. font-family:PingFangSC-Medium,PingFang SC;
  239. font-weight:500;
  240. }
  241. }
  242. >img{
  243. width: 60px;
  244. height: 60px;
  245. min-width: 60px;
  246. }
  247. }
  248. }
  249. }
  250. }
  251. }
  252. .shop-container-filter-box{
  253. .shop-container-filter-box-wrapper{
  254. border:1px solid rgba(238,238,238,1);
  255. margin-bottom: 20px;
  256. //&.interval-wrapper{
  257. // margin-top: 20px;
  258. //}
  259. }
  260. .shop-container-filter-item{
  261. display: flex;
  262. align-items: center;
  263. position: relative;
  264. &.dotted-line{
  265. border-bottom: 1px dashed #DDDDDD;
  266. }
  267. .shop-container-filter-item-brand{
  268. font-size:12px;
  269. font-family:PingFangSC-Regular,PingFang SC;
  270. font-weight:400;
  271. color:rgba(102,102,102,1);
  272. padding: 0 8px;
  273. cursor: pointer;
  274. &.checked{
  275. color:rgba(63,144,247,1);
  276. }
  277. }
  278. .shop-container-filter-item-title{
  279. width:70px;
  280. background:rgba(246,246,246,1);
  281. padding: 14px 20px;
  282. font-size:13px;
  283. font-family:PingFangSC-Medium,PingFang SC;
  284. font-weight:500;
  285. color:rgba(102,102,102,1);
  286. position: absolute;
  287. top: 0;
  288. bottom: 0;
  289. left: 0;
  290. }
  291. .shop-container-filter-item-container{
  292. padding: 10px;
  293. padding-left: 120px;
  294. display: flex;
  295. flex-wrap: wrap;
  296. align-items: center;
  297. min-height: 20px;
  298. .shop-container-filter-item-container-top-filter{
  299. width: 88px;
  300. height: 40px;
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. box-sizing: border-box;
  305. border-right:1px solid rgba(238,238,238,1);
  306. margin: -10px 0;
  307. font-size:13px;
  308. font-family:PingFangSC-Regular,PingFang SC;
  309. font-weight:400;
  310. color:rgba(60,60,60,1);
  311. cursor: pointer;
  312. &:first-child{
  313. margin-left: -10px;
  314. }
  315. &.filtered{
  316. color: #3f90f7;
  317. }
  318. }
  319. .shop-container-filter-item-container-top-filter-2{
  320. font-size:13px;
  321. font-family:PingFangSC-Regular,PingFang SC;
  322. font-weight:400;
  323. color:rgba(60,60,60,1);
  324. padding-left: 10px;
  325. display: flex;
  326. align-items: center;
  327. >input{
  328. margin-right: 5px;
  329. }
  330. }
  331. .shop-container-filter-item-btn{
  332. height:26px;
  333. background:rgba(255,255,255,1);
  334. border-radius:2px;
  335. border:1px solid rgba(241,157,1,1);
  336. padding: 0 10px;
  337. display: flex;
  338. align-items: center;
  339. margin-left: 20px;
  340. cursor: pointer;
  341. font-size:12px;
  342. font-family:PingFangSC-Regular,PingFang SC;
  343. font-weight:400;
  344. color:rgba(241,157,1,1);
  345. &.btn-2{
  346. border:1px solid #FF4F00;
  347. color:#FF4F00;
  348. }
  349. &.btn-3{
  350. border:1px solid #3F90F7;
  351. color:#3F90F7;
  352. }
  353. }
  354. .shop-container-filter-item-car-type{
  355. padding-left: 10px;
  356. padding-right: 30px;
  357. height:26px;
  358. border-radius:2px;
  359. border:1px solid rgba(221,221,221,1);
  360. line-height: 26px;
  361. font-size:12px;
  362. font-family:PingFangSC-Regular,PingFang SC;
  363. font-weight:400;
  364. color:rgba(60,60,60,1);
  365. position: relative;
  366. &:before{
  367. position: absolute;
  368. display: block;
  369. content: '×';
  370. font-size: 20px;
  371. right: 10px;
  372. cursor: pointer;
  373. }
  374. }
  375. }
  376. }
  377. }
  378. .shop-container-search-box{
  379. padding-top: 40px;
  380. padding-bottom: 27px;
  381. display: flex;
  382. align-items: center;
  383. .shop-container-shopping-cart{
  384. margin-left: 20px;
  385. width:120px;
  386. height:44px;
  387. background:rgba(246,246,246,1);
  388. border-radius:2px;
  389. border:1px solid rgba(221,221,221,1);
  390. font-size:14px;
  391. font-family:PingFangSC-Regular,PingFang SC;
  392. font-weight:400;
  393. color:rgba(255,79,0,1);
  394. text-align: center;
  395. line-height: 44px;
  396. cursor: pointer;
  397. display: flex;
  398. align-items: center;
  399. justify-content: center;
  400. }
  401. .shop-container-search{
  402. margin: 0 auto;
  403. display: flex;
  404. .shop-container-search-input{
  405. border-radius:2px;
  406. border:2px solid rgba(38,150,92,1);
  407. width:772px;
  408. height:40px;
  409. padding-left: 10px;
  410. font-size:14px;
  411. }
  412. .shop-container-search-btn{
  413. width:85px;
  414. height:44px;
  415. background:rgba(38,150,92,1);
  416. border-radius:0px 2px 2px 0px;
  417. font-size:14px;
  418. font-family:PingFangSC-Regular,PingFang SC;
  419. font-weight:400;
  420. color:rgba(255,255,255,1);
  421. text-align: center;
  422. margin-left: -2px;
  423. line-height: 44px;
  424. cursor: pointer;
  425. }
  426. }
  427. }
  428. }
  429. .icon-shopcar{
  430. background: url("../image/shopcar.png") no-repeat;
  431. width:20px;
  432. height:16px;
  433. background-size: contain;
  434. display: inline-block;
  435. cursor: pointer;
  436. }