decorate.scss 77 KB

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