style.css 49 KB

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