detail.less 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  1. @charset "utf-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. font-family: "微软雅黑", "microsoft yahei";
  6. }
  7. ul,
  8. ol {
  9. list-style: none;
  10. }
  11. a:active {
  12. text-decoration: none;
  13. }
  14. a:hover {
  15. text-decoration: none;
  16. }
  17. a:visited {
  18. text-decoration: none;
  19. }
  20. a:link {
  21. text-decoration: none;
  22. }
  23. a:focus {
  24. text-decoration: none;
  25. }
  26. body {
  27. position: relative;
  28. }
  29. .clearfix {
  30. overflow: hidden;
  31. }
  32. .clearfix_2::after {
  33. content: '';
  34. display: block;
  35. height: 0;
  36. visibility: hidden;
  37. clear: both;
  38. }
  39. .hiddenColor {
  40. visibility: hidden;
  41. }
  42. .hand {
  43. cursor: pointer;
  44. }
  45. .aTag_parent {
  46. position: relative;
  47. }
  48. .aTag_parent>a,
  49. .aTag {
  50. display: block;
  51. width: 100%;
  52. height: 100%;
  53. position: absolute;
  54. z-index: 99;
  55. border: 0px;
  56. top: 0px;
  57. left: 0px;
  58. background: rgba(0, 0, 0, 0);
  59. }
  60. .dot1 {
  61. display: block;
  62. word-break: keep-all;
  63. white-space: nowrap;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. }
  67. .dot2 {
  68. overflow: hidden;
  69. display: -webkit-box;
  70. -webkit-box-orient: vertical;
  71. -webkit-line-clamp: 2;
  72. }
  73. .dot3 {
  74. overflow: hidden;
  75. display: -webkit-box;
  76. -webkit-box-orient: vertical;
  77. -webkit-line-clamp: 3;
  78. }
  79. input,
  80. img {
  81. border: none;
  82. }
  83. .cover100 img {
  84. display: block;
  85. width: 100%;
  86. height: 100%;
  87. object-fit: cover;
  88. }
  89. .back100 {
  90. background-size: 100% 100%;
  91. background-repeat: no-repeat;
  92. }
  93. article,
  94. aside,
  95. footer,
  96. header,
  97. time,
  98. video,
  99. main,
  100. nav,
  101. h4,
  102. h3,
  103. section {
  104. display: block;
  105. }
  106. .index_main {
  107. margin: 0 auto 30px;
  108. }
  109. .slow_6 {
  110. -webkit-transition: all .6s;
  111. -moz-transition: all .6s;
  112. -ms-transition: all .6s;
  113. -o-transition: all .6s;
  114. transition: all .6s;
  115. }
  116. .index_main {
  117. width: 1200px;
  118. }
  119. .shop_head {
  120. margin: 30px auto 0px;
  121. }
  122. .shop_head_left {
  123. float: left;
  124. width: 322px;
  125. margin-right: 33px;
  126. .shop_head_left_a {
  127. width: 322px;
  128. display: block;
  129. }
  130. }
  131. .shop_head_img {
  132. width: 322px;
  133. display: block;
  134. }
  135. .shop_head_form_out {
  136. width: 550px;
  137. float: left;
  138. .shop_head_form {
  139. margin-top: 37px;
  140. display: block;
  141. width: 547px;
  142. border: solid 1px #A01C0E;
  143. height: 40px;
  144. box-sizing: border-box;
  145. overflow: hidden;
  146. }
  147. .shop_head_btn {
  148. float: right;
  149. width: 52px;
  150. height: 100%;
  151. border: solid 1px #fff;
  152. box-sizing: border-box;
  153. background: url(@/public/img/3.png) no-repeat center center #A01C0E;
  154. background-size: 22px 22px;
  155. }
  156. .shop_head_inp {
  157. display: block;
  158. text-indent: 11px;
  159. height: 40px;
  160. line-height: 40px;
  161. width: 490px;
  162. }
  163. .shop_head_form_foot {
  164. width: 550px;
  165. margin-top: 10px;
  166. }
  167. .shop_head_form_foot_a {
  168. float: left;
  169. height: 18px;
  170. line-height: 18px;
  171. color: #999;
  172. font-size: 14px;
  173. margin-right: 10px;
  174. }
  175. .shop_head_form_foot_a:nth-of-type(1) {
  176. color: #A01C0E;
  177. }
  178. .shop_head_form_foot_a:hover {
  179. color: #A01C0E;
  180. }
  181. }
  182. .shop_head_right {
  183. float: right;
  184. margin-top: 37px;
  185. position: relative;
  186. .shop_head_right_btn {
  187. float: right;
  188. width: 120px;
  189. height: 40px;
  190. line-height: 40px;
  191. color: #666;
  192. font-size: 14px;
  193. margin-left: 10px;
  194. text-indent: 52px;
  195. border: 1px solid #E9E9E9;
  196. background: no-repeat 20px center #F4F4F4;
  197. background-size: 24px 24px;
  198. }
  199. .shop_head_right_btn:nth-of-type(1) {
  200. background-image: url(@/public/img/4.png);
  201. }
  202. .shop_head_right_btn:nth-of-type(2) {
  203. background-image: url(@/public/img/5.png);
  204. }
  205. .shop_head_right_btn:hover {
  206. color: #fff;
  207. background: no-repeat 20px center #A01C0E;
  208. background-size: 24px 24px;
  209. }
  210. .shop_head_right_btn:nth-of-type(1):hover {
  211. background-image: url(@/public/img/4a.png);
  212. }
  213. .shop_head_right_btn:nth-of-type(2):hover {
  214. background-image: url(@/public/img/5a.png);
  215. }
  216. .shop_head_right_btn_1_only {
  217. color: #fff;
  218. background: no-repeat 20px center #A01C0E;
  219. background-size: 24px 24px;
  220. background-image: url(@/public/img/4a.png) !important;
  221. }
  222. .shop_head_right_btn_2_only {
  223. color: #fff;
  224. background: no-repeat 20px center #A01C0E;
  225. background-size: 24px 24px;
  226. background-image: url(@/public/img/5a.png) !important;
  227. }
  228. .shop_head_right_btn:hover .shop_head_right_out {
  229. display: block;
  230. }
  231. }
  232. .shop_head_right_box {
  233. background: #fff;
  234. height: 1111px;
  235. margin-top: 20px;
  236. }
  237. .shop_alert_out {
  238. position: absolute;
  239. width: 1036px;
  240. right: 0px;
  241. top: 99%;
  242. z-index: 111;
  243. }
  244. .shop_alert_box {
  245. background: #fff;
  246. box-sizing: border-box;
  247. padding: 0px 20px;
  248. border: solid 1px #A01C0E;
  249. width: 100%;
  250. margin-top: 20px;
  251. }
  252. .shop_alert_head_box {}
  253. .shop_alert_head_name_1 {
  254. float: left;
  255. font-weight: bold;
  256. color: #A01C0E;
  257. font-size: 20px;
  258. margin-top: 30px;
  259. letter-spacing: 1px;
  260. }
  261. .shop_alert_head_name_2 {
  262. float: left;
  263. color: #333;
  264. font-size: 16px;
  265. margin: 35px 0px 0px 10px;
  266. position: relative;
  267. padding-left: 22px;
  268. font-weight: bold;
  269. }
  270. .shop_alert_head_name_2::after {
  271. content: '';
  272. display: block;
  273. width: 14px;
  274. height: 10px;
  275. position: absolute;
  276. left: 0px;
  277. bottom: 3px;
  278. background: url(@/public/img/16.png) no-repeat left 0px;
  279. background-size: 100% 100%;
  280. }
  281. .shop_alert_head_btn_a {
  282. float: right;
  283. height: 40px;
  284. line-height: 40px;
  285. color: #fff;
  286. font-size: 14px;
  287. padding: 0px 20px 0px 36px;
  288. margin-top: 23px;
  289. background: url(@/public/img/14.png) no-repeat 18px center #A01C0E;
  290. background-size: 14px auto;
  291. }
  292. .shop_alert_ul {
  293. margin: 28px auto 0px;
  294. width: 980px;
  295. }
  296. .shop_alert_li {
  297. margin-bottom: 11px;
  298. display: flex;
  299. .shop_alert_li_label {
  300. width: 150px;
  301. line-height: 21px;
  302. color: #333;
  303. font-size: 16px;
  304. padding-right: 24px;
  305. font-weight: bold;
  306. position: relative;
  307. box-sizing: border-box;
  308. margin-right: 20px;
  309. }
  310. .shop_alert_li_label::after {
  311. content: '';
  312. display: block;
  313. position: absolute;
  314. right: 0px;
  315. top: 0px;
  316. width: 22px;
  317. height: 22px;
  318. background: url(@/public/img/15.png) no-repeat right 0px;
  319. background-size: 100% 100%;
  320. }
  321. .shop_alert_li_panel {}
  322. .shop_alert_li_panel_a {
  323. float: left;
  324. height: 21px;
  325. line-height: 21px;
  326. color: #666;
  327. font-size: 16px;
  328. margin: 0px 25px 10px 0px;
  329. }
  330. }
  331. .shop_alert_li_panel_a:hover {
  332. color: #A01C0E;
  333. }
  334. .shop_alert_1_index {
  335. margin-top: 20px;
  336. }
  337. .shop_alert_img_ul {
  338. margin-top: 30px;
  339. }
  340. .shop_alert_img_li {
  341. float: left;
  342. width: 314px;
  343. margin: 0px 26px 30px 0px;
  344. box-sizing: border-box;
  345. .shop_alert_img_li_a {
  346. display: block;
  347. width: 100%;
  348. }
  349. .shop_alert_img_li_img {
  350. width: 130px;
  351. height: 130px;
  352. margin-right: 10px;
  353. float: left;
  354. }
  355. .shop_alert_img_li_right {
  356. width: 173px;
  357. float: right;
  358. }
  359. .shop_alert_img_li_h4 {
  360. height: 18px;
  361. line-height: 18px;
  362. color: #333;
  363. font-size: 14px;
  364. font-weight: bold;
  365. margin-top: 7px;
  366. }
  367. .shop_alert_img_li_dot3 {
  368. height: 48px;
  369. line-height: 16px;
  370. color: #666;
  371. font-size: 12px;
  372. margin-top: 13px;
  373. }
  374. .shop_alert_img_li_time {
  375. float: left;
  376. height: 26px;
  377. line-height: 26px;
  378. color: rgba(51, 51, 51, 0.4);
  379. font-size: 12px;
  380. margin-top: 18px;
  381. background: #f7f7f7;
  382. padding: 0px 4px;
  383. }
  384. }
  385. .shop_alert_img_li:nth-of-type(3n) {
  386. margin-right: 0;
  387. }
  388. .shop_alert_img_li_a:hover * {
  389. color: #A01C0E;
  390. }
  391. .shop_banner {
  392. width: 1200px;
  393. margin: 20px auto 0px;
  394. }
  395. .shop_banner_a {
  396. display: block;
  397. width: 1200px;
  398. height: 90px;
  399. overflow: hidden;
  400. }
  401. .shop_banner_img {
  402. display: block;
  403. width: 1200px;
  404. }
  405. .shop_nav {
  406. border: solid 1px #E9E9E9;
  407. background: #fafafa;
  408. margin-top: 20px;
  409. }
  410. .shop_nav_head {
  411. float: left;
  412. height: 28px;
  413. width: 138px;
  414. margin: 30px 52px 0px 25px;
  415. }
  416. .shop_nav_head_a {
  417. display: block;
  418. height: 28px;
  419. width: 138px;
  420. background: url(@/public/img/7.png) no-repeat left top;
  421. background-size: 100% 100%;
  422. }
  423. .shop_nav_in {
  424. float: left;
  425. }
  426. .shop_nav_in_a {
  427. float: left;
  428. height: 75px;
  429. line-height: 75px;
  430. color: #333;
  431. font-size: 16px;
  432. background: #f8f5f5;
  433. width: 118px;
  434. border-bottom: solid 5px #A01C0E;
  435. font-weight: bold;
  436. margin: 5px 0;
  437. text-align: center;
  438. }
  439. .shop_nav_in_a:nth-of-type(4) {
  440. margin-right: 8px;
  441. }
  442. .shop_nav_in_a:hover {
  443. color: #A01C0E;
  444. }
  445. .shop_name_in {
  446. float: left;
  447. height: 40px;
  448. width: 1046px;
  449. float: left;
  450. box-sizing: border-box;
  451. }
  452. .shop_name_a {
  453. float: left;
  454. height: 27px;
  455. line-height: 27px;
  456. color: #222;
  457. font-size: 20px;
  458. position: relative;
  459. margin: 7px 14.5px 0;
  460. padding: 0px 10px;
  461. }
  462. .shop_name_a::after {
  463. content: '/';
  464. display: block;
  465. position: absolute;
  466. top: 0px;
  467. right: -18px;
  468. height: 100%;
  469. line-height: 27px;
  470. color: #E9E9E9;
  471. font-size: 20px;
  472. }
  473. .shop_name_a:nth-last-of-type(1)::after {
  474. content: '';
  475. display: none;
  476. }
  477. .shop_name_a_only {
  478. background: #A01C0E;
  479. color: #fff;
  480. }
  481. .shop_name_out {
  482. margin-top: 20px;
  483. }
  484. .shop_name_box {
  485. border-top: solid 1px #fff;
  486. .shop_name_box_a {
  487. height: 44px;
  488. line-height: 44px;
  489. color: #fff;
  490. font-weight: bold;
  491. font-size: 20px;
  492. }
  493. }
  494. .shop_name {
  495. float: left;
  496. height: 44px;
  497. line-height: 44px;
  498. color: #fff;
  499. font-weight: bold;
  500. position: relative;
  501. z-index: 11;
  502. text-align: center;
  503. font-size: 20px;
  504. background: #A01C0E;
  505. padding: 0px 14px;
  506. }
  507. .shop_name_right {
  508. height: 40px;
  509. border-bottom: 1px solid #E8E9EC;
  510. margin-top: 4px;
  511. background: #F8F8F8;
  512. position: relative;
  513. z-index: 2;
  514. }
  515. .shop_name_right::after {
  516. content: '';
  517. display: block;
  518. position: absolute;
  519. top: 0px;
  520. right: 0px;
  521. height: 100%;
  522. width: 16px;
  523. background: url(@/public/img/9.png) no-repeat 0px bottom #fff;
  524. background-size: 100% auto;
  525. }
  526. .shop_name_btn {
  527. width: 24px;
  528. height: 24px;
  529. float: right;
  530. margin: 10px 22px 0px 0px;
  531. background: url(@/public/img/8.png) no-repeat center center;
  532. border-radius: 50%;
  533. background-size: 100% 100%;
  534. }
  535. .shop_2_left {
  536. float: left;
  537. width: 900px;
  538. }
  539. .shop_3_right {
  540. float: right;
  541. width: 280px;
  542. }
  543. .shop_1_box {
  544. margin: 30px auto 0px;
  545. }
  546. .shop_2_box {
  547. margin: 30px auto 0px;
  548. }
  549. .shop_3_box {
  550. margin: 0px auto 0px;
  551. }
  552. .shop_4_box {
  553. margin: 4px auto 0px;
  554. }
  555. .shop_5_box {
  556. margin: 4px auto 0px;
  557. }
  558. .categ_crumb_box {
  559. margin-top: 20px;
  560. border-bottom: solid 1px #D9D9D9;
  561. padding-bottom: 20px;
  562. position: relative;
  563. }
  564. .categ_crumb_box2 {
  565. margin-top: 20px;
  566. padding-bottom: 20px;
  567. position: relative;
  568. }
  569. .categ_crumb_left {
  570. float: left;
  571. height: 21px;
  572. line-height: 21px;
  573. color: #999;
  574. font-size: 16px;
  575. }
  576. .categ_crumb_left_a {
  577. display: inline-block;
  578. height: 21px;
  579. line-height: 21px;
  580. color: #999;
  581. font-size: 16px;
  582. }
  583. .categ_crumb_left_text {
  584. display: inline-block;
  585. height: 21px;
  586. line-height: 21px;
  587. color: #333;
  588. font-size: 16px;
  589. }
  590. .categ_3_index {
  591. margin-top: 28px;
  592. }
  593. .categ_ul_img_1 {
  594. margin-top: 20px;
  595. overflow: hidden;
  596. }
  597. .categ_li_img_1 {
  598. float: left;
  599. margin: 0px 24px 20px 0px;
  600. width: 180px;
  601. position: relative;
  602. .categ_li_img_1_a {}
  603. .categ_li_img_1_img {
  604. display: block;
  605. width: 180px;
  606. height: 180px;
  607. }
  608. .categ_li_img_1_dot2 {
  609. width: 168px;
  610. margin: 10px auto 0px;
  611. height: 32px;
  612. line-height: 16px;
  613. color: #333;
  614. font-size: 14px;
  615. }
  616. }
  617. .categ_li_img_1:nth-of-type(6n) {
  618. margin-right: 0px;
  619. }
  620. .categ_li_img_1_hover_dot1 {
  621. width: 152px;
  622. position: absolute;
  623. left: 50%;
  624. margin-left: -76px;
  625. bottom: 13px;
  626. font-size: 14px;
  627. background: linear-gradient(to right, #FFE1AA, #F9F4E3, #FFE1AA);
  628. -webkit-background-clip: text;
  629. color: transparent;
  630. }
  631. .categ_li_img_1:hover .categ_li_img_1_dot2 {
  632. color: #A01C0E;
  633. }
  634. .categ_li_img_1:nth-of-type(1) .categ_li_img_1_dot2::after {
  635. content: '';
  636. display: block;
  637. position: absolute;
  638. background: url(@/public/img/18.png) no-repeat left 0px;
  639. background-size: 100% 100%;
  640. width: 32px;
  641. height: 32px;
  642. left: 10px;
  643. top: 0px;
  644. z-index: 11;
  645. }
  646. .categ_li_img_1:nth-of-type(2) .categ_li_img_1_dot2::after {
  647. content: '';
  648. display: block;
  649. position: absolute;
  650. background: url(@/public/img/19.png) no-repeat left 0px;
  651. background-size: 100% 100%;
  652. width: 32px;
  653. height: 32px;
  654. left: 10px;
  655. top: 0px;
  656. z-index: 11;
  657. }
  658. .categ_li_img_1:nth-of-type(3) .categ_li_img_1_dot2::after {
  659. content: '';
  660. display: block;
  661. position: absolute;
  662. background: url(@/public/img/20.png) no-repeat left 0px;
  663. background-size: 100% 100%;
  664. width: 32px;
  665. height: 32px;
  666. left: 10px;
  667. top: 0px;
  668. z-index: 11;
  669. }
  670. .categ_ul_img_2 {
  671. margin-top: 20px;
  672. overflow: hidden;
  673. }
  674. .categ_li_img_2 {
  675. float: left;
  676. margin: 0px 24px 20px 0px;
  677. width: 180px;
  678. position: relative;
  679. .categ_li_img_2_a {}
  680. .categ_li_img_2_img {
  681. display: block;
  682. width: 180px;
  683. height: 180px;
  684. }
  685. .categ_li_img_2_dot2 {
  686. width: 168px;
  687. margin: 10px auto 0px;
  688. height: 32px;
  689. line-height: 16px;
  690. color: #333;
  691. font-size: 14px;
  692. }
  693. .categ_li_img_2:nth-of-type(6n) {
  694. margin-right: 0px;
  695. }
  696. }
  697. .categ_li_img_2_hover_dot1 {
  698. width: 152px;
  699. position: absolute;
  700. left: 50%;
  701. margin-left: -76px;
  702. bottom: 13px;
  703. font-size: 14px;
  704. background: linear-gradient(to right, #FFE1AA, #F9F4E3, #FFE1AA);
  705. -webkit-background-clip: text;
  706. color: transparent;
  707. }
  708. .categ_li_img_2:hover .categ_li_img_2_dot2 {
  709. color: #A01C0E;
  710. }
  711. /* 供应商品 */
  712. .supply_1_index {
  713. margin-top: 30px;
  714. }
  715. .supply_1_index_qiugou {
  716. display: flex;
  717. justify-content: space-between;
  718. }
  719. .supply_1_index_qiugou_left {
  720. width: 900px;
  721. padding-top: 30px;
  722. border-top: solid 1px #E9E9E9;
  723. }
  724. .supply_1_img {
  725. float: left;
  726. width: 330px;
  727. height: 330px;
  728. }
  729. .supply_1_right {
  730. float: right;
  731. width: 845px;
  732. }
  733. .supply_1_right_qiugou {
  734. float: right;
  735. width: 545px;
  736. }
  737. .supply_1_h4 {
  738. line-height: 29px;
  739. color: #333;
  740. font-size: 22px;
  741. }
  742. .supply_1_title_box {}
  743. .supply_1_title {
  744. float: left;
  745. height: 31px;
  746. line-height: 31px;
  747. color: #999;
  748. font-size: 16px;
  749. padding: 0px 10px;
  750. margin: 14px 20px 0px 0px;
  751. background: #F8F8F8;
  752. }
  753. .supply_1_ul {
  754. margin-top: 10px;
  755. }
  756. .supply_1_ul_qiugou {
  757. margin-top: 7px;
  758. }
  759. .supply_1_li {
  760. display: flex;
  761. margin-bottom: 16px;
  762. .supply_1_li_label {
  763. line-height: 21px;
  764. color: #999;
  765. font-size: 16px;
  766. min-width: 64px;
  767. margin-right: 15px;
  768. }
  769. .supply_1_li_text {
  770. line-height: 21px;
  771. color: #333;
  772. font-size: 16px;
  773. }
  774. }
  775. .supply_1_li_qiugou {
  776. display: flex;
  777. margin-top: 21px;
  778. .supply_1_li_label {
  779. line-height: 21px;
  780. color: #999;
  781. font-size: 16px;
  782. min-width: 64px;
  783. margin-right: 15px;
  784. }
  785. .supply_1_li_text {
  786. line-height: 21px;
  787. color: #333;
  788. font-size: 16px;
  789. }
  790. }
  791. .supply_head_box {
  792. border-bottom: solid 1px #E9E9E9;
  793. padding-bottom: 22px;
  794. margin-top: 20px;
  795. border-top: solid 1px rgba(0, 0, 0, 0);
  796. .supply_head_a {
  797. float: left;
  798. font-size: 20px;
  799. color: #999;
  800. height: 18px;
  801. line-height: 18px;
  802. margin-right: 40px;
  803. cursor: pointer;
  804. }
  805. .supply_head_a:nth-of-type(1) {
  806. border-left: solid 3px #A01C0E;
  807. text-indent: 15px;
  808. }
  809. }
  810. .supply_head_a_only {
  811. color: #333 !important;
  812. }
  813. .supply_art_box_p {
  814. line-height: 35px;
  815. font-size: 20px;
  816. }
  817. .supply_art_box_img {
  818. width: 100%;
  819. display: flex;
  820. align-items: center;
  821. img {
  822. width: 210px;
  823. height: 210px;
  824. margin-right:37px;
  825. }
  826. }
  827. .supply_art_out {
  828. margin-top: 20px;
  829. }
  830. .supply_art_out>* {
  831. color: #333;
  832. line-height: 25px;
  833. font-size: 20px;
  834. }
  835. .supply_art_box {}
  836. @media screen and (min-width:1200px) {
  837. /*pc_1440*/
  838. @media screen and (max-width:1440px) {
  839. /*1200*/
  840. }
  841. .pc_none {
  842. display: none;
  843. }
  844. }
  845. @media screen and (max-width:599px) {}
  846. @media screen and (max-width:320px) {}
  847. //供应求购板块
  848. .shop_3_right {
  849. float: right;
  850. width: 280px;
  851. }
  852. .choice_1_box {
  853. border: solid 1px #E9E9E9;
  854. box-sizing: border-box;
  855. .choice_1_btn_box {
  856. height: 64px;
  857. }
  858. .choice_1_btn {
  859. height: 64px;
  860. width: 50%;
  861. float: left;
  862. }
  863. .choice_1_btn_a {
  864. display: block;
  865. width: 100%;
  866. line-height: 64px;
  867. color: #333;
  868. font-style: italic;
  869. height: 64px;
  870. background: #F8F8F8;
  871. text-align: center;
  872. font-size: 16px;
  873. box-sizing: border-box;
  874. font-family: DingTalk JinBuTi, DingTalk JinBuTi;
  875. letter-spacing: 1px;
  876. cursor: pointer;
  877. }
  878. .choice_1_btn_only {}
  879. .choice_1_btn_only .choice_1_btn_a {
  880. background: #fff;
  881. border-bottom: solid 1px #fff;
  882. }
  883. }
  884. .shop_ul_img_2 {
  885. width: 252px;
  886. margin: 20px auto 0px;
  887. }
  888. .shop_li_img_2 {
  889. height: 22px;
  890. margin-bottom: 22px;
  891. .shop_li_img_2_a {
  892. display: block;
  893. height: 22px;
  894. display: flex;
  895. }
  896. .shop_li_img_2_num {
  897. width: 22px;
  898. max-width: 22px;
  899. min-width: 22px;
  900. height: 22px;
  901. line-height: 22px;
  902. text-align: center;
  903. background: #ccc;
  904. color: #F6F6F6;
  905. font-size: 16px;
  906. border-radius: 4px;
  907. margin-right: 10px;
  908. }
  909. .shop_li_img_2_right {
  910. height: 22px;
  911. }
  912. .shop_li_img_2_img {
  913. display: none;
  914. }
  915. .shop_li_img_2_text {
  916. height: 22px;
  917. line-height: 22px;
  918. color: #333;
  919. font-size: 16px;
  920. display: block;
  921. word-break: keep-all;
  922. white-space: nowrap;
  923. overflow: hidden;
  924. text-overflow: ellipsis;
  925. }
  926. }
  927. .shop_li_img_2:nth-of-type(1) {
  928. height: auto;
  929. margin-bottom: 15px;
  930. }
  931. .shop_li_img_2:nth-of-type(1) .shop_li_img_2_a {
  932. height: auto;
  933. }
  934. .shop_li_img_2:nth-of-type(1) .shop_li_img_2_right {
  935. height: auto;
  936. display: flex;
  937. border-bottom: solid 1px #E9E9E9;
  938. padding-bottom: 10px;
  939. }
  940. .shop_li_img_2:nth-of-type(1) .shop_li_img_2_img {
  941. display: block;
  942. width: 45px;
  943. height: 45px;
  944. margin-right: 10px;
  945. }
  946. .shop_li_img_2:nth-of-type(1) .shop_li_img_2_text {
  947. height: 44px;
  948. line-height: 22px;
  949. color: #333;
  950. font-size: 16px;
  951. font-weight: bold;
  952. overflow: hidden;
  953. display: -webkit-box !important;
  954. -webkit-box-orient: vertical;
  955. -webkit-line-clamp: 2;
  956. word-break: break-all;
  957. white-space: wrap;
  958. }
  959. .shop_li_img_2:nth-of-type(1) .shop_li_img_2_num {
  960. background: #A01C0E;
  961. color: #fff;
  962. }
  963. .shop_li_img_2:nth-of-type(2) .shop_li_img_2_num {
  964. background: #FFC62E;
  965. color: #fff;
  966. }
  967. .shop_li_img_2:nth-of-type(3) .shop_li_img_2_num {
  968. background: #E98008;
  969. color: #fff;
  970. }
  971. .shop_li_img_2:hover .shop_li_img_2_text {
  972. color: #A01C0E;
  973. }