style.css 37 KB

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