list.less 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165
  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. .shop_head_left {
  122. float: left;
  123. width: 322px;
  124. margin-right: 33px;
  125. }
  126. .shop_head_left_a {
  127. width: 322px;
  128. display: block;
  129. }
  130. .shop_head_img {
  131. width: 322px;
  132. display: block;
  133. }
  134. .shop_head_form_out {
  135. width: 550px;
  136. float: left;
  137. }
  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. .shop_head_right {
  182. float: right;
  183. margin-top: 37px;
  184. position: relative;
  185. }
  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. .shop_head_right_box {
  232. background: #fff;
  233. height: 1111px;
  234. margin-top: 20px;
  235. }
  236. .shop_alert_out {
  237. position: absolute;
  238. width: 1036px;
  239. right: 0px;
  240. top: 99%;
  241. z-index: 111;
  242. }
  243. .shop_alert_box {
  244. background: #fff;
  245. box-sizing: border-box;
  246. padding: 0px 20px;
  247. border: solid 1px #A01C0E;
  248. width: 100%;
  249. margin-top: 20px;
  250. }
  251. .shop_alert_head_box {}
  252. .shop_alert_head_name_1 {
  253. float: left;
  254. font-weight: bold;
  255. color: #A01C0E;
  256. font-size: 20px;
  257. margin-top: 30px;
  258. letter-spacing: 1px;
  259. }
  260. .shop_alert_head_name_2 {
  261. float: left;
  262. color: #333;
  263. font-size: 16px;
  264. margin: 35px 0px 0px 10px;
  265. position: relative;
  266. padding-left: 22px;
  267. font-weight: bold;
  268. }
  269. .shop_alert_head_name_2::after {
  270. content: '';
  271. display: block;
  272. width: 14px;
  273. height: 10px;
  274. position: absolute;
  275. left: 0px;
  276. bottom: 3px;
  277. background: url(@/public/img/16.png) no-repeat left 0px;
  278. background-size: 100% 100%;
  279. }
  280. .shop_alert_head_btn_a {
  281. float: right;
  282. height: 40px;
  283. line-height: 40px;
  284. color: #fff;
  285. font-size: 14px;
  286. padding: 0px 20px 0px 36px;
  287. margin-top: 23px;
  288. background: url(@/public/img/14.png) no-repeat 18px center #A01C0E;
  289. background-size: 14px auto;
  290. }
  291. .shop_alert_ul {
  292. margin: 28px auto 0px;
  293. width: 980px;
  294. }
  295. .shop_alert_li {
  296. margin-bottom: 11px;
  297. display: flex;
  298. }
  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. .shop_alert_li_panel_a:hover {
  331. color: #A01C0E;
  332. }
  333. .shop_alert_1_index {
  334. margin-top: 20px;
  335. }
  336. .shop_alert_img_ul {
  337. margin-top: 30px;
  338. }
  339. .shop_alert_img_li {
  340. float: left;
  341. width: 314px;
  342. margin: 0px 26px 30px 0px;
  343. box-sizing: border-box;
  344. }
  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. .shop_alert_img_li:nth-of-type(3n) {
  385. margin-right: 0;
  386. }
  387. .shop_alert_img_li_a:hover * {
  388. color: #A01C0E;
  389. }
  390. }
  391. .shop_banner {
  392. width: 1200px;
  393. overflow: hidden;
  394. margin: 20px auto 0px;
  395. .shop_banner_a {
  396. display: block;
  397. width: 1200px;
  398. height: 90px;
  399. }
  400. .shop_banner_img {
  401. display: block;
  402. width: 1200px;
  403. }
  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. .shop_nav_head_a {
  416. display: block;
  417. height: 28px;
  418. width: 138px;
  419. background: url(@/public/img/7.png) no-repeat left top;
  420. background-size: 100% 100%;
  421. }
  422. }
  423. .shop_nav_in {
  424. float: left;
  425. .shop_nav_in_a {
  426. float: left;
  427. height: 75px;
  428. line-height: 75px;
  429. color: #333;
  430. font-size: 16px;
  431. background: #f8f5f5;
  432. width: 118px;
  433. border-bottom: solid 5px #A01C0E;
  434. font-weight: bold;
  435. margin: 5px 0;
  436. text-align: center;
  437. }
  438. .shop_nav_in_a:nth-of-type(4) {
  439. margin-right: 8px;
  440. }
  441. .shop_nav_in_a:hover {
  442. color: #A01C0E;
  443. }
  444. }
  445. .shop_name_in {
  446. float: left;
  447. height: 40px;
  448. width: 1046px;
  449. float: left;
  450. box-sizing: border-box;
  451. .shop_name_a {
  452. float: left;
  453. height: 27px;
  454. line-height: 27px;
  455. color: #222;
  456. font-size: 20px;
  457. position: relative;
  458. margin: 7px 14.5px 0;
  459. padding: 0px 10px;
  460. }
  461. .shop_name_a::after {
  462. content: '/';
  463. display: block;
  464. position: absolute;
  465. top: 0px;
  466. right: -18px;
  467. height: 100%;
  468. line-height: 27px;
  469. color: #E9E9E9;
  470. font-size: 20px;
  471. }
  472. .shop_name_a:nth-last-of-type(1)::after {
  473. content: '';
  474. display: none;
  475. }
  476. .shop_name_a_only {
  477. background: #A01C0E;
  478. color: #fff;
  479. }
  480. }
  481. .shop_name_out {
  482. margin-top: 20px;
  483. }
  484. .shop_name_box {
  485. border-top: solid 1px #fff;
  486. }
  487. .shop_name_box_a {
  488. height: 44px;
  489. line-height: 44px;
  490. color: #fff;
  491. font-weight: bold;
  492. font-size: 20px;
  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_left {
  565. float: left;
  566. height: 21px;
  567. line-height: 21px;
  568. color: #999;
  569. font-size: 16px;
  570. .categ_crumb_left_a {
  571. display: inline-block;
  572. height: 21px;
  573. line-height: 21px;
  574. color: #999;
  575. font-size: 16px;
  576. }
  577. .categ_crumb_left_text {
  578. display: inline-block;
  579. height: 21px;
  580. line-height: 21px;
  581. color: #333;
  582. font-size: 16px;
  583. }
  584. }
  585. .categ_crumb_right {
  586. float: right;
  587. .categ_crumb_right_text {
  588. float: left;
  589. height: 21px;
  590. line-height: 21px;
  591. color: #333;
  592. font-size: 16px;
  593. }
  594. .categ_crumb_right_btn {
  595. float: left;
  596. width: 14px;
  597. height: 14px;
  598. background-image: url(@/public/img/17.png);
  599. margin: 5px 0px 0px 5px;
  600. }
  601. }
  602. .categ_crumb_panel {
  603. position: absolute;
  604. border: solid 1px #A01C0E;
  605. padding: 0px 30px 10px;
  606. background: #fff;
  607. right: 0px;
  608. top: 0px;
  609. box-sizing: border-box;
  610. width: 658px;
  611. top: 100%;
  612. .categ_crumb_panel_h4 {
  613. display: inline-block;
  614. height: 21px;
  615. line-height: 21px;
  616. color: #333;
  617. font-size: 16px;
  618. padding-right: 31px;
  619. margin-top: 20px;
  620. background: url(@/public/img/15.png) no-repeat right center;
  621. background-size: 21px 21px;
  622. }
  623. .categ_crumb_panel_btn_box {
  624. margin-top: 20px;
  625. }
  626. .categ_crumb_panel_btn {
  627. float: left;
  628. height: 21px;
  629. line-height: 21px;
  630. color: #666;
  631. font-size: 16px;
  632. font-weight: bold;
  633. margin: 0px 26.5px 11px 0px;
  634. }
  635. .categ_crumb_panel_btn:hover {
  636. color: #A01C0E;
  637. }
  638. .categ_crumb_panel_btn_only {
  639. color: #A01C0E;
  640. }
  641. }
  642. .categ_grey_box {
  643. box-sizing: border-box;
  644. border: solid 1px #E9E9E9;
  645. background: #F8F8F8;
  646. padding: 0px 20px 8px;
  647. width: 100%;
  648. margin-top: 15px;
  649. .categ_grey_head {
  650. height: 48px;
  651. line-height: 50px;
  652. color: #000;
  653. font-size: 18px;
  654. border-bottom: dashed 1px #E9E9E9;
  655. }
  656. .categ_grey_ul {
  657. margin: 10px 0px 0px -10px;
  658. }
  659. .categ_grey_btn {
  660. float: left;
  661. line-height: 29px;
  662. height: 29px;
  663. color: #333;
  664. font-size: 16px;
  665. margin: 0px 10px 7px;
  666. }
  667. .categ_grey_btn_only {
  668. background: #A01C0E;
  669. color: #fff;
  670. padding: 0px 5px 0px;
  671. margin: 0px 5px 7px;
  672. }
  673. }
  674. .categ_head_box {
  675. border-bottom: solid 1px #E9E9E9;
  676. padding-bottom: 22px;
  677. margin-top: 20px;
  678. border-top: solid 1px rgba(0, 0, 0, 0);
  679. .categ_head_a {
  680. float: left;
  681. text-indent: 15px;
  682. font-size: 20px;
  683. color: #333;
  684. border-left: solid 3px #A01C0E;
  685. height: 18px;
  686. line-height: 18px;
  687. }
  688. .categ_head_a_more {
  689. float: right;
  690. color: #999;
  691. font-size: 14px;
  692. margin-top: 0px;
  693. }
  694. }
  695. .categ_table {}
  696. .categ_table_head_box {
  697. height: 61px;
  698. border-bottom: solid 1px #E9E9E9;
  699. }
  700. .categ_table_head_box>.categ_table_td_1 {
  701. line-height: 61px;
  702. line-height: 61px;
  703. }
  704. .categ_table_head_box>.categ_table_td_2 {
  705. line-height: 61px;
  706. line-height: 61px;
  707. }
  708. .categ_table_head_box>.categ_table_td_3 {
  709. line-height: 61px;
  710. line-height: 61px;
  711. }
  712. .categ_table_head_box>.categ_table_td_4 {
  713. line-height: 61px;
  714. line-height: 61px;
  715. }
  716. .categ_table_td_1 {
  717. float: left;
  718. height: 100%;
  719. text-align: center;
  720. color: #666;
  721. font-size: 16px;
  722. width: 155px;
  723. margin-right: 126px;
  724. }
  725. .categ_table_td_2 {
  726. float: left;
  727. height: 100%;
  728. text-align: center;
  729. color: #666;
  730. font-size: 16px;
  731. width: 480px;
  732. margin-right: 124px;
  733. }
  734. .categ_table_td_3 {
  735. float: left;
  736. height: 100%;
  737. text-align: center;
  738. color: #666;
  739. font-size: 16px;
  740. width: 120px;
  741. margin-right: 62px;
  742. }
  743. .categ_table_td_4 {
  744. float: left;
  745. height: 100%;
  746. text-align: center;
  747. color: #666;
  748. font-size: 16px;
  749. width: 133px;
  750. }
  751. /* .categ_table_head_box>div:nth-of-type(even){background:aqua;} */
  752. .categ_table_li {
  753. height: 161px;
  754. box-sizing: border-box;
  755. padding: 15px 0px;
  756. border-bottom: solid 1px #E9E9E9;
  757. }
  758. .categ_table_td_1_img {
  759. display: block;
  760. width: 130px;
  761. height: 130px;
  762. margin: 0px auto;
  763. }
  764. .categ_table_li .categ_table_td_1 {
  765. line-height: 160px;
  766. line-height: 160px;
  767. }
  768. .categ_table_li .categ_table_td_2 {
  769. line-height: 160px;
  770. line-height: 160px;
  771. font-weight: bold;
  772. color: #333;
  773. }
  774. .categ_table_li .categ_table_td_3 {
  775. line-height: 160px;
  776. line-height: 160px;
  777. }
  778. .categ_table_li .categ_table_td_4 {
  779. line-height: 160px;
  780. line-height: 160px;
  781. }
  782. .categ_3_index {
  783. margin-top: 28px;
  784. }
  785. .categ_ul_img_1 {
  786. margin-top: 20px;
  787. }
  788. .categ_li_img_1 {
  789. float: left;
  790. margin: 0px 24px 20px 0px;
  791. width: 180px;
  792. position: relative;
  793. }
  794. .categ_li_img_1_a {}
  795. .categ_li_img_1_img {
  796. display: block;
  797. width: 180px;
  798. height: 180px;
  799. }
  800. .categ_li_img_1_dot2 {
  801. width: 168px;
  802. margin: 10px auto 0px;
  803. height: 32px;
  804. line-height: 16px;
  805. color: #333;
  806. font-size: 14px;
  807. }
  808. .categ_li_img_1:nth-of-type(6n) {
  809. margin-right: 0px;
  810. }
  811. .categ_li_img_1_hover_dot1 {
  812. width: 152px;
  813. position: absolute;
  814. left: 50%;
  815. margin-left: -76px;
  816. bottom: 13px;
  817. font-size: 14px;
  818. background: linear-gradient(to right, #FFE1AA, #F9F4E3, #FFE1AA);
  819. -webkit-background-clip: text;
  820. color: transparent;
  821. }
  822. .categ_li_img_1:hover .categ_li_img_1_dot2 {
  823. color: #A01C0E;
  824. }
  825. .categ_li_img_1:nth-of-type(1) .categ_li_img_1_dot2::after {
  826. content: '';
  827. display: block;
  828. position: absolute;
  829. background: url(@/public/img/18.png) no-repeat left 0px;
  830. background-size: 100% 100%;
  831. width: 32px;
  832. height: 32px;
  833. left: 10px;
  834. top: 0px;
  835. z-index: 11;
  836. }
  837. .categ_li_img_1:nth-of-type(2) .categ_li_img_1_dot2::after {
  838. content: '';
  839. display: block;
  840. position: absolute;
  841. background: url(@/public/img/19.png) no-repeat left 0px;
  842. background-size: 100% 100%;
  843. width: 32px;
  844. height: 32px;
  845. left: 10px;
  846. top: 0px;
  847. z-index: 11;
  848. }
  849. .categ_li_img_1:nth-of-type(3) .categ_li_img_1_dot2::after {
  850. content: '';
  851. display: block;
  852. position: absolute;
  853. background: url(@/public/img/20.png) no-repeat left 0px;
  854. background-size: 100% 100%;
  855. width: 32px;
  856. height: 32px;
  857. left: 10px;
  858. top: 0px;
  859. z-index: 11;
  860. }
  861. .categ_ul_img_2 {
  862. margin-top: 20px;
  863. }
  864. .categ_li_img_2 {
  865. float: left;
  866. margin: 0px 24px 20px 0px;
  867. width: 180px;
  868. position: relative;
  869. }
  870. .categ_li_img_2_a {}
  871. .categ_li_img_2_img {
  872. display: block;
  873. width: 180px;
  874. height: 180px;
  875. }
  876. .categ_li_img_2_dot2 {
  877. width: 168px;
  878. margin: 10px auto 0px;
  879. height: 32px;
  880. line-height: 16px;
  881. color: #333;
  882. font-size: 14px;
  883. }
  884. .categ_li_img_2:nth-of-type(6n) {
  885. margin-right: 0px;
  886. }
  887. .categ_li_img_2_hover_dot1 {
  888. width: 152px;
  889. position: absolute;
  890. left: 50%;
  891. margin-left: -76px;
  892. bottom: 13px;
  893. font-size: 14px;
  894. background: linear-gradient(to right, #FFE1AA, #F9F4E3, #FFE1AA);
  895. -webkit-background-clip: text;
  896. color: transparent;
  897. }
  898. .categ_li_img_2:hover .categ_li_img_2_dot2 {
  899. color: #A01C0E;
  900. }
  901. /*乡村网-商城-搜索-查看更多*/
  902. .search_head_text_box {
  903. height: 18px;
  904. line-height: 18px;
  905. color: #333;
  906. font-size: 16px;
  907. float: left;
  908. margin-left: 20px;
  909. }
  910. .search_head_text_red {
  911. color: #A01C0E;
  912. }
  913. .search_table_td_2 {
  914. float: left;
  915. height: 100%;
  916. width: 480px;
  917. margin-right: 124px;
  918. .search_table_td_2_head {
  919. height: 21px;
  920. line-height: 21px;
  921. color: #333;
  922. font-size: 16px;
  923. font-weight: bold;
  924. width: 480px;
  925. }
  926. .search_table_td_2_dot2 {
  927. max-height: 36px;
  928. line-height: 18px;
  929. color: #666;
  930. font-size: 14px;
  931. margin-top: 5px;
  932. width: 480px;
  933. }
  934. .search_table_td_2_dot3 {
  935. color: #999;
  936. font-size: 14px;
  937. height: 30px;
  938. line-height: 30px;
  939. margin-top: 5px;
  940. }
  941. .search_table_td_2_in {
  942. height: 129px;
  943. width: 480px;
  944. display: table-cell;
  945. vertical-align: middle;
  946. }
  947. }
  948. @media screen and (min-width:1200px) {
  949. /*pc_1440*/
  950. @media screen and (max-width:1440px) {
  951. /*1200*/
  952. }
  953. .pc_none {
  954. display: none;
  955. }
  956. }
  957. @media screen and (max-width:599px) {}
  958. @media screen and (max-width:320px) {}
  959. .pagination {
  960. margin: 40px auto 30px auto;
  961. height: 34px;
  962. margin-left: 141px;
  963. display: flex;
  964. justify-content: center;
  965. // 鼠标移入后字体颜色
  966. .el-pagination::v-deep :hover {
  967. color: #a01c0e;
  968. }
  969. .el-pagination.is-background::v-deep .btn-next,
  970. .el-pagination.is-background::v-deep .btn-prev {
  971. width: 70px;
  972. height: 34px;
  973. margin: 0px 10px;
  974. border-radius: 4px;
  975. }
  976. .el-pagination.is-background::v-deep .el-pager li {
  977. margin: 0px 10px;
  978. width: 38px;
  979. height: 34px;
  980. border-radius: 4px;
  981. }
  982. .el-pagination.is-background::v-deep .btn-next.is-active,
  983. .el-pagination.is-background::v-deep .btn-prev.is-active,
  984. .el-pagination.is-background::v-deep .el-pager li.is-active {
  985. background-color: #a01c0e;
  986. color: #fff;
  987. }
  988. }