style.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  1. @charset "UTF-8";
  2. body {
  3. font-family: 'Helvetica Neue';
  4. }
  5. .sec-00 {
  6. background-color: #cacaca;
  7. -webkit-transition-property: height;
  8. transition-property: height;
  9. -webkit-transition-duration: 300ms;
  10. transition-duration: 300ms;
  11. }
  12. .sec-00__close {
  13. position: absolute;
  14. top: 0;
  15. right: 20px;
  16. width: 50px;
  17. height: 30px;
  18. background-color: rgba(255, 255, 255, 0.66);
  19. border-radius: 0 0 50px 50px;
  20. color: #888;
  21. border: none;
  22. outline: none;
  23. font-size: 11px;
  24. -webkit-box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  25. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  26. line-height: 12px;
  27. z-index: 3;
  28. }
  29. .sec-00.bannerClose {
  30. height: 0;
  31. overflow: hidden;
  32. -webkit-transition-property: height;
  33. transition-property: height;
  34. -webkit-transition-duration: 300ms;
  35. transition-duration: 300ms;
  36. }
  37. .sec-00 .container-fluid {
  38. background-color: #cacaca;
  39. }
  40. .sec-00__slider {
  41. margin: 0 auto;
  42. width: 100%;
  43. height: 100%;
  44. max-width: 1310px;
  45. padding-top: 20px;
  46. padding-bottom: 24px;
  47. }
  48. @media (max-width: 1850px) {
  49. .sec-00__slider {
  50. max-width: 1310px;
  51. }
  52. }
  53. @media (max-width: 1550px) {
  54. .sec-00__slider {
  55. max-width: 1310px;
  56. }
  57. }
  58. .sec-00__slider .slide-item {
  59. width: 100%;
  60. height: 100%;
  61. max-width: 1310px;
  62. max-height: 300px;
  63. -o-object-fit: contain;
  64. object-fit: contain;
  65. height: 300px;
  66. cursor: pointer;
  67. }
  68. .sec-00 .slick-prev:before, .sec-00 .slick-next:before {
  69. display: none;
  70. }
  71. .sec-00__bulletList {
  72. position: absolute;
  73. bottom: 21px;
  74. left: calc(50% - 655px);
  75. width: 1310px;
  76. -webkit-box-sizing: border-box;
  77. box-sizing: border-box;
  78. display: -webkit-box;
  79. display: -ms-flexbox;
  80. display: flex;
  81. z-index: 10;
  82. background-color: rgba(0, 0, 0, 0.1);
  83. }
  84. .sec-00__bullet {
  85. position: relative;
  86. width: 100%;
  87. height: 3px;
  88. background-color: rgba(0, 0, 0, 0.1);
  89. -webkit-box-flex: 1;
  90. -ms-flex: 1 1 auto;
  91. flex: 1 1 auto;
  92. opacity: 1;
  93. }
  94. .sec-00__bullet::after {
  95. content: "";
  96. background: #ee7800;
  97. position: absolute;
  98. width: 0;
  99. height: 100%;
  100. left: 0;
  101. top: 0;
  102. border-radius: 2px;
  103. }
  104. .sec-00 .bullet-active::after {
  105. width: 0;
  106. -webkit-animation-name: progress;
  107. animation-name: progress;
  108. -webkit-animation-duration: 4s;
  109. animation-duration: 4s;
  110. -webkit-animation-timing-function: linear;
  111. animation-timing-function: linear;
  112. }
  113. @keyframes progress {
  114. 0% {
  115. width: 0%;
  116. }
  117. 25% {
  118. width: 25%;
  119. }
  120. 50% {
  121. width: 50%;
  122. }
  123. 75% {
  124. width: 75%;
  125. }
  126. 100% {
  127. width: 100%;
  128. }
  129. }
  130. @-webkit-keyframes progress {
  131. 0% {
  132. width: 0%;
  133. }
  134. 25% {
  135. width: 25%;
  136. }
  137. 50% {
  138. width: 50%;
  139. }
  140. 75% {
  141. width: 75%;
  142. }
  143. 100% {
  144. width: 100%;
  145. }
  146. }
  147. @-webkit-keyframes slidein {
  148. 100% {
  149. height: 0px;
  150. }
  151. }
  152. @keyframes slidein {
  153. 100% {
  154. height: 0px;
  155. }
  156. }
  157. .navbar {
  158. box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  159. -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);
  160. -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);
  161. padding-top: 5px;
  162. padding-bottom: 5px;
  163. background-color: white !important;
  164. z-index: 99;
  165. }
  166. .navbar .container-fluid {
  167. padding: 0 2.5rem;
  168. }
  169. @media (max-width: 1100px) {
  170. .navbar .container-fluid {
  171. padding: 0 .6rem;
  172. }
  173. }
  174. .navbar-toggler {
  175. padding-left: 0;
  176. border-color: transparent !important;
  177. }
  178. .navbar-toggler:focus {
  179. -webkit-box-shadow: none;
  180. box-shadow: none;
  181. }
  182. .navbar-toggler-icon {
  183. display: -webkit-box;
  184. display: -ms-flexbox;
  185. display: flex;
  186. justify-items: center;
  187. }
  188. .navbar-toggler-icon i {
  189. font-size: 25px;
  190. line-height: 30px;
  191. display: inline-block;
  192. }
  193. .navbar-search, .navbar-login {
  194. padding-right: 2px;
  195. }
  196. .navbar-login {
  197. cursor: pointer;
  198. }
  199. .navbar-search-magnify {
  200. cursor: pointer;
  201. }
  202. .navbar-brand {
  203. font-size: 1.5rem;
  204. }
  205. .navbar-brand.navbar-logo {
  206. display: -webkit-box;
  207. display: -ms-flexbox;
  208. display: flex;
  209. -webkit-box-align: center;
  210. -ms-flex-align: center;
  211. align-items: center;
  212. }
  213. .navbar-brand .navbar-login {
  214. font-size: 1rem;
  215. color: #EE7800;
  216. text-decoration: none;
  217. }
  218. .navbar .nav-link {
  219. cursor: pointer;
  220. }
  221. @media (max-width: 1100px) {
  222. .navbar .nav-link {
  223. padding: .5rem .5rem;
  224. font-size: .9rem;
  225. }
  226. }
  227. .navbar .navbar-nav .nav-item {
  228. margin: 0 .5rem;
  229. }
  230. @media (max-width: 1100px) {
  231. .navbar .navbar-nav .nav-item {
  232. margin: 0 0rem;
  233. }
  234. }
  235. .navbar .navbar-nav .nav-item .dropbox {
  236. visibility: hidden;
  237. opacity: 0;
  238. -webkit-transition: all .4s;
  239. transition: all .4s;
  240. position: absolute;
  241. width: 100vw;
  242. top: 100%;
  243. left: 0;
  244. background-color: rgba(255, 255, 255, 0.932);
  245. padding-top: 1.5rem;
  246. padding-bottom: 3rem;
  247. }
  248. .navbar .navbar-nav .nav-item .dropbox ul {
  249. padding-left: 0;
  250. }
  251. .navbar .navbar-nav .nav-item .dropbox-item {
  252. margin-bottom: .5rem;
  253. }
  254. .navbar .navbar-nav .nav-item .dropbox-item.first {
  255. font-size: 1.1rem;
  256. font-weight: 600;
  257. }
  258. .navbar .navbar-nav .nav-item .dropbox-item.first .dropbox-link {
  259. color: black;
  260. }
  261. .navbar .navbar-nav .nav-item .dropbox-link {
  262. text-decoration: none;
  263. color: #929292;
  264. font-size: .85rem;
  265. }
  266. .navbar .navbar-nav .nav-item .dropbox-link:hover {
  267. color: #EE7800;
  268. }
  269. .navbar .navbar-nav .nav-item .dropbox-link.dropbox-btn {
  270. border: 1px solid #929292;
  271. padding: .5rem 2rem;
  272. border-radius: 5px;
  273. width: 85%;
  274. min-width: 7rem;
  275. max-width: 11rem;
  276. }
  277. .navbar .navbar-nav .nav-item .dropbox-btn {
  278. display: -webkit-box;
  279. display: -ms-flexbox;
  280. display: flex;
  281. -webkit-box-align: center;
  282. -ms-flex-align: center;
  283. align-items: center;
  284. -webkit-box-pack: center;
  285. -ms-flex-pack: center;
  286. justify-content: center;
  287. }
  288. .navbar .navbar-nav .nav-item .dropbox .container {
  289. max-width: 900px;
  290. width: 70%;
  291. }
  292. .navbar .navbar-nav .nav-item .dropbox .container.stylebox {
  293. -webkit-transform: translateX(-30%);
  294. transform: translateX(-30%);
  295. }
  296. .navbar .navbar-nav .nav-item .dropbox .container.designerbox {
  297. -webkit-transform: translateX(-5%);
  298. transform: translateX(-5%);
  299. }
  300. .navbar .navbar-nav .nav-item .dropbox .container.newbox {
  301. -webkit-transform: translateX(15%);
  302. transform: translateX(15%);
  303. }
  304. .navbar .navbar-nav .nav-item .dropbox .container.forumbox {
  305. -webkit-transform: translateX(50%);
  306. transform: translateX(50%);
  307. }
  308. .navbar .navbar-nav .nav-item .nav-link {
  309. position: relative;
  310. }
  311. .navbar .navbar-nav .nav-item .nav-link:after {
  312. position: absolute;
  313. content: " ";
  314. width: 100%;
  315. height: 90%;
  316. top: 0;
  317. right: 0;
  318. border-bottom: 2px solid #EE7800;
  319. opacity: 0;
  320. -webkit-transform: opacity 1s;
  321. transform: opacity 1s;
  322. }
  323. .navbar .navbar-nav .nav-item:hover .nav-link:after {
  324. opacity: 1;
  325. }
  326. .navbar .navbar-nav .nav-item:hover > .dropbox {
  327. visibility: visible;
  328. opacity: 1;
  329. }
  330. .navbar .navbar-nav .nav-item.lg .container {
  331. max-width: 1200px;
  332. width: 90%;
  333. }
  334. .navbar .navbar-nav .nav-item.lg .dropbox-link {
  335. text-decoration: none;
  336. color: #929292;
  337. font-size: .7rem;
  338. }
  339. .navbar .navbar-nav .nav-item.lg .dropbox-link:hover {
  340. color: #EE7800;
  341. }
  342. .navbar .navbar-nav .nav-item.lg .dropbox-item {
  343. margin-bottom: .1rem;
  344. }
  345. .navbar .navbar-nav .nav-item.lg .dropbox-item.first .dropbox-link {
  346. font-size: .85rem;
  347. }
  348. .navbar-search .container {
  349. max-width: 900px;
  350. width: 70%;
  351. }
  352. @media (max-width: 1100px) {
  353. .navbar-search .container {
  354. width: 90%;
  355. }
  356. }
  357. .navbar-search .dropbox {
  358. visibility: hidden;
  359. opacity: 0;
  360. -webkit-transition: all .2s;
  361. transition: all .2s;
  362. position: absolute;
  363. width: 100vw;
  364. top: 100%;
  365. left: 0;
  366. background-color: rgba(255, 255, 255, 0.932);
  367. padding-top: 1.5rem;
  368. padding-bottom: 3rem;
  369. }
  370. .navbar-search .dropbox.open {
  371. visibility: visible;
  372. opacity: 1;
  373. }
  374. .navbar-search .dropbox__searchtab {
  375. width: 100%;
  376. background-color: gray;
  377. border-radius: 3px;
  378. padding: .2rem 1rem;
  379. padding-bottom: 1rem;
  380. }
  381. .navbar-search .dropbox__hots__title {
  382. font-size: 1rem;
  383. color: #6b6b6b;
  384. }
  385. .navbar-search .dropbox__hots__link {
  386. font-size: .9rem;
  387. color: #929292;
  388. text-decoration: none;
  389. cursor: pointer;
  390. margin: 0 .2rem;
  391. }
  392. .navbar-search .dropbox__searchBar__input {
  393. width: 100%;
  394. outline: none;
  395. border: 2px solid #EE7800;
  396. border-radius: 5rem;
  397. padding: .3rem 1.2rem;
  398. font-size: .9rem;
  399. }
  400. .navbar-search .dropbox__searchBar__submit {
  401. outline: none;
  402. border: none;
  403. font-size: .9rem;
  404. background-color: transparent;
  405. color: #EE7800;
  406. margin-left: -1rem;
  407. -webkit-transform: translateX(-100%);
  408. transform: translateX(-100%);
  409. padding: 0 .6rem;
  410. }
  411. .navbar-search .dropbox__tab .nav-item {
  412. margin: 0 .6rem;
  413. }
  414. .navbar-search .dropbox .nav-item-link {
  415. border: none;
  416. outline: none;
  417. font-size: 1rem;
  418. color: white;
  419. padding: 3px;
  420. position: relative;
  421. }
  422. .navbar-search .dropbox .nav-item-link::after {
  423. position: absolute;
  424. content: "";
  425. top: 0;
  426. left: 0;
  427. width: 100%;
  428. height: 100%;
  429. border-bottom: 3px solid #EE7800;
  430. opacity: 0;
  431. }
  432. .navbar-search .dropbox .nav-item-link.active::after {
  433. opacity: 1;
  434. }
  435. .navbar-search .dropbox-tab-content .tabpar {
  436. display: -webkit-box;
  437. display: -ms-flexbox;
  438. display: flex;
  439. padding-top: .5rem;
  440. }
  441. .navbar-search .dropbox-tab-content .tabpar .col {
  442. margin: 0 .6rem;
  443. }
  444. .navbar-search .dropbox-tab-content .tabpar .select {
  445. font-size: 1rem;
  446. padding: .6rem;
  447. border-radius: 3px;
  448. color: #747474;
  449. }
  450. .navbar-search .dropbox-tab-content .tabpar button {
  451. border: none;
  452. outline: none;
  453. background-color: #EE7800;
  454. border-radius: 3px;
  455. color: white;
  456. font-size: 1rem;
  457. padding: .6rem;
  458. }
  459. .navbar-search .dropbox-tab-content .tabpar .image-search {
  460. border: none;
  461. outline: none;
  462. background-color: #EE7800;
  463. border-radius: 3px;
  464. color: white;
  465. font-size: 1rem;
  466. }
  467. .navbar-search .dropbox-tab-content .tabpar .article-btn {
  468. border: none;
  469. outline: none;
  470. background-color: #EE7800;
  471. border-radius: 3px;
  472. color: white;
  473. font-size: 1rem;
  474. padding: .6rem;
  475. }
  476. .navbar-search .dropbox-tab-content .tabpar .home-btn {
  477. border: none;
  478. outline: none;
  479. background-color: #EE7800;
  480. border-radius: 3px;
  481. color: white;
  482. font-size: 1rem;
  483. padding: .6rem;
  484. }
  485. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  486. opacity: 1;
  487. }
  488. .navbar-main.sticky {
  489. position: fixed;
  490. top: 0;
  491. width: 100%;
  492. }
  493. .navbar-main.sticky + .sec-02 {
  494. padding-top: 53.5px;
  495. }
  496. .sec-02__slider {
  497. width: 100%;
  498. height: 100%;
  499. }
  500. .sec-02__slider .slide-item {
  501. width: 100%;
  502. height: 500px;
  503. background-position: center center;
  504. background-size: cover;
  505. background-repeat: no-repeat;
  506. cursor: pointer;
  507. }
  508. .sec-02 .slick-prev:before, .sec-02 .slick-next:before {
  509. display: none;
  510. }
  511. .sec-02 .slick-prev {
  512. left: 15px;
  513. z-index: 3;
  514. }
  515. .sec-02 .slick-next {
  516. right: 15px;
  517. }
  518. .sec-04 {
  519. background-color: #F4F4F4;
  520. padding: 4rem 1rem;
  521. }
  522. .sec-04 .container {
  523. max-width: 950px;
  524. width: 70%;
  525. }
  526. @media (max-width: 1100px) {
  527. .sec-04 .container {
  528. width: 90%;
  529. }
  530. }
  531. .sec-04 .card {
  532. -webkit-box-shadow: 1px 2px 8px 1px #d6d6d6;
  533. box-shadow: 1px 2px 8px 1px #d6d6d6;
  534. text-decoration: none;
  535. cursor: pointer;
  536. -webkit-transition: all .6s;
  537. transition: all .6s;
  538. }
  539. .sec-04 .card-title {
  540. font-size: 1.4rem;
  541. line-height: 1.8rem;
  542. color: #4C4C4C;
  543. font-weight: 500;
  544. -webkit-transition: all 2s;
  545. transition: all 2s;
  546. }
  547. .sec-04 .card__imgfr {
  548. width: 100%;
  549. }
  550. .sec-04 .card__imgfr img {
  551. width: 100%;
  552. height: 100%;
  553. }
  554. .sec-04 .card:hover {
  555. -webkit-transform: scale(1.05);
  556. transform: scale(1.05);
  557. }
  558. .sec-guessLike .container {
  559. margin: 0 auto;
  560. padding: 2rem 2rem;
  561. max-width: 1050px;
  562. width: 70%;
  563. }
  564. @media (max-width: 1100px) {
  565. .sec-guessLike .container {
  566. width: 90%;
  567. padding: 0 1rem;
  568. }
  569. }
  570. .sec-guessLike__titlebox-h2 {
  571. margin: 0 auto;
  572. font-size: 1.8rem;
  573. font-weight: 600;
  574. color: #535353;
  575. padding: .8rem 0;
  576. border-bottom: 6px solid #EE7800;
  577. display: inline-block;
  578. }
  579. .sec-guessLike__title {
  580. display: block;
  581. text-align: center;
  582. position: relative;
  583. font-size: 1.2rem;
  584. margin-bottom: .8rem;
  585. }
  586. .sec-guessLike__title::before, .sec-guessLike__title::after {
  587. position: absolute;
  588. content: " ";
  589. width: 40%;
  590. height: 0rem;
  591. border-top: 1px solid black;
  592. top: 50%;
  593. }
  594. .sec-guessLike__title::before {
  595. left: 0;
  596. }
  597. .sec-guessLike__title::after {
  598. left: 60%;
  599. }
  600. .sec-guessLike__article h5 {
  601. font-size: 1.1rem;
  602. }
  603. .sec-guessLike__article p {
  604. font-size: 14px;
  605. }
  606. .sec-guessLike__case p {
  607. font-size: 1.1rem;
  608. font-weight: 500;
  609. }
  610. .sec-guessLike__card {
  611. width: 100%;
  612. overflow: hidden;
  613. height: 26vh;
  614. position: relative;
  615. background-position: center center;
  616. background-size: cover;
  617. background-repeat: no-repeat;
  618. }
  619. .sec-guessLike__card.special {
  620. height: 45vh;
  621. }
  622. .sec-guessLike__card__img {
  623. width: 100%;
  624. -webkit-transition: all .8s;
  625. transition: all .8s;
  626. }
  627. .sec-guessLike__card__txt {
  628. position: absolute;
  629. bottom: 1rem;
  630. left: 3rem;
  631. color: white;
  632. z-index: 2;
  633. font-size: 600;
  634. text-shadow: 1px 1px 2px gray;
  635. }
  636. .sec-guessLike__video__play {
  637. position: absolute;
  638. width: 2.5rem;
  639. left: 50%;
  640. top: 50%;
  641. -webkit-transform: translate(-50%, -50%);
  642. transform: translate(-50%, -50%);
  643. }
  644. .sec-05 {
  645. border-top: 1px solid #bbbbbb;
  646. padding-bottom: 2rem;
  647. }
  648. .sec-05 .container {
  649. margin: 0 auto;
  650. padding: 0 2rem;
  651. max-width: 1050px;
  652. width: 70%;
  653. }
  654. @media (max-width: 1100px) {
  655. .sec-05 .container {
  656. width: 90%;
  657. padding: 0 1rem;
  658. }
  659. }
  660. .sec-05__tabdiv {
  661. -webkit-box-sizing: content-box;
  662. box-sizing: content-box;
  663. -webkit-box-align: center;
  664. -ms-flex-align: center;
  665. align-items: center;
  666. -webkit-box-pack: justify;
  667. -ms-flex-pack: justify;
  668. justify-content: space-between;
  669. }
  670. .sec-05__tabdiv .more {
  671. padding-bottom: .4rem;
  672. }
  673. .sec-05__tabdiv .nav-item {
  674. position: relative;
  675. padding-right: 18px;
  676. padding-left: 18px;
  677. }
  678. .sec-05__tabdiv .nav-item::after {
  679. position: absolute;
  680. content: " ";
  681. width: 100%;
  682. height: 30%;
  683. left: 0;
  684. top: 35%;
  685. background-color: transparent;
  686. border-right: 1px solid #b3b3b3;
  687. z-index: -1;
  688. }
  689. .sec-05__tabdiv .nav-item:nth-of-type(3)::after {
  690. display: none;
  691. }
  692. .sec-05__tabdiv .nav-item-link {
  693. color: black;
  694. font-weight: 500;
  695. font-size: 1.6rem;
  696. border: none;
  697. position: relative;
  698. padding: 1.5rem 0;
  699. outline: none;
  700. }
  701. @media screen and (max-width: 385px) {
  702. .sec-05__tabdiv .nav-item-link {
  703. font-size: 1.1rem;
  704. }
  705. }
  706. .sec-05__tabdiv .nav-item-link:focus {
  707. outline: none !important;
  708. }
  709. .sec-05__tabdiv .nav-item-link.active {
  710. color: #EE7800;
  711. }
  712. .sec-05__tabdiv .nav-item-link::before {
  713. position: absolute;
  714. content: " ";
  715. width: 101%;
  716. height: 100%;
  717. left: -2px;
  718. top: 0px;
  719. background-color: transparent;
  720. border-top: 3px solid #EE7800;
  721. opacity: 0;
  722. }
  723. .sec-05__tabdiv .nav-item-link.active::before {
  724. opacity: 1;
  725. }
  726. .sec-05 .tab-pane {
  727. height: 100%;
  728. }
  729. .sec-05tab-content {
  730. height: 35vh;
  731. }
  732. .sec-05 .tabpar__card {
  733. margin: 3px;
  734. position: relative;
  735. font-size: 14px;
  736. cursor: pointer;
  737. }
  738. .sec-05 .tabpar__card__imgfr {
  739. width: 100%;
  740. height: 25vh;
  741. position: relative;
  742. background-position: center center;
  743. background-size: cover;
  744. background-repeat: no-repeat;
  745. }
  746. @media (max-width: 1100px) {
  747. .sec-05 .tabpar__card__imgfr {
  748. height: 20vh;
  749. }
  750. }
  751. .sec-05 .tabpar__card h5 {
  752. font-size: 1rem;
  753. }
  754. .sec-05 .tabpar__card p {
  755. font-size: .95rem;
  756. font-weight: 300;
  757. color: gray;
  758. }
  759. .sec-05 .tabpar__card__play {
  760. position: absolute;
  761. left: 50%;
  762. top: 50%;
  763. -webkit-transform: translate(-50%, -50%);
  764. transform: translate(-50%, -50%);
  765. width: 2.5rem;
  766. }
  767. .sec-05 .slick-prev {
  768. top: 40%;
  769. left: -2rem;
  770. z-index: 2;
  771. }
  772. .sec-05 .slick-next {
  773. top: 40%;
  774. right: -2rem;
  775. z-index: 2;
  776. }
  777. .sec-05 .slick-prev:before, .sec-05 .slick-next:before {
  778. display: none;
  779. }
  780. .sec-06 {
  781. padding: 2rem 0;
  782. }
  783. .sec-06 .container {
  784. margin: 0 auto;
  785. padding: 1rem 2rem;
  786. max-width: 1050px;
  787. width: 70%;
  788. }
  789. @media (max-width: 1100px) {
  790. .sec-06 .container {
  791. width: 90%;
  792. padding: 0 1rem;
  793. }
  794. }
  795. .sec-06__title h3 {
  796. display: inline-block;
  797. font-size: 1.6rem;
  798. padding-bottom: .5rem;
  799. border-bottom: 6px solid #EE7800;
  800. color: #535353;
  801. margin-bottom: 0;
  802. }
  803. .sec-06__video {
  804. width: 100%;
  805. position: relative;
  806. }
  807. .sec-06__video__imgfr {
  808. width: 100%;
  809. height: 34vh;
  810. background-position: center center;
  811. background-size: cover;
  812. background-repeat: no-repeat;
  813. }
  814. @media (max-width: 1100px) {
  815. .sec-06__video__imgfr {
  816. height: 25vh;
  817. }
  818. }
  819. .sec-06__video__play {
  820. position: absolute;
  821. left: 50%;
  822. top: 50%;
  823. width: 2.5rem;
  824. height: 2.5rem;
  825. z-index: 2;
  826. -webkit-transform: translate(-50%, -50%);
  827. transform: translate(-50%, -50%);
  828. }
  829. .sec-06__videotxt {
  830. width: 90%;
  831. margin: 0 auto;
  832. background-color: rgba(255, 255, 255, 0.842);
  833. -webkit-box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  834. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  835. padding: .4rem .8rem;
  836. -webkit-transform: translateY(-20%);
  837. transform: translateY(-20%);
  838. font-weight: 600;
  839. font-size: 1.1rem;
  840. }
  841. .sec-06__btns {
  842. display: block;
  843. outline: none;
  844. border: none;
  845. padding: .4rem 1.2rem;
  846. width: 88%;
  847. margin: 0 auto;
  848. background-color: #ea068c;
  849. color: white;
  850. border-radius: 3px;
  851. -webkit-box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  852. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  853. -webkit-transition: all .4s;
  854. transition: all .4s;
  855. text-decoration: none;
  856. }
  857. .sec-06__btns:hover {
  858. -webkit-transform: translate(2px, 2px);
  859. transform: translate(2px, 2px);
  860. color: white;
  861. }
  862. .sec-06__btns__txt {
  863. font-weight: 600;
  864. }
  865. .sec-06__btns:nth-of-type(2), .sec-06__btns:nth-of-type(3) {
  866. padding: 1rem 1.2rem;
  867. }
  868. .sec-06__card {
  869. width: 100%;
  870. }
  871. .sec-06__card:hover .sec-06__card__imgfr {
  872. -webkit-transform: scale(1.1);
  873. transform: scale(1.1);
  874. }
  875. .sec-06__card h5 {
  876. font-size: 1.1rem;
  877. margin-bottom: .3rem;
  878. }
  879. .sec-06__card p {
  880. font-size: .9rem;
  881. }
  882. .sec-06__card__outer {
  883. width: 100%;
  884. height: 48vh;
  885. overflow: hidden;
  886. }
  887. .sec-06__card__play {
  888. position: absolute;
  889. left: 50%;
  890. top: 50%;
  891. -webkit-transform: translate(-50%, -50%);
  892. transform: translate(-50%, -50%);
  893. width: 2.5rem;
  894. }
  895. .sec-06__card__imgfr {
  896. width: 100%;
  897. height: 48vh;
  898. background-position: center center;
  899. background-size: cover;
  900. background-repeat: no-repeat;
  901. -webkit-transition: all .5s;
  902. transition: all .5s;
  903. position: relative;
  904. }
  905. .sec-06 .slick-prev {
  906. top: 40%;
  907. left: .5rem;
  908. z-index: 2;
  909. }
  910. .sec-06 .slick-next {
  911. top: 40%;
  912. right: .5rem;
  913. z-index: 2;
  914. }
  915. .sec-06 .slick-prev:before, .sec-06 .slick-next:before {
  916. display: none;
  917. }
  918. .sec-07 {
  919. padding: 2rem 0;
  920. }
  921. .sec-07 .container {
  922. margin: 0 auto;
  923. padding: .8rem 1.2rem;
  924. max-width: 1050px;
  925. width: 70%;
  926. background-color: #F4F4F4;
  927. }
  928. @media (max-width: 1100px) {
  929. .sec-07 .container {
  930. width: 90%;
  931. padding: 0 1rem;
  932. }
  933. }
  934. .sec-07__slider {
  935. height: 100%;
  936. }
  937. .sec-07__slider .slide-item {
  938. height: 23vh;
  939. background-position: center center;
  940. background-size: contain;
  941. background-repeat: no-repeat;
  942. width: 100%;
  943. margin: 0 5px;
  944. cursor: pointer;
  945. }
  946. @media (max-width: 1100px) {
  947. .sec-07__slider .slide-item {
  948. height: 18vh;
  949. }
  950. }
  951. .sec-08 {
  952. padding-bottom: 2.5rem;
  953. }
  954. .sec-08 .container {
  955. margin: 0 auto;
  956. padding: 1rem 0rem;
  957. max-width: 1050px;
  958. width: 70%;
  959. }
  960. @media (max-width: 1100px) {
  961. .sec-08 .container {
  962. width: 90%;
  963. padding: 0 1rem;
  964. }
  965. }
  966. .sec-08__title {
  967. border-bottom: 6px solid #EE7800;
  968. color: #535353;
  969. }
  970. .sec-08__title h3 {
  971. font-size: 1.6rem;
  972. }
  973. .sec-08__slider {
  974. width: 100%;
  975. cursor: pointer;
  976. }
  977. .sec-08__imgfr {
  978. width: 100%;
  979. height: 28vh;
  980. background-position: center center;
  981. background-size: cover;
  982. background-repeat: no-repeat;
  983. position: relative;
  984. }
  985. @media (max-width: 1100px) {
  986. .sec-08__imgfr {
  987. height: 20vh;
  988. }
  989. }
  990. .sec-08__card h5 {
  991. font-size: 1rem;
  992. }
  993. .sec-08__card p {
  994. font-size: .9rem;
  995. }
  996. .sec-08__card__play {
  997. position: absolute;
  998. left: 50%;
  999. top: 50%;
  1000. -webkit-transform: translate(-50%, -50%);
  1001. transform: translate(-50%, -50%);
  1002. width: 2.5rem;
  1003. }
  1004. .sec-08__cardtxt {
  1005. font-size: 14px;
  1006. padding-right: .6rem;
  1007. }
  1008. .sec-08 .slick-prev {
  1009. top: 40%;
  1010. left: -2rem;
  1011. z-index: 2;
  1012. }
  1013. .sec-08 .slick-next {
  1014. top: 40%;
  1015. right: -2rem;
  1016. z-index: 2;
  1017. }
  1018. .sec-08 .slick-prev:before, .sec-08 .slick-next:before {
  1019. display: none;
  1020. }
  1021. .sec-09 {
  1022. background-color: #F4F4F4;
  1023. }
  1024. .sec-09 .container {
  1025. margin: 0 auto;
  1026. padding: 2rem 0rem;
  1027. max-width: 1050px;
  1028. width: 70%;
  1029. }
  1030. @media (max-width: 1100px) {
  1031. .sec-09 .container {
  1032. width: 90%;
  1033. padding: 0 1rem;
  1034. }
  1035. }
  1036. .sec-09__imgfr {
  1037. width: 100%;
  1038. height: 25vh;
  1039. background-position: center center;
  1040. background-size: cover;
  1041. background-repeat: no-repeat;
  1042. position: relative;
  1043. }
  1044. @media (max-width: 1100px) {
  1045. .sec-09__imgfr {
  1046. height: 20vh;
  1047. }
  1048. }
  1049. .sec-09__card {
  1050. margin: 5px;
  1051. text-align: center;
  1052. cursor: pointer;
  1053. }
  1054. .sec-09__card p {
  1055. font-size: 14px;
  1056. margin-top: .5rem;
  1057. }
  1058. .sec-09__card__play {
  1059. position: absolute;
  1060. right: .6rem;
  1061. bottom: .6rem;
  1062. width: 2.5rem;
  1063. }
  1064. .sec-09__title {
  1065. border-bottom: 6px solid #EE7800;
  1066. color: #535353;
  1067. }
  1068. .sec-09__title h3 {
  1069. font-size: 1.6rem;
  1070. }
  1071. .sec-09 .slick-prev {
  1072. top: 40%;
  1073. left: -2rem;
  1074. z-index: 2;
  1075. }
  1076. .sec-09 .slick-next {
  1077. top: 40%;
  1078. right: -2rem;
  1079. z-index: 2;
  1080. }
  1081. .sec-09 .slick-prev:before, .sec-09 .slick-next:before {
  1082. display: none;
  1083. }
  1084. .sec-10 {
  1085. padding: 2.5rem 0;
  1086. }
  1087. .sec-10 .container {
  1088. max-width: 1000px;
  1089. width: 70%;
  1090. }
  1091. @media (max-width: 1100px) {
  1092. .sec-10 .container {
  1093. width: 90%;
  1094. padding: 0 1rem;
  1095. }
  1096. }
  1097. .sec-10__titlebox {
  1098. border-bottom: 1px solid #4b4b4b;
  1099. display: -webkit-box;
  1100. display: -ms-flexbox;
  1101. display: flex;
  1102. -webkit-box-pack: center;
  1103. -ms-flex-pack: center;
  1104. justify-content: center;
  1105. }
  1106. .sec-10__titlebox-h2 {
  1107. margin: 0 auto;
  1108. font-size: 1.8rem;
  1109. font-weight: 600;
  1110. color: #535353;
  1111. padding: .8rem 0;
  1112. border-bottom: 6px solid #EE7800;
  1113. display: inline-block;
  1114. }
  1115. .sec-10__card {
  1116. cursor: pointer;
  1117. }
  1118. .sec-10__card h5 {
  1119. font-size: 1rem;
  1120. margin-bottom: .3rem;
  1121. }
  1122. .sec-10__card p {
  1123. font-size: .95rem;
  1124. font-weight: 300;
  1125. color: gray;
  1126. }
  1127. .sec-10__card-img {
  1128. width: 100%;
  1129. height: 25vh;
  1130. background-position: center center;
  1131. background-size: cover;
  1132. background-repeat: no-repeat;
  1133. position: relative;
  1134. }
  1135. @media (max-width: 1100px) {
  1136. .sec-10__card-img {
  1137. height: 20vh;
  1138. }
  1139. }
  1140. .sec-10__card__play {
  1141. position: absolute;
  1142. right: 1rem;
  1143. bottom: 1rem;
  1144. width: 2.5rem;
  1145. height: 2.5rem;
  1146. }
  1147. .sec-11 {
  1148. padding: 2.5rem 0;
  1149. padding-top: 1rem;
  1150. }
  1151. .sec-11 .container {
  1152. max-width: 1000px;
  1153. width: 70%;
  1154. }
  1155. @media (max-width: 1100px) {
  1156. .sec-11 .container {
  1157. width: 90%;
  1158. padding: 0 1rem;
  1159. }
  1160. }
  1161. .sec-11__titlebox {
  1162. border-bottom: 1px solid #4b4b4b;
  1163. display: -webkit-box;
  1164. display: -ms-flexbox;
  1165. display: flex;
  1166. -webkit-box-pack: center;
  1167. -ms-flex-pack: center;
  1168. justify-content: center;
  1169. }
  1170. .sec-11__titlebox-h2 {
  1171. margin: 0 auto;
  1172. font-size: 1.8rem;
  1173. font-weight: 600;
  1174. color: #535353;
  1175. padding: .8rem 0;
  1176. border-bottom: 6px solid #EE7800;
  1177. display: inline-block;
  1178. }
  1179. .sec-11__card {
  1180. cursor: pointer;
  1181. }
  1182. .sec-11__card h5 {
  1183. font-size: 1rem;
  1184. margin-bottom: .3rem;
  1185. }
  1186. .sec-11__card p {
  1187. font-size: .95rem;
  1188. font-weight: 300;
  1189. color: gray;
  1190. }
  1191. .sec-11__card-img {
  1192. width: 100%;
  1193. height: 25vh;
  1194. background-position: center center;
  1195. background-size: cover;
  1196. background-repeat: no-repeat;
  1197. position: relative;
  1198. }
  1199. @media (max-width: 1100px) {
  1200. .sec-11__card-img {
  1201. height: 20vh;
  1202. }
  1203. }
  1204. .sec-11__card__play {
  1205. position: absolute;
  1206. right: 1rem;
  1207. bottom: 1rem;
  1208. width: 2.5rem;
  1209. height: 2.5rem;
  1210. }
  1211. .footer {
  1212. background: #e9e9e9;
  1213. padding: 2.5rem 0;
  1214. }
  1215. @media (max-width: 1100px) {
  1216. .footer .container {
  1217. width: 98%;
  1218. max-width: 950px;
  1219. }
  1220. }
  1221. .footer__block {
  1222. padding: 1rem 3rem;
  1223. border-left: 1px solid #8f8f8f;
  1224. }
  1225. @media (max-width: 1100px) {
  1226. .footer__block {
  1227. padding: 1rem 1rem;
  1228. }
  1229. }
  1230. .footer__block-title {
  1231. font-size: 1.3rem;
  1232. margin-bottom: 1.5rem;
  1233. }
  1234. .footer__block-list {
  1235. padding-left: 0;
  1236. }
  1237. .footer__block:nth-of-type(1) {
  1238. border-left: none;
  1239. }
  1240. .footer__block:nth-of-type(2) {
  1241. padding: 1rem 4rem;
  1242. }
  1243. @media (max-width: 1100px) {
  1244. .footer__block:nth-of-type(2) {
  1245. padding: 1rem 1rem;
  1246. }
  1247. }
  1248. .footer__block-socials {
  1249. padding-left: 0;
  1250. display: -webkit-box;
  1251. display: -ms-flexbox;
  1252. display: flex;
  1253. -webkit-box-align: center;
  1254. -ms-flex-align: center;
  1255. align-items: center;
  1256. -webkit-box-pack: justify;
  1257. -ms-flex-pack: justify;
  1258. justify-content: space-between;
  1259. }
  1260. @media (max-width: 1100px) {
  1261. .footer__block-socials img {
  1262. width: 30px;
  1263. }
  1264. }
  1265. .footer__block .follows-fp {
  1266. text-decoration: none;
  1267. color: #696969;
  1268. font-size: .9rem;
  1269. display: -webkit-box;
  1270. display: -ms-flexbox;
  1271. display: flex;
  1272. -webkit-box-align: center;
  1273. -ms-flex-align: center;
  1274. align-items: center;
  1275. }
  1276. @media (max-width: 1100px) {
  1277. .footer__block .follows-fp {
  1278. font-size: .8rem;
  1279. }
  1280. }
  1281. .footer__block-phone p {
  1282. display: inline;
  1283. }
  1284. @media (max-width: 900px) {
  1285. .footer__block-phone p {
  1286. display: block;
  1287. }
  1288. }
  1289. .footer__block-phone p, .footer__block-phone span {
  1290. font-size: .9rem;
  1291. }
  1292. .footer__block-phone .text-phone {
  1293. color: #EE7800;
  1294. text-decoration: none;
  1295. }
  1296. .footer__block-links {
  1297. display: -webkit-box;
  1298. display: -ms-flexbox;
  1299. display: flex;
  1300. -webkit-box-align: center;
  1301. -ms-flex-align: center;
  1302. align-items: center;
  1303. margin-top: 1rem;
  1304. -webkit-box-pack: center;
  1305. -ms-flex-pack: center;
  1306. justify-content: center;
  1307. }
  1308. .footer__block-links-grp {
  1309. padding: .3rem;
  1310. border-left: 1px solid #b9b9b9;
  1311. }
  1312. .footer__block-links-grp:nth-of-type(1) {
  1313. border-left: none;
  1314. }
  1315. .footer__block-links-grp a {
  1316. display: block;
  1317. text-decoration: none;
  1318. color: #696969;
  1319. font-size: .9rem;
  1320. margin-bottom: .4rem;
  1321. }
  1322. @media (max-width: 1100px) {
  1323. .footer__block-links-grp a {
  1324. font-size: .8rem;
  1325. }
  1326. }
  1327. .footer__block-subscribe {
  1328. width: 100%;
  1329. margin-top: 1rem;
  1330. }
  1331. .footer__block-subscribe .subscribeBar {
  1332. font-size: .8rem;
  1333. width: 70%;
  1334. margin-left: 7%;
  1335. }
  1336. @media (max-width: 900px) {
  1337. .footer__block-subscribe .subscribeBar {
  1338. width: 75%;
  1339. margin-left: 3%;
  1340. font-size: .7rem;
  1341. }
  1342. }
  1343. .footer__block-subscribe .subscribeBtn {
  1344. width: 20%;
  1345. padding: .4rem .6rem;
  1346. padding-bottom: 9px;
  1347. border: none;
  1348. outline: none;
  1349. background-color: #292929;
  1350. color: white;
  1351. border-radius: 0 3px 3px 0;
  1352. margin-left: -.4rem;
  1353. }
  1354. @media (max-width: 900px) {
  1355. .footer__block-subscribe .subscribeBtn {
  1356. margin-left: -.3rem;
  1357. font-size: .8rem;
  1358. padding-top: 9px;
  1359. padding-bottom: 10px;
  1360. }
  1361. }
  1362. .footer__list-item {
  1363. display: -webkit-box;
  1364. display: -ms-flexbox;
  1365. display: flex;
  1366. -webkit-box-align: center;
  1367. -ms-flex-align: center;
  1368. align-items: center;
  1369. text-decoration: none;
  1370. margin-bottom: .5rem;
  1371. }
  1372. .footer__list-item p {
  1373. color: #696969;
  1374. font-size: .9rem;
  1375. font-weight: 300;
  1376. }
  1377. .footer__list-icon {
  1378. width: 30px;
  1379. display: -webkit-box;
  1380. display: -ms-flexbox;
  1381. display: flex;
  1382. -webkit-box-pack: center;
  1383. -ms-flex-pack: center;
  1384. justify-content: center;
  1385. margin-right: .3rem;
  1386. }
  1387. .footer .bottom-box {
  1388. padding: 1rem 0;
  1389. border-top: 1px solid #b9b9b9;
  1390. margin-top: 2.5rem;
  1391. }
  1392. #videoModal .modal-content {
  1393. background-color: transparent;
  1394. border: none;
  1395. width: -webkit-fit-content;
  1396. width: -moz-fit-content;
  1397. width: fit-content;
  1398. }
  1399. #videoModal .modal-dialog {
  1400. max-width: 700px;
  1401. }
  1402. .morelink {
  1403. text-decoration: none;
  1404. color: #EE7800;
  1405. font-weight: 700;
  1406. }
  1407. .morelink:hover {
  1408. color: #EE7800;
  1409. }
  1410. .fixed-btn {
  1411. position: fixed;
  1412. right: 15px;
  1413. bottom: 2rem;
  1414. }
  1415. .fixed-btn .btn-gotop, .fixed-btn .btn-login, .fixed-btn .btn-favor,
  1416. .fixed-btn .btn-match {
  1417. cursor: pointer;
  1418. padding: 1.2rem .8rem;
  1419. background-color: rgba(255, 255, 255, 0.897);
  1420. display: -webkit-box;
  1421. display: -ms-flexbox;
  1422. display: flex;
  1423. -webkit-box-align: center;
  1424. -ms-flex-align: center;
  1425. align-items: center;
  1426. -webkit-box-pack: center;
  1427. -ms-flex-pack: center;
  1428. justify-content: center;
  1429. 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);
  1430. -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);
  1431. -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);
  1432. }
  1433. .fixed-btn .btn-match {
  1434. height: 57px;
  1435. padding: .2rem;
  1436. background-color: white;
  1437. font-size: 1em;
  1438. word-spacing: 5px;
  1439. width: 57px;
  1440. text-align: center;
  1441. position: relative;
  1442. }
  1443. .fixed-btn .btn-match::after {
  1444. content: "快速媒合設計師";
  1445. background-color: #EE7800;
  1446. color: white;
  1447. width: 180%;
  1448. right: -5px;
  1449. top: -15px;
  1450. position: absolute;
  1451. font-size: .8rem;
  1452. padding: 1.5px 3px;
  1453. opacity: 0;
  1454. -webkit-transition: all .4s;
  1455. transition: all .4s;
  1456. }
  1457. .fixed-btn .btn-match__back {
  1458. width: 35px;
  1459. height: 35px;
  1460. background-image: url("../images/match_icon_uncover.png");
  1461. background-position: center;
  1462. background-size: contain;
  1463. -webkit-transition: all .4s;
  1464. transition: all .4s;
  1465. }
  1466. .fixed-btn .btn-match:hover .btn-match__back {
  1467. background-image: url("../images/match_icon.png");
  1468. }
  1469. .fixed-btn .btn-match:hover::after {
  1470. opacity: 1;
  1471. top: -25px;
  1472. }
  1473. #matchModal .modal-content {
  1474. position: relative;
  1475. }
  1476. #matchModal .modal-content .btn-close {
  1477. position: absolute;
  1478. right: 1rem;
  1479. top: 1rem;
  1480. }
  1481. .match__next {
  1482. outline: none;
  1483. border: none;
  1484. background-color: #EE7800;
  1485. border-radius: .3rem;
  1486. padding-top: .5rem;
  1487. padding-bottom: .5rem;
  1488. color: white;
  1489. }
  1490. .match__next2 {
  1491. outline: none;
  1492. border: none;
  1493. background-color: #EE7800;
  1494. border-radius: .3rem;
  1495. padding-top: .5rem;
  1496. padding-bottom: .5rem;
  1497. color: white;
  1498. }
  1499. .sec-match {
  1500. position: relative;
  1501. }
  1502. .sec-match p {
  1503. color: #707070;
  1504. }
  1505. .sec-match__imgfr {
  1506. width: 100%;
  1507. height: 14rem;
  1508. background-position: center;
  1509. background-size: cover;
  1510. cursor: pointer;
  1511. -webkit-transition: all .4s;
  1512. transition: all .4s;
  1513. }
  1514. .sec-match__imgfr:hover {
  1515. -webkit-transform: scale(1.1);
  1516. transform: scale(1.1);
  1517. }
  1518. .sec-match__designer {
  1519. width: 80%;
  1520. height: 12rem;
  1521. background-position: center;
  1522. background-size: cover;
  1523. border-radius: 50%;
  1524. }
  1525. .sec-match .btn-match {
  1526. outline: none;
  1527. border: none;
  1528. color: #EE7800;
  1529. border: 1px solid #EE7800;
  1530. background-color: transparent;
  1531. border-radius: 10px;
  1532. padding: .3rem .6rem;
  1533. -webkit-transition: all .3s;
  1534. transition: all .3s;
  1535. }
  1536. .sec-match .btn-match:hover {
  1537. background-color: #EE7800;
  1538. color: white;
  1539. }
  1540. .sec-match .container__row {
  1541. border-bottom: 1px solid #B2B2B2;
  1542. }
  1543. .sec-match .container__row:last-of-type {
  1544. border-bottom: none;
  1545. }
  1546. .sec-match .close {
  1547. position: absolute;
  1548. right: 3%;
  1549. top: 0%;
  1550. cursor: pointer;
  1551. }
  1552. .sec-login-list {
  1553. background-color: #F3F3F3;
  1554. padding: 1rem;
  1555. padding-bottom: 1.4rem;
  1556. }
  1557. .sec-login-list hr {
  1558. background-color: #aaaaaa;
  1559. }
  1560. .sec-login-btns {
  1561. padding: 1rem;
  1562. background-color: white;
  1563. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1564. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1565. }
  1566. #loginModal .btn-close {
  1567. position: absolute;
  1568. right: -2rem;
  1569. top: -2rem;
  1570. }
  1571. #favorModal .btn-close {
  1572. position: absolute;
  1573. right: -2rem;
  1574. top: -2rem;
  1575. }
  1576. #favorModal .sec-favor-title {
  1577. color: #4C4C4C;
  1578. font-size: 18px;
  1579. }
  1580. #favorModal .sec-favor-list {
  1581. background-color: #F3F3F3;
  1582. padding: 1rem;
  1583. padding-bottom: 1.4rem;
  1584. }
  1585. #favorModal .sec-favor-list hr {
  1586. background-color: #aaaaaa;
  1587. }
  1588. #favorModal .sec-favor-form .form-user, #favorModal .sec-favor-checklist .form-user {
  1589. width: 50%;
  1590. color: #707070;
  1591. font-size: 16px;
  1592. }
  1593. #favorModal .sec-favor-form .form-progressbar, #favorModal .sec-favor-checklist .form-progressbar {
  1594. width: 50%;
  1595. display: -webkit-box;
  1596. display: -ms-flexbox;
  1597. display: flex;
  1598. -webkit-box-pack: justify;
  1599. -ms-flex-pack: justify;
  1600. justify-content: space-between;
  1601. }
  1602. #favorModal .sec-favor-form .form-progressbar li, #favorModal .sec-favor-checklist .form-progressbar li {
  1603. width: 1.6rem;
  1604. height: 1.6rem;
  1605. border-radius: 50%;
  1606. border: 2px solid #D3D3D3;
  1607. line-height: 1.4rem;
  1608. display: -webkit-box;
  1609. display: -ms-flexbox;
  1610. display: flex;
  1611. -webkit-box-pack: center;
  1612. -ms-flex-pack: center;
  1613. justify-content: center;
  1614. position: relative;
  1615. color: #D3D3D3;
  1616. background-color: #F3F3F3;
  1617. z-index: 2;
  1618. }
  1619. #favorModal .sec-favor-form .form-progressbar li.active, #favorModal .sec-favor-checklist .form-progressbar li.active {
  1620. border: 2px solid #EE7800;
  1621. color: #EE7800;
  1622. }
  1623. #favorModal .sec-favor-form .form-progressbar li.active::before, #favorModal .sec-favor-checklist .form-progressbar li.active::before {
  1624. border-top: 2px solid #EE7800;
  1625. }
  1626. #favorModal .sec-favor-form .form-progressbar li::before, #favorModal .sec-favor-checklist .form-progressbar li::before {
  1627. position: absolute;
  1628. content: " ";
  1629. width: 4rem;
  1630. height: 0;
  1631. border-top: 2px dashed #D3D3D3;
  1632. right: 100%;
  1633. top: 50%;
  1634. z-index: 1;
  1635. }
  1636. #favorModal .sec-favor-form .form-progressbar li:nth-of-type(1)::before, #favorModal .sec-favor-checklist .form-progressbar li:nth-of-type(1)::before {
  1637. display: none;
  1638. }
  1639. #favorModal .sec-favor-form .form-step, #favorModal .sec-favor-checklist .form-step {
  1640. background-color: white;
  1641. border-radius: 3px;
  1642. padding: 1.5rem 1rem;
  1643. padding-bottom: 1.5rem;
  1644. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1645. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1646. overflow: visible;
  1647. }
  1648. #favorModal .sec-favor-form .form-step .next, #favorModal .sec-favor-checklist .form-step .next {
  1649. padding: .6rem 5rem;
  1650. background-color: #EE7800;
  1651. border-radius: 3px;
  1652. color: white;
  1653. border: none;
  1654. outline: none;
  1655. }
  1656. #favorModal .sec-favor-form .form-step1, #favorModal .sec-favor-checklist .form-step1 {
  1657. display: block;
  1658. }
  1659. #favorModal .sec-favor-form .form-step2, #favorModal .sec-favor-checklist .form-step2 {
  1660. display: none;
  1661. }
  1662. #favorModal .sec-favor-form .form-step3, #favorModal .sec-favor-checklist .form-step3 {
  1663. display: none;
  1664. position: relative;
  1665. padding-bottom: 1.5rem;
  1666. }
  1667. #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"] {
  1668. display: none;
  1669. }
  1670. #favorModal .sec-favor-form .imgfr, #favorModal .sec-favor-checklist .imgfr {
  1671. background-position: center center;
  1672. background-size: cover;
  1673. background-repeat: no-repeat;
  1674. width: 100%;
  1675. height: 4.5rem;
  1676. border-radius: 8px;
  1677. border: 2px solid transparent;
  1678. }
  1679. #favorModal .sec-favor-form h4, #favorModal .sec-favor-checklist h4 {
  1680. color: #AAAAAA;
  1681. font-size: 15px;
  1682. font-weight: 400;
  1683. }
  1684. #favorModal .sec-favor-form input[type="checkbox"]:checked + .fs-label-info .imgfr, #favorModal .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1685. border: 2px solid #EE7800;
  1686. }
  1687. #favorModal .sec-favor-form input[type="checkbox"]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-chbox {
  1688. border: 1px solid #EE7800;
  1689. color: #EE7800;
  1690. }
  1691. #favorModal .sec-favor-form input[type="radio"]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type="radio"]:checked + .fs-label-chbox {
  1692. border: 1px solid #EE7800;
  1693. color: #EE7800;
  1694. }
  1695. #favorModal .sec-favor-form .step3-block, #favorModal .sec-favor-checklist .step3-block {
  1696. margin-bottom: 1rem;
  1697. }
  1698. #favorModal .sec-favor-form .step3-block:nth-of-type(3), #favorModal .sec-favor-checklist .step3-block:nth-of-type(3) {
  1699. margin-bottom: 0;
  1700. }
  1701. #favorModal .sec-favor-form .step3-block-title, #favorModal .sec-favor-checklist .step3-block-title {
  1702. color: #AAAAAA;
  1703. display: block;
  1704. margin-bottom: .5rem;
  1705. font-size: 1rem;
  1706. }
  1707. #favorModal .sec-favor-form .step3-block .radio, #favorModal .sec-favor-checklist .step3-block .radio {
  1708. display: inline-block;
  1709. padding: .25rem .7rem;
  1710. margin-right: .4rem;
  1711. border: 1px solid #707070;
  1712. border-radius: 2rem;
  1713. color: #797979;
  1714. margin-bottom: .5rem;
  1715. }
  1716. #favorModal .sec-favor-form .skip, #favorModal .sec-favor-checklist .skip {
  1717. padding: .3rem 1rem;
  1718. color: #AAAAAA;
  1719. border: none;
  1720. outline: none;
  1721. background-color: transparent;
  1722. }
  1723. #favorModal .sec-favor-form .btngrp, #favorModal .sec-favor-checklist .btngrp {
  1724. /* position: absolute;
  1725. left: 50%;
  1726. transform: translateX(-50%);
  1727. bottom: -6rem; */
  1728. display: -webkit-box;
  1729. display: -ms-flexbox;
  1730. display: flex;
  1731. -webkit-box-orient: vertical;
  1732. -webkit-box-direction: normal;
  1733. -ms-flex-direction: column;
  1734. flex-direction: column;
  1735. -webkit-box-align: center;
  1736. -ms-flex-align: center;
  1737. align-items: center;
  1738. }
  1739. #favorModal .sec-favor-form .btngrp .next, #favorModal .sec-favor-checklist .btngrp .next {
  1740. -webkit-transform: translateY(0rem);
  1741. transform: translateY(0rem);
  1742. }
  1743. #favorModal .sec-favor-checklist .form-user {
  1744. margin: 0 auto;
  1745. text-align: center;
  1746. margin-bottom: 1rem;
  1747. }
  1748. #favorModal .sec-favor-btns {
  1749. padding: 1rem;
  1750. background-color: white;
  1751. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1752. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1753. }
  1754. .test {
  1755. position: relative;
  1756. }
  1757. .test .cover {
  1758. width: 100%;
  1759. position: absolute;
  1760. left: 0;
  1761. bottom: 0;
  1762. display: block;
  1763. background-color: white;
  1764. height: 100%;
  1765. }
  1766. .test .cover.slidein {
  1767. -webkit-animation: slidein 2s forwards;
  1768. animation: slidein 2s forwards;
  1769. }
  1770. .title_back {
  1771. display: block;
  1772. position: relative;
  1773. width: 10em;
  1774. height: 1.75em;
  1775. overflow: hidden;
  1776. }
  1777. .title_back .title {
  1778. position: absolute;
  1779. left: 0;
  1780. bottom: -1.75em;
  1781. display: block;
  1782. -webkit-transition: all 1s;
  1783. transition: all 1s;
  1784. }
  1785. .test_content {
  1786. opacity: 0;
  1787. }
  1788. .test_content.fadein {
  1789. -webkit-animation: fadein 2s forwards;
  1790. animation: fadein 2s forwards;
  1791. }
  1792. @-webkit-keyframes slidein {
  1793. 100% {
  1794. height: 0px;
  1795. }
  1796. }
  1797. @keyframes slidein {
  1798. 100% {
  1799. height: 0px;
  1800. }
  1801. }
  1802. @-webkit-keyframes fadein {
  1803. 100% {
  1804. opacity: 1;
  1805. }
  1806. }
  1807. @keyframes fadein {
  1808. 100% {
  1809. opacity: 1;
  1810. }
  1811. }
  1812. .last-step {
  1813. cursor: pointer;
  1814. }
  1815. .btn-call {
  1816. color: #EA068C;
  1817. padding: .6rem 1.5rem;
  1818. border: 1px solid #EA068C;
  1819. border-radius: 2rem;
  1820. background-color: transparent;
  1821. text-decoration: none;
  1822. }
  1823. .btn-call:hover {
  1824. color: #EA068C;
  1825. }
  1826. .small {
  1827. font-size: .7rem;
  1828. }
  1829. .container_match label, .container_match2 label {
  1830. margin-top: .4rem;
  1831. }
  1832. /*# sourceMappingURL=style.css.map */