index-pc.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299
  1. /**
  2. * PC端
  3. */
  4. #container{min-height: 500px;}
  5. li{list-style:none;}
  6. .baseTopNav{ display: none; }
  7. .section_container .inner{
  8. width: 1200px;
  9. height: auto;
  10. margin: 0 auto;
  11. position: relative;
  12. }
  13. .section-content{
  14. width: 100%;
  15. height: 540px;
  16. background-color: #FFFFFF;
  17. border-radius: 8px;
  18. margin-top: 20px;
  19. box-sizing: border-box;
  20. padding: 10px;
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. position: relative;
  25. z-index: 99;
  26. }
  27. .section-content-image{
  28. width: 140px;
  29. height: 540px;
  30. border-radius: 25px 0 0 25px;
  31. background-color: #ffc600;
  32. position: absolute;
  33. left: -130px;
  34. top: 0;
  35. z-index: 1;
  36. overflow: hidden;
  37. transition: all 0.2s;
  38. }
  39. .section-image-view{
  40. width: 1080px;
  41. height: 540px;
  42. border-radius: 25px 8px 8px 25px;
  43. overflow: hidden;
  44. transition: all 0.2s;
  45. display: block;
  46. }
  47. .section-image-view img{
  48. width: 1080px;
  49. height: 540px;
  50. display: block;
  51. transition: all 0.2s;
  52. }
  53. .section-content-image:hover{
  54. overflow: visible;
  55. z-index: 999;
  56. }
  57. .section-content-naves{
  58. width: 188px;
  59. height: 100%;
  60. background-color: #f7f8fc;
  61. color: red;
  62. border-radius: 8px;
  63. overflow: hidden;
  64. box-sizing: border-box;
  65. padding: 10px 0 0 0;
  66. }
  67. .category-menu-tabs {
  68. width: 100%;
  69. height: 24px;
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: center;
  73. }
  74. .category-menu-tabs .menu-tabs-item{
  75. width: 50%;
  76. height: 24px;
  77. line-height: 24px;
  78. text-align: center;
  79. font-size: 14px;
  80. color: #999999;
  81. border-radius: 4px;
  82. background-color: #F1F1F1;
  83. margin: 0 12px;
  84. cursor: pointer;
  85. }
  86. .category-menu-tabs .menu-tabs-item.active{
  87. background-color: #D9D9D9;
  88. color: #333333;
  89. }
  90. .section-content-naves:hover{
  91. overflow: visible;
  92. }
  93. .category-menu {
  94. position: relative;
  95. display: flex;
  96. width: 100%;
  97. min-height: 478px;
  98. border-radius: 8px;
  99. background-color: #f7f8fc;
  100. }
  101. .left-category {
  102. width: 100%;
  103. padding: 10px 0 0 0;
  104. }
  105. .left-category .category-item {
  106. width: 100%;
  107. box-sizing: border-box;
  108. padding:9px 12px;
  109. font-size: 14px;
  110. color: #666;
  111. cursor: pointer;
  112. transition: all 0.2s;
  113. display: flex;
  114. justify-content: flex-start;
  115. }
  116. .left-category .category-item a{
  117. display: flex;
  118. }
  119. .left-category .category-item img{
  120. width: 24px;
  121. height: 24px;
  122. display: block;
  123. margin-right: 8px;
  124. }
  125. .left-category .category-item span{
  126. line-height: 24px;
  127. font-size: 14px;
  128. color: #333333;
  129. transition: all 0.2s;
  130. }
  131. .left-category .category-item:hover,
  132. .left-category .category-item.active {
  133. background: #D9D9D9;
  134. color: #FF5B00;
  135. }
  136. .left-category .category-item span:hover{
  137. color: #FF5B00;
  138. text-decoration: underline;
  139. }
  140. .right-panel {
  141. position: absolute;
  142. left: 182px;
  143. top: -34px;
  144. min-width: 516px;
  145. min-height: 520px;
  146. padding: 20px;
  147. border-radius: 8px;
  148. box-sizing: border-box;
  149. background: #fff;
  150. border: 1px solid #FF5B00;
  151. z-index: 1000;
  152. }
  153. .right-panel .panel-content {
  154. display: flex;
  155. justify-content: flex-start;
  156. align-items: center;
  157. flex-wrap: wrap; /* 关键属性 */
  158. gap: 20px; /* 元素间距 */
  159. }
  160. .right-panel .sub-category {
  161. height: 48px;
  162. display: flex;
  163. margin: 0 8px;
  164. }
  165. .right-panel .sub-title {
  166. margin: 0 12px 0 0;
  167. font-size: 14px;
  168. color: #333;
  169. font-weight: bold;
  170. }
  171. .right-panel .sub-items {
  172. display: flex;
  173. justify-content: flex-start;
  174. }
  175. .right-panel .sub-item {
  176. font-size: 14px;
  177. color: #333333;
  178. margin: 0 5px;
  179. display: flex;
  180. justify-content: flex-start;
  181. transition: all 0.2s;
  182. }
  183. .right-panel .sub-item img{
  184. width: 24px;
  185. height: 24px;
  186. display: block;
  187. margin-right: 5px;
  188. }
  189. .right-panel .sub-item span{
  190. line-height: 24px;
  191. font-size: 14px;
  192. color: #333333;
  193. transition: all 0.2s;
  194. }
  195. .right-panel .sub-item:hover span {
  196. color: #FF5B00;
  197. text-decoration: underline;
  198. }
  199. .right-panel .fade-enter-active,
  200. .right-panel .fade-leave-active {
  201. transition: opacity 0.3s;
  202. }
  203. .right-panel .fade-enter-from,
  204. .right-panel .fade-leave-to {
  205. opacity: 0;
  206. }
  207. .section-content-mains{
  208. width: 982px;
  209. height: 100%;
  210. }
  211. .section-content-mains-top{
  212. width: 100%;
  213. height: 40px;
  214. margin-bottom: 10px;
  215. border-radius: 6px;
  216. background-color: #f7f8fc;
  217. }
  218. .section-content-mains-top .mains-nav{
  219. display: block;
  220. padding: 0 28px;
  221. text-align: center;
  222. line-height: 40px;
  223. font-size: 17px;
  224. font-weight: bold;
  225. float: left;
  226. }
  227. .section-content-mains-bottom{
  228. width: 100%;
  229. height: 469px;
  230. display: flex;
  231. justify-content: space-between;
  232. align-items: center;
  233. }
  234. .section-content-mains-bottom .section-content-advert{
  235. width: 472px;
  236. height: 469px;
  237. display: flex;
  238. flex-direction: column;
  239. align-items: center;
  240. }
  241. .section-content-mains-bottom .section-content-advert .section-content-advert-top{
  242. width: 100%;
  243. height: 343px;
  244. display: flex;
  245. justify-content: space-between;
  246. align-items: center;
  247. }
  248. .section-content-mains-bottom .section-content-banner{
  249. width: 500px;
  250. height: 469px;
  251. border-radius: 8px;
  252. overflow: hidden;
  253. }
  254. /* 轮播 */
  255. #swiper-container{width:100%;height:469px;min-width:500px;overflow:hidden;position:relative;float: left;}
  256. #swiper-container .swiper-wrapper{position:relative;height:100%;z-index:0}
  257. #swiper-container .tempWrap{margin:0 auto;}
  258. #swiper-container .swiper-wrapper li{position:relative;zoom:1;vertical-align:middle;width:100%;overflow:hidden;background-color: #f7f8fc;}
  259. #swiper-container .swiper-wrapper img{width:auto;height:469px;max-width:none;display:block;margin-left:50%;-o-transform:translateX(-50%);-ms-transform:translateX(-50%);-moz-transform:translateX(-50%);-webkit-transform:translateX(-50%);transform:translateX(-50%)}
  260. #swiper-container .swiper-button-prev,#swiper-container .swiper-button-next{position:absolute;top:50%;margin-top:-34px;display:block;width:44px;height:68px;line-height:68px;background:rgba(255,230,220,.2);color:#FFF;font-size:40px;text-align:center;border-radius:2px}
  261. #swiper-container .swiper-button-prev{left:5px;right:auto}
  262. #swiper-container .swiper-button-next{left:auto;right:5px}
  263. #swiper-container .swiper-button-prev:after{content:"\276C"}
  264. #swiper-container .swiper-button-next:after{content:"\276D"}
  265. #swiper-container .swiper-button-prev:hover,#swiper-container .swiper-button-next:hover{background:rgba(255,230,220,.6)}
  266. #swiper-container .swiper-pagination{width:100%;height:14px;position:absolute;left:0;bottom:15px;z-index:1;text-align:center;font-size:0}
  267. #swiper-container .swiper-pagination span{display:inline-block;border:5px solid transparent;cursor:pointer}
  268. #swiper-container .swiper-pagination span:before{content:"";display:inline-block;width:14px;height:4px;background:rgba(255,255,255,.4);border-radius:2px}
  269. #swiper-container .swiper-pagination span.on:before{width:28px;background:#fff}
  270. .swiper-slide {display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center;}
  271. .section-content-advert .section-content-oper{
  272. width: 231px;
  273. height: 343px;
  274. box-sizing: border-box;
  275. background-color: #f7f8fc;
  276. padding: 10px;
  277. border-radius: 8px;
  278. }
  279. .section-content-advert .section-content-oper .my-swipe .van-swipe-item {
  280. height: auto;
  281. }
  282. .section-content-advert .section-content-oper .carousel-list {
  283. padding:0;
  284. }
  285. .section-content-advert .section-content-oper .list {
  286. width: 33.33%;
  287. height: auto;
  288. margin: 10px 0;
  289. float: left;
  290. cursor: pointer;
  291. }
  292. .section-content-advert .section-content-oper .list .list-content {
  293. height: auto;
  294. }
  295. .section-content-advert .section-content-oper .list .list-content .list-icon {
  296. width: 44px;
  297. height: 44px;
  298. margin: 0 auto;
  299. border-radius: 50%;
  300. overflow: hidden;
  301. }
  302. .section-content-advert .section-content-oper .list .list-content .list-title {
  303. display: flex;
  304. justify-content: center;
  305. align-items: center;
  306. font-size: 12px;
  307. }
  308. .section-content-advert .section-content-oper .list:hover .list-title{
  309. color: #FF5B00;
  310. }
  311. .section-content-advert .section-content-oper .el-carousel__arrow--left{
  312. left: -8px !important;
  313. width: 24px !important;
  314. height: 24px !important;
  315. }
  316. .section-content-advert .section-content-oper .el-carousel__arrow--right{
  317. right: -8px !important;
  318. width: 24px !important;
  319. height: 24px !important;
  320. }
  321. /*广告*/
  322. .section-content-mains-bottom .section-content-advert .section-content-adv{
  323. width: 100%;
  324. height: 117px;
  325. display: flex;
  326. justify-content: space-between;
  327. align-items: center;
  328. margin-top: 8px;
  329. }
  330. .section-content-mains-bottom .section-content-advert .section-content-adv-item{
  331. width: 236px;
  332. height: 117px;
  333. background-color: #FF5B00;
  334. margin-right: 8px;
  335. border-radius: 8px;
  336. overflow: hidden;
  337. }
  338. .section-content-mains-bottom .section-content-advert .section-content-adv-item img,
  339. .section-content-mains-bottom .section-content-advert .section-content-adv-item a{
  340. display: block;
  341. width: 100%;
  342. height: 100%;
  343. }
  344. .section-content-mains-bottom .section-content-advert .section-content-adv-item:last-child{
  345. margin-right: 0;
  346. }
  347. .section-content-mains-bottom .section-content-usermain{
  348. width: 231px;
  349. height: 100%;
  350. border-radius: 8px;
  351. display: flex;
  352. flex-direction: column;
  353. align-items: center;
  354. }
  355. .section-content-mains-bottom .section-content-usermain .section-content-userbox{
  356. width: 100%;
  357. height: 343px;
  358. box-sizing: border-box;
  359. padding: 10px;
  360. background-color: #f7f8fc;
  361. border-radius: 8px;
  362. display: flex;
  363. flex-direction: column;
  364. align-items: center;
  365. }
  366. .section-content-userbox .section-content-usertop{
  367. width: 100%;
  368. height: auto;
  369. margin-top: 10px;
  370. }
  371. .section-content-userbox .section-content-usertop .user-column-a{
  372. height: 60px;
  373. box-sizing: border-box;
  374. padding: 5px 0;
  375. display: flex;
  376. justify-content: flex-start;
  377. align-items: center;
  378. }
  379. .section-content-usertop .user-column-a .user-column-logo{
  380. width: 50px;
  381. height: 50px;
  382. border-radius: 50%;
  383. overflow: hidden;
  384. }
  385. .section-content-usertop .user-column-a .user-column-logo img{
  386. width: 50px;
  387. height: 50px;
  388. display: block;
  389. border-radius: 50%;
  390. }
  391. .section-content-usertop .user-column-a .user-column-text{
  392. width: 140px;
  393. display: flex;
  394. flex-direction: column;
  395. justify-items: left;
  396. margin-left: 10px;
  397. }
  398. .section-content-usertop .user-column-a .user-column-text h1{
  399. font-size: 17px;
  400. font-weight: 600;
  401. line-height: 26px;
  402. text-align: left;
  403. color: #333333;
  404. width: 100%;
  405. white-space: normal;
  406. word-break: break-all;
  407. overflow: hidden;
  408. text-overflow: ellipsis;
  409. display: -webkit-box;
  410. -webkit-box-orient: vertical;
  411. -webkit-line-clamp: 1;
  412. }
  413. .section-content-usertop .user-column-a .user-column-text p{
  414. font-size: 14px;
  415. line-height: 22px;
  416. text-align: left;
  417. color: #666666;
  418. }
  419. .section-content-usertop .user-column-b{
  420. display: flex;
  421. flex-direction: column;
  422. justify-items: center;
  423. align-items: center;
  424. }
  425. .section-content-usertop .user-column-b h1{
  426. font-size: 14px;
  427. line-height: 26px;
  428. text-align: left;
  429. color: #666666;
  430. font-weight: normal;
  431. }
  432. .section-content-usertop .user-column-b p{
  433. font-size: 14px;
  434. line-height: 26px;
  435. text-align: left;
  436. color: #999999;
  437. }
  438. .section-content-usertop .user-column-b a{
  439. width: 100%;
  440. height: 34px;
  441. line-height: 34px;
  442. text-align: center;
  443. background-color: #FF5B00;
  444. color: #FFFFFF;
  445. font-size: 16px;
  446. display: block;
  447. margin: 8px 0;
  448. border-radius: 4px;
  449. }
  450. .section-content-usertop .user-column-c{
  451. width: 100%;
  452. height: 48px;
  453. display: flex;
  454. justify-content: space-between;
  455. align-items: center;
  456. }
  457. .section-content-usertop .user-column-c .column-c-item{
  458. display: flex;
  459. flex-direction: column;
  460. align-items: center;
  461. }
  462. .section-content-usertop .user-column-c .column-c-item h1{
  463. font-size: 16px;
  464. color: #666666;
  465. line-height: 18px;
  466. }
  467. .section-content-usertop .user-column-c .column-c-item p{
  468. font-size: 14px;
  469. color: #666666;
  470. line-height: 18px;
  471. }
  472. .section-content-usertop .user-column-d{
  473. width: 100%;
  474. height: 56px;
  475. }
  476. .section-content-usertop .user-column-d a{
  477. height: 56px;
  478. box-sizing: border-box;
  479. padding: 7px 0;
  480. display: flex;
  481. justify-content: flex-start;
  482. align-items: center;
  483. }
  484. .section-content-usertop .user-column-d .column-d-image{
  485. width: 42px;
  486. height: 42px;
  487. border-radius: 2px;
  488. overflow: hidden;
  489. background-color: #dbdbdb;
  490. }
  491. .section-content-usertop .user-column-d .column-d-image img{
  492. width: 42px;
  493. height: 42px;
  494. display: block;
  495. border-radius: 2px;
  496. }
  497. .section-content-usertop .user-column-d .column-d-text{
  498. width: 140px;
  499. display: flex;
  500. flex-direction: column;
  501. justify-items: left;
  502. margin-left: 10px;
  503. }
  504. .section-content-usertop .user-column-d .column-d-text h1{
  505. width: 100%;
  506. font-size: 12px;
  507. font-weight: normal;
  508. line-height: 18px;
  509. text-align: left;
  510. color: #999999;
  511. white-space: normal;
  512. word-break: break-all;
  513. overflow: hidden;
  514. text-overflow: ellipsis;
  515. display: -webkit-box;
  516. -webkit-box-orient: vertical;
  517. -webkit-line-clamp: 2;
  518. }
  519. .section-content-usertop .user-column-d .column-d-text p{
  520. font-size: 12px;
  521. line-height: 22px;
  522. text-align: left;
  523. color: #333333;
  524. }
  525. .section-content-userbox .section-content-userbottom{
  526. width: 100%;
  527. height: 50px;
  528. display: flex;
  529. flex-direction: column;
  530. align-items: center;
  531. }
  532. .section-content-userbottom .userbottom-column-a{
  533. width: 100%;
  534. height: 50px;
  535. display: flex;
  536. justify-content: flex-start;
  537. align-items: center;
  538. margin: 8px 0 10px 0;
  539. }
  540. .section-content-userbottom .userbottom-column-a .column-item{
  541. display: flex;
  542. flex-direction: column;
  543. align-items: center;
  544. margin: 0 8px;
  545. }
  546. .section-content-userbottom .userbottom-column-a .column-item img{
  547. width: 27px;
  548. height: 27px;
  549. }
  550. .section-content-userbottom .userbottom-column-a .column-item p{
  551. font-size: 14px;
  552. line-height: 22px;
  553. text-align: left;
  554. color: #666666;
  555. }
  556. .section-content-userbottom .userbottom-column-b{
  557. width: 100%;
  558. height: 80px;
  559. display: flex;
  560. justify-content: space-between;
  561. align-items: center;
  562. }
  563. .section-content-userbottom .userbottom-column-b .column-item{
  564. width: 99px;
  565. height: 80px;
  566. box-sizing: border-box;
  567. padding: 8px;
  568. border-radius: 4px;
  569. display: flex;
  570. flex-direction: column;
  571. justify-content: left;
  572. }
  573. .section-content-userbottom .userbottom-column-b .column-item h1{
  574. font-size: 12px;
  575. color: #664100;
  576. line-height: 18px;
  577. }
  578. .section-content-userbottom .userbottom-column-b .column-item p{
  579. font-size: 12px;
  580. color: #664100;
  581. line-height: 18px;
  582. }
  583. .section-content-userbottom .userbottom-column-b .column-item span{
  584. display: inline-block;
  585. width: 69px;
  586. height: 20px;
  587. line-height: 20px;
  588. border-radius: 10px;
  589. text-align: center;
  590. font-size: 12px;
  591. background-color: #664100;
  592. color: #FFFFFF;
  593. margin-top: 7px;
  594. font-weight: 600;
  595. }
  596. .section-content-userbottom .userbottom-column-b .column-item.plus{
  597. background-color: #ffe69a;
  598. }
  599. .section-content-userbottom .userbottom-column-b .column-item.coupon{
  600. background-color: #ff9c54;
  601. }
  602. /* 内容区 */
  603. .main-content {
  604. margin-top: 10px;
  605. }
  606. .section_page.hot{
  607. width:100%;
  608. height:396px;
  609. background: url("/img/hot/icon-hot-bg.png");
  610. background-size: cover;
  611. border-radius:8px;
  612. }
  613. .section_page.hot .section_page_main.type_08{
  614. height: 315px;
  615. padding: 0 0 12px 0;
  616. }
  617. .section_page.hot #recommendBox{
  618. height: 320px;
  619. }
  620. .swiper-container-floor.hotList{
  621. padding: 12px;
  622. }
  623. .section_page.hot #recommendBox .swiper-pagination{
  624. bottom: 1px;
  625. }
  626. #recommendBox .swiper-pagination.hot span:before{
  627. background: #9fe4e0;
  628. }
  629. #recommendBox .swiper-pagination.hot span.swiper-pagination-bullet-active:before{
  630. background: #ffffff;
  631. }
  632. .section_page.hot .page_main_image{
  633. width: 186px;
  634. height: 186px;
  635. }
  636. .section_page.hot .section_page_title{
  637. width:100%;
  638. height:54px;
  639. box-sizing:border-box;
  640. padding:10px 16px 0 16px;
  641. position: relative;
  642. display: flex;
  643. justify-content: flex-start;
  644. }
  645. .section_page.hot .section_page_title h1{
  646. font-size:24px;
  647. line-height:44px;
  648. text-align:left;
  649. color:#333333;
  650. }
  651. .section_page.hot .section_page_title span{
  652. font-size:14px;
  653. line-height:44px;
  654. text-align:left;
  655. color:#666666;
  656. margin-left:10px;
  657. }
  658. .section_page.hot .section_page_btn{
  659. display: block;
  660. width: 74px;
  661. height: 26px;
  662. background: url("/img/hot/icon-hot-btn.png");
  663. background-size: cover;
  664. position: absolute;
  665. right: 20px;
  666. top: 12px;
  667. }
  668. .section_page .page_main_item.hot{
  669. width:164px;
  670. height:300px;
  671. float:left;
  672. margin-right:10px;
  673. margin-bottom:16px;
  674. background-color:#FFFFFF;
  675. transition:all 0.4s;
  676. display:block;
  677. position: relative;
  678. border-radius: 8px;
  679. }
  680. /*楼层*/
  681. .section-page-content{
  682. width: 100%;
  683. height: auto;
  684. display: flex;
  685. flex-wrap: wrap;
  686. justify-content: space-between;
  687. }
  688. .section-page-item{
  689. width: 592px;
  690. height: 484px;
  691. margin: 0 15px 15px 0;
  692. background-color: #FFFFFF;
  693. border-radius: 8px;
  694. overflow: hidden;
  695. box-sizing: border-box;
  696. border: 1px solid #FFFFFF;
  697. }
  698. .section-page-item:hover{
  699. border-color: #FF5B00;
  700. }
  701. .section-page-item:nth-child(2n){
  702. margin-right: 0;
  703. margin-bottom: 0;
  704. }
  705. .section-page-item:nth-child(3){
  706. margin-bottom: 0;
  707. }
  708. .section-page-item:nth-child(4){
  709. margin-bottom: 0;
  710. }
  711. .section-page-item .section-page-top{
  712. width: 100%;
  713. height: 180px;
  714. display: flex;
  715. justify-content: flex-start;
  716. align-items: center;
  717. }
  718. .section-page-item .section-page-top .section-page-title{
  719. width: 64px;
  720. height: 100%;
  721. padding: 16px;
  722. font-weight: bold;
  723. font-size: 14px;
  724. color: #FFFFFF;
  725. box-sizing: border-box;
  726. }
  727. /*.section-page-item:nth-child(1) .section-page-title{*/
  728. /* background-color: #1b64de;*/
  729. /*}*/
  730. /*.section-page-item:nth-child(2) .section-page-title{*/
  731. /* background-color: #1bc0de;*/
  732. /*}*/
  733. /*.section-page-item:nth-child(3) .section-page-title{*/
  734. /* background-color: #de1b64;*/
  735. /*}*/
  736. /*.section-page-item:nth-child(4) .section-page-title{*/
  737. /* background-color: #fe7e00;*/
  738. /*}*/
  739. .section-page-item .section-page-top .section-page-banner{
  740. width: 528px;
  741. height: 100%;
  742. }
  743. .el-carousel
  744. .section-page-item .section-page-banner .page-banner-item img,
  745. .section-page-item .section-page-banner .page-banner-item{
  746. width: 527px;
  747. height: 180px;
  748. display: block;
  749. }
  750. .section-page-item .section-page-bottom {
  751. width: 100%;
  752. height: 307px;
  753. display: flex;
  754. flex-direction: column;
  755. align-items: center;
  756. box-sizing: border-box;
  757. padding:0 10px 10px 10px;
  758. }
  759. .section-page-item .section-page-bottom .page-bottom-tabs{
  760. width: 100%;
  761. height: 46px;
  762. display: flex;
  763. justify-content: space-between;
  764. align-items: center;
  765. }
  766. .page-bottom-tabs .page-bottom-tabs-left{
  767. display: flex;
  768. justify-content: space-between;
  769. align-items: center;
  770. }
  771. .page-bottom-tabs .page-bottom-tabs-left .bot-tabs-item{
  772. display: flex;
  773. height: 46px;
  774. font-size: 14px;
  775. line-height: 46px;
  776. margin: 0 10px;
  777. }
  778. .page-bottom-tabs .page-bottom-tabs-left .bot-tabs-item:hover{
  779. text-decoration: underline;
  780. }
  781. .page-bottom-tabs .page-bottom-tabs-right{
  782. height: 46px;
  783. font-size: 14px;
  784. line-height: 46px;
  785. }
  786. .section-page-item .section-page-bottom .page-bottom-main{
  787. width: 100%;
  788. height: 254px;
  789. }
  790. .section-page-item .section-page-bottom .bottom-main-item{
  791. width: 133px;
  792. height: 247px;
  793. float: left;
  794. margin-right: 10px;
  795. transition: all 0.4s;
  796. display: block;
  797. position: relative;
  798. overflow: hidden;
  799. border-radius: 8px;
  800. border: 1px solid #F1F1F1;
  801. }
  802. .section-page-item .section-page-bottom .bottom-main-item:hover{
  803. transform:translateY(-5px);
  804. box-shadow:0 8px 8px rgba(102,102,102,0.05),0 10px 10px rgba(102,102,102,0.05),0 12px 12px rgba(102,102,102,0.05);
  805. }
  806. .section-page-item .section-page-bottom .bottom-main-item:last-child{
  807. margin-right: 0;
  808. }
  809. .section-page-item .bottom-main-item .page_main_image{
  810. width: 133px;
  811. height: 133px;
  812. display: block;
  813. float: left;
  814. border-radius: 8px 8px 0 0;
  815. }
  816. .section-page-item .bottom-main-item .page_main_type{
  817. width: 34px;
  818. height: 34px;
  819. text-align: justify;
  820. box-sizing: border-box;
  821. padding: 5px;
  822. border-radius: 0 0 8px 8px;
  823. background-color: #33CCBF;
  824. font-size: 12px;
  825. color: #FFFFFF;
  826. line-height: 13px;
  827. position: absolute;
  828. top: 0;
  829. right: 10px;
  830. }
  831. .section-page-item .bottom-main-item .page_main_tag{
  832. width:100%;
  833. height:24px;
  834. float:left;
  835. margin-top:16px;
  836. padding:0 8px
  837. }
  838. .section-page-item .bottom-main-item .page_main_text{
  839. width: 100%;
  840. height: 42px;
  841. float: left;
  842. box-sizing: border-box;
  843. margin-top: 5px;
  844. padding: 0 8px;
  845. white-space: normal;
  846. word-break: break-all;
  847. overflow: hidden;
  848. text-overflow: ellipsis;
  849. display: -webkit-box;
  850. -webkit-box-orient: vertical;
  851. -webkit-line-clamp: 2;
  852. line-height: 22px;
  853. font-size: 14px;
  854. }
  855. .section-page-item .bottom-main-item .page_main_price{
  856. width: 100%;
  857. height: 54px;
  858. float: left;
  859. box-sizing: border-box;
  860. padding: 0 8px;
  861. }
  862. .section-page-item .bottom-main-item .page_main_price .main_price_text{
  863. width:100%;
  864. height:54px;
  865. float:left;
  866. box-sizing:border-box;
  867. }
  868. .section-page-item .bottom-main-item .page_main_price .price_text_tag{
  869. width:100%;
  870. height:22px;
  871. box-sizing:border-box;
  872. float:left;
  873. margin: 5px 0;
  874. }
  875. .section-page-item .page_main_price .main_price_show{color:#f94b4b;font-size: 15px;}
  876. .section-page-item .bottom-main-item .page_main_price .price_text_tag .couponTag{
  877. float:left;
  878. margin-right: 2px;
  879. }
  880. .section-page-item .bottom-main-item .page_main_price .price_text_tag .listTag{
  881. margin:0;float:left;
  882. }
  883. /*标签缩小*/
  884. .bottom-main-item .page_main_price .price_text_tag {-webkit-transform: scale(0.8) translateX(-18px);-ms-transform: scale(0.8) translateX(-18px);transform: scale(0.8) translateX(-18px)}
  885. .bottom-main-item .page_main_price .price_text_tag .svip-tag,
  886. .bottom-main-item .page_main_price .price_text_tag .listTag{-webkit-transform: translateX(4px);-ms-transform: translateX(4px);transform: translateX(4px)}
  887. /*会员标签*/
  888. .bottom-main-item .page_main_price .price_text_tag .svip-tag{width:100%;height:22px;letter-spacing:0}
  889. .bottom-main-item .page_main_price .price_text_tag .svip-tag .svip-icon{position:relative;z-index:9;display:inline-block;width:30px;height:22px;text-align:center;line-height:22px;font-size:12px;font-weight:400;color:#F0CB72;opacity:1;background:#333333;border-radius: 0 11px;padding: 0 2px;}
  890. .bottom-main-item .page_main_price .price_text_tag .svip-tag .svip-icon.btr{border-radius:2px 8px 0px 2px}
  891. .bottom-main-item .page_main_price .price_text_tag .svip-tag .svip-price{z-index:1;position:relative;display:inline-block;padding-left:24px;padding-right:2px;margin-left:-27px;line-height:22px;background:#F0CB72;opacity:1;border-radius:2px;font-size:12px}
  892. .bottom-main-item .page_main_price .price_text_tag .svip-tag .svip-price span{color: #333}
  893. .section-page-item .bottom-main-item .page_main_price .main_price_none{
  894. width:100%;
  895. height:24px;
  896. box-sizing:border-box;
  897. float:left;
  898. margin-top:2px;
  899. }
  900. .section-page-item .bottom-main-item .page_main_price .main_price_none.sec{
  901. margin-top:25px;
  902. }
  903. .section-page-item .bottom-main-item .page_main_price .main_price_none .listTag{
  904. margin:0
  905. }
  906. .section-page-item .bottom-main-item .page_main_price .price_grade,
  907. .section-page-item .bottom-main-item .page_main_price .price_grade_shop{
  908. float:left;
  909. margin:0;
  910. height:22px;
  911. line-height:22px;
  912. color:#4A4F58;
  913. font-style:normal;
  914. font-size:14px;
  915. }
  916. .section-page-item .bottom-main-item .page_main_price .price_grade_club{
  917. float:left;
  918. margin:0;
  919. height:22px;
  920. line-height:22px;
  921. font-style:normal;
  922. font-size:14px;
  923. color: #f94b4b;
  924. }
  925. .section-page-item .bottom-main-item .page_main_price .price_grade{
  926. float: unset;
  927. }
  928. .section-page-item .bottom-main-item .page_main_price .price_grade span,
  929. .section-page-item .bottom-main-item .page_main_price .price_grade_shop span,
  930. .section-page-item .bottom-main-item .page_main_price .price_grade_club span{display:inline-block;float:left}
  931. .section-page-item .bottom-main-item .page_main_price .icon:before{width:67px;height:22px}
  932. .section-page-item .bottom-main-item .page_main_price .price_grade_1:before{background-position:0 -708px}
  933. .section-page-item .bottom-main-item .page_main_price .price_grade_2:before{background-position:0 -736px}
  934. .section-page-item .bottom-main-item .page_main_price .price_grade_3:before{background-position:0 -764px}
  935. .section-page-item .bottom-main-item .page_main_price .price_grade_4:before{background-position:0 -791px}
  936. .section-page-item .bottom-main-item .page_main_price .price_grade_5:before{background-position:0 -818px}
  937. /*优质供应商*/
  938. .section-shop-content{
  939. width: 100%;
  940. height: 358px;
  941. box-sizing: border-box;
  942. padding:0 12px;
  943. background-color: #FFFFFF;
  944. border-radius: 8px;
  945. }
  946. .section-shop-content .section-shop-title{
  947. width:100%;
  948. height:56px;
  949. box-sizing:border-box;
  950. position: relative;
  951. display: flex;
  952. justify-content: flex-start;
  953. }
  954. .section-shop-content .section-shop-title h1{
  955. font-size:24px;
  956. line-height:56px;
  957. text-align:left;
  958. color:#333333;
  959. }
  960. .section-shop-content .section-shop-title span{
  961. font-size:14px;
  962. line-height:56px;
  963. text-align:left;
  964. color:#999999;
  965. margin-left:10px;
  966. font-weight: normal;
  967. }
  968. .section-shop-content .section-shop-main{
  969. width: 100%;
  970. height: 300px;
  971. box-sizing: border-box;
  972. padding: 10px 0;
  973. }
  974. .section-shop-content .section-shop-main .supplier-list{
  975. padding: 0;
  976. width: 100%;
  977. height: 100%;
  978. display: flex;
  979. }
  980. .section-shop-content .section-shop-main .supplier-list-item{
  981. display: flex;
  982. width: 284px;
  983. height: 280px;
  984. flex-direction: column;
  985. align-items: center;
  986. border-radius: 8px;
  987. margin: 0 15px 0 0;
  988. box-sizing: border-box;
  989. padding: 20px 0;
  990. background-color: #FFFFFF;
  991. border:2px solid #e1e1e1;
  992. transition: all 0.2s;
  993. }
  994. .section-shop-content .section-shop-main .supplier-list-item:hover{
  995. border-color: #FF5B00;
  996. }
  997. .section-shop-content .section-shop-main .supplier-list-item:last-child{
  998. margin-right: 0;
  999. }
  1000. .section-shop-content .section-shop-main .supplier-list-top{
  1001. width: 100%;
  1002. display: flex;
  1003. flex-direction: column;
  1004. align-items: center;
  1005. box-sizing: border-box;
  1006. padding: 0 10px;
  1007. }
  1008. .section-shop-content .section-shop-main .supplier-top-logo{
  1009. display: flex;
  1010. align-items: center;
  1011. justify-content: center;
  1012. width: 146px;
  1013. height: 64px;
  1014. margin-right: 10px;
  1015. border-radius: 8px;
  1016. overflow: hidden;
  1017. }
  1018. .section-shop-content .section-shop-main .supplier-top-logo img{
  1019. width: 146px;
  1020. height: 64px;
  1021. display: block;
  1022. }
  1023. .section-shop-content .section-shop-main .supplier-top-name{
  1024. font-size:17px;
  1025. line-height:42px;
  1026. color:#333333;
  1027. align-items: center;
  1028. font-weight: bold;
  1029. }
  1030. .section-shop-content .section-shop-main .supplier-list-mid{
  1031. width: 100%;
  1032. height: 88px;
  1033. display: flex;
  1034. justify-content: space-between;
  1035. align-items: center;
  1036. margin: 0 0 15px 0;
  1037. box-sizing: border-box;
  1038. padding: 0 10px;
  1039. }
  1040. .section-shop-content .section-shop-main .list-mid-item{
  1041. width: 80px;
  1042. height: 80px;
  1043. background-color: #e1e1e1;
  1044. border-radius: 4px;
  1045. margin-right: 5px;
  1046. box-sizing: border-box;
  1047. border: 1px solid #FFFFFF;
  1048. }
  1049. .section-shop-content .section-shop-main .list-mid-item:hover{
  1050. border-color: #e2e4e6;
  1051. }
  1052. .section-shop-content .section-shop-main .list-mid-item a,
  1053. .section-shop-content .section-shop-main .list-mid-item img{
  1054. width: 78px;
  1055. height: 78px;
  1056. border-radius: 8px;
  1057. display: block;
  1058. }
  1059. .section-shop-content .section-shop-main .list-mid-item:last-child{
  1060. margin-right: 0;
  1061. }
  1062. .section-shop-content .section-shop-main .supplier-list-bot{
  1063. width: 100%;
  1064. height: 32px;
  1065. display: flex;
  1066. justify-content: center;
  1067. align-items: center;
  1068. margin-top: 10px;
  1069. }
  1070. .section-shop-content .section-shop-main .supplier-list-bot a{
  1071. display: flex;
  1072. flex-direction: row;
  1073. align-items: center;
  1074. height: 32px;
  1075. padding: 0 16px;
  1076. border: 1px solid #e2e4e6;
  1077. text-align: center;
  1078. line-height: 32px;
  1079. box-sizing: border-box;
  1080. border-radius: 6px;
  1081. color: #11192d;
  1082. transition: all 0.2s;
  1083. }
  1084. .section-shop-content .section-shop-main .supplier-list-bot a .icon.shop{
  1085. vertical-align: middle;
  1086. display: inline-block;
  1087. width: 20px;
  1088. height: 20px;
  1089. line-height: 25px;
  1090. }
  1091. .section-shop-content .section-shop-main .supplier-list-bot a .icon.shop:before{
  1092. width: 20px;
  1093. height: 20px;
  1094. background-position: -182px -746px;
  1095. }
  1096. /*为你推荐*/
  1097. .section-floor-content{
  1098. width: 100%;
  1099. height: auto;
  1100. box-sizing: border-box;
  1101. padding:0 12px;
  1102. background-color: #FFFFFF;
  1103. border-radius: 8px;
  1104. }
  1105. .section-floor-content .section-floor-title{
  1106. width:100%;
  1107. height:56px;
  1108. box-sizing:border-box;
  1109. position: relative;
  1110. display: flex;
  1111. justify-content: flex-start;
  1112. }
  1113. .section-floor-content .section-floor-title h1{
  1114. font-size:24px;
  1115. line-height:56px;
  1116. text-align:left;
  1117. color:#333333;
  1118. }
  1119. .section-floor-content .section-floor-title span{
  1120. font-size:14px;
  1121. line-height:56px;
  1122. text-align:left;
  1123. color:#999999;
  1124. margin-left:10px;
  1125. font-weight: normal;
  1126. }
  1127. .section-floor-content .section-floor-main{
  1128. width:100%;
  1129. height:auto;
  1130. box-sizing:border-box;
  1131. padding: 20px 0;
  1132. display: flex;
  1133. flex-wrap: wrap;
  1134. }
  1135. .section-floor-content .floor-main-item{
  1136. width: 182px;
  1137. height: 300px;
  1138. margin:7px;
  1139. transition: all 0.4s;
  1140. display: block;
  1141. position: relative;
  1142. overflow: hidden;
  1143. border-radius: 8px;
  1144. border: 2px solid #F1F1F1;
  1145. box-sizing: border-box;
  1146. }
  1147. .section-floor-content .floor-main-item:hover{
  1148. transform:translateY(-5px);
  1149. border-color: #FF5B00;
  1150. box-shadow:0 8px 8px rgba(102,102,102,0.05),0 10px 10px rgba(102,102,102,0.05),0 12px 12px rgba(102,102,102,0.05);
  1151. }
  1152. .section-floor-content .floor-main-item:nth-child(6n){
  1153. margin-right: 0;
  1154. }
  1155. .section-floor-content .floor-main-item .page_main_image{
  1156. width: 182px;
  1157. height: 182px;
  1158. display: block;
  1159. float: left;
  1160. border-radius: 8px 8px 0 0;
  1161. }
  1162. .section-floor-content .floor-main-item .page_main_type{
  1163. width: 34px;
  1164. height: 34px;
  1165. text-align: justify;
  1166. box-sizing: border-box;
  1167. padding: 5px;
  1168. border-radius: 0 0 8px 8px;
  1169. background-color: #33CCBF;
  1170. font-size: 12px;
  1171. color: #FFFFFF;
  1172. line-height: 13px;
  1173. position: absolute;
  1174. top: 0;
  1175. right: 10px;
  1176. }
  1177. .section-floor-content .floor-main-item .page_main_tag{
  1178. width:100%;
  1179. height:24px;
  1180. float:left;
  1181. margin-top:16px;
  1182. padding:0 8px
  1183. }
  1184. .section-floor-content .floor-main-item .page_main_text{
  1185. width: 100%;
  1186. height: 42px;
  1187. float: left;
  1188. box-sizing: border-box;
  1189. margin-top: 5px;
  1190. padding: 0 8px;
  1191. white-space: normal;
  1192. word-break: break-all;
  1193. overflow: hidden;
  1194. text-overflow: ellipsis;
  1195. display: -webkit-box;
  1196. -webkit-box-orient: vertical;
  1197. -webkit-line-clamp: 2;
  1198. line-height: 22px;
  1199. font-size: 14px;
  1200. }
  1201. .section-floor-content .floor-main-item .page_main_price{
  1202. width: 100%;
  1203. height: 54px;
  1204. float: left;
  1205. box-sizing: border-box;
  1206. padding: 0 8px;
  1207. }
  1208. .section-floor-content .floor-main-item .page_main_price .main_price_text{
  1209. width:100%;
  1210. height:54px;
  1211. float:left;
  1212. box-sizing:border-box;
  1213. }
  1214. .section-floor-content .floor-main-item .page_main_price .price_text_tag{
  1215. width:100%;
  1216. height:22px;
  1217. box-sizing:border-box;
  1218. float:left;
  1219. margin: 5px 0;
  1220. }
  1221. .section-floor-content .floor-main-item .page_main_price .main_price_show{color:#f94b4b;font-size: 15px;}
  1222. .section-floor-content .floor-main-item .page_main_price .price_text_tag .couponTag{
  1223. float:left;
  1224. margin-right: 2px;
  1225. }
  1226. .section-floor-content .floor-main-item .page_main_price .price_text_tag .listTag{
  1227. margin:0;float:left;
  1228. }
  1229. /*标签缩小*/
  1230. .section-floor-content .floor-main-item .page_main_price .price_text_tag {-webkit-transform: scale(0.8) translateX(-18px);-ms-transform: scale(0.8) translateX(-18px);transform: scale(0.8) translateX(-18px)}
  1231. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag,
  1232. .section-floor-content .floor-main-item .page_main_price .price_text_tag .listTag{-webkit-transform: translateX(4px);-ms-transform: translateX(4px);transform: translateX(4px)}
  1233. /*会员标签*/
  1234. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag{width:100%;height:22px;letter-spacing:0}
  1235. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag .svip-icon{position:relative;z-index:9;display:inline-block;width:30px;height:22px;text-align:center;line-height:22px;font-size:12px;font-weight:400;color:#F0CB72;opacity:1;background:#333333;border-radius: 0 11px;padding: 0 2px;}
  1236. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag .svip-icon.btr{border-radius:2px 8px 0px 2px}
  1237. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag .svip-price{z-index:1;position:relative;display:inline-block;padding-left:24px;padding-right:2px;margin-left:-27px;line-height:22px;background:#F0CB72;opacity:1;border-radius:2px;font-size:12px}
  1238. .section-floor-content .floor-main-item .page_main_price .price_text_tag .svip-tag .svip-price span{color: #333}
  1239. .section-floor-content .floor-main-item .page_main_price .main_price_none{
  1240. width:100%;
  1241. height:24px;
  1242. box-sizing:border-box;
  1243. float:left;
  1244. margin-top:2px;
  1245. }
  1246. .section-floor-content .floor-main-item .page_main_price .main_price_none.sec{
  1247. margin-top:25px;
  1248. }
  1249. .section-floor-content .floor-main-item .page_main_price .main_price_none .listTag{
  1250. margin:0
  1251. }
  1252. .section-floor-content .floor-main-item .page_main_price .price_grade,
  1253. .section-floor-content .floor-main-item .page_main_price .price_grade_shop{
  1254. float:left;
  1255. margin:0;
  1256. height:22px;
  1257. line-height:22px;
  1258. color:#4A4F58;
  1259. font-style:normal;
  1260. font-size:14px;
  1261. }
  1262. .section-floor-content .floor-main-item .page_main_price .price_grade_club{
  1263. float:left;
  1264. margin:0;
  1265. height:22px;
  1266. line-height:22px;
  1267. font-style:normal;
  1268. font-size:14px;
  1269. color: #f94b4b;
  1270. }
  1271. .section-floor-content .floor-main-item .page_main_price .price_grade{
  1272. float: unset;
  1273. }
  1274. .section-floor-content .floor-main-item .page_main_price .price_grade span,
  1275. .section-floor-content .floor-main-item .page_main_price .price_grade_shop span,
  1276. .section-floor-content .floor-main-item .page_main_price .price_grade_club span{display:inline-block;float:left}
  1277. .section-floor-content .floor-main-item .page_main_price .icon:before{width:67px;height:22px}
  1278. .section-floor-content .floor-main-item .page_main_price .price_grade_1:before{background-position:0 -708px}
  1279. .section-floor-content .floor-main-item .page_main_price .price_grade_2:before{background-position:0 -736px}
  1280. .section-floor-content .floor-main-item .page_main_price .price_grade_3:before{background-position:0 -764px}
  1281. .section-floor-content .floor-main-item .page_main_price .price_grade_4:before{background-position:0 -791px}
  1282. .section-floor-content .floor-main-item .page_main_price .price_grade_5:before{background-position:0 -818px}