style.css 33 KB

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