decorate.scss 79 KB

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