decorate.scss 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203
  1. @import "./mixins.scss";
  2. @import "./theme.scss";
  3. /* 装修页面样式-start */
  4. .diy_part_wrap {
  5. background: #f9f9f9;
  6. padding: 20px;
  7. overflow: hidden;
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: flex-start;
  11. align-items: center;
  12. }
  13. .adv_01_wrap {
  14. width: 1440px;
  15. // height: 340px;
  16. background: #efefef;
  17. position: relative;
  18. margin: 0 auto;
  19. }
  20. .adv_01_wrap_full {
  21. width: 100%;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. a {
  26. width: 100%;
  27. padding: 0 24px;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. }
  33. .flash_wrap {
  34. width: 768px;
  35. height: 183px;
  36. margin-bottom: 20px;
  37. }
  38. .modal_img {
  39. padding-left: 10px;
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: center;
  43. align-items: flex-start;
  44. }
  45. .adv_01_img_thumb {
  46. min-height: 50px;
  47. background: #efefef;
  48. display: flex;
  49. flex-direction: row;
  50. justify-content: center;
  51. align-items: center;
  52. }
  53. .adv_01_img {
  54. max-width: 100%;
  55. max-height: 100%;
  56. width:100%
  57. }
  58. .modal_tip_color {
  59. color: #136cd8;
  60. font-size: 12px;
  61. display: block;
  62. padding: 10px 0;
  63. }
  64. .table_left_con {
  65. font-weight: bold;
  66. color: #333;
  67. }
  68. .table_left_require {
  69. color: $colorMain;
  70. }
  71. .adv_02_part {
  72. width: 1440px;
  73. height: 344px;
  74. background: #fff;
  75. margin: 0 auto;
  76. /*display: flex;
  77. flex-direction: row;
  78. justify-content: flex-start;
  79. align-items: center;*/
  80. }
  81. .adv_02_part .adv_02_left {
  82. width: 215px;
  83. height: 344px;
  84. position: relative;
  85. cursor: pointer;
  86. float: left;
  87. }
  88. .adv_02_part .adv_02_left a {
  89. display: inline-block;
  90. width: 100%;
  91. height: 100%;
  92. }
  93. .adv_02_part .adv_02_left a:hover {
  94. opacity: 0.65;
  95. }
  96. .adv_02_part .adv_02_left img {
  97. max-width: 100%;
  98. max-height: 100%;
  99. }
  100. .adv_02_part .adv_02_center {
  101. float: left;
  102. width: 736px;
  103. height: 344px;
  104. position: relative;
  105. }
  106. .adv_02_part .adv_02_center .split_h {
  107. position: absolute;
  108. width: 736px;
  109. height: 1px;
  110. background-color: rgba(0, 0, 0, 0.05);
  111. top: 172px;
  112. left: 0;
  113. z-index: 2;
  114. }
  115. .adv_02_part .adv_02_center .split_v {
  116. position: absolute;
  117. width: 1px;
  118. height: 344px;
  119. background-color: rgba(0, 0, 0, 0.05);
  120. left: 368px;
  121. top: 0;
  122. z-index: 2;
  123. }
  124. .adv_02_part .adv_02_right {
  125. width: 253px;
  126. height: 344px;
  127. float: left;
  128. margin-left: 5px;
  129. position: relative;
  130. }
  131. .imgs_wrap {
  132. width: 100%;
  133. height: 170px;
  134. padding: 10px;
  135. border: 1px solid #e3e3e3;
  136. border-radius: 4px;
  137. display: flex;
  138. flex-direction: row;
  139. flex-wrap: wrap;
  140. justify-content: flex-start;
  141. align-items: flex-start;
  142. margin-bottom: 10px;
  143. }
  144. .adv_more_img_wrap {
  145. position: relative;
  146. padding: 10px;
  147. display: flex;
  148. flex-direction: row;
  149. justify-content: center;
  150. align-items: center;
  151. border: dashed 1px #eee;
  152. margin-left: 10px;
  153. }
  154. .adv_more_img_wrap:hover,
  155. .seleImg {
  156. background-color: #fff3da;
  157. border-color: #fbcfac;
  158. }
  159. .adv_more_img_wrap .del_img {
  160. display: inline-block;
  161. position: absolute;
  162. top: 0;
  163. right: 0;
  164. padding: 2px 5px;
  165. background: #fe9700;
  166. font-size: 12px;
  167. color: #fff;
  168. }
  169. .adv_02_right .right_img_item {
  170. position: relative;
  171. width: 253px;
  172. height: 108px;
  173. float: left;
  174. display: flex;
  175. flex-direction: row;
  176. justify-content: center;
  177. align-items: center;
  178. margin-top: 6px;
  179. }
  180. .adv_02_right .right_img_item a {
  181. display: block;
  182. width: 100%;
  183. height: 100%;
  184. }
  185. .adv_02_right .right_img_item a:hover {
  186. opacity: 0.65;
  187. }
  188. .adv_02_right .right_img_item img {
  189. max-width: 100%;
  190. max-height: 100%;
  191. }
  192. .modal_goods_wrap {
  193. width: 175px;
  194. height: 80px;
  195. display: flex;
  196. flex-direction: row;
  197. justify-content: flex-start;
  198. align-items: center;
  199. margin: 0 10px 10px 0;
  200. background-color: #fff;
  201. overflow: hidden;
  202. cursor: pointer;
  203. }
  204. .goods_img {
  205. width: 80px;
  206. height: 80px;
  207. display: flex;
  208. flex-direction: row;
  209. justify-content: center;
  210. align-items: center;
  211. }
  212. .modal_goods_wrap .goods_img img {
  213. max-width: 100%;
  214. max-height: 100%;
  215. }
  216. .modal_goods_wrap .goods_right {
  217. display: flex;
  218. flex: 1;
  219. flex-direction: column;
  220. justify-content: center;
  221. align-items: flex-start;
  222. padding: 5px;
  223. }
  224. .modal_goods_wrap .goods_name {
  225. color: #666;
  226. font-size: 12px;
  227. }
  228. .modal_goods_wrap .goods_price {
  229. color: $colorMain;
  230. font-size: 12px;
  231. }
  232. .adv_02_center .goods_item {
  233. width: 363px;
  234. height: 171px;
  235. padding: 6px;
  236. background: #fff;
  237. cursor: pointer;
  238. display: inline-block;
  239. box-sizing: border-box;
  240. }
  241. .adv_02_center .goods_item:hover .right .goods_name{
  242. color:$colorMain
  243. }
  244. .adv_02_center .goods_item:hover .left{
  245. opacity: .5;
  246. }
  247. .clearfix {
  248. clear: both;
  249. overflow: hidden;
  250. }
  251. .adv_02_center .goods_item .left {
  252. float: left;
  253. width: 160px;
  254. height: 160px;
  255. display: table-cell;
  256. vertical-align: middle;
  257. text-align: center;
  258. background: #fff;
  259. padding-top: 0;
  260. transition: transform 0.5s;
  261. }
  262. .adv_02_center .goods_item .left:hover {
  263. transform: translateX(-4px);
  264. }
  265. .adv_02_center .goods_item .left img {
  266. max-width: 140px;
  267. max-height: 140px;
  268. margin-top: 10px;
  269. }
  270. .adv_02_center .goods_item .right {
  271. float: right;
  272. width: 180px;
  273. margin-left: 0;
  274. }
  275. .adv_02_center .goods_item .right .goods_name {
  276. color: #333;
  277. font-size: 14px;
  278. height: 41.6px;
  279. overflow: hidden;
  280. margin-bottom: 0;
  281. margin-top: 18px;
  282. line-height: 21px;
  283. overflow: hidden;
  284. text-overflow: ellipsis;
  285. display: -webkit-box;
  286. -webkit-line-clamp: 2;
  287. -webkit-box-orient: vertical;
  288. word-break: break-word;
  289. white-space: normal;
  290. }
  291. .adv_02_center .goods_item .right .buy_num {
  292. color: #666;
  293. font-size: 12px;
  294. margin-top: 4px;
  295. margin-bottom: 3px;
  296. }
  297. .adv_02_center .goods_item .right .buy {
  298. padding: 5px 17px;
  299. background: $colorMain;
  300. font-size: 16px;
  301. font-weight: bold;
  302. border-radius: 14px;
  303. color: #fff;
  304. }
  305. .adv_02_center .goods_item .right .price {
  306. margin-bottom: 18px;
  307. text-align: left;
  308. width: auto;
  309. height: auto;
  310. line-height: 24px;
  311. }
  312. .adv_02_center .goods_item .right .price span {
  313. color: $colorMain;
  314. }
  315. .adv_02_center .goods_item .right .price .unit {
  316. font-size: 12px;
  317. margin-right: 2px;
  318. font-weight: bold;
  319. }
  320. .adv_02_center .goods_item .right .price .integer {
  321. font-size: 18px;
  322. font-weight: bold;
  323. }
  324. .adv_02_center .goods_item .right .price .decimal {
  325. font-size: 0.83rem;
  326. }
  327. .adv_02_center .goods_item .right .price .del {
  328. color: #999;
  329. font-size: 0.83rem;
  330. text-decoration: line-through;
  331. margin-left: 10px;
  332. }
  333. .adv_01_wrap img,
  334. .adv_02_part .adv_02_left img,
  335. .adv_02_right .right_img_item img {
  336. // position: absolute;
  337. // top: 50%;
  338. // left: 50%;
  339. // max-width: 100%;
  340. // max-height: 100%;
  341. // -webkit-transform: translate(-50%, -50%);
  342. // -moz-transform: translate(-50%, -50%);
  343. // -ms-transform: translate(-50%, -50%);
  344. // -o-transform: translate(-50%, -50%);
  345. // transform: translate(-50%, -50%);
  346. }
  347. .adv_02_part,
  348. .adv_01_wrap {
  349. // margin-top: 10px;
  350. }
  351. /* 装修页面样式-end */
  352. /*# sourceMappingURL=pcdecorate.css.map */
  353. /* adv_05-start */
  354. .adv_05_wrap .floor {
  355. width: 100%;
  356. position: relative;
  357. }
  358. .adv_05_wrap .floor_layout {
  359. height: auto;
  360. }
  361. .adv_05_wrap .floor_title {
  362. height: 45px;
  363. line-height: 45px;
  364. position: relative;
  365. }
  366. .adv_05_wrap .floor_title h2 {
  367. height: 45px;
  368. line-height: 45px;
  369. font-size: 18px;
  370. color: #333;
  371. float: left;
  372. }
  373. .adv_05_wrap .floor_title h2 span {
  374. height: 45px;
  375. line-height: 45px;
  376. }
  377. .adv_05_wrap .floor_title h2 span.main_title {
  378. font-size: 20px;
  379. font-weight: bold;
  380. color: #3d3d3d;
  381. }
  382. .adv_05_wrap .floor_title h2 span.sub_title {
  383. font-size: 16px;
  384. font-style: italic;
  385. line-height: 47px;
  386. color: #a4a4a4;
  387. margin: 0 0 0 10px;
  388. }
  389. .adv_05_wrap .floor_title .right_action {
  390. display: inline-block;
  391. margin: 0 12px 0 0;
  392. float: right;
  393. }
  394. .adv_05_wrap .floor_title .right_action a {
  395. font-size: 14px;
  396. color: #333;
  397. }
  398. .adv_05_wrap .floor_content {
  399. height: 482px;
  400. background-color: #fff;
  401. margin-bottom: 0;
  402. width: 100%;
  403. position: relative;
  404. overflow: hidden;
  405. }
  406. .adv_05_wrap .floor_content .floor_left {
  407. width: 298px;
  408. height: 482px;
  409. float: left;
  410. overflow: hidden;
  411. }
  412. .adv_05_wrap .floor_content .floor_left .floor_bg_img {
  413. width: 298px;
  414. height: 482px;
  415. overflow: hidden;
  416. position: relative;
  417. }
  418. .adv_05_wrap .floor_content .floor_left .floor_words {
  419. position: relative;
  420. width: 260px;
  421. height: 160px;
  422. margin: -182px 19px 22px 19px;
  423. padding: 14px 31px 24px 30px;
  424. overflow: hidden;
  425. background: #fff;
  426. box-sizing: border-box;
  427. }
  428. .floor_words .floor_words_top_title {
  429. position: relative;
  430. height: 30px;
  431. line-height: 30px;
  432. text-align: center;
  433. overflow: hidden;
  434. }
  435. .floor_words .cat_data_wrap {
  436. position: relative;
  437. }
  438. .floor_words .floor_words_top_title font {
  439. display: inline-block;
  440. width: 39px;
  441. height: 1px;
  442. background: rgb(212, 212, 212);
  443. position: relative;
  444. top: -4px;
  445. }
  446. .floor_words .floor_words_top_title span {
  447. font-size: 14px;
  448. font-weight: bold;
  449. color: #101010;
  450. margin: 0 9px;
  451. }
  452. .adv_05_wrap .floor_content .floor_left .floor_words ul {
  453. width: 100%;
  454. height: 86px;
  455. margin: 16px 0 0 0;
  456. overflow: hidden;
  457. }
  458. .adv_05_wrap .floor_content .floor_left .floor_words li {
  459. float: left;
  460. width: 66px;
  461. padding-left: 0px;
  462. margin: 0 0 18px 0px;
  463. height: 14px;
  464. line-height: 14px;
  465. overflow: hidden;
  466. }
  467. .adv_05_wrap .floor_content .floor_left .floor_words li a {
  468. font-size: 12px;
  469. color: #6d6d6d;
  470. font-weight: 400;
  471. }
  472. .adv_05_wrap .floor_content .floor_left .floor_words li a:hover {
  473. color: $colorMain;
  474. }
  475. .adv_05_wrap .floor_content .floor_left .floor_bg_img .ad_img {
  476. width: 298px;
  477. height: 482px;
  478. display: block;
  479. }
  480. .adv_05_wrap .floor_content .ad_img img {
  481. width: 100%;
  482. height: 100%;
  483. }
  484. .adv_05_wrap .floor_content .floor_right {
  485. width: 912px;
  486. height: 482px;
  487. border-style: solid;
  488. // border-color: $colorMain;
  489. border-width: 2px 0 0 0;
  490. float: left;
  491. position: relative;
  492. background-color: #ffffff;
  493. }
  494. .adv_05_wrap .floor_content .floor_right .floor_right_main {
  495. width: 662px;
  496. height: 482px;
  497. float: left;
  498. position: relative;
  499. }
  500. .adv_05_wrap .floor_content .floor_right .floor_right_new {
  501. width: 250px;
  502. height: 480px;
  503. border-style: solid;
  504. border-color: rgba(0, 0, 0, 0.05);
  505. border-width: 0 0 0 1px;
  506. padding: 5px 10px 0 10px;
  507. float: right;
  508. position: relative;
  509. box-sizing: border-box;
  510. }
  511. .floor_right_new .floor_right_new_top_title {
  512. height: 30px;
  513. line-height: 30px;
  514. margin: 0 0 6px 0;
  515. text-align: center;
  516. overflow: hidden;
  517. position: relative;
  518. }
  519. .floor_right_new .floor_right_new_top_title font {
  520. display: inline-block;
  521. width: 39px;
  522. height: 1px;
  523. background: $colorMain;
  524. position: relative;
  525. top: -4px;
  526. }
  527. .floor_right_new .floor_right_new_top_title span {
  528. font-size: 14px;
  529. font-weight: bold;
  530. color: $colorMain;
  531. margin: 0 9px;
  532. }
  533. .adv_05_wrap .floor_right_new .floor_content {
  534. height: 450px;
  535. }
  536. .adv_05_wrap .floor_right_new .floor_content .item {
  537. width: 230px;
  538. height: 110px;
  539. padding: 10px 0;
  540. border-style: solid;
  541. border-color: rgba(0, 0, 0, 0.05);
  542. border-width: 0 0 1px 0;
  543. box-sizing: border-box;
  544. }
  545. .adv_05_wrap .floor_right_new .floor_content .item .wrap {
  546. width: 230px;
  547. }
  548. .adv_05_wrap .floor_right_new .floor_content .item .left_pic {
  549. width: 90px;
  550. height: 90px;
  551. float: left;
  552. }
  553. .adv_05_wrap .floor_right_new .floor_content .item .left_pic .ad_img {
  554. width: 90px;
  555. height: 90px;
  556. display: block;
  557. overflow: hidden;
  558. }
  559. .adv_05_wrap .floor_right_new .floor_content .item .right_info {
  560. width: 140px;
  561. height: 90px;
  562. padding: 10px 0 0 10px;
  563. overflow: hidden;
  564. box-sizing: border-box;
  565. }
  566. .adv_05_wrap .floor_right_new .floor_content .item .right_info .title {
  567. margin-bottom: 15px;
  568. height: 38px;
  569. overflow: hidden;
  570. text-overflow: ellipsis;
  571. display: -webkit-box;
  572. -webkit-line-clamp: 2;
  573. -webkit-box-orient: vertical;
  574. word-wrap: break-word;
  575. word-break: normal;
  576. background: #fff;
  577. letter-spacing: 0;
  578. font-size: 12px;
  579. }
  580. .adv_05_wrap .floor_right_new .floor_content .item .right_info .title a {
  581. line-height: 19px !important;
  582. font-size: 12px;
  583. color: #000000;
  584. overflow: hidden;
  585. text-overflow: ellipsis;
  586. display: -webkit-box;
  587. -webkit-line-clamp: 2;
  588. -webkit-box-orient: vertical;
  589. word-wrap: break-word;
  590. word-break: normal;
  591. }
  592. .adv_05_wrap .floor_right_new .floor_content .item .right_info .price {
  593. color: $colorMain;
  594. font-weight: bold;
  595. font-size: 12px;
  596. width: auto;
  597. height: auto;
  598. line-height: 20px;
  599. text-align: left;
  600. }
  601. .adv_05_wrap .floor_right_new .floor_content .item .right_info .price .money_number {
  602. margin: 0 0 0 -3px;
  603. color: $colorMain;
  604. font-size: 18px;
  605. font-weight: bold;
  606. }
  607. .adv_05_wrap .floor_right_main .floor_content {
  608. height: 480px;
  609. }
  610. .adv_05_wrap .floor_right_main .floor_content .item {
  611. width: 220px;
  612. height: 240px;
  613. padding: 10px;
  614. border-style: solid;
  615. border-color: rgba(0, 0, 0, 0.05);
  616. border-width: 0 0 1px 1px;
  617. float: left;
  618. box-sizing: border-box;
  619. }
  620. .adv_05_wrap .floor_right_main .floor_content .item .wrap {
  621. width: 199px;
  622. }
  623. .adv_05_wrap .floor_right_main .floor_content .item .wrap:hover .title a{
  624. color: $colorMain;
  625. }
  626. .adv_05_wrap .floor_right_new .floor_content .item .wrap:hover .title a{
  627. color: $colorMain;
  628. }
  629. .adv_05_wrap .floor_right_main .floor_content .bottom_item {
  630. border-width: 0 0 0 1px;
  631. }
  632. .adv_05_wrap .floor_right_main .floor_content .item .ad_img {
  633. width: 162px;
  634. height: 162px;
  635. margin: 0 auto;
  636. display: block;
  637. transition: transform 0.5s;
  638. }
  639. .adv_05_wrap .floor_right_main .floor_content .item .ad_img:hover {
  640. transform: translateX(-4px);
  641. }
  642. .adv_05_wrap .floor_right_main .floor_content .item .title {
  643. margin: 10px 0 5px 0;
  644. height: 20px;
  645. line-height: 20px;
  646. overflow: hidden;
  647. text-overflow: ellipsis;
  648. display: -webkit-box;
  649. -webkit-line-clamp: 1;
  650. -webkit-box-orient: vertical;
  651. word-wrap: break-word;
  652. word-break: normal;
  653. font-size: 12px;
  654. background: #fff;
  655. letter-spacing: 0;
  656. width: 162px;
  657. margin-left: 18px;
  658. }
  659. .adv_05_wrap .floor_right_main .floor_content .item .title a {
  660. font-size: 12px;
  661. font-size: 12px;
  662. color: #000000;
  663. overflow: hidden;
  664. text-overflow: ellipsis;
  665. display: -webkit-box;
  666. word-break: break-all;
  667. -webkit-line-clamp: 2;
  668. -webkit-box-orient: vertical;
  669. }
  670. .adv_05_wrap .floor_right_main .floor_content .item .price {
  671. color: $colorMain;
  672. font-weight: bold;
  673. font-size: 12px;
  674. letter-spacing: 1px;
  675. width: auto;
  676. height: auto;
  677. line-height: 20px;
  678. text-align: left;
  679. width: 162px;
  680. margin-left: 18px;
  681. .money_number {
  682. font-size: 18px;
  683. margin-left: -3px;
  684. }
  685. }
  686. .adv_05_wrap .floor_right_main .floor_content .item.big_item {
  687. width: 440px;
  688. padding: 0;
  689. }
  690. .adv_05_wrap .floor_right_main .floor_content .item.big_item .wrap {
  691. width: 440px;
  692. padding: 39px 34px;
  693. box-sizing: border-box;
  694. }
  695. .adv_05_wrap .floor_right_main .floor_content .item.big_item .left_pic {
  696. width: 162px;
  697. height: 162px;
  698. float: left;
  699. }
  700. .adv_05_wrap .floor_right_main .floor_content .item.big_item .left_pic .ad_img {
  701. width: 162px;
  702. height: 162px;
  703. display: block;
  704. transition: transform 0.5s;
  705. }
  706. .adv_05_wrap .floor_right_main .floor_content .item.big_item .left_pic .ad_img:hover {
  707. transform: translateX(-4px);
  708. }
  709. .adv_05_wrap .floor_right_main .floor_content .item.big_item .right_info {
  710. width: 191px;
  711. height: 162px;
  712. margin: 0 0 0 18px;
  713. float: right;
  714. overflow: hidden;
  715. }
  716. .adv_05_wrap .floor_right_main .floor_content .item.big_item .right_info .title {
  717. margin-bottom: 5px;
  718. height: 56px;
  719. overflow: hidden;
  720. text-overflow: ellipsis;
  721. display: -webkit-box;
  722. -webkit-line-clamp: 3;
  723. -webkit-box-orient: vertical;
  724. word-wrap: break-word;
  725. word-break: normal;
  726. background: #fff;
  727. font-size: 12px;
  728. letter-spacing: 0;
  729. }
  730. .adv_05_wrap .floor_right_main .floor_content .item.big_item .right_info .title a {
  731. line-height: 18px !important;
  732. font-size: 12px;
  733. }
  734. .floor-con3 .ad_img img {
  735. width: 100%;
  736. height: 100%;
  737. }
  738. .adv_05_wrap .example_text {
  739. color: #777;
  740. text-align: center;
  741. position: relative;
  742. background: #fff !important;
  743. font-weight: 300;
  744. }
  745. .adv_05_wrap .example_text span {
  746. display: block;
  747. width: 100%;
  748. line-height: 24px;
  749. position: absolute;
  750. top: 50%;
  751. margin-top: -12px;
  752. font-size: 15px !important;
  753. }
  754. .adv_05_wrap .floor_left .floor_bg_img a.ad_img:before {
  755. content: "";
  756. position: absolute;
  757. width: 80px;
  758. height: 482px;
  759. top: 0;
  760. left: -150px;
  761. overflow: hidden;
  762. background: -moz-linear-gradient(
  763. left,
  764. rgba(255, 255, 255, 0) 0,
  765. rgba(255, 255, 255, 0.2) 50%,
  766. rgba(255, 255, 255, 0) 100%
  767. );
  768. background: -webkit-gradient(
  769. linear,
  770. left top,
  771. right top,
  772. color-stop(0%, rgba(255, 255, 255, 0)),
  773. color-stop(50%, rgba(255, 255, 255, 0.2)),
  774. color-stop(100%, rgba(255, 255, 255, 0))
  775. );
  776. background: -webkit-linear-gradient(
  777. left,
  778. rgba(255, 255, 255, 0) 0,
  779. rgba(255, 255, 255, 0.2) 50%,
  780. rgba(255, 255, 255, 0) 100%
  781. );
  782. background: -o-linear-gradient(
  783. left,
  784. rgba(255, 255, 255, 0) 0,
  785. rgba(255, 255, 255, 0.2) 50%,
  786. rgba(255, 255, 255, 0) 100%
  787. );
  788. -webkit-transform: skewX(-25deg);
  789. -moz-transform: skewX(-25deg);
  790. }
  791. .adv_05_wrap .floor_left .floor_bg_img a.ad_img:hover::before {
  792. -webkit-transition: left 0.5s;
  793. -moz-transition: left 0.5s;
  794. transition: left 0.5s;
  795. left: 320px;
  796. }
  797. .adv_05_wrap .floor_right_main .floor_content .ad_img {
  798. -webkit-transition: -webkit-transform 0.5s;
  799. transition: -webkit-transform 0.5s;
  800. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  801. transition: transform 0.5s;
  802. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  803. }
  804. .adv_05_wrap .floor_right_new .floor_content .item .left_pic .ad_img {
  805. -webkit-transition: -webkit-transform 0.5s;
  806. transition: -webkit-transform 0.5s;
  807. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  808. transition: transform 0.5s;
  809. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  810. }
  811. .adv_05_wrap .floor_right_new .floor_content .item .left_pic .ad_img:hover {
  812. -webkit-transform: translateX(4px);
  813. -ms-transform: translateX(4px);
  814. transform: translateX(4px);
  815. }
  816. .w_sld_react_1210 {
  817. width: 1440px;
  818. margin: 0 auto;
  819. }
  820. /* adv_05-end */
  821. /* adv_04-start */
  822. .w_sld_react_1210 {
  823. width: 1440px;
  824. }
  825. .adv_04_wrap {
  826. height: auto;
  827. min-height: 374px;
  828. }
  829. .adv_04_wrap .floor_title {
  830. position: relative;
  831. margin-bottom: 15px;
  832. height: 35px;
  833. line-height: 35px;
  834. overflow: hidden;
  835. margin-top: 10px;
  836. }
  837. .adv_04_wrap .floor_title h2 {
  838. width: 100%;
  839. line-height: 35px;
  840. // text-align: center;
  841. margin: 0 auto;
  842. font-size: 28px;
  843. color: #333;
  844. height: 35px;
  845. }
  846. .adv_04_wrap .floor_title h2 font {
  847. display: inline-block;
  848. width: 80px;
  849. height: 1px;
  850. background: $colorMain;
  851. position: relative;
  852. top: 20px;
  853. }
  854. .adv_04_wrap .floor_title h2 span {
  855. font-size: 24px;
  856. margin: 0 20px;
  857. color: $colorMain;
  858. width: auto;
  859. min-width: 30px;
  860. height: 35px;
  861. line-height: 35px;
  862. text-indent: 3px;
  863. display: inline-block;
  864. font-weight: normal;
  865. vertical-align: middle;
  866. }
  867. .adv_04_wrap .floor_goods {
  868. position: relative;
  869. width: 100%;
  870. overflow: hidden;
  871. }
  872. .adv_04_wrap .floor_goods .item {
  873. float: left;
  874. width: 286px;
  875. height: 326px;
  876. padding: 10px;
  877. background-color: #fff;
  878. box-sizing: border-box;
  879. }
  880. // .adv_04_wrap .floor_goods .item:nth-child(n + 6) {
  881. // border-bottom: 1px solid #f2f2f2;
  882. // }
  883. // .adv_04_wrap .floor_goods .item:nth-child(-n + 6) {
  884. // border-top: 1px solid #f2f2f2;
  885. // border-bottom: 1px solid #f2f2f2;
  886. // }
  887. .adv_04_wrap .floor_goods .item {
  888. border-right: 1px solid #f2f2f2;
  889. border-bottom: 1px solid #f2f2f2;
  890. }
  891. .adv_04_wrap .floor_goods .item .wrap {
  892. display: flex;
  893. flex-direction: column;
  894. justify-content: center;
  895. align-items: center;
  896. width: 100%;
  897. height: 100%;
  898. // text-align: center;
  899. // margin: 0 auto;
  900. font-size: $fontE;
  901. position: relative;
  902. a {
  903. width: 100%;
  904. height: 100%;
  905. display: flex;
  906. flex-direction: column;
  907. justify-content: center;
  908. align-items: center;
  909. }
  910. }
  911. .adv_04_wrap .floor_goods .item .wrap:hover .title a{
  912. color: $colorMain;
  913. text-align: center;
  914. }
  915. .adv_04_wrap .floor_goods .item .wrap img {
  916. width: 232px;
  917. height: 232px;
  918. display: block;
  919. }
  920. .adv_04_wrap .floor_goods .item .wrap .example_text {
  921. width: 170px;
  922. height: 170px;
  923. display: block;
  924. color: #777;
  925. text-align: center;
  926. position: relative;
  927. background: #eee !important;
  928. font-weight: 300;
  929. transition: opacity ease 0.5s;
  930. }
  931. .adv_04_wrap .floor_goods .item .wrap .example_text:hover {
  932. opacity: 0.65;
  933. }
  934. .adv_04_wrap .floor_goods .item .wrap .example_text span {
  935. margin-top: -24px;
  936. display: block;
  937. width: 100%;
  938. line-height: 24px;
  939. position: absolute;
  940. top: 50%;
  941. font-size: 15px !important;
  942. }
  943. .adv_04_wrap .floor_goods .item .wrap .title {
  944. // margin: 20px 0 8px 0;
  945. height: 44px;
  946. overflow: hidden;
  947. text-overflow: ellipsis;
  948. display: -webkit-box;
  949. -webkit-line-clamp: 2;
  950. -webkit-box-orient: vertical;
  951. word-wrap: break-word;
  952. word-break: normal;
  953. display: inline-block;
  954. background: #fff;
  955. letter-spacing: 0;
  956. text-align: center;
  957. margin-top: 20px;
  958. }
  959. .adv_04_wrap .floor_goods .item .wrap .title a {
  960. font-weight: bold;
  961. color: #282E30;
  962. line-height: 19px !important;
  963. overflow: hidden;
  964. text-overflow: ellipsis;
  965. display: -webkit-box;
  966. -webkit-line-clamp: 2;
  967. -webkit-box-orient: vertical;
  968. word-break: break-word;
  969. white-space: normal;
  970. }
  971. .adv_04_wrap .floor_goods .item .wrap .price {
  972. font-size: 12px;
  973. font-weight: bold;
  974. color: $colorMain;
  975. line-height: 25px;
  976. width: auto;
  977. height: auto;
  978. }
  979. .adv_04_wrap .floor_goods .item .wrap .price .money_number {
  980. font-size: 18px;
  981. font-weight: bold;
  982. margin: 0 0 0 -2px;
  983. //font-family: Arial, Helvetica, sans-serif;
  984. }
  985. /* adv_04-end */
  986. /* adv_06-start */
  987. .allow_show_edit .adv_06 .adv_06_wrap .item,
  988. .allow_show_edit .adv_06 .adv_06_wrap .item a {
  989. height: 350px;
  990. }
  991. .adv_06 {
  992. // margin-top: 10px !important;
  993. }
  994. .adv_06 .adv_06_wrap {
  995. width: 100%;
  996. position: relative;
  997. clear: both;
  998. overflow: hidden;
  999. }
  1000. .adv_06 .adv_06_wrap .item {
  1001. float: left;
  1002. width: 302px;
  1003. overflow: hidden;
  1004. }
  1005. .adv_06 .adv_06_wrap .item a {
  1006. -webkit-transition: opacity ease 0.5s;
  1007. -o-transition: opacity ease 0.5s;
  1008. -moz-transition: opacity ease 0.5s;
  1009. transition: opacity ease 0.5s;
  1010. display: block;
  1011. width: 302px;
  1012. }
  1013. .adv_06 .adv_06_wrap .item a:hover {
  1014. opacity: 0.65;
  1015. }
  1016. .adv_06 .adv_06_wrap .item a img {
  1017. max-width: 100%;
  1018. max-height: 100%;
  1019. }
  1020. .adv_06 .adv_06_wrap .item .show_tip {
  1021. color: #777;
  1022. text-align: center;
  1023. position: relative;
  1024. background: #eee !important;
  1025. font-weight: 300;
  1026. }
  1027. .adv_06 .adv_06_wrap .item .show_tip:hover {
  1028. background: #dedede !important;
  1029. }
  1030. .adv_06 .adv_06_wrap .item .show_tip span {
  1031. display: block;
  1032. width: 100%;
  1033. line-height: 24px;
  1034. position: absolute;
  1035. top: 50%;
  1036. margin-top: -12px;
  1037. font-size: 15px !important;
  1038. }
  1039. /* adv_06-end */
  1040. /* adv_07-start */
  1041. .allow_show_edit .adv_07 .adv_07_wrap .item,
  1042. .allow_show_edit .adv_07 .adv_07_wrap .item a {
  1043. height: 100px;
  1044. }
  1045. .adv_07 .adv_07_wrap {
  1046. width: 100%;
  1047. position: relative;
  1048. clear: both;
  1049. overflow: hidden;
  1050. }
  1051. .adv_07 .adv_07_wrap .item {
  1052. float: left;
  1053. width: 403px;
  1054. overflow: hidden;
  1055. }
  1056. .adv_07 .adv_07_wrap .item a {
  1057. -webkit-transition: opacity ease 0.5s;
  1058. -o-transition: opacity ease 0.5s;
  1059. -moz-transition: opacity ease 0.5s;
  1060. transition: opacity ease 0.5s;
  1061. display: block;
  1062. width: 403px;
  1063. }
  1064. .adv_07 .adv_07_wrap .item a:hover {
  1065. opacity: 0.65;
  1066. }
  1067. .adv_07 .adv_07_wrap .item a img {
  1068. max-width: 100%;
  1069. max-height: 100%;
  1070. }
  1071. .adv_07 .adv_07_wrap .item .show_tip {
  1072. color: #777;
  1073. text-align: center;
  1074. position: relative;
  1075. background: #eee !important;
  1076. font-weight: 300;
  1077. }
  1078. .adv_07 .adv_07_wrap .item .show_tip:hover {
  1079. background: #dedede !important;
  1080. }
  1081. .adv_07 .adv_07_wrap .item .show_tip span {
  1082. display: block;
  1083. width: 100%;
  1084. line-height: 24px;
  1085. position: absolute;
  1086. top: 50%;
  1087. margin-top: -12px;
  1088. font-size: 15px !important;
  1089. }
  1090. /* adv_07-end */
  1091. /* adv_08-start */
  1092. .allow_show_edit .adv_08 .adv_08_wrap .item,
  1093. .allow_show_edit .adv_08 .adv_08_wrap .item a {
  1094. height: 350px;
  1095. }
  1096. .adv_08 .adv_08_wrap {
  1097. width: 100%;
  1098. position: relative;
  1099. clear: both;
  1100. overflow: hidden;
  1101. }
  1102. .adv_08 .adv_08_wrap .item {
  1103. float: left;
  1104. width: 242px;
  1105. overflow: hidden;
  1106. }
  1107. .adv_08 .adv_08_wrap .item a {
  1108. -webkit-transition: opacity ease 0.5s;
  1109. -o-transition: opacity ease 0.5s;
  1110. -moz-transition: opacity ease 0.5s;
  1111. transition: opacity ease 0.5s;
  1112. display: block;
  1113. width: 242px;
  1114. line-height: 0;
  1115. }
  1116. .adv_08 .adv_08_wrap .item a:hover {
  1117. opacity: 0.65;
  1118. }
  1119. .adv_08 .adv_08_wrap .item a img {
  1120. max-width: 100%;
  1121. max-height: 100%;
  1122. }
  1123. .adv_08 .adv_08_wrap .item .show_tip {
  1124. color: #777;
  1125. text-align: center;
  1126. position: relative;
  1127. background: #eee !important;
  1128. font-weight: 300;
  1129. }
  1130. .adv_08 .adv_08_wrap .item .show_tip:hover {
  1131. background: #dedede !important;
  1132. }
  1133. .adv_08 .adv_08_wrap .item .show_tip span {
  1134. display: block;
  1135. width: 100%;
  1136. line-height: 24px;
  1137. position: absolute;
  1138. top: 50%;
  1139. margin-top: -12px;
  1140. font-size: 15px !important;
  1141. }
  1142. /* adv_08-end */
  1143. /* adv_09-start */
  1144. .adv_09 .adv_09_wrap {
  1145. width: 100%;
  1146. position: relative;
  1147. clear: both;
  1148. overflow: hidden;
  1149. }
  1150. .adv_09 .adv_09_wrap .item {
  1151. float: left;
  1152. width: 396px;
  1153. height: 450px;
  1154. background-color: #fff;
  1155. padding-top: 0;
  1156. }
  1157. .adv_09 .adv_09_wrap .item.right {
  1158. margin-left: 0;
  1159. }
  1160. .adv_09 .adv_09_wrap .item .top_title {
  1161. font-size: 23px;
  1162. text-align: center;
  1163. height: 58px;
  1164. line-height: 58px;
  1165. position: relative;
  1166. cursor: pointer;
  1167. }
  1168. .adv_09 .adv_09_wrap .item .main_con {
  1169. background-color: #fff;
  1170. margin: 10px;
  1171. height: 372px;
  1172. overflow: hidden;
  1173. position: relative;
  1174. }
  1175. .adv_09 .adv_09_wrap .item.left .main_con a {
  1176. width: 187px;
  1177. height: 123px;
  1178. float: left;
  1179. border-style: solid;
  1180. border-color: rgba(0, 0, 0, 0.1);
  1181. border-width: 0 0 1px 1px;
  1182. overflow: hidden;
  1183. position: relative;
  1184. text-align: center;
  1185. }
  1186. .adv_09 .adv_09_wrap .item.right .main_con a:nth-child(4) {
  1187. border-left: 0;
  1188. }
  1189. .adv_09 .adv_09_wrap .item.right .main_con a:nth-child(1) {
  1190. border-left: 0;
  1191. }
  1192. .adv_09 .adv_09_wrap .item.left .main_con .first {
  1193. border-width: 0 0 1px 0;
  1194. }
  1195. .adv_09 .adv_09_wrap .item .main_con a span {
  1196. display: block;
  1197. width: 100%;
  1198. line-height: 24px;
  1199. position: absolute;
  1200. top: 50%;
  1201. margin-top: -12px;
  1202. font-size: 13px !important;
  1203. color: #777;
  1204. }
  1205. .adv_09 .adv_09_wrap .item.center {
  1206. margin: 0 10px;
  1207. }
  1208. .adv_09 .adv_09_wrap .item.center .main_con a {
  1209. width: 376px;
  1210. height: 123px;
  1211. display: block;
  1212. overflow: hidden;
  1213. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  1214. position: relative;
  1215. text-align: center;
  1216. }
  1217. .adv_09 .adv_09_wrap .item.right .main_con a.first {
  1218. border-width: 0 0 1px 0;
  1219. }
  1220. .adv_09 .adv_09_wrap .item.right .main_con a {
  1221. width: 124px;
  1222. height: 185px;
  1223. float: left;
  1224. border-style: solid;
  1225. border-color: rgba(0, 0, 0, 0.1);
  1226. border-width: 0 0 1px 1px;
  1227. overflow: hidden;
  1228. position: relative;
  1229. text-align: center;
  1230. }
  1231. .adv_09 .adv_09_wrap .item .main_con a img {
  1232. max-width: 100%;
  1233. max-height: 100%;
  1234. }
  1235. /* adv_09-end */
  1236. /* adv_10-start */
  1237. .adv_10 .adv_10_wrap {
  1238. width: 100%;
  1239. position: relative;
  1240. clear: both;
  1241. overflow: hidden;
  1242. }
  1243. .adv_10 .adv_10_wrap .row_one,
  1244. .adv_10 .adv_10_wrap .row_four,
  1245. .adv_10 .adv_10_wrap .row_five {
  1246. position: relative;
  1247. }
  1248. .adv_10 .adv_10_wrap .row_one a {
  1249. width: 100%;
  1250. height: 30px;
  1251. //display: block;
  1252. margin-top: 10px;
  1253. }
  1254. .adv_10 .adv_10_wrap a {
  1255. background: #fff;
  1256. text-align: center;
  1257. -webkit-transition: -webkit-transform 0.5s;
  1258. transition: -webkit-transform 0.5s;
  1259. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  1260. transition: transform 0.5s;
  1261. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  1262. }
  1263. .adv_10 .adv_10_wrap a img {
  1264. max-width: 100%;
  1265. max-height: 100%;
  1266. }
  1267. .adv_10 .adv_10_wrap a span {
  1268. display: block;
  1269. width: 100%;
  1270. line-height: 24px;
  1271. position: absolute;
  1272. top: 50%;
  1273. margin-top: -12px;
  1274. font-size: 13px !important;
  1275. color: #777;
  1276. }
  1277. .adv_10 .adv_10_wrap .row_one a,
  1278. .adv_10 .adv_10_wrap .row_four a,
  1279. .adv_10 .adv_10_wrap .row_five a {
  1280. position: relative;
  1281. }
  1282. .adv_10 .adv_10_wrap .row_four {
  1283. height: 220px;
  1284. margin: 10px 0;
  1285. }
  1286. .adv_10 .adv_10_wrap .row_four a {
  1287. width: 295px;
  1288. height: 220px;
  1289. float: left;
  1290. margin: 0 10px 0 0;
  1291. display: block;
  1292. }
  1293. .adv_10 .adv_10_wrap .row_four a:last-child,
  1294. .adv_10 .adv_10_wrap .row_five a:last-child {
  1295. margin: 0;
  1296. }
  1297. .adv_10 .adv_10_wrap .row_five {
  1298. height: 130px;
  1299. margin: 10px 0;
  1300. }
  1301. .adv_10 .adv_10_wrap .row_five a {
  1302. width: 234px;
  1303. height: 130px;
  1304. float: left;
  1305. margin: 0 10px 0 0;
  1306. display: block;
  1307. }
  1308. .adv_10 .adv_10_wrap a:hover {
  1309. -webkit-transform: translateX(-4px);
  1310. -ms-transform: translateX(-4px);
  1311. transform: translateX(-4px);
  1312. }
  1313. /* adv_10-end */
  1314. /* adv_11-start */
  1315. .adv_11 .adv_11_wrap {
  1316. width: 100%;
  1317. position: relative;
  1318. clear: both;
  1319. overflow: hidden;
  1320. }
  1321. .adv_11 .adv_11_wrap .item {
  1322. float: left;
  1323. height: 535px;
  1324. position: relative;
  1325. }
  1326. .adv_11 .adv_11_wrap .item a {
  1327. background: #fff;
  1328. position: relative;
  1329. text-align: center;
  1330. -webkit-transition: -webkit-transform 0.5s;
  1331. transition: -webkit-transform 0.5s;
  1332. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  1333. transition: transform 0.5s;
  1334. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  1335. }
  1336. .adv_11 .adv_11_wrap .item a:hover {
  1337. -webkit-transform: translateX(-4px);
  1338. -ms-transform: translateX(-4px);
  1339. transform: translateX(-4px);
  1340. }
  1341. .adv_11 .adv_11_wrap .item a img {
  1342. max-width: 100%;
  1343. max-height: 100%;
  1344. }
  1345. .adv_11 .adv_11_wrap .item a span {
  1346. display: block;
  1347. width: 100%;
  1348. line-height: 24px;
  1349. position: absolute;
  1350. top: 50%;
  1351. margin-top: -12px;
  1352. font-size: 13px !important;
  1353. color: #777;
  1354. }
  1355. .adv_11 .adv_11_wrap .row_left {
  1356. width: 800px;
  1357. }
  1358. .adv_11 .adv_11_wrap .row_left .lb_margin {
  1359. margin: 0 0 10px 10px;
  1360. }
  1361. .adv_11 .adv_11_wrap .row_right {
  1362. width: 400px;
  1363. margin-left: 10px;
  1364. }
  1365. .adv_11 .adv_11_wrap .row_left a {
  1366. float: left;
  1367. width: 395px;
  1368. height: 170px;
  1369. display: block;
  1370. }
  1371. .adv_11 .adv_11_wrap .row_right .top {
  1372. height: 350px;
  1373. position: relative;
  1374. }
  1375. .adv_11 .adv_11_wrap .row_right .top a {
  1376. height: 350px;
  1377. width: 400px;
  1378. display: block;
  1379. }
  1380. .adv_11 .adv_11_wrap .row_right .bottom {
  1381. height: 170px;
  1382. margin-top: 10px;
  1383. position: relative;
  1384. }
  1385. .adv_11 .adv_11_wrap .row_right .bottom a {
  1386. height: 170px;
  1387. width: 400px;
  1388. display: block;
  1389. }
  1390. /* adv_11-end */
  1391. /* adv_12-start */
  1392. .adv_12 .adv_12_wrap {
  1393. width: 100%;
  1394. position: relative;
  1395. clear: both;
  1396. overflow: hidden;
  1397. }
  1398. .adv_12 .adv_12_wrap .item {
  1399. float: left;
  1400. width: 396px;
  1401. background-color: #ffffff;
  1402. height: 450px;
  1403. padding: 10px;
  1404. position: relative;
  1405. box-sizing: border-box;
  1406. }
  1407. .adv_12 .adv_12_wrap .item:first-child {
  1408. margin-right: 10px;
  1409. }
  1410. .adv_12 .adv_12_wrap .item:last-child {
  1411. margin-left: 10px;
  1412. }
  1413. .adv_12 .adv_12_wrap .item.clear_padding {
  1414. padding: 0;
  1415. }
  1416. .adv_12 .adv_12_wrap .item .l_img {
  1417. width: 396px;
  1418. height: 450px;
  1419. display: block;
  1420. overflow: hidden;
  1421. position: relative;
  1422. }
  1423. .adv_12 .adv_12_wrap .item .l_img:before {
  1424. content: "";
  1425. position: absolute;
  1426. width: 80px;
  1427. height: 450px;
  1428. top: 0;
  1429. left: -150px;
  1430. overflow: hidden;
  1431. background: -moz-linear-gradient(
  1432. left,
  1433. rgba(255, 255, 255, 0) 0,
  1434. rgba(255, 255, 255, 0.2) 50%,
  1435. rgba(255, 255, 255, 0) 100%
  1436. );
  1437. background: -webkit-gradient(
  1438. linear,
  1439. left top,
  1440. right top,
  1441. color-stop(0%, rgba(255, 255, 255, 0)),
  1442. color-stop(50%, rgba(255, 255, 255, 0.2)),
  1443. color-stop(100%, rgba(255, 255, 255, 0))
  1444. );
  1445. background: -webkit-linear-gradient(
  1446. left,
  1447. rgba(255, 255, 255, 0) 0,
  1448. rgba(255, 255, 255, 0.2) 50%,
  1449. rgba(255, 255, 255, 0) 100%
  1450. );
  1451. background: -o-linear-gradient(
  1452. left,
  1453. rgba(255, 255, 255, 0) 0,
  1454. rgba(255, 255, 255, 0.2) 50%,
  1455. rgba(255, 255, 255, 0) 100%
  1456. );
  1457. -webkit-transform: skewX(-25deg);
  1458. -moz-transform: skewX(-25deg);
  1459. }
  1460. .adv_12 .adv_12_wrap .item.left a:hover {
  1461. color: #0c0c0c;
  1462. }
  1463. .adv_12 .adv_12_wrap .item.left a:hover::before {
  1464. -webkit-transition: left 0.5s;
  1465. -moz-transition: left 0.5s;
  1466. transition: left 0.5s;
  1467. left: 450px;
  1468. }
  1469. .adv_12 .adv_12_wrap .item a {
  1470. width: 100%;
  1471. height: 100%;
  1472. text-align: center;
  1473. //background: #eee !important;
  1474. position: relative;
  1475. display: inline-block;
  1476. }
  1477. .adv_12 .adv_12_wrap .item a img {
  1478. max-width: 100%;
  1479. max-height: 100%;
  1480. }
  1481. .adv_12 .adv_12_wrap .item a span {
  1482. display: block;
  1483. width: 100%;
  1484. line-height: 24px;
  1485. position: absolute;
  1486. top: 50%;
  1487. margin-top: -12px;
  1488. font-size: 13px !important;
  1489. color: #777;
  1490. }
  1491. .adv_12 .adv_12_wrap .item.center a {
  1492. float: left;
  1493. width: 183px;
  1494. height: 210px;
  1495. margin-bottom: 10px;
  1496. display: block;
  1497. }
  1498. .adv_12 .adv_12_wrap .item.center a,
  1499. .adv_12 .adv_12_wrap .item.right .img_top a,
  1500. .adv_12 .adv_12_wrap .item.right .img_bottom a {
  1501. -webkit-transition: -webkit-transform 0.5s;
  1502. transition: -webkit-transform 0.5s;
  1503. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  1504. transition: transform 0.5s;
  1505. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  1506. }
  1507. .adv_12 .adv_12_wrap .item.center a.l_b_margin {
  1508. margin-left: 10px;
  1509. margin-bottom: 10px;
  1510. }
  1511. .adv_12 .adv_12_wrap .item.center a:hover,
  1512. .adv_12 .adv_12_wrap .item.right .img_top a:hover,
  1513. .adv_12 .adv_12_wrap .item.right .img_bottom a:hover {
  1514. -webkit-transform: scale(1.05);
  1515. -ms-transform: scale(1.05);
  1516. -o-transform: scale(1.05);
  1517. -moz-transform: scale(1.05);
  1518. transform: scale(1.05);
  1519. }
  1520. .adv_12 .adv_12_wrap .item.right .title_wrap {
  1521. height: 50px;
  1522. line-height: 50px;
  1523. position: relative;
  1524. }
  1525. .adv_12 .adv_12_wrap .item.right .title_wrap .title {
  1526. font-size: 19px;
  1527. color: #666;
  1528. display: inline;
  1529. background: #fff;
  1530. }
  1531. .adv_12 .adv_12_wrap .item.right .title_wrap .title span {
  1532. margin: 0 18px 0 5px;
  1533. }
  1534. .adv_12 .adv_12_wrap .item.right .title_wrap .subtitle {
  1535. font-size: 12px;
  1536. color: #666;
  1537. display: inline;
  1538. }
  1539. .adv_12 .adv_12_wrap .item.right .img_top {
  1540. width: 376px;
  1541. height: 180px;
  1542. margin: 10px 0px;
  1543. position: relative;
  1544. }
  1545. .adv_12 .adv_12_wrap .item.right .img_bottom {
  1546. position: relative;
  1547. width: 376px;
  1548. height: 180px;
  1549. }
  1550. .adv_12 .adv_12_wrap .item.right .img_bottom a {
  1551. float: left;
  1552. width: 183px;
  1553. height: 180px;
  1554. position: relative;
  1555. text-align: center;
  1556. }
  1557. .adv_12 .adv_12_wrap .item.right .img_bottom a:last-child {
  1558. margin-left: 10px;
  1559. }
  1560. /* adv_12-end */
  1561. /* adv_13-start */
  1562. .adv_13 .adv_13_wrap {
  1563. width: 100%;
  1564. position: relative;
  1565. clear: both;
  1566. overflow: hidden;
  1567. }
  1568. .adv_13 .adv_13_wrap .item {
  1569. float: left;
  1570. width: 396px;
  1571. background-color: #ffffff;
  1572. height: 450px;
  1573. padding: 10px;
  1574. position: relative;
  1575. box-sizing: border-box;
  1576. margin-left: 0;
  1577. }
  1578. .adv_13 .adv_13_wrap .item:first-child {
  1579. margin-right: 10px;
  1580. }
  1581. .adv_13 .adv_13_wrap .item:last-child {
  1582. margin-left: 10px;
  1583. }
  1584. .adv_13 .adv_13_wrap .item.clear_padding {
  1585. padding: 0;
  1586. }
  1587. .adv_13 .adv_13_wrap .item .l_img {
  1588. width: 396px;
  1589. height: 450px;
  1590. display: block;
  1591. overflow: hidden;
  1592. position: relative;
  1593. }
  1594. .adv_13 .adv_13_wrap .item .l_img:before {
  1595. content: "";
  1596. position: absolute;
  1597. width: 80px;
  1598. height: 450px;
  1599. top: 0;
  1600. left: -150px;
  1601. overflow: hidden;
  1602. background: -moz-linear-gradient(
  1603. left,
  1604. rgba(255, 255, 255, 0) 0,
  1605. rgba(255, 255, 255, 0.2) 50%,
  1606. rgba(255, 255, 255, 0) 100%
  1607. );
  1608. background: -webkit-gradient(
  1609. linear,
  1610. left top,
  1611. right top,
  1612. color-stop(0%, rgba(255, 255, 255, 0)),
  1613. color-stop(50%, rgba(255, 255, 255, 0.2)),
  1614. color-stop(100%, rgba(255, 255, 255, 0))
  1615. );
  1616. background: -webkit-linear-gradient(
  1617. left,
  1618. rgba(255, 255, 255, 0) 0,
  1619. rgba(255, 255, 255, 0.2) 50%,
  1620. rgba(255, 255, 255, 0) 100%
  1621. );
  1622. background: -o-linear-gradient(
  1623. left,
  1624. rgba(255, 255, 255, 0) 0,
  1625. rgba(255, 255, 255, 0.2) 50%,
  1626. rgba(255, 255, 255, 0) 100%
  1627. );
  1628. -webkit-transform: skewX(-25deg);
  1629. -moz-transform: skewX(-25deg);
  1630. }
  1631. .adv_13 .adv_13_wrap .item.left a:hover {
  1632. color: #0c0c0c;
  1633. }
  1634. .adv_13 .adv_13_wrap .item.left a:hover::before {
  1635. -webkit-transition: left 0.5s;
  1636. -moz-transition: left 0.5s;
  1637. transition: left 0.5s;
  1638. left: 450px;
  1639. }
  1640. .adv_13 .adv_13_wrap .item a {
  1641. width: 100%;
  1642. height: 100%;
  1643. text-align: center;
  1644. //background: #eee !important;
  1645. position: relative;
  1646. display: inline-block;
  1647. }
  1648. .adv_13 .adv_13_wrap .item a img {
  1649. max-width: 100%;
  1650. max-height: 100%;
  1651. }
  1652. .adv_13 .adv_13_wrap .item a span {
  1653. display: block;
  1654. width: 100%;
  1655. line-height: 24px;
  1656. position: absolute;
  1657. top: 50%;
  1658. margin-top: -12px;
  1659. font-size: 13px !important;
  1660. color: #777;
  1661. }
  1662. .adv_13 .adv_13_wrap .item.center a {
  1663. float: left;
  1664. width: 183px;
  1665. height: 210px;
  1666. margin-bottom: 10px;
  1667. display: block;
  1668. }
  1669. .adv_13 .adv_13_wrap .item.center a,
  1670. .adv_13 .adv_13_wrap .item.right .img_top a,
  1671. .adv_13 .adv_13_wrap .item.right .img_bottom a {
  1672. -webkit-transition: -webkit-transform 0.5s;
  1673. transition: -webkit-transform 0.5s;
  1674. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  1675. transition: transform 0.5s;
  1676. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  1677. }
  1678. .adv_13 .adv_13_wrap .item.center a.l_b_margin {
  1679. margin-left: 10px;
  1680. margin-bottom: 10px;
  1681. }
  1682. .adv_13 .adv_13_wrap .item.center a:hover,
  1683. .adv_13 .adv_13_wrap .item.right .img_top a:hover,
  1684. .adv_13 .adv_13_wrap .item.right .img_bottom a:hover {
  1685. -webkit-transform: scale(1.05);
  1686. -ms-transform: scale(1.05);
  1687. -o-transform: scale(1.05);
  1688. -moz-transform: scale(1.05);
  1689. transform: scale(1.05);
  1690. }
  1691. .adv_13 .adv_13_wrap .item.right .title_wrap {
  1692. height: 50px;
  1693. line-height: 50px;
  1694. position: relative;
  1695. }
  1696. .adv_13 .adv_13_wrap .item.right .title_wrap .title {
  1697. font-size: 19px;
  1698. color: #666;
  1699. display: inline;
  1700. background: #fff;
  1701. }
  1702. .adv_13 .adv_13_wrap .item.right .title_wrap .title span {
  1703. margin: 0 18px 0 5px;
  1704. }
  1705. .adv_13 .adv_13_wrap .item.right .title_wrap .subtitle {
  1706. font-size: 12px;
  1707. color: #666;
  1708. display: inline;
  1709. }
  1710. .adv_13 .adv_13_wrap .item.right .img_top {
  1711. width: 376px;
  1712. height: 180px;
  1713. margin: 10px 0px;
  1714. position: relative;
  1715. overflow: hidden;
  1716. }
  1717. .adv_13 .adv_13_wrap .item.right .img_bottom {
  1718. position: relative;
  1719. width: 376px;
  1720. height: 180px;
  1721. }
  1722. .adv_13 .adv_13_wrap .item.right .img_bottom a {
  1723. float: left;
  1724. width: 183px;
  1725. height: 180px;
  1726. position: relative;
  1727. text-align: center;
  1728. }
  1729. .adv_13 .adv_13_wrap .item.right .img_bottom a:last-child {
  1730. margin-left: 10px;
  1731. }
  1732. /* adv_13-end */
  1733. /* adv_14-start */
  1734. .adv_14 .adv_14_wrap {
  1735. width: 100%;
  1736. position: relative;
  1737. clear: both;
  1738. overflow: hidden;
  1739. }
  1740. /* adv_14-end */
  1741. /* adv_15-start */
  1742. .adv_15 .adv_15_wrap {
  1743. width: 100%;
  1744. position: relative;
  1745. clear: both;
  1746. overflow: hidden;
  1747. }
  1748. .adv_15 .adv_15_wrap .top_title {
  1749. width: 1440px;
  1750. height: 40px;
  1751. line-height: 40px;
  1752. border-style: solid;
  1753. border-width: 0 0 2px 0;
  1754. box-sizing: content-box;
  1755. }
  1756. .adv_15 .adv_15_wrap .top_title .title {
  1757. position: relative;
  1758. height: 40px;
  1759. line-height: 40px;
  1760. font-size: 20px;
  1761. color: #333;
  1762. width: 402px;
  1763. text-indent: 5px;
  1764. font-weight: normal;
  1765. float: left;
  1766. overflow: hidden;
  1767. }
  1768. .adv_15 .adv_15_wrap .top_title .tab_nav {
  1769. width: auto;
  1770. height: 40px;
  1771. position: relative;
  1772. float: right;
  1773. z-index: 1;
  1774. }
  1775. .adv_15 .adv_15_wrap .top_title .tab_nav li {
  1776. background-color: #f2f2f2;
  1777. width: auto;
  1778. height: 40px;
  1779. float: left;
  1780. padding: 0;
  1781. position: relative;
  1782. z-index: 1;
  1783. cursor: pointer;
  1784. margin-left: 10px;
  1785. padding: 0 30px;
  1786. }
  1787. .adv_15 .adv_15_wrap .top_title .tab_nav li i.arrow {
  1788. font-style: normal;
  1789. font-size: 0px;
  1790. line-height: 0;
  1791. display: none;
  1792. width: 0px;
  1793. height: 0px;
  1794. float: right;
  1795. margin-left: -4px;
  1796. border-width: 5px;
  1797. border-style: solid dashed dashed dashed;
  1798. position: absolute;
  1799. z-index: 1;
  1800. bottom: -12px;
  1801. left: 50%;
  1802. }
  1803. .adv_15 .adv_15_wrap .top_title .tab_nav li h3 {
  1804. font-size: 14px;
  1805. font-weight: 400;
  1806. line-height: 38px;
  1807. text-align: center;
  1808. }
  1809. /* adv_15-end */
  1810. .sld_no_border_bottom {
  1811. border-bottom: 0 !important;
  1812. }
  1813. div,
  1814. p,
  1815. ul {
  1816. padding: 0;
  1817. margin: 0;
  1818. }
  1819. ul,
  1820. ol,
  1821. li {
  1822. list-style-image: none;
  1823. list-style-type: none;
  1824. }
  1825. a {
  1826. cursor: pointer;
  1827. }
  1828. /* adv_19-start */
  1829. .adv_19 .adv_19_wrap {
  1830. width: 100%;
  1831. position: relative;
  1832. clear: both;
  1833. overflow: hidden;
  1834. }
  1835. .adv_19 .sld_com_no_img {
  1836. background: #fff !important;
  1837. }
  1838. .adv_19 .adv_19_wrap .item {
  1839. overflow: hidden;
  1840. }
  1841. .adv_19 .adv_19_wrap .item:last-child {
  1842. margin-left: 10px !important;
  1843. }
  1844. .adv_19 .adv_19_wrap .item.left {
  1845. width: 600px;
  1846. display: inline-block;
  1847. height: 546px;
  1848. margin: 10px auto;
  1849. background-color: #fff;
  1850. }
  1851. .adv_19 .adv_19_wrap .item.left .top_title {
  1852. width: 100%;
  1853. height: 56px;
  1854. line-height: 56px;
  1855. background: rgb(248, 154, 63);
  1856. color: #fff;
  1857. padding: 0 5px 0 22px;
  1858. overflow: hidden;
  1859. }
  1860. .adv_19 .adv_19_wrap .item.left .top_title .l_title {
  1861. font-size: 20px;
  1862. float: left;
  1863. width: 200px;
  1864. height: 56px;
  1865. position: relative;
  1866. }
  1867. .adv_19 .adv_19_wrap .item.left .top_title .r_title {
  1868. float: left;
  1869. width: 373px;
  1870. border-width: 0;
  1871. height: 57px;
  1872. line-height: 57px;
  1873. border-style: solid;
  1874. border-color: rgb(239, 240, 241);
  1875. text-align: right;
  1876. }
  1877. .adv_19 .adv_19_wrap .item.left .top_title .r_title ul {
  1878. float: right;
  1879. }
  1880. .adv_19 .adv_19_wrap .item.left .top_title .r_title ul li {
  1881. margin: 0 5px;
  1882. position: relative;
  1883. float: left;
  1884. cursor: pointer;
  1885. min-width: 60px;
  1886. text-align: center;
  1887. }
  1888. .adv_19 .adv_19_wrap .item.left .top_title .r_title ul li a {
  1889. position: absolute;
  1890. top: 0px;
  1891. left: 0px;
  1892. font-size: 12px;
  1893. color: #fff;
  1894. background: #4da2fd;
  1895. padding: 2px 5px 2px 1px;
  1896. line-height: 20px;
  1897. visibility: hidden;
  1898. margin: 0;
  1899. z-index: 33;
  1900. }
  1901. .adv_19 .adv_19_wrap .item.left .top_title .r_title ul li .con {
  1902. background-color: rgb(235, 174, 99);
  1903. border: 1px solid rgb(253, 224, 194);
  1904. padding: 9px 29px;
  1905. font-size: 13px;
  1906. }
  1907. .adv_19 .adv_19_wrap .item.left .top_title .r_title ul li.sel_tab .con {
  1908. background: rgb(248, 154, 63);
  1909. }
  1910. .adv_19 .adv_19_wrap .item.left .center {
  1911. padding: 10px;
  1912. height: auto;
  1913. overflow: hidden;
  1914. }
  1915. .adv_19 .adv_19_wrap .item.left .center .l_center {
  1916. position: relative;
  1917. width: 186px;
  1918. height: 340px;
  1919. display: block;
  1920. float: left;
  1921. }
  1922. .adv_19 .adv_19_wrap .item.left .center .l_center a {
  1923. width: 186px;
  1924. height: 340px;
  1925. display: block;
  1926. position: relative;
  1927. overflow: hidden;
  1928. text-align: center;
  1929. background: #eee !important;
  1930. font-weight: 300;
  1931. }
  1932. .adv_19 .adv_19_wrap .item.left .center .l_center a span {
  1933. display: block;
  1934. width: 100%;
  1935. line-height: 24px;
  1936. position: absolute;
  1937. top: 50%;
  1938. margin-top: -12px;
  1939. font-size: 13px !important;
  1940. color: #777;
  1941. }
  1942. .adv_19 .adv_19_wrap .item.left .center .l_center a:before {
  1943. content: "";
  1944. position: absolute;
  1945. width: 80px;
  1946. height: 409px;
  1947. top: 0;
  1948. left: -150px;
  1949. overflow: hidden;
  1950. background: -webkit-linear-gradient(
  1951. left,
  1952. rgba(255, 255, 255, 0) 0,
  1953. rgba(255, 255, 255, 0.2) 50%,
  1954. rgba(255, 255, 255, 0) 100%
  1955. );
  1956. }
  1957. .adv_19 .adv_19_wrap .item.left .center .l_center a:hover::before {
  1958. -webkit-transition: left 0.5s;
  1959. -moz-transition: left 0.5s;
  1960. transition: left 0.5s;
  1961. left: 260px;
  1962. }
  1963. .adv_19 .adv_19_wrap .item.left .center .r_center {
  1964. width: 394px;
  1965. display: block;
  1966. float: left;
  1967. }
  1968. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel {
  1969. width: 100%;
  1970. height: 340px;
  1971. overflow: hidden;
  1972. }
  1973. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item {
  1974. width: 197px;
  1975. height: 170px;
  1976. display: block;
  1977. float: left;
  1978. border-color: rgb(239, 240, 241);
  1979. border-style: solid;
  1980. border-width: 0 0 1px 1px;
  1981. padding: 12px;
  1982. }
  1983. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .title_wrap {
  1984. margin: 0;
  1985. text-align: center;
  1986. }
  1987. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .title_wrap a {
  1988. overflow: hidden;
  1989. height: 20px;
  1990. line-height: 20px;
  1991. text-overflow: ellipsis;
  1992. display: block;
  1993. -webkit-line-clamp: 1;
  1994. -webkit-box-orient: vertical;
  1995. word-wrap: break-word;
  1996. word-break: normal;
  1997. }
  1998. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .title_wrap a.main_title {
  1999. font-size: 14px;
  2000. color: #000000;
  2001. }
  2002. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item {
  2003. margin-left: 0 !important;
  2004. }
  2005. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .title_wrap a.sub_title {
  2006. font-size: 12px;
  2007. color: rgb(55, 155, 201);
  2008. }
  2009. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .bottom_img {
  2010. -webkit-transition: -webkit-transform 0.5s;
  2011. transition: -webkit-transform 0.5s;
  2012. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  2013. transition: transform 0.5s;
  2014. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  2015. }
  2016. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .bottom_img:hover {
  2017. -webkit-transform: scale(1.05);
  2018. -ms-transform: scale(1.05);
  2019. -o-transform: scale(1.05);
  2020. -moz-transform: scale(1.05);
  2021. transform: scale(1.05);
  2022. }
  2023. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .bottom_img:hover a span {
  2024. color: #777;
  2025. }
  2026. .adv_19 .adv_19_wrap .item.left .center .r_center .tabs_panel .item .bottom_img a {
  2027. width: 172px;
  2028. height: 106px;
  2029. display: block;
  2030. }
  2031. .adv_19 .adv_19_wrap .item.left .bottom {
  2032. width: 600px;
  2033. height: 120px;
  2034. overflow: hidden;
  2035. position: relative;
  2036. }
  2037. .adv_19 .adv_19_wrap .item.left .bottom a {
  2038. width: 187px;
  2039. height: 120px;
  2040. display: block;
  2041. float: left;
  2042. margin-left: 10px;
  2043. position: relative;
  2044. overflow: hidden;
  2045. }
  2046. /* adv_19-end */
  2047. /* adv_20-start */
  2048. .adv_20 .adv_20_wrap {
  2049. width: 100%;
  2050. position: relative;
  2051. clear: both;
  2052. overflow: hidden;
  2053. flex-wrap: wrap;
  2054. background: #FBFBFD;
  2055. padding: 18px 0;
  2056. }
  2057. .adv_20 .adv_20_wrap .adv_20_wrap_row{
  2058. width: 100%;
  2059. padding: 0 35px;
  2060. position: relative;
  2061. }
  2062. .adv_20 .adv_20_wrap .adv_20_wrap_item{
  2063. flex-shrink: 0;
  2064. width: 190px;
  2065. margin: 18px 0;
  2066. }
  2067. .adv_20 .adv_20_wrap .adv_20_wrap_item .adv_20_wrap_item_img{
  2068. width: 70px;
  2069. height:70px;
  2070. cursor: pointer;
  2071. img{
  2072. max-width: 100%;
  2073. max-height: 100%;
  2074. }
  2075. }
  2076. .adv_20 .adv_20_wrap .adv_20_wrap_item .main_title{
  2077. font-size: 14px;
  2078. //font-family: PingFangSC-Semibold, PingFang SC;
  2079. font-weight: 600;
  2080. color: #333;
  2081. line-height: 20px;
  2082. margin-top: 17px;
  2083. cursor: pointer;
  2084. }
  2085. .adv_20 .adv_20_wrap .adv_20_wrap_item .sub_title{
  2086. font-size: 12px;
  2087. //font-family: PingFangSC-Regular, PingFang SC;
  2088. font-weight: 400;
  2089. color: #333;
  2090. line-height: 17px;
  2091. margin-top: 12px;
  2092. cursor: pointer;
  2093. }
  2094. /* adv_20-end */
  2095. /* adv_21-start */
  2096. .adv_21 .adv_21_wrap {
  2097. width: 100%;
  2098. position: relative;
  2099. clear: both;
  2100. overflow: hidden;
  2101. flex-wrap: wrap;
  2102. background: #FBFBFD;
  2103. padding: 18px 0;
  2104. }
  2105. .adv_21 .adv_21_wrap .adv_21_wrap_item{
  2106. width: 380px;
  2107. height: 388px;
  2108. background: #FFF;
  2109. box-shadow: 0 0 6px 0 rgba(0,0,0,0.09);
  2110. border-radius: 2px;
  2111. margin-right: 35px;
  2112. }
  2113. .adv_21 .adv_21_wrap .adv_21_wrap_item:last-child{
  2114. width: 380px;
  2115. height: 388px;
  2116. background: #FFF;
  2117. box-shadow: 0 0 6px 0 rgba(0,0,0,0.09);
  2118. border-radius: 2px;
  2119. margin-right: 0;
  2120. }
  2121. .adv_21 .adv_21_wrap .adv_21_wrap_item .title_part{
  2122. width: 100%;
  2123. height: 54px;
  2124. border-bottom: 1px solid #F0F0F0;
  2125. cursor: pointer;
  2126. flex-shrink: 0;
  2127. position: relative;
  2128. }
  2129. .adv_21 .adv_21_wrap .adv_21_wrap_item .title_part .title{
  2130. font-size: 20px;
  2131. //font-family: PingFangSC-Semibold, PingFang SC;
  2132. font-weight: 600;
  2133. color: #333;
  2134. line-height: 28px;
  2135. border-left: 4px solid #EE712E;
  2136. padding-left: 15px;
  2137. }
  2138. .adv_21 .adv_21_wrap .adv_21_wrap_item .title_part .view_more{
  2139. height: 20px;
  2140. font-size: 14px;
  2141. //font-family: PingFangSC-Regular, PingFang SC;
  2142. font-weight: 400;
  2143. color: #EE712E;
  2144. line-height: 20px;
  2145. margin-right: 18px;
  2146. }
  2147. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail{
  2148. flex: 1;
  2149. width: 100%;
  2150. }
  2151. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail .item {
  2152. margin-top: 19px;
  2153. }
  2154. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail .item .item_left{
  2155. font-size: 16px;
  2156. //font-family: PingFangSC-Regular, PingFang SC;
  2157. font-weight: 400;
  2158. color: #A2A2A2;
  2159. line-height: 30px;
  2160. margin-left: 20px;
  2161. width: 110px;
  2162. flex-shrink: 0;
  2163. cursor: pointer;
  2164. position: relative;
  2165. }
  2166. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail .item .item_right{
  2167. flex-wrap:wrap;
  2168. margin-right: 15px;
  2169. position: relative;
  2170. }
  2171. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail .item .item_right .item_right_con{
  2172. margin-right: 20px;
  2173. font-size: 14px;
  2174. //font-family: PingFangSC-Regular, PingFang SC;
  2175. font-weight: 400;
  2176. color: #666;
  2177. line-height: 28px;
  2178. cursor: pointer;
  2179. margin-right: 20px;
  2180. }
  2181. .adv_21 .adv_21_wrap .adv_21_wrap_item .detail .item .item_right .item_right_con:hover{
  2182. color: #EE712E;
  2183. }
  2184. /* adv_21-end */
  2185. .sld_no_border_bottom {
  2186. border-bottom: 0 !important;
  2187. }
  2188. .sld_com_no_img {
  2189. color: #777;
  2190. text-align: center;
  2191. position: relative;
  2192. background: #eee !important;
  2193. font-weight: 300;
  2194. }
  2195. .sld_com_no_img img {
  2196. max-width: 100%;
  2197. max-height: 100%;
  2198. }
  2199. .sld_com_no_img span {
  2200. display: block;
  2201. width: 100%;
  2202. line-height: 24px;
  2203. position: absolute;
  2204. top: 50%;
  2205. margin-top: -12px;
  2206. font-size: 13px !important;
  2207. }
  2208. .com_1210_center {
  2209. width: 1440px;
  2210. margin: 0 auto;
  2211. }
  2212. .com_1210_center .adv_19_wrap .item.left {
  2213. margin: 10px 0;
  2214. }
  2215. .adv_19_wrap img {
  2216. max-width: 100%;
  2217. max-height: 100%;
  2218. }
  2219. .com_1210_center .adv_19_wrap .item.left:nth-child(2n) {
  2220. margin: 10px 0 !important;
  2221. }
  2222. //flex 常用布局
  2223. .flex_row_center_center {
  2224. display: flex;
  2225. justify-content: center;
  2226. align-items: center;
  2227. }
  2228. .flex_row_center_between {
  2229. display: flex;
  2230. justify-content: center;
  2231. align-items: space-between;
  2232. }
  2233. .flex_row_center_around {
  2234. display: flex;
  2235. justify-content: center;
  2236. align-items: space-around;
  2237. }
  2238. .flex_row_center_start {
  2239. display: flex;
  2240. justify-content: center;
  2241. align-items: flex-start;
  2242. }
  2243. .flex_row_center_end {
  2244. display: flex;
  2245. justify-content: center;
  2246. align-items: flex-end;
  2247. }
  2248. .flex_row_between_center {
  2249. display: flex;
  2250. justify-content: space-between;
  2251. align-items: center;
  2252. }
  2253. .flex_row_between_between {
  2254. display: flex;
  2255. justify-content: space-between;
  2256. align-items: space-between;
  2257. }
  2258. .flex_row_between_around {
  2259. display: flex;
  2260. justify-content: space-between;
  2261. align-items: space-around;
  2262. }
  2263. .flex_row_between_start {
  2264. display: flex;
  2265. justify-content: space-between;
  2266. align-items: flex-start;
  2267. }
  2268. .flex_row_between_end {
  2269. display: flex;
  2270. justify-content: space-between;
  2271. align-items: flex-end;
  2272. }
  2273. .flex_row_around_center {
  2274. display: flex;
  2275. justify-content: space-around;
  2276. align-items: center;
  2277. }
  2278. .flex_row_around_between {
  2279. display: flex;
  2280. justify-content: space-around;
  2281. align-items: space-between;
  2282. }
  2283. .flex_row_around_around {
  2284. display: flex;
  2285. justify-content: space-around;
  2286. align-items: space-around;
  2287. }
  2288. .flex_row_around_start {
  2289. display: flex;
  2290. justify-content: space-around;
  2291. align-items: flex-start;
  2292. }
  2293. .flex_row_around_end {
  2294. display: flex;
  2295. justify-content: space-around;
  2296. align-items: flex-end;
  2297. }
  2298. .flex_row_start_center {
  2299. display: flex;
  2300. justify-content: flex-start;
  2301. align-items: center;
  2302. }
  2303. .flex_row_start_between {
  2304. display: flex;
  2305. justify-content: flex-start;
  2306. align-items: space-between;
  2307. }
  2308. .flex_row_start_around {
  2309. display: flex;
  2310. justify-content: flex-start;
  2311. align-items: space-around;
  2312. }
  2313. .flex_row_start_start {
  2314. display: flex;
  2315. justify-content: flex-start;
  2316. align-items: flex-start;
  2317. }
  2318. .flex_row_start_end {
  2319. display: flex;
  2320. justify-content: flex-start;
  2321. align-items: flex-end;
  2322. }
  2323. .flex_row_end_center {
  2324. display: flex;
  2325. justify-content: flex-end;
  2326. align-items: center;
  2327. }
  2328. .flex_row_end_between {
  2329. display: flex;
  2330. justify-content: flex-end;
  2331. align-items: space-between;
  2332. }
  2333. .flex_row_end_around {
  2334. display: flex;
  2335. justify-content: flex-end;
  2336. align-items: space-around;
  2337. }
  2338. .flex_row_end_start {
  2339. display: flex;
  2340. justify-content: flex-end;
  2341. align-items: flex-start;
  2342. }
  2343. .flex_row_end_end {
  2344. display: flex;
  2345. justify-content: flex-end;
  2346. align-items: flex-end;
  2347. }
  2348. .flex_column_center_center {
  2349. display: flex;
  2350. flex-direction: column;
  2351. justify-content: center;
  2352. align-items: center;
  2353. }
  2354. .flex_column_center_between {
  2355. display: flex;
  2356. flex-direction: column;
  2357. justify-content: center;
  2358. align-items: space-between;
  2359. }
  2360. .flex_column_center_around {
  2361. display: flex;
  2362. flex-direction: column;
  2363. justify-content: center;
  2364. align-items: space-around;
  2365. }
  2366. .flex_column_center_start {
  2367. display: flex;
  2368. flex-direction: column;
  2369. justify-content: center;
  2370. align-items: flex-start;
  2371. }
  2372. .flex_column_center_end {
  2373. display: flex;
  2374. flex-direction: column;
  2375. justify-content: center;
  2376. align-items: flex-end;
  2377. }
  2378. .flex_column_between_center {
  2379. display: flex;
  2380. flex-direction: column;
  2381. justify-content: space-between;
  2382. align-items: center;
  2383. }
  2384. .flex_column_between_between {
  2385. display: flex;
  2386. flex-direction: column;
  2387. justify-content: space-between;
  2388. align-items: space-between;
  2389. }
  2390. .flex_column_between_around {
  2391. display: flex;
  2392. flex-direction: column;
  2393. justify-content: space-between;
  2394. align-items: space-around;
  2395. }
  2396. .flex_column_between_start {
  2397. display: flex;
  2398. flex-direction: column;
  2399. justify-content: space-between;
  2400. align-items: flex-start;
  2401. }
  2402. .flex_column_between_end {
  2403. display: flex;
  2404. flex-direction: column;
  2405. justify-content: space-between;
  2406. align-items: flex-end;
  2407. }
  2408. .flex_column_around_center {
  2409. display: flex;
  2410. flex-direction: column;
  2411. justify-content: space-around;
  2412. align-items: center;
  2413. }
  2414. .flex_column_around_between {
  2415. display: flex;
  2416. flex-direction: column;
  2417. justify-content: space-around;
  2418. align-items: space-between;
  2419. }
  2420. .flex_column_around_around {
  2421. display: flex;
  2422. flex-direction: column;
  2423. justify-content: space-around;
  2424. align-items: space-around;
  2425. }
  2426. .flex_column_around_start {
  2427. display: flex;
  2428. flex-direction: column;
  2429. justify-content: space-around;
  2430. align-items: flex-start;
  2431. }
  2432. .flex_column_around_end {
  2433. display: flex;
  2434. flex-direction: column;
  2435. justify-content: space-around;
  2436. align-items: flex-end;
  2437. }
  2438. .flex_column_start_center {
  2439. display: flex;
  2440. flex-direction: column;
  2441. justify-content: flex-start;
  2442. align-items: center;
  2443. }
  2444. .flex_column_start_between {
  2445. display: flex;
  2446. flex-direction: column;
  2447. justify-content: flex-start;
  2448. align-items: space-between;
  2449. }
  2450. .flex_column_start_around {
  2451. display: flex;
  2452. flex-direction: column;
  2453. justify-content: flex-start;
  2454. align-items: space-around;
  2455. }
  2456. .flex_column_start_start {
  2457. display: flex;
  2458. flex-direction: column;
  2459. justify-content: flex-start;
  2460. align-items: flex-start;
  2461. }
  2462. .flex_column_start_end {
  2463. display: flex;
  2464. flex-direction: column;
  2465. justify-content: flex-start;
  2466. align-items: flex-end;
  2467. }
  2468. .flex_column_end_center {
  2469. display: flex;
  2470. flex-direction: column;
  2471. justify-content: flex-end;
  2472. align-items: center;
  2473. }
  2474. .flex_column_end_between {
  2475. display: flex;
  2476. flex-direction: column;
  2477. justify-content: flex-end;
  2478. align-items: space-between;
  2479. }
  2480. .flex_column_end_around {
  2481. display: flex;
  2482. flex-direction: column;
  2483. justify-content: flex-end;
  2484. align-items: space-around;
  2485. }
  2486. .flex_column_end_start {
  2487. display: flex;
  2488. flex-direction: column;
  2489. justify-content: flex-end;
  2490. align-items: flex-start;
  2491. }
  2492. .flex_column_end_end {
  2493. display: flex;
  2494. flex-direction: column;
  2495. justify-content: flex-end;
  2496. align-items: flex-end;
  2497. }
  2498. /* adv_22-start */
  2499. .adv_22 .adv_22_wrap {
  2500. width: 100%;
  2501. position: relative;
  2502. clear: both;
  2503. overflow: hidden;
  2504. }
  2505. .adv_22 .adv_22_wrap .goods_empty {
  2506. width: 1440px;
  2507. height: 300px;
  2508. background: #fff;
  2509. }
  2510. .adv_22 .adv_22_wrap .top {
  2511. width: 100%;
  2512. margin-top: 26px;
  2513. position: relative;
  2514. padding-top: 20px;
  2515. padding-bottom: 19px;
  2516. }
  2517. .adv_22 .adv_22_wrap .top .left {
  2518. position: relative;
  2519. border-left: 4px solid #3586f8;
  2520. padding-top: 0;
  2521. flex-shrink: 0;
  2522. flex: 1;
  2523. }
  2524. .adv_22 .adv_22_wrap .top .left .title {
  2525. color: #000;
  2526. font-size: 18px;
  2527. margin-left: 8px;
  2528. flex-shrink: 0;
  2529. letter-spacing: 0;
  2530. height: 24px;
  2531. line-height: 24px;
  2532. background: #f8f8f8;
  2533. }
  2534. .adv_22 .adv_22_wrap .top .left .sub_title {
  2535. font-size: 14px;
  2536. font-weight: 400;
  2537. color: rgba(102, 102, 102, 1);
  2538. margin-left: 20px;
  2539. flex-shrink: 0;
  2540. }
  2541. .adv_22 .adv_22_wrap .top .left .sub_title .buy_num {
  2542. color: #3585f7;
  2543. flex-shrink: 0;
  2544. }
  2545. .adv_22 .adv_22_wrap .top .right .view_more_text {
  2546. color: #333;
  2547. font-size: 16px;
  2548. font-weight: 400;
  2549. }
  2550. .adv_22 .adv_22_wrap .top .right .view_more_img {
  2551. width: 20px;
  2552. height: 20px;
  2553. margin-left: 17px;
  2554. }
  2555. .adv_22 .adv_22_wrap .main_con {
  2556. background: #fff;
  2557. position: relative;
  2558. flex-wrap: wrap;
  2559. }
  2560. .adv_22 .adv_22_wrap .main_con .item {
  2561. width: 403px;
  2562. height: 150px;
  2563. padding: 0 20px;
  2564. border-right: 1px solid #ebebeb;
  2565. border-bottom: 1px solid #ebebeb;
  2566. box-sizing: border-box;
  2567. }
  2568. .adv_22 .adv_22_wrap .main_con .item .left {
  2569. width: auto;
  2570. background: #fff;
  2571. text-align: left;
  2572. padding-top: 0;
  2573. }
  2574. .adv_22 .adv_22_wrap .main_con .item .left .img_wrap {
  2575. width: 100px;
  2576. height: 100px;
  2577. background: rgba(255, 255, 255, 1);
  2578. flex-shrink: 0;
  2579. }
  2580. .adv_22 .adv_22_wrap .main_con .item .left .img_wrap img {
  2581. max-width: 100%;
  2582. max-height: 100%;
  2583. -webkit-transition: -webkit-transform 0.5s;
  2584. transition: -webkit-transform 0.5s;
  2585. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  2586. transition: transform 0.5s;
  2587. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  2588. }
  2589. .adv_22 .adv_22_wrap .main_con .item .left .img_wrap img:hover {
  2590. -webkit-transform: translateX(4px);
  2591. -ms-transform: translateX(4px);
  2592. transform: translateX(4px);
  2593. }
  2594. .adv_22 .adv_22_wrap .main_con .item .right {
  2595. margin-left: 15px;
  2596. width: 140px;
  2597. overflow: hidden;
  2598. flex-shrink: 0;
  2599. }
  2600. .adv_22 .adv_22_wrap .main_con .item .right .goods_name {
  2601. font-size: 16px;
  2602. color: rgba(51, 51, 51, 1);
  2603. white-space: nowrap;
  2604. display: inline-block;
  2605. overflow: hidden;
  2606. width: 100%;
  2607. text-overflow: ellipsis;
  2608. text-align: left;
  2609. }
  2610. .adv_22 .adv_22_wrap .main_con .item .right .sale_info {
  2611. margin-top: 13px;
  2612. width: 100%;
  2613. overflow: hidden;
  2614. text-overflow: ellipsis;
  2615. white-space: nowrap;
  2616. }
  2617. .adv_22 .adv_22_wrap .main_con .item .right .sale_info .sale_num_label {
  2618. color: #999999;
  2619. font-size: 14px;
  2620. flex-shrink: 0;
  2621. }
  2622. .adv_22 .adv_22_wrap .main_con .item .right .sale_info .sale_num {
  2623. color: #3586f8;
  2624. font-size: 14px;
  2625. }
  2626. .adv_22 .adv_22_wrap .main_con .item .apply_btn {
  2627. width: 90px;
  2628. height: 30px;
  2629. background: rgba(255, 255, 255, 1);
  2630. border: 1px solid rgba(53, 134, 248, 1);
  2631. border-radius: 6px;
  2632. text-align: center;
  2633. color: #3586f8;
  2634. font-size: 14px;
  2635. line-height: 30px;
  2636. flex-shrink: 0;
  2637. }
  2638. .adv_22 .adv_22_wrap .main_con .item .apply_btn:hover {
  2639. background: #3585f7;
  2640. color: #fff;
  2641. }
  2642. /* adv_22-end */
  2643. /* adv_25-start */
  2644. .adv_25 .adv_25_wrap {
  2645. width: 100%;
  2646. position: relative;
  2647. clear: both;
  2648. overflow: hidden;
  2649. }
  2650. .adv_25 .adv_25_wrap .store_empty {
  2651. width: 1440px;
  2652. height: 280px;
  2653. background: #fff;
  2654. }
  2655. .adv_25 .adv_25_wrap .top {
  2656. width: 100%;
  2657. margin-top: 26px;
  2658. position: relative;
  2659. padding-top: 20px;
  2660. padding-bottom: 19px;
  2661. }
  2662. .adv_25 .adv_25_wrap .top .left {
  2663. position: relative;
  2664. border-left: 4px solid #3586f8;
  2665. flex-shrink: 0;
  2666. padding-top: 0;
  2667. flex: 1;
  2668. }
  2669. .adv_25 .adv_25_wrap .top .left .title {
  2670. color: #000;
  2671. font-size: 18px;
  2672. margin-left: 8px;
  2673. flex-shrink: 0;
  2674. letter-spacing: 0;
  2675. height: 24px;
  2676. line-height: 24px;
  2677. background: #f8f8f8;
  2678. }
  2679. .adv_25 .adv_25_wrap .top .left .sub_title {
  2680. font-size: 14px;
  2681. font-weight: 400;
  2682. color: rgba(102, 102, 102, 1);
  2683. margin-left: 20px;
  2684. flex-shrink: 0;
  2685. }
  2686. .adv_25 .adv_25_wrap .top .right .view_more_text {
  2687. color: #333;
  2688. font-size: 16px;
  2689. font-weight: 400;
  2690. }
  2691. .adv_25 .adv_25_wrap .top .right .view_more_img {
  2692. width: 20px;
  2693. height: 20px;
  2694. margin-left: 17px;
  2695. }
  2696. .adv_25 .adv_25_wrap .main_con {
  2697. background: #fff;
  2698. position: relative;
  2699. flex-wrap: wrap;
  2700. }
  2701. .adv_25 .adv_25_wrap .main_con .item {
  2702. width: 241px;
  2703. height: 140px;
  2704. border-right: 1px solid #ebebeb;
  2705. border-bottom: 1px solid #ebebeb;
  2706. padding: 30px 10px;
  2707. box-sizing: border-box;
  2708. position: relative;
  2709. }
  2710. .adv_25 .adv_25_wrap .main_con .item .img_wrap {
  2711. width: 100%;
  2712. height: 100%;
  2713. }
  2714. .adv_25 .adv_25_wrap .main_con .item .img_wrap:hover {
  2715. position: absolute;
  2716. top: 0;
  2717. right: 0;
  2718. left: 0;
  2719. bottom: 0;
  2720. z-index: 2;
  2721. background: #e6f2fc;
  2722. }
  2723. .adv_25 .adv_25_wrap .main_con .item img {
  2724. max-width: 100px;
  2725. max-height: 100px;
  2726. -webkit-transition: -webkit-transform 0.5s;
  2727. transition: -webkit-transform 0.5s;
  2728. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  2729. transition: transform 0.5s;
  2730. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  2731. }
  2732. .adv_25 .adv_25_wrap .main_con .item img:hover {
  2733. -webkit-transform: translateX(4px);
  2734. -ms-transform: translateX(4px);
  2735. transform: translateX(4px);
  2736. }
  2737. /* adv_25-end */
  2738. /* adv_23-start */
  2739. .adv_23 .adv_23_wrap {
  2740. width: 100%;
  2741. position: relative;
  2742. clear: both;
  2743. overflow: hidden;
  2744. }
  2745. .adv_23 .adv_23_wrap .store_empty {
  2746. width: 1440px;
  2747. height: 280px;
  2748. background: #fff;
  2749. }
  2750. .adv_23 .adv_23_wrap .top {
  2751. width: 100%;
  2752. margin-top: 26px;
  2753. position: relative;
  2754. padding-top: 20px;
  2755. padding-bottom: 19px;
  2756. }
  2757. .adv_23 .adv_23_wrap .top .left {
  2758. position: relative;
  2759. border-left: 4px solid #3586f8;
  2760. padding-top: 0;
  2761. flex-shrink: 0;
  2762. flex: 1;
  2763. }
  2764. .adv_23 .adv_23_wrap .top .left .title {
  2765. color: #000;
  2766. font-size: 18px;
  2767. margin-left: 8px;
  2768. flex-shrink: 0;
  2769. letter-spacing: 0;
  2770. height: 24px;
  2771. line-height: 24px;
  2772. background: #f8f8f8;
  2773. }
  2774. .adv_23 .adv_23_wrap .top .left .sub_title {
  2775. font-size: 14px;
  2776. font-weight: 400;
  2777. color: rgba(102, 102, 102, 1);
  2778. margin-left: 20px;
  2779. flex-shrink: 0;
  2780. }
  2781. .adv_23 .adv_23_wrap .top .right .view_more_text {
  2782. color: #333;
  2783. font-size: 16px;
  2784. font-weight: 400;
  2785. }
  2786. .adv_23 .adv_23_wrap .top .right .view_more_img {
  2787. width: 20px;
  2788. height: 20px;
  2789. margin-left: 17px;
  2790. }
  2791. .adv_23 .adv_23_wrap .main_con {
  2792. background: #fff;
  2793. border-top: 1px solid #69b7f9;
  2794. width: 1440px;
  2795. }
  2796. .adv_23 .adv_23_wrap .main_con .empty {
  2797. width: 100%;
  2798. height: 100%;
  2799. }
  2800. .adv_23 .adv_23_wrap .main_con .left {
  2801. width: 522px;
  2802. height: 314px;
  2803. border-right: 1px solid #ebebeb;
  2804. margin-top: 9px;
  2805. margin-bottom: 31px;
  2806. padding-top: 0;
  2807. background: #fff;
  2808. }
  2809. .adv_23 .adv_23_wrap .main_con .center {
  2810. width: 340px;
  2811. height: 314px;
  2812. border-right: 1px solid #ebebeb;
  2813. margin-top: 9px;
  2814. margin-bottom: 31px;
  2815. background: #fff;
  2816. }
  2817. .adv_23 .adv_23_wrap .main_con .right {
  2818. width: 344px;
  2819. height: 314px;
  2820. margin-top: 9px;
  2821. margin-bottom: 31px;
  2822. margin-left: 0;
  2823. background: #fff;
  2824. }
  2825. .adv_23 .adv_23_wrap .main_con .left .top {
  2826. width: 522px;
  2827. }
  2828. .adv_23 .adv_23_wrap .main_con .top {
  2829. height: 80px;
  2830. position: relative;
  2831. padding: 0;
  2832. margin-top: 0;
  2833. }
  2834. .adv_23 .adv_23_wrap .main_con .center .top {
  2835. width: 340px;
  2836. }
  2837. .adv_23 .adv_23_wrap .main_con .right .top {
  2838. width: 344px;
  2839. }
  2840. .adv_23 .adv_23_wrap .main_con .left .top img {
  2841. width: 500px;
  2842. height: 100%;
  2843. }
  2844. .adv_23 .adv_23_wrap .main_con .top img {
  2845. width: 312px;
  2846. height: 100%;
  2847. }
  2848. .adv_23 .adv_23_wrap .main_con ul.info_list {
  2849. padding-left: 20px;
  2850. padding-right: 15px;
  2851. margin-top: 5px;
  2852. width: 100%;
  2853. height: 250px;
  2854. overflow: hidden;
  2855. position: relative;
  2856. box-sizing: border-box;
  2857. }
  2858. .adv_23 .adv_23_wrap .main_con ul.info_list li {
  2859. list-style-position: inside;
  2860. list-style-type: circle;
  2861. margin-top: 17px;
  2862. }
  2863. .adv_23 .adv_23_wrap .main_con ul.info_list li .circle {
  2864. width: 4px;
  2865. height: 4px;
  2866. background: rgba(153, 153, 153, 1);
  2867. border-radius: 50%;
  2868. margin-left: 0px;
  2869. }
  2870. .adv_23 .adv_23_wrap .main_con .left ul.info_list li .title {
  2871. width: 300px;
  2872. }
  2873. .adv_23 .adv_23_wrap .main_con ul.info_list li:hover .circle {
  2874. background: #3586f8;
  2875. }
  2876. .adv_23 .adv_23_wrap .main_con ul.info_list li .title {
  2877. display: inline-block;
  2878. white-space: nowrap;
  2879. overflow: hidden;
  2880. text-overflow: ellipsis;
  2881. margin-left: 15px;
  2882. letter-spacing: 0;
  2883. height: 18px;
  2884. background: #fff;
  2885. text-align: left;
  2886. }
  2887. .adv_23 .adv_23_wrap .main_con .center ul.info_list li .title {
  2888. width: 150px;
  2889. }
  2890. .adv_23 .adv_23_wrap .main_con .right ul.info_list li .title {
  2891. width: 154px;
  2892. }
  2893. .adv_23 .adv_23_wrap .main_con ul.info_list li .title,
  2894. .adv_23 .adv_23_wrap .main_con ul.info_list li .create_time {
  2895. color: #000;
  2896. font-size: 13px;
  2897. white-space: nowrap;
  2898. }
  2899. .adv_23 .adv_23_wrap .main_con ul.info_list li:hover .title,
  2900. .adv_23 .adv_23_wrap .main_con ul.info_list li:hover .create_time {
  2901. color: #3586f8;
  2902. }
  2903. /* adv_23-end */
  2904. /* adv_24-start */
  2905. .adv_24 .adv_24_wrap {
  2906. width: 100%;
  2907. position: relative;
  2908. clear: both;
  2909. overflow: hidden;
  2910. }
  2911. .adv_24 .adv_24_wrap .goods_empty {
  2912. width: 1440px;
  2913. height: 300px;
  2914. background: #fff;
  2915. }
  2916. .adv_24 .adv_24_wrap .top {
  2917. width: 100%;
  2918. margin-top: 26px;
  2919. position: relative;
  2920. padding-top: 20px;
  2921. padding-bottom: 19px;
  2922. }
  2923. .adv_24 .adv_24_wrap .top .left {
  2924. position: relative;
  2925. border-left: 4px solid #3586f8;
  2926. -ms-flex-negative: 0;
  2927. flex-shrink: 0;
  2928. -webkit-box-flex: 1;
  2929. -ms-flex: 1;
  2930. flex: 1;
  2931. padding: 0;
  2932. }
  2933. .adv_24 .adv_24_wrap .top .left .title {
  2934. color: #000;
  2935. font-size: 18px;
  2936. margin-left: 8px;
  2937. letter-spacing: 0;
  2938. height: 24px;
  2939. line-height: 24px;
  2940. background: #f8f8f8;
  2941. }
  2942. .adv_24 .adv_24_wrap .top .left .sub_title {
  2943. font-size: 14px;
  2944. font-weight: 400;
  2945. color: rgba(102, 102, 102, 1);
  2946. margin-left: 35px;
  2947. }
  2948. .adv_24 .adv_24_wrap .top .left .sub_title .buy_num {
  2949. color: #3585f7;
  2950. }
  2951. .adv_24 .adv_24_wrap .top .right .view_more_text {
  2952. color: #333;
  2953. font-size: 16px;
  2954. font-weight: 400;
  2955. }
  2956. .adv_24 .adv_24_wrap .top .right .view_more_img {
  2957. width: 20px;
  2958. height: 20px;
  2959. margin-left: 17px;
  2960. }
  2961. .adv_24 .adv_24_wrap .bottom {
  2962. width: 100%;
  2963. height: 560px;
  2964. position: relative;
  2965. background: #fff;
  2966. }
  2967. .adv_24 .adv_24_wrap .bottom .empty {
  2968. width: 100%;
  2969. height: 100%;
  2970. }
  2971. .adv_24 .adv_24_wrap .bottom .border_top {
  2972. position: absolute;
  2973. z-index: 6;
  2974. width: 100%;
  2975. height: 1px;
  2976. background: #f5c443;
  2977. }
  2978. .adv_24 .adv_24_wrap .bottom .left {
  2979. width: 362px;
  2980. height: 100%;
  2981. position: relative;
  2982. padding: 0;
  2983. }
  2984. .adv_24 .adv_24_wrap .bottom .left img {
  2985. width: 100%;
  2986. height: 100%;
  2987. }
  2988. .adv_24 .adv_24_wrap .bottom .left:before {
  2989. content: " ";
  2990. z-index: 6;
  2991. position: absolute;
  2992. width: 80px;
  2993. height: 560px;
  2994. top: 0;
  2995. left: -200px;
  2996. overflow: hidden;
  2997. background: -moz-linear-gradient(
  2998. to left,
  2999. rgba(255, 255, 255, 0) 0,
  3000. rgba(255, 255, 255, 0.2) 50%,
  3001. rgba(255, 255, 255, 0) 100%
  3002. );
  3003. background: -webkit-gradient(
  3004. linear,
  3005. left top,
  3006. right top,
  3007. color-stop(0%, rgba(255, 255, 255, 0)),
  3008. color-stop(50%, rgba(255, 255, 255, 0.2)),
  3009. color-stop(100%, rgba(255, 255, 255, 0))
  3010. );
  3011. background: -webkit-linear-gradient(
  3012. to left,
  3013. rgba(255, 255, 255, 0) 0,
  3014. rgba(255, 255, 255, 0.2) 50%,
  3015. rgba(255, 255, 255, 0) 100%
  3016. );
  3017. background: linear-gradient(
  3018. to left,
  3019. rgba(255, 255, 255, 0) 0,
  3020. rgba(255, 255, 255, 0.2) 50%,
  3021. rgba(255, 255, 255, 0) 100%
  3022. );
  3023. background: -o-linear-gradient(
  3024. to left,
  3025. rgba(255, 255, 255, 0) 0,
  3026. rgba(255, 255, 255, 0.2) 50%,
  3027. rgba(255, 255, 255, 0) 100%
  3028. );
  3029. -webkit-transform: skewX(-25deg);
  3030. -moz-transform: skewX(-25deg);
  3031. }
  3032. .adv_24 .adv_24_wrap .bottom .left:hover:before {
  3033. -webkit-transition: left 0.5s;
  3034. -moz-transition: left 0.5s;
  3035. transition: left 0.5s;
  3036. left: 450px;
  3037. }
  3038. .adv_24 .adv_24_wrap .bottom .left .cat_part {
  3039. width: 88px;
  3040. height: 100%;
  3041. background: rgba(255, 255, 255, 0.1);
  3042. position: absolute;
  3043. z-index: 2;
  3044. top: 0;
  3045. right: 0;
  3046. bottom: 0;
  3047. }
  3048. .adv_24 .adv_24_wrap .bottom .left .sld_mask {
  3049. right: 88px;
  3050. }
  3051. .adv_24 .adv_24_wrap .bottom .left .cat_part .sld_mask {
  3052. right: 0;
  3053. }
  3054. .adv_24 .adv_24_wrap .bottom .left .cat_part li {
  3055. width: 100%;
  3056. height: 56px;
  3057. line-height: 56px;
  3058. text-align: center;
  3059. color: #fff;
  3060. font-size: 16px;
  3061. position: relative;
  3062. }
  3063. .adv_24 .adv_24_wrap .bottom .left .cat_part .del_cat_btn {
  3064. position: absolute;
  3065. top: 2px;
  3066. right: 3px;
  3067. z-index: 6;
  3068. display: inline-block;
  3069. height: 20px;
  3070. line-height: 20px;
  3071. opacity: 0;
  3072. }
  3073. .adv_24 .adv_24_wrap .bottom .left .cat_part li:hover .del_cat_btn {
  3074. opacity: 1;
  3075. }
  3076. .adv_24 .adv_24_wrap .bottom .left .cat_part li.add_btn {
  3077. font-size: 12px;
  3078. font-weight: bold;
  3079. }
  3080. .adv_24 .adv_24_wrap .bottom .left .cat_part .sld_mask span {
  3081. right: 0;
  3082. top: 0;
  3083. border-radius: 2px;
  3084. padding: 3px 5px;
  3085. background: transparent;
  3086. box-shadow: none;
  3087. font-size: 15px;
  3088. color: #fff;
  3089. }
  3090. .adv_24 .adv_24_wrap .bottom .left .cat_part li.sele {
  3091. background: #fff;
  3092. color: #3586f8;
  3093. border-left: 4px solid #3586f8;
  3094. }
  3095. .adv_24 .adv_24_wrap .bottom .right {
  3096. width: 847px;
  3097. height: 100%;
  3098. flex-wrap: wrap;
  3099. position: relative;
  3100. padding: 0;
  3101. margin-left: 0;
  3102. }
  3103. .adv_24 .adv_24_wrap .bottom .right .empty {
  3104. width: 100%;
  3105. height: 100%;
  3106. }
  3107. .adv_24 .adv_24_wrap .bottom .right .sld_mask span {
  3108. left: 5px;
  3109. right: auto;
  3110. }
  3111. .adv_24 .adv_24_wrap .bottom .right .item {
  3112. width: 211px;
  3113. height: 279px;
  3114. border-bottom: 1px solid #ebebeb;
  3115. border-right: 1px solid #ebebeb;
  3116. }
  3117. .adv_24 .adv_24_wrap .bottom .right .item .goods_name {
  3118. color: #333;
  3119. font-size: 14px;
  3120. white-space: nowrap;
  3121. width: 124px;
  3122. overflow: hidden;
  3123. text-overflow: ellipsis;
  3124. margin-left: 39px;
  3125. margin-top: 46px;
  3126. }
  3127. .adv_24 .adv_24_wrap .bottom .right .item .goods_brief {
  3128. color: #999;
  3129. font-size: 12px;
  3130. white-space: nowrap;
  3131. width: 95px;
  3132. overflow: hidden;
  3133. text-overflow: ellipsis;
  3134. margin-left: 39px;
  3135. margin-top: 12px;
  3136. }
  3137. .adv_24 .adv_24_wrap .bottom .right .item .img_wrap {
  3138. width: 162px;
  3139. height: 162px;
  3140. margin-left: 30px;
  3141. }
  3142. .adv_24 .adv_24_wrap .bottom .right .item .img_wrap img {
  3143. max-width: 120px;
  3144. max-height: 120px;
  3145. -webkit-transition: -webkit-transform 0.5s;
  3146. transition: -webkit-transform 0.5s;
  3147. -moz-transition: transform 0.5s, -moz-transform 0.5s;
  3148. transition: transform 0.5s;
  3149. transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  3150. }
  3151. .adv_24 .adv_24_wrap .bottom .right .item .img_wrap img:hover {
  3152. -webkit-transform: translateX(4px);
  3153. -ms-transform: translateX(4px);
  3154. transform: translateX(4px);
  3155. }
  3156. /* adv_24-end */
  3157. /* adv_27-start */
  3158. .adv_27_wrap {
  3159. height: auto;
  3160. // min-height: 374px;
  3161. }
  3162. .adv_27_wrap .floor_title {
  3163. position: relative;
  3164. margin-bottom: 15px;
  3165. height: 35px;
  3166. line-height: 35px;
  3167. overflow: hidden;
  3168. margin-top: 10px;
  3169. }
  3170. .adv_27_wrap .floor_title h2 {
  3171. width: 100%;
  3172. line-height: 35px;
  3173. // text-align: center;
  3174. margin: 0 auto;
  3175. font-size: 28px;
  3176. color: #333;
  3177. height: 35px;
  3178. }
  3179. .adv_27_wrap .floor_title h2 font {
  3180. display: inline-block;
  3181. width: 80px;
  3182. height: 1px;
  3183. background: $colorMain;
  3184. position: relative;
  3185. top: 20px;
  3186. }
  3187. .adv_27_wrap .floor_title h2 span {
  3188. font-size: 24px;
  3189. margin: 0 20px;
  3190. color: $colorMain;
  3191. width: auto;
  3192. min-width: 30px;
  3193. height: 35px;
  3194. line-height: 35px;
  3195. text-indent: 3px;
  3196. display: inline-block;
  3197. font-weight: normal;
  3198. vertical-align: middle;
  3199. }
  3200. .adv_27_wrap .floor_goods {
  3201. position: relative;
  3202. width: 100%;
  3203. overflow: hidden;
  3204. }
  3205. .adv_27_wrap .floor_goods .item {
  3206. float: left;
  3207. float: left;
  3208. width: 286px;
  3209. height: 326px;
  3210. background-color: #fff;
  3211. box-sizing: border-box;
  3212. }
  3213. .adv_27_wrap .floor_goods .item:nth-child(n + 6) {
  3214. border-bottom: 1px solid #f2f2f2;
  3215. }
  3216. // .adv_27_wrap .floor_goods .item:nth-child(-n + 6) {
  3217. // border-top: 1px solid #f2f2f2;
  3218. // border-bottom: 1px solid #f2f2f2;
  3219. // }
  3220. // .adv_27_wrap .floor_goods .item:nth-child(5n + 1) {
  3221. // border-bottom: none;
  3222. // }
  3223. .adv_27_wrap .floor_goods .item {
  3224. border-right: 1px solid #f2f2f2;
  3225. border-bottom: 1px solid #f2f2f2;
  3226. }
  3227. .adv_27_wrap .floor_goods .item .wrap {
  3228. display: flex;
  3229. flex-direction:column;
  3230. justify-content: center;
  3231. align-items: center;
  3232. width: 100%;
  3233. height: 100%;
  3234. font-size: 14px;
  3235. position: relative;
  3236. }
  3237. .adv_27_wrap .floor_goods .item .wrap:hover .title a{
  3238. color: $colorMain;
  3239. }
  3240. .adv_27_wrap .floor_goods .item .wrap img {
  3241. width: 100%;
  3242. height: 100%;
  3243. object-fit: contain;
  3244. display: block;
  3245. }
  3246. .adv_27_wrap .floor_goods .item .wrap .example_text {
  3247. width: 232px;
  3248. height: 232px;
  3249. display: block;
  3250. color: #777;
  3251. text-align: center;
  3252. position: relative;
  3253. // background: #eee !important;
  3254. font-weight: 300;
  3255. transition: opacity ease 0.5s;
  3256. }
  3257. .adv_27_wrap .floor_goods .item .wrap .example_text:hover {
  3258. opacity: 0.65;
  3259. }
  3260. .adv_27_wrap .floor_goods .item .wrap .example_text span {
  3261. margin-top: -24px;
  3262. display: block;
  3263. width: 100%;
  3264. line-height: 24px;
  3265. position: absolute;
  3266. top: 50%;
  3267. font-size: 15px !important;
  3268. }
  3269. .adv_27_wrap .floor_goods .item .wrap .title {
  3270. font-weight: bold;
  3271. font-size: 14px;
  3272. color: #282E30;
  3273. height: 44px;
  3274. overflow: hidden;
  3275. text-overflow: ellipsis;
  3276. display: -webkit-box;
  3277. -webkit-line-clamp: 2;
  3278. -webkit-box-orient: vertical;
  3279. word-wrap: break-word;
  3280. word-break: normal;
  3281. display: inline-block;
  3282. background: #fff;
  3283. letter-spacing: 0;
  3284. text-align: center;
  3285. margin-top: 20px;
  3286. }
  3287. .adv_27_wrap .floor_goods .item .wrap .title a {
  3288. color: #000;
  3289. line-height: 19px !important;
  3290. font-size: 15px;
  3291. overflow: hidden;
  3292. text-overflow: ellipsis;
  3293. display: -webkit-box;
  3294. -webkit-line-clamp: 2;
  3295. -webkit-box-orient: vertical;
  3296. word-break: break-word;
  3297. white-space: normal;
  3298. }
  3299. .adv_27_wrap .floor_goods .item .wrap .price {
  3300. font-size: 12px;
  3301. font-weight: bold;
  3302. color: $colorMain;
  3303. line-height: 25px;
  3304. width: auto;
  3305. height: auto;
  3306. }
  3307. .adv_27_wrap .floor_goods .item .wrap .price .money_number {
  3308. font-size: 18px;
  3309. font-weight: bold;
  3310. margin: 0 0 0 -2px;
  3311. //font-family: Arial, Helvetica, sans-serif;
  3312. }
  3313. /* adv_27-end */
  3314. /* adv_28-start */
  3315. .adv_28_wrap .industry-booth {
  3316. background: #fff;
  3317. margin: 20px auto;
  3318. display: flex;
  3319. display: -webkit-flex;
  3320. flex-direction: row;
  3321. }
  3322. .adv_28_wrap .industry-booth .industry-banner {
  3323. position: relative;
  3324. box-sizing: border-box;
  3325. width: 348px;
  3326. height: 654px;
  3327. overflow: hidden;
  3328. }
  3329. .adv_28_wrap .industry-booth .industry-banner .ob-icon {
  3330. font-size: 26px;
  3331. display: none;
  3332. }
  3333. .adv_28_wrap .industry-booth .industry-products {
  3334. display: flex;
  3335. display: -webkit-flex;
  3336. flex-direction: row;
  3337. flex-wrap: wrap;
  3338. border-top: 1px solid #e6ecf2;
  3339. flex: 1;
  3340. }
  3341. .adv_28_wrap .industry-booth .prod-item {
  3342. position: relative;
  3343. box-sizing: border-box;
  3344. border: 1px solid #e6ecf2;
  3345. border-left: 0;
  3346. border-top: 0;
  3347. width: 25%;
  3348. &:hover {
  3349. .pic-inr{
  3350. opacity: .5;
  3351. }
  3352. .prod-txt{
  3353. color: $colorMain;
  3354. }
  3355. }
  3356. }
  3357. .adv_28_wrap .industry-booth .prod-inr {
  3358. width: 100%;
  3359. height: 100%;
  3360. position: relative;
  3361. display: block;
  3362. // padding: 15px;
  3363. a {
  3364. width: 100%;
  3365. height: 100%;
  3366. display: flex;
  3367. flex-direction: column;
  3368. justify-content: center;
  3369. align-items: center;
  3370. }
  3371. }
  3372. .adv_28_wrap .industry-booth .prod-txt {
  3373. font-weight: bold;
  3374. font-size: $fontE;
  3375. color: #282E30;
  3376. line-height: 24px;
  3377. height: 44px;
  3378. text-align: center;
  3379. display: -webkit-box;
  3380. overflow: hidden;
  3381. -webkit-line-clamp: 2;
  3382. -webkit-box-orient: vertical;
  3383. word-wrap: break-word;
  3384. position: relative;
  3385. z-index: 2;
  3386. margin-top: 20px;
  3387. }
  3388. .adv_28_wrap .industry-booth .prod-pic {
  3389. width: 232px;
  3390. height: 232px;
  3391. text-align: center;
  3392. margin-bottom: 10px;
  3393. }
  3394. .adv_28_wrap .industry-booth .prod-pic .pic-inr {
  3395. width: 100%;
  3396. height: 100%;
  3397. display: inline-block;
  3398. font-size: 0;
  3399. overflow: hidden;
  3400. opacity: 1;
  3401. transition: all .3s;
  3402. }
  3403. .adv_28_wrap .industry-booth .prod-pic .img-wp {
  3404. width: 100%;
  3405. position: relative;
  3406. font-size: 0;
  3407. text-align: center;
  3408. overflow: hidden;
  3409. }
  3410. .adv_28_wrap .industry-booth .prod-pic .img-wp img {
  3411. max-width: 100%;
  3412. max-height: 100%;
  3413. vertical-align: middle;
  3414. top: 0;
  3415. left: 0;
  3416. margin: auto;
  3417. bottom: 0;
  3418. right: 0;
  3419. }
  3420. .adv_28_wrap .industry-booth .industry-link {
  3421. position: relative;
  3422. display: block;
  3423. width: 100%;
  3424. height: 100%;
  3425. // padding: 30px 30px 30px 31px;
  3426. box-sizing: border-box;
  3427. }
  3428. .adv_28_wrap .industry-booth .industry-theme-image {
  3429. width: 100%;
  3430. height: 100%;
  3431. // position: absolute;
  3432. // right: 0;
  3433. // bottom: 0;
  3434. // top: 0;
  3435. }
  3436. .adv_28_wrap .industry-booth .theme-img-big {
  3437. display: block !important;
  3438. width: 100%;
  3439. height: 100%;
  3440. }
  3441. .adv_28_wrap .industry-booth .theme-img-small {
  3442. display: none !important;
  3443. }
  3444. .adv_28_wrap .industry-booth .industry-theme-info {
  3445. width: 270px;
  3446. height: 88px;
  3447. position: absolute;
  3448. bottom: 114px;
  3449. left: 30px;
  3450. }
  3451. .adv_28_wrap .industry-booth .industry-title {
  3452. margin-bottom: 40px;
  3453. font-weight: bold;
  3454. font-size: 38px;
  3455. color: #FFFFFF;
  3456. line-height: 44px;
  3457. }
  3458. .adv_28_wrap .industry-booth .soure-now .btn {
  3459. line-height: 42px;
  3460. padding: 0 10px;
  3461. width: 157px;
  3462. height: 42px;
  3463. font-weight: bold;
  3464. font-size: 16px;
  3465. color: #FFFFFF;
  3466. }
  3467. .adv_28_wrap .industry-booth .btn {
  3468. height: 36px;
  3469. line-height: 34px;
  3470. font-size: 14px;
  3471. display: inline-block;
  3472. vertical-align: middle;
  3473. *display: inline;
  3474. *zoom: 1;
  3475. text-align: center;
  3476. color: #222;
  3477. border: solid 1px #ced3d9;
  3478. background-color: #f5f7fa;
  3479. padding: 0 15px;
  3480. border-radius: 3px;
  3481. cursor: pointer;
  3482. box-sizing: border-box;
  3483. }
  3484. .adv_28_wrap .industry-booth .btn-main {
  3485. color: #fff;
  3486. border: solid 1px $colorMain;
  3487. background-color: $colorMain;
  3488. }
  3489. /* adv_28-end */
  3490. .home-slider {
  3491. // width: 1210px;
  3492. width: 100%;
  3493. margin: 0 auto;
  3494. position: relative;
  3495. height: 520px;
  3496. background: #fff;
  3497. margin-bottom: 40px;
  3498. box-shadow: -1px 5px 10px 0px #ddd;
  3499. }
  3500. .home-slider .s1 {
  3501. width: 250px;
  3502. float: left;
  3503. }
  3504. .home-slider .s2 {
  3505. width: 100%;
  3506. height: 100%;
  3507. float: left;
  3508. }
  3509. .home-slider-bottom {
  3510. width: 100%;
  3511. height: 12px;
  3512. background: linear-gradient( 90deg, #036EB8 0%, #4AA498 100%);
  3513. }
  3514. .home-slider .s3 {
  3515. width: 250px;
  3516. float: left;
  3517. padding: 10px 15px 0;
  3518. }
  3519. .home-slider .s3 .title {
  3520. font-size: 15px;
  3521. color: #333;
  3522. }
  3523. .home-slider .s3 .title:hover {
  3524. //color:#00985e
  3525. }
  3526. .home-slider .s3 .link {
  3527. display: block;
  3528. width: 100%;
  3529. background: $colorMain;
  3530. font-size: 15px;
  3531. text-align: center;
  3532. padding: 5px 0px;
  3533. border-radius: 10px;
  3534. margin: 10px auto;
  3535. }
  3536. .home-slider .s3 .link a {
  3537. color: #fff;
  3538. }
  3539. .home-slider .s3 .link:hover {
  3540. background: $colorHover;
  3541. }
  3542. .home-slider .s3 .desc {
  3543. font-size: 13px;
  3544. line-height: 1.9;
  3545. color: #333;
  3546. }
  3547. .home-slider .s3 .desc:hover{
  3548. color:#00985e
  3549. }
  3550. .el-carousel {
  3551. width: 100%;
  3552. height: 100%;
  3553. margin: 0 auto;
  3554. }
  3555. .el-carousel__item {
  3556. div {
  3557. background-position: center center;
  3558. width: 100%;
  3559. height: 459px;
  3560. background-repeat: no-repeat;
  3561. background-size: cover;
  3562. }
  3563. }
  3564. /* adv_29-start */
  3565. .adv_29_wrap .easy-sourcing {
  3566. margin-top: 20px;
  3567. margin-bottom: 20px;
  3568. padding: 30px;
  3569. position: relative;
  3570. overflow: hidden;
  3571. .sourcing-bg {
  3572. position: absolute;
  3573. width: 100%;
  3574. height: 100%;
  3575. left: 0;
  3576. top: 0;
  3577. right: 0;
  3578. bottom: 0;
  3579. margin: auto;
  3580. img {
  3581. width: 100%;
  3582. height: 100%;
  3583. -o-object-fit: cover;
  3584. object-fit: cover;
  3585. }
  3586. }
  3587. .sourcing-centent {
  3588. position: relative;
  3589. }
  3590. .sourcing-form {
  3591. float: right;
  3592. padding: 20px 25px;
  3593. background: #fff;
  3594. margin-left: 225px;
  3595. width: 530px;
  3596. height: 410px;
  3597. .form-title {
  3598. font-size: 24px;
  3599. line-height: 30px;
  3600. margin-bottom: 10px;
  3601. font-weight: normal;
  3602. }
  3603. }
  3604. .sourcing-text {
  3605. position: absolute;
  3606. left: 20px;
  3607. top: 0px;
  3608. height: 410px;
  3609. width: 350px;
  3610. overflow: hidden;
  3611. }
  3612. .sourcing-title {
  3613. font-weight: bold;
  3614. font-size: 40px;
  3615. color: #FFFFFF;
  3616. margin-bottom: 20px;
  3617. transform-origin: left;
  3618. }
  3619. .sourcing-desc-warp {
  3620. position: absolute;
  3621. bottom: 80px;
  3622. }
  3623. .sourcing-desc {
  3624. font-weight: 400;
  3625. font-size: $fontE;
  3626. color: #FFFFFF;
  3627. p {
  3628. // margin-bottom: 8px;
  3629. }
  3630. }
  3631. .sourcing-more {
  3632. // margin-top: 45px;
  3633. position: absolute;
  3634. bottom: 0;
  3635. a {
  3636. font-weight: bold;
  3637. font-size: 16px;
  3638. color: #FFFFFF;
  3639. }
  3640. }
  3641. }
  3642. /* adv_29-end */