decorate.scss 77 KB

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