decorate.scss 77 KB

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