style.css 49 KB

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