style.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. background-color: #cacaca;
  6. -webkit-transition-property: height;
  7. transition-property: height;
  8. -webkit-transition-duration: 300ms;
  9. transition-duration: 300ms;
  10. }
  11. .sec-00__close {
  12. position: absolute;
  13. top: 0;
  14. right: 20px;
  15. width: 50px;
  16. height: 30px;
  17. background-color: rgba(255, 255, 255, 0.66);
  18. border-radius: 0 0 50px 50px;
  19. color: #888;
  20. border: none;
  21. outline: none;
  22. font-size: 11px;
  23. -webkit-box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  24. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  25. line-height: 12px;
  26. z-index: 3;
  27. }
  28. .sec-00.bannerClose {
  29. height: 0;
  30. overflow: hidden;
  31. -webkit-transition-property: height;
  32. transition-property: height;
  33. -webkit-transition-duration: 300ms;
  34. transition-duration: 300ms;
  35. }
  36. .sec-00 .container-fluid {
  37. background-color: #cacaca;
  38. }
  39. .sec-00__slider {
  40. margin: 0 auto;
  41. width: 100%;
  42. height: 100%;
  43. max-width: 1310px;
  44. padding-top: 20px;
  45. padding-bottom: 24px;
  46. }
  47. @media (max-width: 1850px) {
  48. .sec-00__slider {
  49. max-width: 1310px;
  50. }
  51. }
  52. @media (max-width: 1550px) {
  53. .sec-00__slider {
  54. max-width: 1310px;
  55. }
  56. }
  57. .sec-00__slider .slide-item {
  58. width: 100%;
  59. height: 100%;
  60. max-width: 1310px;
  61. max-height: 300px;
  62. -o-object-fit: contain;
  63. object-fit: contain;
  64. height: 300px;
  65. cursor: pointer;
  66. }
  67. .sec-00 .slick-prev:before, .sec-00 .slick-next:before {
  68. display: none;
  69. }
  70. .sec-00__bulletList {
  71. position: absolute;
  72. bottom: 21px;
  73. left: calc(50% - 655px);
  74. width: 1310px;
  75. -webkit-box-sizing: border-box;
  76. box-sizing: border-box;
  77. display: -webkit-box;
  78. display: -ms-flexbox;
  79. display: flex;
  80. z-index: 10;
  81. background-color: rgba(0, 0, 0, 0.1);
  82. }
  83. .sec-00__bullet {
  84. position: relative;
  85. width: 100%;
  86. height: 3px;
  87. background-color: rgba(0, 0, 0, 0.1);
  88. -webkit-box-flex: 1;
  89. -ms-flex: 1 1 auto;
  90. flex: 1 1 auto;
  91. opacity: 1;
  92. }
  93. .sec-00__bullet::after {
  94. content: "";
  95. background: #ee7800;
  96. position: absolute;
  97. width: 0;
  98. height: 100%;
  99. left: 0;
  100. top: 0;
  101. border-radius: 2px;
  102. }
  103. .sec-00 .bullet-active::after {
  104. width: 0;
  105. -webkit-animation-name: progress;
  106. animation-name: progress;
  107. -webkit-animation-duration: 4s;
  108. animation-duration: 4s;
  109. -webkit-animation-timing-function: linear;
  110. animation-timing-function: linear;
  111. }
  112. @keyframes progress {
  113. 0% {
  114. width: 0%;
  115. }
  116. 25% {
  117. width: 25%;
  118. }
  119. 50% {
  120. width: 50%;
  121. }
  122. 75% {
  123. width: 75%;
  124. }
  125. 100% {
  126. width: 100%;
  127. }
  128. }
  129. @-webkit-keyframes progress {
  130. 0% {
  131. width: 0%;
  132. }
  133. 25% {
  134. width: 25%;
  135. }
  136. 50% {
  137. width: 50%;
  138. }
  139. 75% {
  140. width: 75%;
  141. }
  142. 100% {
  143. width: 100%;
  144. }
  145. }
  146. @-webkit-keyframes slidein {
  147. 100% {
  148. height: 0px;
  149. }
  150. }
  151. @keyframes slidein {
  152. 100% {
  153. height: 0px;
  154. }
  155. }
  156. .navbar {
  157. box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  158. -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  159. -moz-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  160. padding-top: 5px;
  161. padding-bottom: 5px;
  162. background-color: white !important;
  163. z-index: 99;
  164. }
  165. .navbar .container-fluid {
  166. padding: 0 2.5rem;
  167. }
  168. @media (max-width: 1100px) {
  169. .navbar .container-fluid {
  170. padding: 0 .6rem;
  171. }
  172. }
  173. .navbar-toggler {
  174. padding-left: 0;
  175. border-color: transparent !important;
  176. }
  177. .navbar-toggler:focus {
  178. -webkit-box-shadow: none;
  179. box-shadow: none;
  180. }
  181. .navbar-toggler-icon {
  182. display: -webkit-box;
  183. display: -ms-flexbox;
  184. display: flex;
  185. justify-items: center;
  186. }
  187. .navbar-toggler-icon i {
  188. font-size: 25px;
  189. line-height: 30px;
  190. display: inline-block;
  191. }
  192. .navbar-search, .navbar-login {
  193. padding-right: 2px;
  194. }
  195. .navbar-login {
  196. cursor: pointer;
  197. }
  198. .navbar-search-magnify {
  199. cursor: pointer;
  200. }
  201. .navbar-brand {
  202. font-size: 1.5rem;
  203. }
  204. .navbar-brand.navbar-logo {
  205. display: -webkit-box;
  206. display: -ms-flexbox;
  207. display: flex;
  208. -webkit-box-align: center;
  209. -ms-flex-align: center;
  210. align-items: center;
  211. }
  212. .navbar-brand .navbar-login {
  213. font-size: 1rem;
  214. color: #EE7800;
  215. text-decoration: none;
  216. }
  217. .navbar .nav-link {
  218. cursor: pointer;
  219. }
  220. @media (max-width: 1100px) {
  221. .navbar .nav-link {
  222. padding: .5rem .5rem;
  223. font-size: .9rem;
  224. }
  225. }
  226. .navbar .navbar-nav .nav-item {
  227. margin: 0 .5rem;
  228. }
  229. @media (max-width: 1100px) {
  230. .navbar .navbar-nav .nav-item {
  231. margin: 0 0rem;
  232. }
  233. }
  234. .navbar .navbar-nav .nav-item .dropbox {
  235. visibility: hidden;
  236. opacity: 0;
  237. -webkit-transition: all .4s;
  238. transition: all .4s;
  239. position: absolute;
  240. width: 100vw;
  241. top: 100%;
  242. left: 0;
  243. background-color: rgba(255, 255, 255, 0.932);
  244. padding-top: 1.5rem;
  245. padding-bottom: 3rem;
  246. }
  247. .navbar .navbar-nav .nav-item .dropbox ul {
  248. padding-left: 0;
  249. }
  250. .navbar .navbar-nav .nav-item .dropbox-item {
  251. margin-bottom: .5rem;
  252. }
  253. .navbar .navbar-nav .nav-item .dropbox-item.first {
  254. font-size: 1.1rem;
  255. font-weight: 600;
  256. }
  257. .navbar .navbar-nav .nav-item .dropbox-item.first .dropbox-link {
  258. color: black;
  259. }
  260. .navbar .navbar-nav .nav-item .dropbox-link {
  261. text-decoration: none;
  262. color: #929292;
  263. font-size: .85rem;
  264. }
  265. .navbar .navbar-nav .nav-item .dropbox-link:hover {
  266. color: #EE7800;
  267. }
  268. .navbar .navbar-nav .nav-item .dropbox-link.dropbox-btn {
  269. border: 1px solid #929292;
  270. padding: .5rem 2rem;
  271. border-radius: 5px;
  272. width: 85%;
  273. min-width: 7rem;
  274. max-width: 11rem;
  275. }
  276. .navbar .navbar-nav .nav-item .dropbox-btn {
  277. display: -webkit-box;
  278. display: -ms-flexbox;
  279. display: flex;
  280. -webkit-box-align: center;
  281. -ms-flex-align: center;
  282. align-items: center;
  283. -webkit-box-pack: center;
  284. -ms-flex-pack: center;
  285. justify-content: center;
  286. }
  287. .navbar .navbar-nav .nav-item .dropbox .container {
  288. max-width: 900px;
  289. width: 70%;
  290. }
  291. .navbar .navbar-nav .nav-item .dropbox .container.stylebox {
  292. -webkit-transform: translateX(-30%);
  293. transform: translateX(-30%);
  294. }
  295. .navbar .navbar-nav .nav-item .dropbox .container.designerbox {
  296. -webkit-transform: translateX(-5%);
  297. transform: translateX(-5%);
  298. }
  299. .navbar .navbar-nav .nav-item .dropbox .container.newbox {
  300. -webkit-transform: translateX(15%);
  301. transform: translateX(15%);
  302. }
  303. .navbar .navbar-nav .nav-item .dropbox .container.forumbox {
  304. -webkit-transform: translateX(50%);
  305. transform: translateX(50%);
  306. }
  307. .navbar .navbar-nav .nav-item .nav-link {
  308. position: relative;
  309. }
  310. .navbar .navbar-nav .nav-item .nav-link:after {
  311. position: absolute;
  312. content: " ";
  313. width: 100%;
  314. height: 90%;
  315. top: 0;
  316. right: 0;
  317. border-bottom: 2px solid #EE7800;
  318. opacity: 0;
  319. -webkit-transform: opacity 1s;
  320. transform: opacity 1s;
  321. }
  322. .navbar .navbar-nav .nav-item:hover .nav-link:after {
  323. opacity: 1;
  324. }
  325. .navbar .navbar-nav .nav-item:hover > .dropbox {
  326. visibility: visible;
  327. opacity: 1;
  328. }
  329. .navbar .navbar-nav .nav-item.lg .container {
  330. max-width: 1200px;
  331. width: 90%;
  332. }
  333. .navbar .navbar-nav .nav-item.lg .dropbox-link {
  334. text-decoration: none;
  335. color: #929292;
  336. font-size: .7rem;
  337. }
  338. .navbar .navbar-nav .nav-item.lg .dropbox-link:hover {
  339. color: #EE7800;
  340. }
  341. .navbar .navbar-nav .nav-item.lg .dropbox-item {
  342. margin-bottom: .1rem;
  343. }
  344. .navbar .navbar-nav .nav-item.lg .dropbox-item.first .dropbox-link {
  345. font-size: .85rem;
  346. }
  347. .navbar-search .container {
  348. max-width: 900px;
  349. width: 70%;
  350. }
  351. @media (max-width: 1100px) {
  352. .navbar-search .container {
  353. width: 90%;
  354. }
  355. }
  356. .navbar-search .dropbox {
  357. visibility: hidden;
  358. opacity: 0;
  359. -webkit-transition: all .2s;
  360. transition: all .2s;
  361. position: absolute;
  362. width: 100vw;
  363. top: 100%;
  364. left: 0;
  365. background-color: rgba(255, 255, 255, 0.932);
  366. padding-top: 1.5rem;
  367. padding-bottom: 3rem;
  368. }
  369. .navbar-search .dropbox.open {
  370. visibility: visible;
  371. opacity: 1;
  372. }
  373. .navbar-search .dropbox__searchtab {
  374. width: 100%;
  375. background-color: gray;
  376. border-radius: 3px;
  377. padding: .2rem 1rem;
  378. padding-bottom: 1rem;
  379. }
  380. .navbar-search .dropbox__hots__title {
  381. font-size: 1rem;
  382. color: #6b6b6b;
  383. }
  384. .navbar-search .dropbox__hots__link {
  385. font-size: .9rem;
  386. color: #929292;
  387. text-decoration: none;
  388. cursor: pointer;
  389. margin: 0 .2rem;
  390. }
  391. .navbar-search .dropbox__searchBar__input {
  392. width: 100%;
  393. outline: none;
  394. border: 2px solid #EE7800;
  395. border-radius: 5rem;
  396. padding: .3rem 1.2rem;
  397. font-size: .9rem;
  398. }
  399. .navbar-search .dropbox__searchBar__submit {
  400. outline: none;
  401. border: none;
  402. font-size: .9rem;
  403. background-color: transparent;
  404. color: #EE7800;
  405. margin-left: -1rem;
  406. -webkit-transform: translateX(-100%);
  407. transform: translateX(-100%);
  408. padding: 0 .6rem;
  409. }
  410. .navbar-search .dropbox__tab .nav-item {
  411. margin: 0 .6rem;
  412. }
  413. .navbar-search .dropbox .nav-item-link {
  414. border: none;
  415. outline: none;
  416. font-size: 1rem;
  417. color: white;
  418. padding: 3px;
  419. position: relative;
  420. }
  421. .navbar-search .dropbox .nav-item-link::after {
  422. position: absolute;
  423. content: "";
  424. top: 0;
  425. left: 0;
  426. width: 100%;
  427. height: 100%;
  428. border-bottom: 3px solid #EE7800;
  429. opacity: 0;
  430. }
  431. .navbar-search .dropbox .nav-item-link.active::after {
  432. opacity: 1;
  433. }
  434. .navbar-search .dropbox-tab-content .tabpar {
  435. display: -webkit-box;
  436. display: -ms-flexbox;
  437. display: flex;
  438. padding-top: .5rem;
  439. }
  440. .navbar-search .dropbox-tab-content .tabpar .col {
  441. margin: 0 .6rem;
  442. }
  443. .navbar-search .dropbox-tab-content .tabpar .select {
  444. font-size: 1rem;
  445. padding: .6rem;
  446. border-radius: 3px;
  447. color: #747474;
  448. }
  449. .navbar-search .dropbox-tab-content .tabpar button {
  450. border: none;
  451. outline: none;
  452. background-color: #EE7800;
  453. border-radius: 3px;
  454. color: white;
  455. font-size: 1rem;
  456. padding: .6rem;
  457. }
  458. .navbar-search .dropbox-tab-content .tabpar .image-search {
  459. border: none;
  460. outline: none;
  461. background-color: #EE7800;
  462. border-radius: 3px;
  463. color: white;
  464. font-size: 1rem;
  465. }
  466. .navbar-search .dropbox-tab-content .tabpar .article-btn {
  467. border: none;
  468. outline: none;
  469. background-color: #EE7800;
  470. border-radius: 3px;
  471. color: white;
  472. font-size: 1rem;
  473. padding: .6rem;
  474. }
  475. .navbar-search .dropbox-tab-content .tabpar .home-btn {
  476. border: none;
  477. outline: none;
  478. background-color: #EE7800;
  479. border-radius: 3px;
  480. color: white;
  481. font-size: 1rem;
  482. padding: .6rem;
  483. }
  484. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  485. opacity: 1;
  486. }
  487. .navbar-main.sticky {
  488. position: fixed;
  489. top: 0;
  490. width: 100%;
  491. }
  492. .navbar-main.sticky + .sec-02 {
  493. padding-top: 53.5px;
  494. }
  495. .sec-02__slider {
  496. width: 100%;
  497. height: 100%;
  498. }
  499. .sec-02__slider .slide-item {
  500. width: 100%;
  501. height: 74vh;
  502. background-position: center center;
  503. background-size: cover;
  504. background-repeat: no-repeat;
  505. cursor: pointer;
  506. }
  507. .sec-02 .slick-prev:before, .sec-02 .slick-next:before {
  508. display: none;
  509. }
  510. .sec-02 .slick-prev {
  511. left: 15px;
  512. z-index: 3;
  513. }
  514. .sec-02 .slick-next {
  515. right: 15px;
  516. }
  517. .sec-04 {
  518. background-color: #F4F4F4;
  519. padding: 4rem 1rem;
  520. }
  521. .sec-04 .container {
  522. max-width: 950px;
  523. width: 70%;
  524. }
  525. @media (max-width: 1100px) {
  526. .sec-04 .container {
  527. width: 90%;
  528. }
  529. }
  530. .sec-04 .card {
  531. -webkit-box-shadow: 1px 2px 8px 1px #d6d6d6;
  532. box-shadow: 1px 2px 8px 1px #d6d6d6;
  533. text-decoration: none;
  534. cursor: pointer;
  535. -webkit-transition: all .6s;
  536. transition: all .6s;
  537. }
  538. .sec-04 .card-title {
  539. font-size: 1.4rem;
  540. line-height: 1.8rem;
  541. color: #4C4C4C;
  542. font-weight: 500;
  543. -webkit-transition: all 2s;
  544. transition: all 2s;
  545. }
  546. .sec-04 .card__imgfr {
  547. width: 100%;
  548. }
  549. .sec-04 .card__imgfr img {
  550. width: 100%;
  551. height: 100%;
  552. }
  553. .sec-04 .card:hover {
  554. -webkit-transform: scale(1.05);
  555. transform: scale(1.05);
  556. }
  557. .sec-guessLike .container {
  558. margin: 0 auto;
  559. padding: 2rem 2rem;
  560. max-width: 1050px;
  561. width: 70%;
  562. }
  563. @media (max-width: 1100px) {
  564. .sec-guessLike .container {
  565. width: 90%;
  566. padding: 0 1rem;
  567. }
  568. }
  569. .sec-guessLike__titlebox-h2 {
  570. margin: 0 auto;
  571. font-size: 1.8rem;
  572. font-weight: 600;
  573. color: #535353;
  574. padding: .8rem 0;
  575. border-bottom: 6px solid #EE7800;
  576. display: inline-block;
  577. }
  578. .sec-guessLike__title {
  579. display: block;
  580. text-align: center;
  581. position: relative;
  582. font-size: 1.2rem;
  583. margin-bottom: .8rem;
  584. }
  585. .sec-guessLike__title::before, .sec-guessLike__title::after {
  586. position: absolute;
  587. content: " ";
  588. width: 40%;
  589. height: 0rem;
  590. border-top: 1px solid black;
  591. top: 50%;
  592. }
  593. .sec-guessLike__title::before {
  594. left: 0;
  595. }
  596. .sec-guessLike__title::after {
  597. left: 60%;
  598. }
  599. .sec-guessLike__article h5 {
  600. font-size: 1.1rem;
  601. }
  602. .sec-guessLike__article p {
  603. font-size: 14px;
  604. }
  605. .sec-guessLike__case p {
  606. font-size: 1.1rem;
  607. font-weight: 500;
  608. }
  609. .sec-guessLike__card {
  610. width: 100%;
  611. overflow: hidden;
  612. height: 26vh;
  613. position: relative;
  614. background-position: center center;
  615. background-size: cover;
  616. background-repeat: no-repeat;
  617. }
  618. .sec-guessLike__card.special {
  619. height: 45vh;
  620. }
  621. .sec-guessLike__card__img {
  622. width: 100%;
  623. -webkit-transition: all .8s;
  624. transition: all .8s;
  625. }
  626. .sec-guessLike__card__txt {
  627. position: absolute;
  628. bottom: 1rem;
  629. left: 3rem;
  630. color: white;
  631. z-index: 2;
  632. font-size: 600;
  633. text-shadow: 1px 1px 2px gray;
  634. }
  635. .sec-guessLike__video__play {
  636. position: absolute;
  637. width: 2.5rem;
  638. left: 50%;
  639. top: 50%;
  640. -webkit-transform: translate(-50%, -50%);
  641. transform: translate(-50%, -50%);
  642. }
  643. .sec-05 {
  644. border-top: 1px solid #bbbbbb;
  645. padding-bottom: 2rem;
  646. }
  647. .sec-05 .container {
  648. margin: 0 auto;
  649. padding: 0 2rem;
  650. max-width: 1050px;
  651. width: 70%;
  652. }
  653. @media (max-width: 1100px) {
  654. .sec-05 .container {
  655. width: 90%;
  656. padding: 0 1rem;
  657. }
  658. }
  659. .sec-05__tabdiv {
  660. -webkit-box-sizing: content-box;
  661. box-sizing: content-box;
  662. -webkit-box-align: center;
  663. -ms-flex-align: center;
  664. align-items: center;
  665. -webkit-box-pack: justify;
  666. -ms-flex-pack: justify;
  667. justify-content: space-between;
  668. }
  669. .sec-05__tabdiv .more {
  670. padding-bottom: .4rem;
  671. }
  672. .sec-05__tabdiv .nav-item {
  673. position: relative;
  674. padding-right: 18px;
  675. padding-left: 18px;
  676. }
  677. .sec-05__tabdiv .nav-item::after {
  678. position: absolute;
  679. content: " ";
  680. width: 100%;
  681. height: 30%;
  682. left: 0;
  683. top: 35%;
  684. background-color: transparent;
  685. border-right: 1px solid #b3b3b3;
  686. z-index: -1;
  687. }
  688. .sec-05__tabdiv .nav-item:nth-of-type(3)::after {
  689. display: none;
  690. }
  691. .sec-05__tabdiv .nav-item-link {
  692. color: black;
  693. font-weight: 500;
  694. font-size: 1.6rem;
  695. border: none;
  696. position: relative;
  697. padding: 1.5rem 0;
  698. outline: none;
  699. }
  700. @media screen and (max-width: 385px) {
  701. .sec-05__tabdiv .nav-item-link {
  702. font-size: 1.1rem;
  703. }
  704. }
  705. .sec-05__tabdiv .nav-item-link:focus {
  706. outline: none !important;
  707. }
  708. .sec-05__tabdiv .nav-item-link.active {
  709. color: #EE7800;
  710. }
  711. .sec-05__tabdiv .nav-item-link::before {
  712. position: absolute;
  713. content: " ";
  714. width: 101%;
  715. height: 100%;
  716. left: -2px;
  717. top: 0px;
  718. background-color: transparent;
  719. border-top: 3px solid #EE7800;
  720. opacity: 0;
  721. }
  722. .sec-05__tabdiv .nav-item-link.active::before {
  723. opacity: 1;
  724. }
  725. .sec-05 .tab-pane {
  726. height: 100%;
  727. }
  728. .sec-05tab-content {
  729. height: 35vh;
  730. }
  731. .sec-05 .tabpar__card {
  732. margin: 3px;
  733. position: relative;
  734. font-size: 14px;
  735. cursor: pointer;
  736. }
  737. .sec-05 .tabpar__card__imgfr {
  738. width: 100%;
  739. height: 25vh;
  740. position: relative;
  741. background-position: center center;
  742. background-size: cover;
  743. background-repeat: no-repeat;
  744. }
  745. @media (max-width: 1100px) {
  746. .sec-05 .tabpar__card__imgfr {
  747. height: 20vh;
  748. }
  749. }
  750. .sec-05 .tabpar__card h5 {
  751. font-size: 1rem;
  752. }
  753. .sec-05 .tabpar__card p {
  754. font-size: .95rem;
  755. font-weight: 300;
  756. color: gray;
  757. }
  758. .sec-05 .tabpar__card__play {
  759. position: absolute;
  760. left: 50%;
  761. top: 50%;
  762. -webkit-transform: translate(-50%, -50%);
  763. transform: translate(-50%, -50%);
  764. width: 2.5rem;
  765. }
  766. .sec-05 .slick-prev {
  767. top: 40%;
  768. left: -2rem;
  769. z-index: 2;
  770. }
  771. .sec-05 .slick-next {
  772. top: 40%;
  773. right: -2rem;
  774. z-index: 2;
  775. }
  776. .sec-05 .slick-prev:before, .sec-05 .slick-next:before {
  777. display: none;
  778. }
  779. .sec-06 {
  780. padding: 2rem 0;
  781. }
  782. .sec-06 .container {
  783. margin: 0 auto;
  784. padding: 1rem 2rem;
  785. max-width: 1050px;
  786. width: 70%;
  787. }
  788. @media (max-width: 1100px) {
  789. .sec-06 .container {
  790. width: 90%;
  791. padding: 0 1rem;
  792. }
  793. }
  794. .sec-06__title h3 {
  795. display: inline-block;
  796. font-size: 1.6rem;
  797. padding-bottom: .5rem;
  798. border-bottom: 6px solid #EE7800;
  799. color: #535353;
  800. margin-bottom: 0;
  801. }
  802. .sec-06__video {
  803. width: 100%;
  804. position: relative;
  805. }
  806. .sec-06__video__imgfr {
  807. width: 100%;
  808. height: 34vh;
  809. background-position: center center;
  810. background-size: cover;
  811. background-repeat: no-repeat;
  812. }
  813. @media (max-width: 1100px) {
  814. .sec-06__video__imgfr {
  815. height: 25vh;
  816. }
  817. }
  818. .sec-06__video__play {
  819. position: absolute;
  820. left: 50%;
  821. top: 50%;
  822. width: 2.5rem;
  823. height: 2.5rem;
  824. z-index: 2;
  825. -webkit-transform: translate(-50%, -50%);
  826. transform: translate(-50%, -50%);
  827. }
  828. .sec-06__videotxt {
  829. width: 90%;
  830. margin: 0 auto;
  831. background-color: rgba(255, 255, 255, 0.842);
  832. -webkit-box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  833. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  834. padding: .4rem .8rem;
  835. -webkit-transform: translateY(-20%);
  836. transform: translateY(-20%);
  837. font-weight: 600;
  838. font-size: 1.1rem;
  839. }
  840. .sec-06__btns {
  841. display: block;
  842. outline: none;
  843. border: none;
  844. padding: .4rem 1.2rem;
  845. width: 88%;
  846. margin: 0 auto;
  847. background-color: #ea068c;
  848. color: white;
  849. border-radius: 3px;
  850. -webkit-box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  851. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  852. -webkit-transition: all .4s;
  853. transition: all .4s;
  854. text-decoration: none;
  855. }
  856. .sec-06__btns:hover {
  857. -webkit-transform: translate(2px, 2px);
  858. transform: translate(2px, 2px);
  859. color: white;
  860. }
  861. .sec-06__btns__txt {
  862. font-weight: 600;
  863. }
  864. .sec-06__btns:nth-of-type(2), .sec-06__btns:nth-of-type(3) {
  865. padding: 1rem 1.2rem;
  866. }
  867. .sec-06__card {
  868. width: 100%;
  869. }
  870. .sec-06__card:hover .sec-06__card__imgfr {
  871. -webkit-transform: scale(1.1);
  872. transform: scale(1.1);
  873. }
  874. .sec-06__card h5 {
  875. font-size: 1.1rem;
  876. margin-bottom: .3rem;
  877. }
  878. .sec-06__card p {
  879. font-size: .9rem;
  880. }
  881. .sec-06__card__outer {
  882. width: 100%;
  883. height: 48vh;
  884. overflow: hidden;
  885. }
  886. .sec-06__card__play {
  887. position: absolute;
  888. left: 50%;
  889. top: 50%;
  890. -webkit-transform: translate(-50%, -50%);
  891. transform: translate(-50%, -50%);
  892. width: 2.5rem;
  893. }
  894. .sec-06__card__imgfr {
  895. width: 100%;
  896. height: 48vh;
  897. background-position: center center;
  898. background-size: cover;
  899. background-repeat: no-repeat;
  900. -webkit-transition: all .5s;
  901. transition: all .5s;
  902. position: relative;
  903. }
  904. .sec-06 .slick-prev {
  905. top: 40%;
  906. left: .5rem;
  907. z-index: 2;
  908. }
  909. .sec-06 .slick-next {
  910. top: 40%;
  911. right: .5rem;
  912. z-index: 2;
  913. }
  914. .sec-06 .slick-prev:before, .sec-06 .slick-next:before {
  915. display: none;
  916. }
  917. .sec-07 {
  918. padding: 2rem 0;
  919. }
  920. .sec-07 .container {
  921. margin: 0 auto;
  922. padding: .8rem 1.2rem;
  923. max-width: 1050px;
  924. width: 70%;
  925. background-color: #F4F4F4;
  926. }
  927. @media (max-width: 1100px) {
  928. .sec-07 .container {
  929. width: 90%;
  930. padding: 0 1rem;
  931. }
  932. }
  933. .sec-07__slider {
  934. height: 100%;
  935. }
  936. .sec-07__slider .slide-item {
  937. height: 23vh;
  938. background-position: center center;
  939. background-size: contain;
  940. background-repeat: no-repeat;
  941. width: 100%;
  942. margin: 0 5px;
  943. cursor: pointer;
  944. }
  945. @media (max-width: 1100px) {
  946. .sec-07__slider .slide-item {
  947. height: 18vh;
  948. }
  949. }
  950. .sec-08 {
  951. padding-bottom: 2.5rem;
  952. }
  953. .sec-08 .container {
  954. margin: 0 auto;
  955. padding: 1rem 0rem;
  956. max-width: 1050px;
  957. width: 70%;
  958. }
  959. @media (max-width: 1100px) {
  960. .sec-08 .container {
  961. width: 90%;
  962. padding: 0 1rem;
  963. }
  964. }
  965. .sec-08__title {
  966. border-bottom: 6px solid #EE7800;
  967. color: #535353;
  968. }
  969. .sec-08__title h3 {
  970. font-size: 1.6rem;
  971. }
  972. .sec-08__slider {
  973. width: 100%;
  974. cursor: pointer;
  975. }
  976. .sec-08__imgfr {
  977. width: 100%;
  978. height: 28vh;
  979. background-position: center center;
  980. background-size: cover;
  981. background-repeat: no-repeat;
  982. position: relative;
  983. }
  984. @media (max-width: 1100px) {
  985. .sec-08__imgfr {
  986. height: 20vh;
  987. }
  988. }
  989. .sec-08__card h5 {
  990. font-size: 1rem;
  991. }
  992. .sec-08__card p {
  993. font-size: .9rem;
  994. }
  995. .sec-08__card__play {
  996. position: absolute;
  997. left: 50%;
  998. top: 50%;
  999. -webkit-transform: translate(-50%, -50%);
  1000. transform: translate(-50%, -50%);
  1001. width: 2.5rem;
  1002. }
  1003. .sec-08__cardtxt {
  1004. font-size: 14px;
  1005. padding-right: .6rem;
  1006. }
  1007. .sec-08 .slick-prev {
  1008. top: 40%;
  1009. left: -2rem;
  1010. z-index: 2;
  1011. }
  1012. .sec-08 .slick-next {
  1013. top: 40%;
  1014. right: -2rem;
  1015. z-index: 2;
  1016. }
  1017. .sec-08 .slick-prev:before, .sec-08 .slick-next:before {
  1018. display: none;
  1019. }
  1020. .sec-09 {
  1021. background-color: #F4F4F4;
  1022. }
  1023. .sec-09 .container {
  1024. margin: 0 auto;
  1025. padding: 2rem 0rem;
  1026. max-width: 1050px;
  1027. width: 70%;
  1028. }
  1029. @media (max-width: 1100px) {
  1030. .sec-09 .container {
  1031. width: 90%;
  1032. padding: 0 1rem;
  1033. }
  1034. }
  1035. .sec-09__imgfr {
  1036. width: 100%;
  1037. height: 25vh;
  1038. background-position: center center;
  1039. background-size: cover;
  1040. background-repeat: no-repeat;
  1041. position: relative;
  1042. }
  1043. @media (max-width: 1100px) {
  1044. .sec-09__imgfr {
  1045. height: 20vh;
  1046. }
  1047. }
  1048. .sec-09__card {
  1049. margin: 5px;
  1050. text-align: center;
  1051. cursor: pointer;
  1052. }
  1053. .sec-09__card p {
  1054. font-size: 14px;
  1055. margin-top: .5rem;
  1056. }
  1057. .sec-09__card__play {
  1058. position: absolute;
  1059. right: .6rem;
  1060. bottom: .6rem;
  1061. width: 2.5rem;
  1062. }
  1063. .sec-09__title {
  1064. border-bottom: 6px solid #EE7800;
  1065. color: #535353;
  1066. }
  1067. .sec-09__title h3 {
  1068. font-size: 1.6rem;
  1069. }
  1070. .sec-09 .slick-prev {
  1071. top: 40%;
  1072. left: -2rem;
  1073. z-index: 2;
  1074. }
  1075. .sec-09 .slick-next {
  1076. top: 40%;
  1077. right: -2rem;
  1078. z-index: 2;
  1079. }
  1080. .sec-09 .slick-prev:before, .sec-09 .slick-next:before {
  1081. display: none;
  1082. }
  1083. .sec-10 {
  1084. padding: 2.5rem 0;
  1085. }
  1086. .sec-10 .container {
  1087. max-width: 1000px;
  1088. width: 70%;
  1089. }
  1090. @media (max-width: 1100px) {
  1091. .sec-10 .container {
  1092. width: 90%;
  1093. padding: 0 1rem;
  1094. }
  1095. }
  1096. .sec-10__titlebox {
  1097. border-bottom: 1px solid #4b4b4b;
  1098. display: -webkit-box;
  1099. display: -ms-flexbox;
  1100. display: flex;
  1101. -webkit-box-pack: center;
  1102. -ms-flex-pack: center;
  1103. justify-content: center;
  1104. }
  1105. .sec-10__titlebox-h2 {
  1106. margin: 0 auto;
  1107. font-size: 1.8rem;
  1108. font-weight: 600;
  1109. color: #535353;
  1110. padding: .8rem 0;
  1111. border-bottom: 6px solid #EE7800;
  1112. display: inline-block;
  1113. }
  1114. .sec-10__card {
  1115. cursor: pointer;
  1116. }
  1117. .sec-10__card h5 {
  1118. font-size: 1rem;
  1119. margin-bottom: .3rem;
  1120. }
  1121. .sec-10__card p {
  1122. font-size: .95rem;
  1123. font-weight: 300;
  1124. color: gray;
  1125. }
  1126. .sec-10__card-img {
  1127. width: 100%;
  1128. height: 25vh;
  1129. background-position: center center;
  1130. background-size: cover;
  1131. background-repeat: no-repeat;
  1132. position: relative;
  1133. }
  1134. @media (max-width: 1100px) {
  1135. .sec-10__card-img {
  1136. height: 20vh;
  1137. }
  1138. }
  1139. .sec-10__card__play {
  1140. position: absolute;
  1141. right: 1rem;
  1142. bottom: 1rem;
  1143. width: 2.5rem;
  1144. height: 2.5rem;
  1145. }
  1146. .sec-11 {
  1147. padding: 2.5rem 0;
  1148. padding-top: 1rem;
  1149. }
  1150. .sec-11 .container {
  1151. max-width: 1000px;
  1152. width: 70%;
  1153. }
  1154. @media (max-width: 1100px) {
  1155. .sec-11 .container {
  1156. width: 90%;
  1157. padding: 0 1rem;
  1158. }
  1159. }
  1160. .sec-11__titlebox {
  1161. border-bottom: 1px solid #4b4b4b;
  1162. display: -webkit-box;
  1163. display: -ms-flexbox;
  1164. display: flex;
  1165. -webkit-box-pack: center;
  1166. -ms-flex-pack: center;
  1167. justify-content: center;
  1168. }
  1169. .sec-11__titlebox-h2 {
  1170. margin: 0 auto;
  1171. font-size: 1.8rem;
  1172. font-weight: 600;
  1173. color: #535353;
  1174. padding: .8rem 0;
  1175. border-bottom: 6px solid #EE7800;
  1176. display: inline-block;
  1177. }
  1178. .sec-11__card {
  1179. cursor: pointer;
  1180. }
  1181. .sec-11__card h5 {
  1182. font-size: 1rem;
  1183. margin-bottom: .3rem;
  1184. }
  1185. .sec-11__card p {
  1186. font-size: .95rem;
  1187. font-weight: 300;
  1188. color: gray;
  1189. }
  1190. .sec-11__card-img {
  1191. width: 100%;
  1192. height: 25vh;
  1193. background-position: center center;
  1194. background-size: cover;
  1195. background-repeat: no-repeat;
  1196. position: relative;
  1197. }
  1198. @media (max-width: 1100px) {
  1199. .sec-11__card-img {
  1200. height: 20vh;
  1201. }
  1202. }
  1203. .sec-11__card__play {
  1204. position: absolute;
  1205. right: 1rem;
  1206. bottom: 1rem;
  1207. width: 2.5rem;
  1208. height: 2.5rem;
  1209. }
  1210. .footer {
  1211. background: #e9e9e9;
  1212. padding: 2.5rem 0;
  1213. }
  1214. @media (max-width: 1100px) {
  1215. .footer .container {
  1216. width: 98%;
  1217. max-width: 950px;
  1218. }
  1219. }
  1220. .footer__block {
  1221. padding: 1rem 3rem;
  1222. border-left: 1px solid #8f8f8f;
  1223. }
  1224. @media (max-width: 1100px) {
  1225. .footer__block {
  1226. padding: 1rem 1rem;
  1227. }
  1228. }
  1229. .footer__block-title {
  1230. font-size: 1.3rem;
  1231. margin-bottom: 1.5rem;
  1232. }
  1233. .footer__block-list {
  1234. padding-left: 0;
  1235. }
  1236. .footer__block:nth-of-type(1) {
  1237. border-left: none;
  1238. }
  1239. .footer__block:nth-of-type(2) {
  1240. padding: 1rem 4rem;
  1241. }
  1242. @media (max-width: 1100px) {
  1243. .footer__block:nth-of-type(2) {
  1244. padding: 1rem 1rem;
  1245. }
  1246. }
  1247. .footer__block-socials {
  1248. padding-left: 0;
  1249. display: -webkit-box;
  1250. display: -ms-flexbox;
  1251. display: flex;
  1252. -webkit-box-align: center;
  1253. -ms-flex-align: center;
  1254. align-items: center;
  1255. -webkit-box-pack: justify;
  1256. -ms-flex-pack: justify;
  1257. justify-content: space-between;
  1258. }
  1259. @media (max-width: 1100px) {
  1260. .footer__block-socials img {
  1261. width: 30px;
  1262. }
  1263. }
  1264. .footer__block .follows-fp {
  1265. text-decoration: none;
  1266. color: #696969;
  1267. font-size: .9rem;
  1268. display: -webkit-box;
  1269. display: -ms-flexbox;
  1270. display: flex;
  1271. -webkit-box-align: center;
  1272. -ms-flex-align: center;
  1273. align-items: center;
  1274. }
  1275. @media (max-width: 1100px) {
  1276. .footer__block .follows-fp {
  1277. font-size: .8rem;
  1278. }
  1279. }
  1280. .footer__block-phone p {
  1281. display: inline;
  1282. }
  1283. @media (max-width: 900px) {
  1284. .footer__block-phone p {
  1285. display: block;
  1286. }
  1287. }
  1288. .footer__block-phone p, .footer__block-phone span {
  1289. font-size: .9rem;
  1290. }
  1291. .footer__block-phone .text-phone {
  1292. color: #EE7800;
  1293. text-decoration: none;
  1294. }
  1295. .footer__block-links {
  1296. display: -webkit-box;
  1297. display: -ms-flexbox;
  1298. display: flex;
  1299. -webkit-box-align: center;
  1300. -ms-flex-align: center;
  1301. align-items: center;
  1302. margin-top: 1rem;
  1303. -webkit-box-pack: center;
  1304. -ms-flex-pack: center;
  1305. justify-content: center;
  1306. }
  1307. .footer__block-links-grp {
  1308. padding: .3rem;
  1309. border-left: 1px solid #b9b9b9;
  1310. }
  1311. .footer__block-links-grp:nth-of-type(1) {
  1312. border-left: none;
  1313. }
  1314. .footer__block-links-grp a {
  1315. display: block;
  1316. text-decoration: none;
  1317. color: #696969;
  1318. font-size: .9rem;
  1319. margin-bottom: .4rem;
  1320. }
  1321. @media (max-width: 1100px) {
  1322. .footer__block-links-grp a {
  1323. font-size: .8rem;
  1324. }
  1325. }
  1326. .footer__block-subscribe {
  1327. width: 100%;
  1328. margin-top: 1rem;
  1329. }
  1330. .footer__block-subscribe .subscribeBar {
  1331. font-size: .8rem;
  1332. width: 70%;
  1333. margin-left: 7%;
  1334. }
  1335. @media (max-width: 900px) {
  1336. .footer__block-subscribe .subscribeBar {
  1337. width: 75%;
  1338. margin-left: 3%;
  1339. font-size: .7rem;
  1340. }
  1341. }
  1342. .footer__block-subscribe .subscribeBtn {
  1343. width: 20%;
  1344. padding: .4rem .6rem;
  1345. padding-bottom: 9px;
  1346. border: none;
  1347. outline: none;
  1348. background-color: #292929;
  1349. color: white;
  1350. border-radius: 0 3px 3px 0;
  1351. margin-left: -.4rem;
  1352. }
  1353. @media (max-width: 900px) {
  1354. .footer__block-subscribe .subscribeBtn {
  1355. margin-left: -.3rem;
  1356. font-size: .8rem;
  1357. padding-top: 9px;
  1358. padding-bottom: 10px;
  1359. }
  1360. }
  1361. .footer__list-item {
  1362. display: -webkit-box;
  1363. display: -ms-flexbox;
  1364. display: flex;
  1365. -webkit-box-align: center;
  1366. -ms-flex-align: center;
  1367. align-items: center;
  1368. text-decoration: none;
  1369. margin-bottom: .5rem;
  1370. }
  1371. .footer__list-item p {
  1372. color: #696969;
  1373. font-size: .9rem;
  1374. font-weight: 300;
  1375. }
  1376. .footer__list-icon {
  1377. width: 30px;
  1378. display: -webkit-box;
  1379. display: -ms-flexbox;
  1380. display: flex;
  1381. -webkit-box-pack: center;
  1382. -ms-flex-pack: center;
  1383. justify-content: center;
  1384. margin-right: .3rem;
  1385. }
  1386. .footer .bottom-box {
  1387. padding: 1rem 0;
  1388. border-top: 1px solid #b9b9b9;
  1389. margin-top: 2.5rem;
  1390. }
  1391. #videoModal .modal-content {
  1392. background-color: transparent;
  1393. border: none;
  1394. width: -webkit-fit-content;
  1395. width: -moz-fit-content;
  1396. width: fit-content;
  1397. }
  1398. #videoModal .modal-dialog {
  1399. max-width: 700px;
  1400. }
  1401. .morelink {
  1402. text-decoration: none;
  1403. color: #EE7800;
  1404. font-weight: 700;
  1405. }
  1406. .morelink:hover {
  1407. color: #EE7800;
  1408. }
  1409. .fixed-btn {
  1410. position: fixed;
  1411. right: 15px;
  1412. bottom: 2rem;
  1413. }
  1414. .fixed-btn .btn-gotop, .fixed-btn .btn-login, .fixed-btn .btn-favor {
  1415. cursor: pointer;
  1416. padding: 1.2rem .8rem;
  1417. background-color: rgba(255, 255, 255, 0.897);
  1418. display: -webkit-box;
  1419. display: -ms-flexbox;
  1420. display: flex;
  1421. -webkit-box-align: center;
  1422. -ms-flex-align: center;
  1423. align-items: center;
  1424. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1425. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1426. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1427. }
  1428. .sec-login-list {
  1429. background-color: #F3F3F3;
  1430. padding: 1rem;
  1431. padding-bottom: 1.4rem;
  1432. }
  1433. .sec-login-list hr {
  1434. background-color: #aaaaaa;
  1435. }
  1436. .sec-login-btns {
  1437. padding: 1rem;
  1438. background-color: white;
  1439. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1440. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1441. }
  1442. #loginModal .btn-close {
  1443. position: absolute;
  1444. right: -2rem;
  1445. top: -2rem;
  1446. }
  1447. #favorModal .btn-close {
  1448. position: absolute;
  1449. right: -2rem;
  1450. top: -2rem;
  1451. }
  1452. #favorModal .sec-favor-title {
  1453. color: #4C4C4C;
  1454. font-size: 18px;
  1455. }
  1456. #favorModal .sec-favor-list {
  1457. background-color: #F3F3F3;
  1458. padding: 1rem;
  1459. padding-bottom: 1.4rem;
  1460. }
  1461. #favorModal .sec-favor-list hr {
  1462. background-color: #aaaaaa;
  1463. }
  1464. #favorModal .sec-favor-form .form-user, #favorModal .sec-favor-checklist .form-user {
  1465. width: 50%;
  1466. color: #707070;
  1467. font-size: 16px;
  1468. }
  1469. #favorModal .sec-favor-form .form-progressbar, #favorModal .sec-favor-checklist .form-progressbar {
  1470. width: 50%;
  1471. display: -webkit-box;
  1472. display: -ms-flexbox;
  1473. display: flex;
  1474. -webkit-box-pack: justify;
  1475. -ms-flex-pack: justify;
  1476. justify-content: space-between;
  1477. }
  1478. #favorModal .sec-favor-form .form-progressbar li, #favorModal .sec-favor-checklist .form-progressbar li {
  1479. width: 1.6rem;
  1480. height: 1.6rem;
  1481. border-radius: 50%;
  1482. border: 2px solid #D3D3D3;
  1483. line-height: 1.4rem;
  1484. display: -webkit-box;
  1485. display: -ms-flexbox;
  1486. display: flex;
  1487. -webkit-box-pack: center;
  1488. -ms-flex-pack: center;
  1489. justify-content: center;
  1490. position: relative;
  1491. color: #D3D3D3;
  1492. background-color: #F3F3F3;
  1493. z-index: 2;
  1494. }
  1495. #favorModal .sec-favor-form .form-progressbar li.active, #favorModal .sec-favor-checklist .form-progressbar li.active {
  1496. border: 2px solid #EE7800;
  1497. color: #EE7800;
  1498. }
  1499. #favorModal .sec-favor-form .form-progressbar li.active::before, #favorModal .sec-favor-checklist .form-progressbar li.active::before {
  1500. border-top: 2px solid #EE7800;
  1501. }
  1502. #favorModal .sec-favor-form .form-progressbar li::before, #favorModal .sec-favor-checklist .form-progressbar li::before {
  1503. position: absolute;
  1504. content: " ";
  1505. width: 4rem;
  1506. height: 0;
  1507. border-top: 2px dashed #D3D3D3;
  1508. right: 100%;
  1509. top: 50%;
  1510. z-index: 1;
  1511. }
  1512. #favorModal .sec-favor-form .form-progressbar li:nth-of-type(1)::before, #favorModal .sec-favor-checklist .form-progressbar li:nth-of-type(1)::before {
  1513. display: none;
  1514. }
  1515. #favorModal .sec-favor-form .form-step, #favorModal .sec-favor-checklist .form-step {
  1516. background-color: white;
  1517. border-radius: 3px;
  1518. padding: 1.5rem 1rem;
  1519. padding-bottom: 1.5rem;
  1520. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1521. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1522. overflow: visible;
  1523. }
  1524. #favorModal .sec-favor-form .form-step .next, #favorModal .sec-favor-checklist .form-step .next {
  1525. padding: .6rem 5rem;
  1526. background-color: #EE7800;
  1527. border-radius: 3px;
  1528. color: white;
  1529. border: none;
  1530. outline: none;
  1531. }
  1532. #favorModal .sec-favor-form .form-step1, #favorModal .sec-favor-checklist .form-step1 {
  1533. display: block;
  1534. }
  1535. #favorModal .sec-favor-form .form-step2, #favorModal .sec-favor-checklist .form-step2 {
  1536. display: none;
  1537. }
  1538. #favorModal .sec-favor-form .form-step3, #favorModal .sec-favor-checklist .form-step3 {
  1539. display: none;
  1540. position: relative;
  1541. padding-bottom: 1.5rem;
  1542. }
  1543. #favorModal .sec-favor-form input[type="checkbox"], #favorModal .sec-favor-form input[type="radio"], #favorModal .sec-favor-checklist input[type="checkbox"], #favorModal .sec-favor-checklist input[type="radio"] {
  1544. display: none;
  1545. }
  1546. #favorModal .sec-favor-form .imgfr, #favorModal .sec-favor-checklist .imgfr {
  1547. background-position: center center;
  1548. background-size: cover;
  1549. background-repeat: no-repeat;
  1550. width: 100%;
  1551. height: 4.5rem;
  1552. border-radius: 8px;
  1553. border: 2px solid transparent;
  1554. }
  1555. #favorModal .sec-favor-form h4, #favorModal .sec-favor-checklist h4 {
  1556. color: #AAAAAA;
  1557. font-size: 15px;
  1558. font-weight: 400;
  1559. }
  1560. #favorModal .sec-favor-form input[type="checkbox"]:checked + .fs-label-info .imgfr, #favorModal .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1561. border: 2px solid #EE7800;
  1562. }
  1563. #favorModal .sec-favor-form input[type="checkbox"]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-chbox {
  1564. border: 1px solid #EE7800;
  1565. color: #EE7800;
  1566. }
  1567. #favorModal .sec-favor-form input[type="radio"]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type="radio"]:checked + .fs-label-chbox {
  1568. border: 1px solid #EE7800;
  1569. color: #EE7800;
  1570. }
  1571. #favorModal .sec-favor-form .step3-block, #favorModal .sec-favor-checklist .step3-block {
  1572. margin-bottom: 1rem;
  1573. }
  1574. #favorModal .sec-favor-form .step3-block:nth-of-type(3), #favorModal .sec-favor-checklist .step3-block:nth-of-type(3) {
  1575. margin-bottom: 0;
  1576. }
  1577. #favorModal .sec-favor-form .step3-block-title, #favorModal .sec-favor-checklist .step3-block-title {
  1578. color: #AAAAAA;
  1579. display: block;
  1580. margin-bottom: .5rem;
  1581. font-size: 1rem;
  1582. }
  1583. #favorModal .sec-favor-form .step3-block .radio, #favorModal .sec-favor-checklist .step3-block .radio {
  1584. display: inline-block;
  1585. padding: .25rem .7rem;
  1586. margin-right: .4rem;
  1587. border: 1px solid #707070;
  1588. border-radius: 2rem;
  1589. color: #797979;
  1590. margin-bottom: .5rem;
  1591. }
  1592. #favorModal .sec-favor-form .skip, #favorModal .sec-favor-checklist .skip {
  1593. padding: .3rem 1rem;
  1594. color: #AAAAAA;
  1595. border: none;
  1596. outline: none;
  1597. background-color: transparent;
  1598. }
  1599. #favorModal .sec-favor-form .btngrp, #favorModal .sec-favor-checklist .btngrp {
  1600. /* position: absolute;
  1601. left: 50%;
  1602. transform: translateX(-50%);
  1603. bottom: -6rem; */
  1604. display: -webkit-box;
  1605. display: -ms-flexbox;
  1606. display: flex;
  1607. -webkit-box-orient: vertical;
  1608. -webkit-box-direction: normal;
  1609. -ms-flex-direction: column;
  1610. flex-direction: column;
  1611. -webkit-box-align: center;
  1612. -ms-flex-align: center;
  1613. align-items: center;
  1614. }
  1615. #favorModal .sec-favor-form .btngrp .next, #favorModal .sec-favor-checklist .btngrp .next {
  1616. -webkit-transform: translateY(0rem);
  1617. transform: translateY(0rem);
  1618. }
  1619. #favorModal .sec-favor-checklist .form-user {
  1620. margin: 0 auto;
  1621. text-align: center;
  1622. margin-bottom: 1rem;
  1623. }
  1624. #favorModal .sec-favor-btns {
  1625. padding: 1rem;
  1626. background-color: white;
  1627. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1628. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1629. }
  1630. .test {
  1631. position: relative;
  1632. }
  1633. .test .cover {
  1634. width: 100%;
  1635. position: absolute;
  1636. left: 0;
  1637. bottom: 0;
  1638. display: block;
  1639. background-color: white;
  1640. height: 100%;
  1641. }
  1642. .test .cover.slidein {
  1643. -webkit-animation: slidein 2s forwards;
  1644. animation: slidein 2s forwards;
  1645. }
  1646. .title_back {
  1647. display: block;
  1648. position: relative;
  1649. width: 10em;
  1650. height: 1.75em;
  1651. overflow: hidden;
  1652. }
  1653. .title_back .title {
  1654. position: absolute;
  1655. left: 0;
  1656. bottom: -1.75em;
  1657. display: block;
  1658. -webkit-transition: all 1s;
  1659. transition: all 1s;
  1660. }
  1661. .test_content {
  1662. opacity: 0;
  1663. }
  1664. .test_content.fadein {
  1665. -webkit-animation: fadein 2s forwards;
  1666. animation: fadein 2s forwards;
  1667. }
  1668. @-webkit-keyframes slidein {
  1669. 100% {
  1670. height: 0px;
  1671. }
  1672. }
  1673. @keyframes slidein {
  1674. 100% {
  1675. height: 0px;
  1676. }
  1677. }
  1678. @-webkit-keyframes fadein {
  1679. 100% {
  1680. opacity: 1;
  1681. }
  1682. }
  1683. @keyframes fadein {
  1684. 100% {
  1685. opacity: 1;
  1686. }
  1687. }
  1688. #hhh-cases .article__readMore::before {
  1689. content: '';
  1690. display: inline-block;
  1691. background: -webkit-gradient(linear, left bottom, left top, from(#FCFCFC), to(rgba(255, 255, 255, 0.454219)));
  1692. background: linear-gradient(0deg, #FCFCFC 0%, rgba(255, 255, 255, 0.454219) 100%);
  1693. width: 100%;
  1694. height: 25px;
  1695. -webkit-transition: all 300ms ease-in-out;
  1696. transition: all 300ms ease-in-out;
  1697. }
  1698. #hhh-cases .article__contexts {
  1699. font-size: 1.1rem;
  1700. line-height: 1.8;
  1701. height: 50px;
  1702. overflow: hidden;
  1703. -webkit-transition: all 300ms ease-in-out;
  1704. transition: all 300ms ease-in-out;
  1705. color: #727679;
  1706. }
  1707. #hhh-cases .article__readMore {
  1708. cursor: pointer;
  1709. margin-left: auto;
  1710. margin-right: auto;
  1711. color: #FFAC73;
  1712. text-align: center;
  1713. font-size: 90%;
  1714. padding: 0 0 1rem;
  1715. -webkit-transform: translateY(-20px);
  1716. transform: translateY(-20px);
  1717. -webkit-transition: all 300ms ease-in-out;
  1718. transition: all 300ms ease-in-out;
  1719. }
  1720. #hhh-cases .article__readMore a {
  1721. text-decoration: none;
  1722. color: #FFAC73;
  1723. }
  1724. #hhh-cases .img-wrapper-desktop {
  1725. background-color: #6D6D6D;
  1726. display: -webkit-box;
  1727. display: -ms-flexbox;
  1728. display: flex;
  1729. width: 100%;
  1730. height: 100%;
  1731. -webkit-box-pack: center;
  1732. -ms-flex-pack: center;
  1733. justify-content: center;
  1734. -webkit-box-align: center;
  1735. -ms-flex-align: center;
  1736. align-items: center;
  1737. margin: 0 auto;
  1738. }
  1739. #hhh-cases .swiper-zoom-container-desktop {
  1740. width: 100%;
  1741. height: 100%;
  1742. display: -webkit-box;
  1743. display: -ms-flexbox;
  1744. display: flex;
  1745. -webkit-box-pack: center;
  1746. -ms-flex-pack: center;
  1747. justify-content: center;
  1748. -webkit-box-align: center;
  1749. -ms-flex-align: center;
  1750. align-items: center;
  1751. text-align: center;
  1752. }
  1753. #hhh-cases .swiper-zoom-container-desktop img {
  1754. width: 100%;
  1755. height: 100%;
  1756. max-width: 100%;
  1757. max-height: 100%;
  1758. -o-object-fit: contain;
  1759. object-fit: contain;
  1760. }
  1761. #hhh-cases .swiper-zoom-container-sm-desktop {
  1762. width: 50%;
  1763. height: 70%;
  1764. }
  1765. #hhh-cases .swiper-zoom-container-sm-desktop {
  1766. width: 50%;
  1767. height: 70%;
  1768. }
  1769. #hhh-cases .slick-prev:before, #hhh-cases .slick-next:before {
  1770. display: none;
  1771. }
  1772. #hhh-cases .modal-body {
  1773. padding: 0 !important;
  1774. }
  1775. #hhh-cases .case-slick-box {
  1776. height: 100vh;
  1777. position: -webkit-sticky;
  1778. position: sticky;
  1779. top: 15px;
  1780. }
  1781. #hhh-cases .img-wrapper-desktopp {
  1782. width: 95%;
  1783. margin: 0 auto;
  1784. height: 100%;
  1785. }
  1786. #hhh-cases .CaseDetail-slick {
  1787. height: 100vh;
  1788. width: 95%;
  1789. margin: 0 auto;
  1790. }
  1791. #hhh-cases .CaseDetail-slick .slick-slide {
  1792. height: 100vh;
  1793. }
  1794. #hhh-cases .CaseDetail-slick img {
  1795. width: 100%;
  1796. height: auto;
  1797. max-width: 100%;
  1798. max-height: 100%;
  1799. -o-object-fit: contain;
  1800. object-fit: contain;
  1801. }
  1802. #hhh-cases .breadcrumb {
  1803. padding: 0.75rem 1rem;
  1804. }
  1805. #hhh-cases .breadcrumb a {
  1806. font-size: 0.75rem;
  1807. color: #727679;
  1808. text-decoration: none;
  1809. }
  1810. #hhh-cases .breadcrumb .active a {
  1811. color: #AAAAAA;
  1812. }
  1813. #hhh-cases .h4 {
  1814. font-weight: bold;
  1815. color: #34404B;
  1816. }
  1817. #hhh-cases .article {
  1818. color: #727679;
  1819. }
  1820. #hhh-cases .article .small {
  1821. padding: 0.5rem 0;
  1822. font-size: 80%;
  1823. }
  1824. #hhh-cases .shadow-sm {
  1825. -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08) !important;
  1826. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08) !important;
  1827. }
  1828. #hhh-cases .container-width-column {
  1829. max-width: 1120px;
  1830. margin: 0 auto;
  1831. }
  1832. #hhh-cases .article__wrapper {
  1833. padding: 0.75rem 1rem;
  1834. }
  1835. #hhh-cases .shadow {
  1836. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  1837. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  1838. }
  1839. #hhh-cases .cases-content {
  1840. background: #FCFCFC;
  1841. }
  1842. #hhh-cases .cases-content .caseSlider {
  1843. background: #fff;
  1844. max-width: 1310px;
  1845. margin: 0 auto;
  1846. padding: 100px;
  1847. position: relative;
  1848. }
  1849. @media screen and (max-width: 576px) {
  1850. #hhh-cases .cases-content .caseSlider {
  1851. padding: 0;
  1852. }
  1853. }
  1854. #hhh-cases .cases-content .caseSlider .morePhotoTip {
  1855. cursor: pointer;
  1856. position: absolute;
  1857. color: #FFF;
  1858. right: 120px;
  1859. bottom: 120px;
  1860. padding: 0.2rem 0.8rem;
  1861. background-color: rgba(0, 0, 0, 0.45);
  1862. -webkit-transition: all 300ms ease-in-out;
  1863. transition: all 300ms ease-in-out;
  1864. }
  1865. #hhh-cases .container--padding {
  1866. padding: 1.2rem 0;
  1867. }
  1868. #hhh-cases .info__items {
  1869. font-size: 1.2rem;
  1870. text-align: center;
  1871. color: #34404B;
  1872. font-weight: 800;
  1873. min-height: 4.5rem;
  1874. display: -webkit-box;
  1875. display: -ms-flexbox;
  1876. display: flex;
  1877. -webkit-box-pack: center;
  1878. -ms-flex-pack: center;
  1879. justify-content: center;
  1880. -webkit-box-align: center;
  1881. -ms-flex-align: center;
  1882. align-items: center;
  1883. }
  1884. @media screen and (max-width: 576px) {
  1885. #hhh-cases .info__items {
  1886. font-size: 1rem;
  1887. }
  1888. }
  1889. #hhh-cases .info__items__title {
  1890. color: #727679;
  1891. font-weight: 400;
  1892. font-size: 1rem;
  1893. }
  1894. #hhh-cases .case-scMedia__block {
  1895. width: 35%;
  1896. margin: 0 auto;
  1897. }
  1898. #hhh-cases .case-scMedia__block .case-scMedia__list {
  1899. background-color: #FFF;
  1900. -webkit-box-shadow: 0 1px 10px #cecece;
  1901. box-shadow: 0 1px 10px #cecece;
  1902. border-radius: 45px;
  1903. padding: 1rem 2.8rem;
  1904. display: -webkit-box;
  1905. display: -ms-flexbox;
  1906. display: flex;
  1907. -ms-flex-pack: distribute;
  1908. justify-content: space-around;
  1909. }
  1910. #hhh-cases .relTag {
  1911. padding: 1rem;
  1912. }
  1913. #hhh-cases .relTag a {
  1914. margin: 0 0 0.6rem 0.6rem;
  1915. -webkit-transition: all 300ms ease-in-out;
  1916. transition: all 300ms ease-in-out;
  1917. }
  1918. #hhh-cases .relTag a:hover {
  1919. color: #FFAC73;
  1920. border-color: #FFAC73;
  1921. }
  1922. #hhh-cases .relTag__items__title {
  1923. width: 7%;
  1924. }
  1925. #hhh-cases .relTag__items {
  1926. width: 100%;
  1927. display: -webkit-box;
  1928. display: -ms-flexbox;
  1929. display: flex;
  1930. }
  1931. #hhh-cases .relTag__items__tags {
  1932. width: 93%;
  1933. }
  1934. #hhh-cases .btn-outline-custom {
  1935. border-color: #707070;
  1936. }
  1937. #hhh-cases .caseData {
  1938. color: #727679;
  1939. padding: 0.5rem 0 0;
  1940. margin-bottom: 3rem;
  1941. }
  1942. #hhh-cases .caseData h4 {
  1943. font-weight: bold;
  1944. color: #34404B;
  1945. padding: 0.5rem;
  1946. }
  1947. #hhh-cases .caseData .caseData__infoBlock {
  1948. position: relative;
  1949. -webkit-box-shadow: 0 1px 10px #cecece;
  1950. box-shadow: 0 1px 10px #cecece;
  1951. padding: 1rem;
  1952. }
  1953. #hhh-cases .caseData .caseData__infoItems {
  1954. padding: 0.5rem;
  1955. }
  1956. #hhh-cases .caseData .caseData__infoItems__list {
  1957. display: -webkit-box;
  1958. display: -ms-flexbox;
  1959. display: flex;
  1960. }
  1961. #hhh-cases .caseData .caseData__infoItems__list--lf {
  1962. -webkit-box-pack: start;
  1963. -ms-flex-pack: start;
  1964. justify-content: start;
  1965. -webkit-box-align: start;
  1966. display: -webkit-box;
  1967. display: -ms-flexbox;
  1968. display: flex;
  1969. -ms-flex-positive: 0;
  1970. flex-grow: 0;
  1971. max-width: 15%;
  1972. -ms-flex-preferred-size: 15%;
  1973. flex-basis: 15%;
  1974. -webkit-box-flex: 0;
  1975. }
  1976. #hhh-cases .caseData .caseData__infoItems__list--rt {
  1977. -ms-flex-preferred-size: 80%;
  1978. flex-basis: 80%;
  1979. -webkit-box-flex: 0;
  1980. -ms-flex-positive: 0;
  1981. flex-grow: 0;
  1982. max-width: 80%;
  1983. -webkit-box-pack: start;
  1984. -ms-flex-pack: start;
  1985. justify-content: start;
  1986. word-break: break-all;
  1987. }
  1988. #hhh-cases .caseData a {
  1989. text-decoration: none;
  1990. background-color: transparent;
  1991. color: #727679;
  1992. }
  1993. #hhh-cases .caseData__designerBlock {
  1994. display: -webkit-box;
  1995. display: -ms-flexbox;
  1996. display: flex;
  1997. -webkit-box-shadow: 0 1px 10px #cecece;
  1998. box-shadow: 0 1px 10px #cecece;
  1999. }
  2000. #hhh-cases .caseData__designerBlock ul {
  2001. list-style-type: none;
  2002. padding: 0.6rem;
  2003. }
  2004. #hhh-cases .caseData__designerBlock__designer--pc {
  2005. padding: 1rem 0.9rem;
  2006. width: 50%;
  2007. height: 370px;
  2008. }
  2009. #hhh-cases .caseData__designerBlock__designer--above {
  2010. height: 70%;
  2011. }
  2012. #hhh-cases .caseData__designerBlock__designer--below {
  2013. height: 25%;
  2014. border-top: 1px solid #727679;
  2015. }
  2016. #hhh-cases .caseData__designerBlock__avatar--img {
  2017. height: 100%;
  2018. background-size: contain;
  2019. background-repeat: no-repeat;
  2020. background-position: center;
  2021. }
  2022. #hhh-cases .caseData__designerBlock__avatar {
  2023. width: 50%;
  2024. }
  2025. #hhh-cases .tel {
  2026. color: #EE751B !important;
  2027. font-size: 1.5rem;
  2028. font-weight: bold;
  2029. }
  2030. #hhh-cases .likeSee__state {
  2031. display: -webkit-box;
  2032. display: -ms-flexbox;
  2033. display: flex;
  2034. -webkit-box-pack: justify;
  2035. -ms-flex-pack: justify;
  2036. justify-content: space-between;
  2037. -webkit-box-align: center;
  2038. -ms-flex-align: center;
  2039. align-items: center;
  2040. }
  2041. #hhh-cases .likeSee__state h4 {
  2042. font-weight: bold;
  2043. color: #34404B;
  2044. }
  2045. #hhh-cases .likeSee__state .likeSee__state__filter--divider {
  2046. height: 12px;
  2047. display: inline-block;
  2048. border: 0.5px solid #9d9d9d;
  2049. }
  2050. #hhh-cases .likeSee__state a {
  2051. color: #727679;
  2052. text-decoration: none;
  2053. -webkit-transition: 0.3s;
  2054. transition: 0.3s;
  2055. }
  2056. #hhh-cases .likeSee__state a:hover {
  2057. color: #EE7800;
  2058. }
  2059. #hhh-cases .likeSee__state .active {
  2060. color: #EE751B;
  2061. }
  2062. #hhh-cases .card {
  2063. border: none;
  2064. font-size: 0.75rem;
  2065. }
  2066. #hhh-cases .vue-waterfall {
  2067. position: relative;
  2068. }
  2069. #hhh-cases .vue-waterfall a {
  2070. color: #727679;
  2071. text-decoration: none;
  2072. background-color: transparent;
  2073. font-size: 0.75rem;
  2074. -webkit-transition: all 300ms ease-in-out;
  2075. transition: all 300ms ease-in-out;
  2076. }
  2077. #hhh-cases .vue-waterfall a:hover {
  2078. color: #FFAC73;
  2079. }
  2080. #hhh-cases .vue-waterfall .card-body {
  2081. padding: 0.5rem 0.5rem 0.5rem 0;
  2082. }
  2083. #hhh-cases .vue-waterfall .likeSee__tag--item {
  2084. margin: 0 0.2rem 0 0;
  2085. text-decoration: none !important;
  2086. color: #727679 !important;
  2087. }
  2088. #hhh-cases .likeSee__tag {
  2089. padding: 0.5rem 0;
  2090. }
  2091. #hhh-cases .likeSee__tag--item {
  2092. margin: 0 0.2rem 0 0;
  2093. text-decoration: none !important;
  2094. color: #727679 !important;
  2095. }
  2096. #hhh-cases .likeSee__state__filter--item {
  2097. cursor: pointer;
  2098. }
  2099. #hhh-cases .formBtn .btn {
  2100. padding: 1.2rem 0.75rem;
  2101. }
  2102. #hhh-cases .btn-primary {
  2103. color: #fff;
  2104. background-color: #EE7800;
  2105. border-color: #EE7800;
  2106. }
  2107. #hhh-cases .btn-block {
  2108. display: block;
  2109. width: 100%;
  2110. }
  2111. #hhh-cases .container-width-ad {
  2112. max-width: 768px;
  2113. }
  2114. #hhh-cases .formBtn {
  2115. width: 47%;
  2116. }
  2117. #hhh-cases .ad__bgImg {
  2118. height: 80px;
  2119. background-repeat: no-repeat;
  2120. background-size: cover;
  2121. background-position: center;
  2122. }
  2123. #hhh-cases .container-width-ad {
  2124. max-width: 768px;
  2125. margin-bottom: 30px;
  2126. }
  2127. #hhh-cases .contact-section-avatar {
  2128. width: 75px;
  2129. height: 100px;
  2130. }
  2131. #hhh-cases .contact-section-company {
  2132. font-weight: bold;
  2133. font-size: 18px;
  2134. color: #6D6D6D;
  2135. text-decoration: none;
  2136. height: calc(18px * 2 *1.39);
  2137. }
  2138. #hhh-cases .contact-section-detail-box {
  2139. color: #6D6D6D;
  2140. display: -webkit-box !important;
  2141. display: -ms-flexbox !important;
  2142. display: flex !important;
  2143. }
  2144. #hhh-cases .contact-section-detail-box .contact-section-detail-lf {
  2145. -ms-flex-preferred-size: 7%;
  2146. flex-basis: 7%;
  2147. -ms-flex-positive: 0;
  2148. flex-grow: 0;
  2149. max-width: 7%;
  2150. display: -webkit-box !important;
  2151. display: -ms-flexbox !important;
  2152. display: flex !important;
  2153. -webkit-box-align: start;
  2154. -webkit-box-flex: 0;
  2155. }
  2156. #hhh-cases .contact-section-detail-box a {
  2157. color: #6D6D6D;
  2158. text-decoration: none;
  2159. }
  2160. #hhh-cases .info-area-title-desktop {
  2161. font-size: 18px;
  2162. font-weight: bold;
  2163. padding: 0.6rem 0 0.6rem 0.6rem;
  2164. margin: 1.6rem 0 1rem 0;
  2165. background-color: #EFEFEF;
  2166. }
  2167. #hhh-cases .info-area-title-desktop a {
  2168. color: #6D6D6D;
  2169. text-decoration: none;
  2170. }
  2171. #hhh-cases .info-area-data-desktop, #hhh-cases .info-area-other-case-desktop, #hhh-cases .info-area-same-case-desktop, #hhh-cases .info-area-contact-desktop {
  2172. font-size: 16px;
  2173. font-weight: bold;
  2174. color: #6D6D6D;
  2175. }
  2176. #hhh-cases .info-area-data-desktop a, #hhh-cases .info-area-other-case-desktop a, #hhh-cases .info-area-same-case-desktop a, #hhh-cases .info-area-contact-desktop a {
  2177. color: #6D6D6D;
  2178. text-decoration: none;
  2179. }
  2180. #hhh-cases .divider {
  2181. width: 100%;
  2182. height: 1px;
  2183. border-left: none;
  2184. border-bottom: 1px solid #9c9c9c;
  2185. margin: 10px 0;
  2186. }
  2187. #hhh-cases .data-table-desktop {
  2188. width: 100%;
  2189. font-size: 14px;
  2190. padding: 0.55rem 0;
  2191. }
  2192. #hhh-cases .data-table-lf {
  2193. -ms-flex-preferred-size: 18%;
  2194. flex-basis: 18%;
  2195. -webkit-box-flex: 0;
  2196. -ms-flex-positive: 0;
  2197. flex-grow: 0;
  2198. max-width: 25%;
  2199. display: -webkit-box;
  2200. display: -ms-flexbox;
  2201. display: flex;
  2202. -webkit-box-pack: start;
  2203. -ms-flex-pack: start;
  2204. justify-content: start;
  2205. -webkit-box-align: start;
  2206. -ms-flex-align: start;
  2207. align-items: start;
  2208. }
  2209. #hhh-cases .contact-section-detail-desktop {
  2210. font-size: 14px;
  2211. }
  2212. #hhh-cases .contact-section-detail-lf {
  2213. -ms-flex-preferred-size: 7%;
  2214. flex-basis: 7%;
  2215. -webkit-box-flex: 0;
  2216. -ms-flex-positive: 0;
  2217. flex-grow: 0;
  2218. display: -webkit-box;
  2219. display: -ms-flexbox;
  2220. display: flex;
  2221. -webkit-box-align: start;
  2222. -ms-flex-align: start;
  2223. align-items: start;
  2224. max-width: 7%;
  2225. }
  2226. #hhh-cases .info {
  2227. margin: 0 0 1.8rem;
  2228. -webkit-transition: all 300ms ease-in-out;
  2229. transition: all 300ms ease-in-out;
  2230. }
  2231. #hhh-cases .info .info__option {
  2232. display: -webkit-box;
  2233. display: -ms-flexbox;
  2234. display: flex;
  2235. -webkit-box-pack: center;
  2236. -ms-flex-pack: center;
  2237. justify-content: center;
  2238. -webkit-box-align: center;
  2239. -ms-flex-align: center;
  2240. align-items: center;
  2241. min-height: 100%;
  2242. }
  2243. #hhh-cases .info .info__items--ellipse {
  2244. -webkit-box-orient: vertical;
  2245. box-orient: vertical;
  2246. -webkit-line-clamp: 1;
  2247. height: calc(19.2px * 1 * 1.5);
  2248. overflow: hidden;
  2249. text-overflow: ellipsis;
  2250. display: -webkit-box;
  2251. -webkit-transition: all 300ms ease-in-out;
  2252. transition: all 300ms ease-in-out;
  2253. }
  2254. @media screen and (max-width: 576px) {
  2255. #hhh-cases .info .info__items--ellipse {
  2256. height: calc(16px * 1 * 1.5);
  2257. min-height: 0;
  2258. padding: 0;
  2259. }
  2260. }
  2261. #hhh-cases .info .border-sidebar {
  2262. position: relative;
  2263. }
  2264. #hhh-cases .info .border-sidebar::after {
  2265. content: '';
  2266. display: inline-block;
  2267. width: 1px;
  2268. height: calc(150px * 0.8);
  2269. background-color: #cecece;
  2270. -webkit-transform: translate3d(0, 0, 0);
  2271. transform: translate3d(0, 0, 0);
  2272. position: absolute;
  2273. left: 100%;
  2274. top: 12px;
  2275. }
  2276. #hhh-cases .info .mh {
  2277. min-height: 75px;
  2278. }
  2279. #hhh-cases .info .border-below {
  2280. border-bottom: 1px solid #cecece;
  2281. }
  2282. @media screen and (max-width: 576px) {
  2283. #hhh-cases .info .container--padding {
  2284. padding: 0 1.875rem;
  2285. }
  2286. }
  2287. @media screen and (max-width: 576px) {
  2288. #hhh-cases .CaseInfo-pc {
  2289. display: none;
  2290. }
  2291. }
  2292. #hhh-cases .info--shadow {
  2293. -webkit-box-shadow: 0 1px 10px #cecece;
  2294. box-shadow: 0 1px 10px #cecece;
  2295. }
  2296. .article--style {
  2297. background: #fff;
  2298. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  2299. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  2300. }
  2301. .article__title {
  2302. color: #34404B;
  2303. font-size: 1.5rem;
  2304. font-weight: bold;
  2305. margin-bottom: 0.5rem;
  2306. }
  2307. .article__contexts {
  2308. font-size: 1.1rem;
  2309. line-height: 1.8;
  2310. }
  2311. .article__contexts img {
  2312. max-width: 80%;
  2313. margin: 0.5rem 0;
  2314. }
  2315. .article__contexts p {
  2316. margin-bottom: 1rem !important;
  2317. }
  2318. .article__contexts a {
  2319. text-decoration: none;
  2320. }
  2321. .article__contexts strong {
  2322. font-weight: bolder;
  2323. }
  2324. .cardList__items {
  2325. -webkit-box-shadow: 0 1px 10px #eee;
  2326. box-shadow: 0 1px 10px #eee;
  2327. margin: 0 0 1.5rem;
  2328. }
  2329. .cardList__items img {
  2330. width: 100%;
  2331. height: 293px;
  2332. }
  2333. .cardList__items .cardList__items__content {
  2334. padding: 0.5rem 1rem;
  2335. }
  2336. .cardList__items .cardList__items--title {
  2337. font-size: 1.125rem;
  2338. font-weight: bold;
  2339. margin: 0.5rem 0;
  2340. color: #727679;
  2341. }
  2342. .cardList__items .likeSee__tag--item {
  2343. margin: 0 0.2rem 0 0;
  2344. }
  2345. .cardList__items a {
  2346. font-size: 16px !important;
  2347. }
  2348. .cardList__items p {
  2349. margin-bottom: 1rem !important;
  2350. }
  2351. /*# sourceMappingURL=style.css.map */