index.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358
  1. .showpage {
  2. width: 100%;
  3. overflow: hidden;
  4. background: #F2F2F2
  5. }
  6. /*头部样式*/
  7. /*.header,
  8. #header {
  9. background-color: #E71F19;
  10. width: 100%;
  11. height: 45px;
  12. overflow: hidden;
  13. text-align: center;
  14. position: relative
  15. }*/
  16. .logo {
  17. display: block;
  18. color: #fff;
  19. width: 100%;
  20. text-align: center;
  21. height: 45px;
  22. font-size: 18px;
  23. line-height: 45px;
  24. }
  25. .logo img {
  26. display: block;
  27. height: 45px;
  28. margin: auto
  29. }
  30. input[type="submit"],
  31. input[type="reset"],
  32. input[type="button"],
  33. button {
  34. -webkit-appearance: none;
  35. }
  36. /*焦点图*/
  37. .scrollimg {
  38. position: relative;
  39. overflow: hidden;
  40. margin: 0px auto;
  41. /* 设置焦点图最大宽度 */
  42. }
  43. .scrollimg .hd {
  44. position: absolute;
  45. bottom: 0px;
  46. text-align: center;
  47. width: 100%;
  48. }
  49. .scrollimg .hd li {
  50. display: inline-block;
  51. width: .4em;
  52. height: .4em;
  53. margin: 0 .4em;
  54. -webkit-border-radius: .8em;
  55. -moz-border-radius: .8em;
  56. -ms-border-radius: .8em;
  57. -o-border-radius: .8em;
  58. border-radius: .8em;
  59. background: #FFF;
  60. filter: alpha(Opacity=60);
  61. opacity: .6;
  62. box-shadow: 0 0 1px #ccc;
  63. text-indent: -100px;
  64. overflow: hidden;
  65. }
  66. .scrollimg .hd li.on {
  67. width: 1em;
  68. filter: alpha(Opacity=90);
  69. opacity: .9;
  70. background: #f8f8f8;
  71. box-shadow: 0 0 2px #ccc;
  72. }
  73. .scrollimg .bd {
  74. position: relative;
  75. z-index: 0;
  76. }
  77. .scrollimg .bd li {
  78. position: relative;
  79. text-align: center;
  80. }
  81. .scrollimg .bd li img {
  82. background: url(images/loading.gif) center center no-repeat;
  83. vertical-align: top;
  84. width: 100%;
  85. /* 图片宽度100%,达到自适应效果 */
  86. }
  87. .scrollimg .bd li a {
  88. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  89. }
  90. /*首页搜索*/
  91. .index_search {
  92. position: relative;
  93. width: 100%;
  94. background: #fff;
  95. overflow: hidden
  96. }
  97. .index_search_mid {
  98. width: 80%;
  99. margin: auto;
  100. height: 40px;
  101. position: relative;
  102. }
  103. .index_search_mid input {
  104. display: block;
  105. width: 99%;
  106. height: 35px;
  107. line-height: normal;
  108. border: none;
  109. -webkit-appearance: none;
  110. -webkit-box-flex: 1;
  111. -webkit-flex: 1;
  112. flex: 1;
  113. -webkit-rtl-ordering: logical;
  114. -webkit-user-select: text;
  115. cursor: auto;
  116. font-size: 14px;
  117. color: #999;
  118. text-indent: 10px;
  119. border-radius: 5px;
  120. margin: auto;
  121. border: 1px solid #CCC;
  122. background: none;
  123. margin-top: 20px;
  124. }
  125. .index_search_mid span {
  126. display: block;
  127. border-left: 1px solid #ccc;
  128. position: absolute;
  129. width: 40px;
  130. height: 36px;
  131. right: 5px;
  132. }
  133. .index_search_mid span img {
  134. display: block;
  135. width: 30px;
  136. height: 30px;
  137. margin: auto;
  138. margin-top: 4px;
  139. }
  140. /*搜索弹出模块*/
  141. .search_hide {
  142. display: none
  143. }
  144. .search_hide .search_body {
  145. width: 100%;
  146. overflow: hidden;
  147. border-bottom: 1px solid #e5e5e5;
  148. border-top: 1px solid #e5e5e5;
  149. background: #F8F8F8;
  150. padding-top: 5px;
  151. padding-bottom: 5px;
  152. }
  153. .search_hide h2 {
  154. width: 100%;
  155. height: 40px;
  156. text-align: center;
  157. font-size: 18px;
  158. color: #666;
  159. font-weight: normal;
  160. line-height: 40px;
  161. border-bottom: 1px solid #eeeeee;
  162. position: relative
  163. }
  164. .close {
  165. position: absolute;
  166. display: block;
  167. width: 20px;
  168. height: 40px;
  169. right: 10px;
  170. bottom: 0px;
  171. font-size: 14px;
  172. line-height: 40px;
  173. color: #999;
  174. text-align: center
  175. }
  176. .close img {
  177. display: inline-block;
  178. width: 18px;
  179. height: 18px;
  180. margin-right: 5px;
  181. margin-top: -3px;
  182. }
  183. /*搜索 start*/
  184. .search_mid {
  185. width: 95%;
  186. margin: auto;
  187. overflow: hidden;
  188. margin-top: 20px;
  189. margin-bottom: 10px;
  190. }
  191. .search_mid ul {
  192. width: 100%;
  193. overflow: hidden
  194. }
  195. .search_mid ul li {
  196. cursor: pointer;
  197. float: left;
  198. height: 30px;
  199. line-height: 25px;
  200. text-align: center;
  201. width: 70px;
  202. font-size: 14px;
  203. line-height: 30px;
  204. text-align: center;
  205. color: #333;
  206. }
  207. .search-type .cur,
  208. .search_mid ul li.cur {
  209. background: #E31939;
  210. color: #fff;
  211. }
  212. .searchdotm {
  213. width: 100%;
  214. overflow: hidden;
  215. }
  216. .mallSearch-input {
  217. width: 99%;
  218. border: 2px solid #E31939;
  219. height: 35px;
  220. float: left;
  221. overflow: hidden;
  222. margin: auto;
  223. position: relative
  224. }
  225. .mallSearch-input .s-combobox-input {
  226. display: block;
  227. width: 100%;
  228. height: 15px;
  229. font-size: 14px;
  230. line-height: 25px;
  231. color: #999;
  232. -webkit-appearance: none;
  233. -webkit-box-flex: 1;
  234. -webkit-flex: 1;
  235. flex: 1;
  236. border-radius: 0;
  237. -webkit-rtl-ordering: logical;
  238. -webkit-user-select: text;
  239. cursor: auto;
  240. border: 0;
  241. padding-top: 10px;
  242. padding-bottom: 10px;
  243. padding-left: 10px
  244. }
  245. .mallSearch-input .button {
  246. position: absolute;
  247. display: block;
  248. width: 30px;
  249. height: 30px;
  250. right: 2px;
  251. bottom: 3px;
  252. background: url(../images/search.png) no-repeat center center;
  253. border: 0px;
  254. }
  255. .mix_recently_search {
  256. width: 100%;
  257. overflow: hidden;
  258. padding-bottom: 10px;
  259. background: #FFF;
  260. padding-bottom: 20px;
  261. }
  262. .mix_recently_search h3 {
  263. font-size: 14px;
  264. font-weight: normal;
  265. padding-left: 30px;
  266. height: 40px;
  267. line-height: 40px;
  268. background: #fff url(../images/category/souso.png) 10px center no-repeat;
  269. background-size: 18px 18px;
  270. color: #333;
  271. }
  272. .mix_recently_search ul {
  273. background-color: #fff;
  274. width: 90%;
  275. overflow: hidden;
  276. margin: auto
  277. }
  278. .mix_recently_search ul li {
  279. border: 1px solid #ccc;
  280. height: 30px;
  281. position: relative;
  282. float: left;
  283. border-radius: 4px;
  284. margin-right: 10px;
  285. margin-bottom: 10px;
  286. }
  287. .mix_recently_search ul li a {
  288. display: block;
  289. font-size: 14px;
  290. line-height: 30px;
  291. color: #666;
  292. text-align: center;
  293. padding-left: 10px;
  294. padding-right: 10px;
  295. }
  296. .mix_recently_search .recently_search_null {
  297. text-align: center;
  298. line-height: 120px;
  299. font-size: 14px;
  300. color: #666;
  301. }
  302. /*
  303. 首页menu样式弹出收回start
  304. */
  305. .mm-page,
  306. .mm-fixed-top,
  307. .mm-fixed-bottom,
  308. .mm-menu.mm-horizontal > .mm-panel {
  309. -webkit-transition: none 0.4s ease;
  310. -moz-transition: none 0.4s ease;
  311. -ms-transition: none 0.4s ease;
  312. -o-transition: none 0.4s ease;
  313. transition: none 0.4s ease;
  314. -webkit-transition-property: top, right, bottom, left, border;
  315. -moz-transition-property: top, right, bottom, left, border;
  316. -ms-transition-property: top, right, bottom, left, border;
  317. -o-transition-property: top, right, bottom, left, border;
  318. transition-property: top, right, bottom, left, border;
  319. }
  320. html.mm-opened .mm-page,
  321. html.mm-opened #mm-blocker {
  322. left: 0;
  323. top: 0;
  324. margin: 0;
  325. border: 0px solid rgba(0, 0, 0, 0);
  326. }
  327. html.mm-opening .mm-page,
  328. html.mm-opening #mm-blocker {
  329. border: 0px solid rgba(100, 100, 100, 0);
  330. }
  331. .mm-menu .mm-hidden {
  332. display: none;
  333. }
  334. .mm-fixed-top,
  335. .mm-fixed-bottom {
  336. position: fixed;
  337. left: 0;
  338. }
  339. .mm-fixed-top {
  340. top: 0;
  341. }
  342. .mm-fixed-bottom {
  343. bottom: 0;
  344. }
  345. html.mm-opened .mm-page,
  346. .mm-menu > .mm-panel {
  347. -webkit-box-sizing: border-box;
  348. -moz-box-sizing: border-box;
  349. -ms-box-sizing: border-box;
  350. -o-box-sizing: border-box;
  351. box-sizing: border-box;
  352. }
  353. html.mm-opened,
  354. html.mm-opened body {
  355. overflow-x: hidden;
  356. position: relative;
  357. }
  358. html.mm-opened .mm-page {
  359. position: relative;
  360. }
  361. html.mm-background .mm-page {
  362. background: inherit;
  363. }
  364. #mm-blocker {
  365. background: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==) transparent;
  366. display: none;
  367. width: 100%;
  368. height: 100%;
  369. position: fixed;
  370. z-index: 999999;
  371. }
  372. html.mm-opened #mm-blocker,
  373. html.mm-blocking #mm-blocker {
  374. display: block;
  375. }
  376. .mm-menu.mm-current {
  377. display: block;
  378. }
  379. .mm-menu {
  380. background: inherit;
  381. display: none;
  382. overflow: hidden;
  383. height: 100%;
  384. padding: 0;
  385. position: fixed;
  386. left: 0;
  387. top: 0;
  388. z-index: 0;
  389. }
  390. .mm-menu > .mm-panel {
  391. background: inherit;
  392. -webkit-overflow-scrolling: touch;
  393. overflow: scroll;
  394. overflow-x: hidden;
  395. overflow-y: auto;
  396. width: 100%;
  397. height: 100%;
  398. padding: 20px;
  399. position: absolute;
  400. top: 0;
  401. left: 100%;
  402. z-index: 0;
  403. }
  404. .mm-menu > .mm-panel.mm-opened {
  405. left: 0%;
  406. }
  407. .mm-menu > .mm-panel.mm-subopened {
  408. left: -40%;
  409. }
  410. .mm-menu > .mm-panel.mm-highest {
  411. z-index: 1;
  412. }
  413. .mm-menu > .mm-panel.mm-hidden {
  414. display: block;
  415. visibility: hidden;
  416. }
  417. .mm-menu .mm-list {
  418. padding: 20px 0;
  419. }
  420. .mm-menu > .mm-list {
  421. padding: 20px 0 40px 0;
  422. }
  423. .mm-panel > .mm-list {
  424. margin-left: -20px;
  425. margin-right: -20px;
  426. }
  427. .mm-panel > .mm-list:first-child {
  428. padding-top: 0;
  429. }
  430. .mm-list,
  431. .mm-list > li {
  432. list-style: none;
  433. display: block;
  434. padding: 0;
  435. margin: 0;
  436. }
  437. .mm-list {
  438. font: inherit;
  439. font-size: 14px;
  440. }
  441. .mm-list a,
  442. .mm-list a:hover {
  443. text-decoration: none;
  444. }
  445. .mm-list > li {
  446. position: relative;
  447. }
  448. .mm-list > li > a,
  449. .mm-list > li > span {
  450. text-overflow: ellipsis;
  451. white-space: nowrap;
  452. overflow: hidden;
  453. color: inherit;
  454. line-height: 20px;
  455. display: block;
  456. padding: 10px 10px 10px 20px;
  457. width: 30%;
  458. text-align: left;
  459. margin: 0;
  460. }
  461. .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults)::after {
  462. content: '';
  463. border-bottom-width: 1px;
  464. border-bottom-style: solid;
  465. display: block;
  466. width: 100%;
  467. position: absolute;
  468. bottom: 0;
  469. left: 0;
  470. }
  471. .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults):after {
  472. width: auto;
  473. margin-left: 20px;
  474. position: relative;
  475. left: auto;
  476. }
  477. .mm-list a.mm-subopen {
  478. width: 100px;
  479. height: 100%;
  480. padding: 0;
  481. position: absolute;
  482. right: 0;
  483. top: 0;
  484. width: 48px;
  485. z-index: 2;
  486. }
  487. .mm-list a.mm-subopen::before {
  488. content: '';
  489. border-left-width: 1px;
  490. border-left-style: solid;
  491. display: block;
  492. height: 100%;
  493. position: absolute;
  494. left: 0;
  495. top: 0;
  496. }
  497. /*修改 start */
  498. .mm-list a.mm-subopen {
  499. width: 210px;
  500. height: 100%;
  501. padding: 0;
  502. position: absolute;
  503. right: 0;
  504. top: 0;
  505. z-index: 2;
  506. }
  507. .mm-list a.mm-subopen::before {
  508. content: '';
  509. border-left-width: 1px;
  510. border-left-style: solid;
  511. display: block;
  512. height: 100%;
  513. position: absolute;
  514. left: 0;
  515. top: 0;
  516. margin-left: 170px;
  517. }
  518. /* 修改 end */
  519. .mm-list a.mm-subopen.mm-fullsubopen {
  520. width: 100%;
  521. }
  522. .mm-list a.mm-subopen.mm-fullsubopen:before {
  523. border-left: none;
  524. }
  525. .mm-list a.mm-subopen + a,
  526. .mm-list a.mm-subopen + span {
  527. padding-right: 5px;
  528. margin-right: 40px;
  529. }
  530. .mm-list > li.mm-selected > a.mm-subopen {
  531. background: transparent;
  532. }
  533. .mm-list > li.mm-selected > a.mm-fullsubopen + a,
  534. .mm-list > li.mm-selected > a.mm-fullsubopen + span {
  535. padding-right: 45px;
  536. margin-right: 0;
  537. }
  538. .mm-list a.mm-subclose {
  539. text-indent: 20px;
  540. padding-top: 30px;
  541. margin-top: -20px;
  542. width: 100%;
  543. text-align: left;
  544. }
  545. .mm-list > li.mm-label {
  546. text-overflow: ellipsis;
  547. white-space: nowrap;
  548. overflow: hidden;
  549. font-size: 10px;
  550. text-transform: uppercase;
  551. text-indent: 20px;
  552. line-height: 25px;
  553. padding-right: 5px;
  554. }
  555. .mm-list > li.mm-spacer {
  556. padding-top: 40px;
  557. }
  558. .mm-list > li.mm-spacer.mm-label {
  559. padding-top: 25px;
  560. }
  561. .mm-list a.mm-subopen:after,
  562. .mm-list a.mm-subclose:before {
  563. content: '';
  564. border: 2px solid transparent;
  565. display: block;
  566. width: 7px;
  567. height: 7px;
  568. margin-bottom: -5px;
  569. position: absolute;
  570. bottom: 50%;
  571. -webkit-transform: rotate(-45deg);
  572. -moz-transform: rotate(-45deg);
  573. -ms-transform: rotate(-45deg);
  574. -o-transform: rotate(-45deg);
  575. transform: rotate(-45deg);
  576. }
  577. .mm-list a.mm-subopen:after {
  578. border-top: none;
  579. border-left: none;
  580. right: 18px;
  581. }
  582. .mm-list a.mm-subclose:before {
  583. border-right: none;
  584. border-bottom: none;
  585. margin-bottom: -15px;
  586. left: 22px;
  587. }
  588. .mm-menu.mm-vertical .mm-list .mm-panel {
  589. display: none;
  590. padding: 10px 0 10px 10px;
  591. }
  592. .mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
  593. border-color: transparent;
  594. }
  595. .mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
  596. display: block;
  597. }
  598. .mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen {
  599. height: 40px;
  600. }
  601. .mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
  602. -webkit-transform: rotate(45deg);
  603. -moz-transform: rotate(45deg);
  604. -ms-transform: rotate(45deg);
  605. -o-transform: rotate(45deg);
  606. transform: rotate(45deg);
  607. top: 16px;
  608. right: 16px;
  609. }
  610. html.mm-opened .mm-page {
  611. box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  612. }
  613. .mm-ismenu {
  614. background: #333333;
  615. color: rgba(255, 255, 255, 0.6);
  616. }
  617. .mm-menu .mm-list > li:after {
  618. border-color: rgba(0, 0, 0, 0.15);
  619. }
  620. .mm-list a.mm-subclose1 {
  621. text-indent: 0px;
  622. padding-top: 30px;
  623. margin-top: -20px;
  624. width: 100%;
  625. text-align: left;
  626. }
  627. .mm-menu .mm-list > li > a.mm-subclose {
  628. background: rgba(0, 0, 0, 0.1);
  629. color: rgba(223, 223, 223, 0.8);
  630. }
  631. .mm-menu .mm-list > li > a.mm-subopen:after,
  632. .mm-menu .mm-list > li > a.mm-subclose:before {
  633. border-color: rgba(223, 223, 223, 0.8);
  634. }
  635. .mm-menu .mm-list > li > a.mm-subclose1 {
  636. background: rgba(0, 0, 0, 0.1);
  637. color: rgba(223, 223, 223, 0.8);
  638. }
  639. .mm-menu .mm-list > li > a.mm-subopen:before {
  640. border-color: rgba(0, 0, 0, 0.15);
  641. }
  642. .mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
  643. .mm-menu .mm-list > li.mm-selected > span {
  644. background: rgba(0, 0, 0, 0.1);
  645. }
  646. .mm-menu .mm-list > li.mm-label {
  647. background: rgba(255, 255, 255, 0.05);
  648. }
  649. .mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
  650. .mm-menu.mm-vertical .mm-list li.mm-opened > ul {
  651. background: rgba(255, 255, 255, 0.05);
  652. }
  653. html.mm-opening .mm-page,
  654. html.mm-opening #mm-blocker,
  655. html.mm-opening .mm-fixed-top,
  656. html.mm-opening .mm-fixed-bottom {
  657. left: 80%;
  658. }
  659. .mm-menu {
  660. width: 80%;
  661. }
  662. @media all and (max-width: 175px) {
  663. .mm-menu {
  664. width: 140px;
  665. }
  666. html.mm-opening .mm-page,
  667. html.mm-opening #mm-blocker,
  668. html.mm-opening .mm-fixed-top,
  669. html.mm-opening .mm-fixed-bottom {
  670. left: 140px;
  671. }
  672. }
  673. @media all and (min-width: 550px) {
  674. .mm-menu {
  675. width: 440px;
  676. }
  677. html.mm-opening .mm-page,
  678. html.mm-opening #mm-blocker,
  679. html.mm-opening .mm-fixed-top,
  680. html.mm-opening .mm-fixed-bottom {
  681. left: 440px;
  682. }
  683. }
  684. /*首页八个小图标*/
  685. .entry-list {
  686. width: 100%;
  687. overflow: hidden;
  688. padding-top: 10px;
  689. background: #FFF;
  690. padding-bottom: 10px;
  691. }
  692. .entry-list ul {
  693. width: 100%;
  694. overflow: hidden;
  695. margin: auto
  696. }
  697. .entry-list a {
  698. display: block;
  699. width: 25%;
  700. overflow: hidden;
  701. float: left;
  702. text-align: center;
  703. margin-top: 5px;
  704. }
  705. .entry-list a span {
  706. height: 30px;
  707. line-height: 30px;
  708. color: #616161;
  709. font-family: "微软雅黑";
  710. font-size: 14px;
  711. }
  712. .entry-list a img {
  713. display: block;
  714. width: 65%;
  715. margin: auto;
  716. }
  717. /* 首页页 广告位 */
  718. .floor_images {
  719. padding: 5px;
  720. }
  721. .floor_images ul {}
  722. .floor_images ul li {
  723. margin-bottom: 5px;
  724. }
  725. .floor_images ul li img {
  726. display: block;
  727. width: 100%;
  728. height: auto
  729. }
  730. /*促销recommend_promotion+cat_goods*/
  731. .index_floor_lou {
  732. width: 100%;
  733. overflow: hidden;
  734. margin-top: 10px;
  735. background: #FFF;
  736. border-bottom: 1px solid #dcdcdc
  737. }
  738. .floor_body {
  739. width: 100%;
  740. overflow: hidden;
  741. }
  742. .floor_body h2 {
  743. height: 35px;
  744. line-height: 35px;
  745. font-size: 16px;
  746. font-weight: normal;
  747. color: #7f7f7f;
  748. margin-bottom: 10px;
  749. }
  750. .floor_body h2 em {
  751. width: 3px;
  752. height: 15px;
  753. background: #E4010D;
  754. margin-right: 5px;
  755. margin-top: 10px;
  756. float: left;
  757. }
  758. .geng {
  759. width: 50px;
  760. height: 25px;
  761. float: right;
  762. padding-top: 5px;
  763. }
  764. .geng a {
  765. display: block;
  766. float: left;
  767. width: 30px;
  768. line-height: 25px;
  769. height: 25px;
  770. color: #7f7f7f;
  771. font-size: 13px;
  772. }
  773. .geng span {
  774. display: block;
  775. float: left;
  776. width: 15px;
  777. height: 25px;
  778. background: url(../images/pub_main.png) no-repeat;
  779. background-size: auto 280px;
  780. background-position: 0 -248px;
  781. }
  782. .floor_body ul {
  783. width: 95%;
  784. overflow: hidden;
  785. margin: auto;
  786. }
  787. .floor_body ul li {
  788. width: 33.33%;
  789. float: left;
  790. text-align: center;
  791. margin-bottom: 10px;
  792. padding-bottom: 10px;
  793. }
  794. .floor_body ul li .index_pro {
  795. width: 95%;
  796. overflow: hidden;
  797. margin: auto;
  798. }
  799. .timerBox {
  800. width: 100%;
  801. height: 20px;
  802. position: absolute;
  803. bottom: 0px;
  804. text-align: center;
  805. background-color: rgba(49, 50, 51, 0.4);
  806. font-size: 12px;
  807. color: #FFF;
  808. line-height: 20px;
  809. }
  810. .floor_body ul li .products_kuang {
  811. width: 100%;
  812. margin: auto;
  813. overflow: hidden;
  814. position: relative;
  815. }
  816. .floor_body ul li .products_kuang img {
  817. display: block;
  818. width: 100%;
  819. margin: auto
  820. }
  821. .floor_body ul li .goods_name {
  822. font-size: 12px;
  823. width: 100%;
  824. margin: auto;
  825. color: #999;
  826. height: 30px;
  827. overflow: hidden;
  828. margin: auto;
  829. course: hand;
  830. text-align: left;
  831. line-height: 150%;
  832. padding-top: 8px;
  833. padding-bottom: 8px;
  834. }
  835. .floor_body ul li .price {
  836. width: 100%;
  837. overflow: hidden;
  838. margin: auto;
  839. position: relative;
  840. border-top: 1px solid #eeeeee;
  841. margin-top: 5px;
  842. }
  843. .floor_body ul li .price .price_pro {
  844. width: 100%;
  845. display: block;
  846. font-size: 14px;
  847. color: #F23015;
  848. height: 40px;
  849. line-height: 40px;
  850. text-align: left
  851. }
  852. .floor_body ul li .btns {
  853. position: absolute;
  854. display: block;
  855. right: 5px;
  856. height: 25px;
  857. width: 25px;
  858. background: #f23;
  859. border-radius: 50%;
  860. bottom: 8px;
  861. }
  862. .floor_body ul li .btns img {
  863. display: block;
  864. width: 25px;
  865. height: 25px;
  866. }
  867. /*新品recommend_best+recommend_hot+recommend_new*/
  868. .index_floor {
  869. width: 100%;
  870. overflow: hidden;
  871. margin-top: 10px;
  872. background: #fff;
  873. padding-bottom: 5px;
  874. border-bottom: 1px solid #dcdcdc
  875. }
  876. .floor_body1 {
  877. width: 100%;
  878. overflow: hidden;
  879. }
  880. .floor_body1 h2 {
  881. height: 35px;
  882. line-height: 35px;
  883. font-size: 16px;
  884. font-weight: normal;
  885. color: #7f7f7f;
  886. margin-bottom: 10px;
  887. }
  888. .floor_body1 h2 em {
  889. width: 3px;
  890. height: 15px;
  891. background: #E4010D;
  892. margin-right: 5px;
  893. margin-top: 10px;
  894. float: left;
  895. }
  896. .scroll_hot {
  897. text-align: center;
  898. width: 95%;
  899. margin: auto;
  900. overflow: hidden;
  901. }
  902. .scroll_hot .bd ul {
  903. width: 100%;
  904. overflow: hidden;
  905. margin: auto;
  906. }
  907. .scroll_hot .bd ul li {
  908. width: 33.33%;
  909. float: left;
  910. overflow: hidden;
  911. margin: 0px;
  912. }
  913. .scroll_hot .bd ul li .index_pro {
  914. width: 95%;
  915. overflow: hidden;
  916. margin: auto;
  917. }
  918. .scroll_hot .bd ul li .products_kuang {
  919. width: 100%;
  920. margin: auto;
  921. overflow: hidden;
  922. position: relative;
  923. }
  924. .scroll_hot .bd ul li .products_kuang img {
  925. width: 100% !important;
  926. height: auto !important;
  927. margin: auto
  928. }
  929. .scroll_hot .bd ul li .goods_name {
  930. font-size: 12px;
  931. width: 100%;
  932. margin: auto;
  933. color: #999;
  934. height: 29px;
  935. overflow: hidden;
  936. text-align: left;
  937. line-height: 16px;
  938. margin-top: 8px;
  939. margin-bottom: 8px;
  940. -webkit-line-clamp: 2;
  941. -webkit-box-orient: vertical;
  942. display: -webkit-box;
  943. }
  944. .scroll_hot .bd ul li .price {
  945. width: 100%;
  946. margin: auto;
  947. position: relative;
  948. border-top: 1px solid #eeeeee;
  949. margin-top: 5px;
  950. }
  951. .scroll_hot .bd ul li .price .price_pro {
  952. width: 100%;
  953. display: block;
  954. font-size: 14px;
  955. color: #F23015;
  956. height: 40px;
  957. line-height: 40px;
  958. text-align: left;
  959. }
  960. .scroll_hot .bd ul li .btns {
  961. position: absolute;
  962. display: block;
  963. right: 5px;
  964. height: 25px;
  965. width: 25px;
  966. background: #f23;
  967. border-radius: 50%;
  968. bottom: 8px;
  969. }
  970. .scroll_hot .bd ul li .btns img {
  971. display: block;
  972. width: 25px;
  973. height: 25px;
  974. }
  975. .scroll_hot .hd {
  976. height: 20px;
  977. overflow: hidden;
  978. text-align: center;
  979. background: #FFF
  980. }
  981. .scroll_hot .hd ul {
  982. display: inline-block;
  983. padding-top: 5px;
  984. }
  985. .scroll_hot .hd li {
  986. display: inline-block;
  987. width: 10px;
  988. height: 10px;
  989. background: #C5C1C0;
  990. margin: 0 4px;
  991. vertical-align: top;
  992. overflow: hidden;
  993. -webkit-border-radius: 6px;
  994. -moz-border-radius: 6px;
  995. border-radius: 6px;
  996. }
  997. .scroll_hot .hd .on {
  998. background: #D6505B;
  999. }
  1000. /*推荐轮播图片*/
  1001. .index_banner {
  1002. position: relative;
  1003. overflow: hidden;
  1004. margin: 0px auto;
  1005. }
  1006. .index_banner .hd {
  1007. position: absolute;
  1008. bottom: 0px;
  1009. text-align: center;
  1010. width: 100%;
  1011. }
  1012. .index_banner .hd li {
  1013. display: inline-block;
  1014. width: .4em;
  1015. height: .4em;
  1016. margin: 0 .4em;
  1017. -webkit-border-radius: .8em;
  1018. -moz-border-radius: .8em;
  1019. -ms-border-radius: .8em;
  1020. -o-border-radius: .8em;
  1021. border-radius: .8em;
  1022. background: #FFF;
  1023. filter: alpha(Opacity=60);
  1024. opacity: .6;
  1025. box-shadow: 0 0 1px #ccc;
  1026. text-indent: -100px;
  1027. overflow: hidden;
  1028. }
  1029. .index_banner .hd li.on {
  1030. filter: alpha(Opacity=90);
  1031. opacity: .9;
  1032. background: #f8f8f8;
  1033. box-shadow: 0 0 2px #ccc;
  1034. }
  1035. .index_banner .bd {
  1036. position: relative;
  1037. z-index: 0;
  1038. width: 98%;
  1039. margin: auto;
  1040. margin-top: 10px;
  1041. }
  1042. .index_banner .bd li {
  1043. position: relative;
  1044. text-align: center;
  1045. }
  1046. .index_banner .bd li img {
  1047. background: url(images/loading.gif) center center no-repeat;
  1048. vertical-align: top;
  1049. width: 100%;
  1050. }
  1051. .index_banner .bd li a {
  1052. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1053. }
  1054. /* 去掉链接触摸高亮 */
  1055. .index_banner .bd li .tit {
  1056. display: block;
  1057. width: 100%;
  1058. position: absolute;
  1059. bottom: 0;
  1060. text-indent: 10px;
  1061. height: 28px;
  1062. line-height: 28px;
  1063. background: url(images/focusBg.png) repeat-x;
  1064. color: #fff;
  1065. text-align: left;
  1066. }
  1067. /*首页无限加载loading图*/
  1068. .floor_body2 {
  1069. width: 98%;
  1070. margin: auto;
  1071. overflow: hidden;
  1072. }
  1073. .floor_body2 h2 {
  1074. height: 50px;
  1075. line-height: 50px;
  1076. font-size: 16px;
  1077. font-weight: normal;
  1078. color: #999;
  1079. text-align: center;
  1080. }
  1081. .floor_body2 ul {
  1082. width: 50%;
  1083. float: left;
  1084. text-align: center;
  1085. overflow: hidden;
  1086. }
  1087. .floor_body2 ul li {
  1088. width: 98%;
  1089. margin: auto;
  1090. margin-bottom: 5px;
  1091. background: #FFF;
  1092. overflow: hidden;
  1093. padding-bottom: 2%;
  1094. }
  1095. .floor_body2 ul li .index_pro {
  1096. width: 100%;
  1097. overflow: hidden;
  1098. margin: auto;
  1099. }
  1100. .floor_body2 ul li .products_kuang {
  1101. width: 100%;
  1102. margin: auto;
  1103. overflow: hidden;
  1104. position: relative;
  1105. }
  1106. .floor_body2 ul li .products_kuang img {
  1107. display: block;
  1108. width: 100%;
  1109. margin: auto;
  1110. }
  1111. .floor_body2 ul li .goods_name {
  1112. width: 93%;
  1113. margin: auto;
  1114. text-align: left;
  1115. height: 33px;
  1116. overflow: hidden;
  1117. color: #666;
  1118. font-size: 14px;
  1119. line-height: 18px;
  1120. -webkit-line-clamp: 2;
  1121. -webkit-box-orient: vertical;
  1122. display: -webkit-box;
  1123. margin-top: 8px;
  1124. margin-bottom: 8px;
  1125. }
  1126. .floor_body2 ul li .price {
  1127. width: 100%;
  1128. margin: auto;
  1129. position: relative;
  1130. border-top: 1px solid #eeeeee
  1131. }
  1132. .floor_body2 ul li .price .price_pro {
  1133. width: 93%;
  1134. margin: auto;
  1135. display: block;
  1136. font-size: 16px;
  1137. color: #F23015;
  1138. height: 40px;
  1139. line-height: 40px;
  1140. text-align: left;
  1141. }
  1142. .floor_body2 ul li .btns {
  1143. position: absolute;
  1144. display: block;
  1145. right: 5px;
  1146. height: 25px;
  1147. width: 25px;
  1148. background: #f23;
  1149. border-radius: 50%;
  1150. bottom: 8px;
  1151. }
  1152. .floor_body2 ul li .btns img {
  1153. display: block;
  1154. width: 25px;
  1155. height: 25px;
  1156. }