main.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00__slider {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .sec-00 .slide-item {
  9. height: 110px;
  10. background-position: center center;
  11. background-size: cover;
  12. background-repeat: no-repeat;
  13. }
  14. .navbar {
  15. 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);
  16. -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);
  17. -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);
  18. padding-top: 5px;
  19. padding-bottom: 5px;
  20. background-color: white !important;
  21. z-index: 99;
  22. }
  23. .navbar-toggler {
  24. padding-left: 0;
  25. border-color: transparent !important;
  26. }
  27. .navbar-toggler:focus {
  28. -webkit-box-shadow: none;
  29. box-shadow: none;
  30. }
  31. .navbar-toggler-icon {
  32. display: -webkit-box;
  33. display: -ms-flexbox;
  34. display: flex;
  35. justify-items: center;
  36. }
  37. .navbar-toggler-icon i {
  38. font-size: 25px;
  39. line-height: 30px;
  40. display: inline-block;
  41. }
  42. .navbar-search {
  43. padding-right: 2px;
  44. }
  45. .navbar-brand {
  46. font-size: 1.5rem;
  47. }
  48. .navbar-main.sticky {
  49. position: fixed;
  50. top: 0;
  51. width: 100%;
  52. }
  53. .navbar-main.sticky + .sec-01 {
  54. padding-top: 58px;
  55. }
  56. .sec-01 {
  57. padding: 0 1.5rem;
  58. margin-top: 1.5rem;
  59. }
  60. @media screen and (max-width: 385px) {
  61. .sec-01 {
  62. padding: 0 1rem;
  63. }
  64. }
  65. .sec-01 .col {
  66. text-align: center;
  67. vertical-align: bottom;
  68. display: -webkit-box;
  69. display: -ms-flexbox;
  70. display: flex;
  71. -webkit-box-align: end;
  72. -ms-flex-align: end;
  73. align-items: flex-end;
  74. -webkit-box-pack: center;
  75. -ms-flex-pack: center;
  76. justify-content: center;
  77. }
  78. @media screen and (max-width: 385px) {
  79. .sec-01 .col {
  80. /* padding: 0 .3rem;
  81. &.special {
  82. padding-left: 0;
  83. } */
  84. }
  85. }
  86. .sec-01 .col img {
  87. margin: 0 auto;
  88. margin-bottom: 0;
  89. vertical-align: baseline;
  90. }
  91. .sec-01 .slick-dots {
  92. width: 16%;
  93. margin: 0 auto;
  94. margin-top: 1.5rem;
  95. height: 5px;
  96. background-color: #d6d6d6;
  97. border-radius: 2rem;
  98. display: -webkit-box;
  99. display: -ms-flexbox;
  100. display: flex;
  101. position: static;
  102. }
  103. .sec-01 .slick-dots li {
  104. margin: 0px;
  105. width: 50%;
  106. }
  107. .sec-01 .slick-dots li.slick-active button {
  108. background-color: #EE7800;
  109. }
  110. .sec-01 .slick-dots li button {
  111. padding: 0;
  112. width: 100%;
  113. height: 5px;
  114. border-radius: 2rem;
  115. }
  116. .sec-01 .slick-dots li button::before {
  117. opacity: 0;
  118. }
  119. .sec-01 .slick-dotted.slick-slider {
  120. margin-bottom: 0;
  121. }
  122. .sec-02 {
  123. margin: 1.5rem 0;
  124. margin-bottom: 2rem;
  125. }
  126. .sec-02__slider {
  127. width: 100%;
  128. height: 100%;
  129. }
  130. .sec-02__slider .slide-item {
  131. height: 32vh;
  132. background-position: center center;
  133. background-size: cover;
  134. background-repeat: no-repeat;
  135. }
  136. .sec-03 {
  137. margin-bottom: .8rem;
  138. }
  139. .sec-03__tabdiv {
  140. -webkit-box-sizing: content-box;
  141. box-sizing: content-box;
  142. border-bottom: 3px solid rgba(221, 221, 221, 0.863);
  143. padding-left: .9rem;
  144. padding-right: .9rem;
  145. -webkit-box-align: center;
  146. -ms-flex-align: center;
  147. align-items: center;
  148. -webkit-box-pack: justify;
  149. -ms-flex-pack: justify;
  150. justify-content: space-between;
  151. }
  152. .sec-03__tabdiv .more {
  153. padding-bottom: .4rem;
  154. }
  155. .sec-03__tabdiv .nav-item {
  156. position: relative;
  157. padding-right: 6px;
  158. padding-left: 6px;
  159. }
  160. .sec-03__tabdiv .nav-item::after {
  161. position: absolute;
  162. content: " ";
  163. width: 100%;
  164. height: 60%;
  165. left: 0;
  166. top: 5px;
  167. background-color: transparent;
  168. border-right: 1px solid #b3b3b3;
  169. z-index: -1;
  170. }
  171. .sec-03__tabdiv .nav-item:nth-of-type(3)::after {
  172. display: none;
  173. }
  174. .sec-03__tabdiv .nav-item-link {
  175. color: black;
  176. font-weight: 400;
  177. font-size: 1.2rem;
  178. padding-bottom: .35rem;
  179. border: none;
  180. position: relative;
  181. }
  182. @media screen and (max-width: 385px) {
  183. .sec-03__tabdiv .nav-item-link {
  184. font-size: 1.1rem;
  185. }
  186. }
  187. .sec-03__tabdiv .nav-item-link.active {
  188. color: #EE7800;
  189. }
  190. .sec-03__tabdiv .nav-item-link::before {
  191. position: absolute;
  192. content: " ";
  193. width: 101%;
  194. height: 100%;
  195. left: -2px;
  196. top: 3px;
  197. background-color: transparent;
  198. border-bottom: 3px solid #EE7800;
  199. opacity: 0;
  200. }
  201. .sec-03__tabdiv .nav-item-link.active::before {
  202. opacity: 1;
  203. }
  204. .sec-03 .tab-content {
  205. padding: .8rem 0;
  206. }
  207. .sec-03 .tab-pane {
  208. height: 100%;
  209. }
  210. .sec-03 .tabpar {
  211. min-width: 100%;
  212. height: 100%;
  213. overflow-x: auto;
  214. display: -webkit-box;
  215. display: -ms-flexbox;
  216. display: flex;
  217. padding: 0 12px;
  218. -ms-overflow-style: none;
  219. /* IE and Edge */
  220. scrollbar-width: none;
  221. }
  222. .sec-03 .tabpar::-webkit-scrollbar {
  223. display: none;
  224. }
  225. .sec-03 .tabpar__card {
  226. margin: 3px;
  227. display: inline-block;
  228. min-width: 340px;
  229. font-size: 14px;
  230. }
  231. .sec-03 .tabpar__card__imgfr {
  232. width: 100%;
  233. height: 28vh;
  234. overflow: hidden;
  235. position: relative;
  236. }
  237. .sec-03 .tabpar__card__img {
  238. width: 100%;
  239. height: 140%;
  240. -webkit-transform: translateY(-15%);
  241. transform: translateY(-15%);
  242. }
  243. .sec-03 .tabpar__card__play {
  244. position: absolute;
  245. right: 1.2rem;
  246. bottom: 1rem;
  247. width: 2.5rem;
  248. }
  249. .sec-04 {
  250. background-color: #F4F4F4;
  251. padding: 1.5rem 1rem;
  252. }
  253. .sec-04 .card {
  254. -webkit-box-shadow: 1px 2px 8px 1px #d6d6d6;
  255. box-shadow: 1px 2px 8px 1px #d6d6d6;
  256. text-decoration: none;
  257. }
  258. .sec-04 .card-title {
  259. font-size: 1.1rem;
  260. line-height: 1.6rem;
  261. color: #4C4C4C;
  262. font-weight: 500;
  263. }
  264. .sec-04 .card__imgfr {
  265. width: 100%;
  266. }
  267. .sec-04 .card__imgfr img {
  268. width: 100%;
  269. height: 100%;
  270. }
  271. .sec-05__video {
  272. width: 100%;
  273. height: 30vh;
  274. position: relative;
  275. }
  276. .sec-05__video__play {
  277. position: absolute;
  278. left: 50%;
  279. top: 50%;
  280. -webkit-transform: translate(-50%, -50%);
  281. transform: translate(-50%, -50%);
  282. width: 3.5rem;
  283. height: 3.5rem;
  284. }
  285. .sec-05__video__imgfr {
  286. width: 100%;
  287. height: 30vh;
  288. background-position: center center;
  289. background-size: cover;
  290. background-repeat: no-repeat;
  291. }
  292. .sec-05 p {
  293. font-size: 14px;
  294. text-align: center;
  295. }
  296. .sec-06 .carousel {
  297. height: 32vh;
  298. }
  299. .sec-06 .carousel-inner {
  300. height: 100%;
  301. overflow: hidden;
  302. }
  303. .sec-06 .carousel-item {
  304. height: 100%;
  305. width: 100%;
  306. background-size: cover;
  307. background-repeat: no-repeat;
  308. background-position: center;
  309. }
  310. .sec-06 .carousel-control-next-icon, .sec-06 .carousel-control-prev-icon {
  311. width: 2.5rem;
  312. height: 2.5rem;
  313. }
  314. .sec-07__slider {
  315. width: 100%;
  316. }
  317. .sec-07__imgfr {
  318. width: 100%;
  319. height: 28vh;
  320. overflow: hidden;
  321. }
  322. .sec-07__imgfr img {
  323. width: 100%;
  324. }
  325. .sec-07__cardtxt {
  326. font-size: 14px;
  327. padding-right: .6rem;
  328. }
  329. .sec-07 .slick-dots {
  330. width: 15%;
  331. margin: 0 auto;
  332. margin-top: 1.5rem;
  333. height: 5px;
  334. background-color: #d6d6d6;
  335. border-radius: 1rem;
  336. display: -webkit-box;
  337. display: -ms-flexbox;
  338. display: flex;
  339. position: static;
  340. }
  341. .sec-07 .slick-dots li {
  342. margin: 0px;
  343. width: 33.33%;
  344. }
  345. .sec-07 .slick-dots li.slick-active button {
  346. background-color: #EE7800;
  347. }
  348. .sec-07 .slick-dots li button {
  349. padding: 0;
  350. width: 100%;
  351. height: 5px;
  352. border-radius: 1rem;
  353. }
  354. .sec-07 .slick-dots li button::before {
  355. opacity: 0;
  356. }
  357. .sec-07 .slick-dotted.slick-slider {
  358. margin-bottom: 0;
  359. }
  360. .sec-08__slider {
  361. height: 100%;
  362. }
  363. .sec-08__slider .slide-item {
  364. height: 28vh;
  365. background-position: center center;
  366. background-size: contain;
  367. background-repeat: no-repeat;
  368. }
  369. .sec-09 {
  370. margin-bottom: 1rem;
  371. }
  372. .sec-09__cardgrp {
  373. min-width: 100%;
  374. height: 20vh;
  375. overflow-x: auto;
  376. overflow-y: hidden;
  377. display: -webkit-box;
  378. display: -ms-flexbox;
  379. display: flex;
  380. box-shadow: 0 4px 2px -2px #d8d8d8;
  381. -webkit-box-shadow: 0 4px 2px -2px #d8d8d8;
  382. -moz-box-shadow: 0 4px 2px -2px #d8d8d8;
  383. -ms-overflow-style: none;
  384. /* IE and Edge */
  385. scrollbar-width: none;
  386. }
  387. .sec-09__cardgrp::-webkit-scrollbar {
  388. display: none;
  389. }
  390. .sec-09__card {
  391. margin: 5px;
  392. display: inline-block;
  393. min-width: 35vw;
  394. }
  395. .sec-09__card__imgfr {
  396. width: 100%;
  397. }
  398. .sec-09__card__imgfr img {
  399. width: 100%;
  400. height: 100%;
  401. }
  402. .sec-09__card p {
  403. font-size: 12.5px;
  404. margin-top: .5rem;
  405. }
  406. .sec-10 {
  407. margin-bottom: 1.5rem;
  408. /* &__imgfr {
  409. width: 100%;
  410. height: 100%;
  411. img{
  412. width: 100%;
  413. }
  414. } */
  415. }
  416. .sec-10__slider {
  417. width: 100%;
  418. }
  419. .sec-10__slider .slide-item {
  420. height: 28vh;
  421. background-position: center center;
  422. background-size: cover;
  423. background-repeat: no-repeat;
  424. position: relative;
  425. }
  426. .sec-10__card__play {
  427. position: absolute;
  428. right: 1rem;
  429. bottom: 1rem;
  430. width: 2.5rem;
  431. height: 2.5rem;
  432. }
  433. .sec-10__cardtxt {
  434. font-size: 14px;
  435. }
  436. .sec-11__slider {
  437. width: 100%;
  438. }
  439. .sec-11__slider .slide-item {
  440. height: 28vh;
  441. background-position: center center;
  442. background-size: cover;
  443. background-repeat: no-repeat;
  444. position: relative;
  445. }
  446. .sec-11__imgfr {
  447. width: 100%;
  448. height: 100%;
  449. }
  450. .sec-11__imgfr img {
  451. width: 100%;
  452. }
  453. .sec-11__card__play {
  454. position: absolute;
  455. right: 1rem;
  456. bottom: 1rem;
  457. width: 2.5rem;
  458. height: 2.5rem;
  459. }
  460. .sec-11__cardtxt {
  461. font-size: 14px;
  462. }
  463. .morelink {
  464. text-decoration: none;
  465. color: #EE7800;
  466. }
  467. .morelink:hover {
  468. color: #EE7800;
  469. }
  470. .fixed_menu {
  471. height: 82px;
  472. position: fixed;
  473. z-index: 4;
  474. bottom: 0;
  475. left: 0;
  476. width: 100%;
  477. background-color: #fff;
  478. box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  479. -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  480. -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  481. }
  482. .sec-menu {
  483. display: none;
  484. z-index: 105;
  485. position: absolute;
  486. top: 0;
  487. left: 0;
  488. right: 0;
  489. font-size: 14px;
  490. }
  491. .sec-menu-block {
  492. padding-top: 61px;
  493. margin: 0;
  494. position: fixed;
  495. top: 0;
  496. left: 0;
  497. right: 0;
  498. height: 100%;
  499. overflow-y: scroll;
  500. max-width: 100%;
  501. background-color: white;
  502. }
  503. .sec-menu-list {
  504. background: white;
  505. margin-bottom: 0;
  506. }
  507. .sec-menu-list .navbar-nav {
  508. padding: 0 2rem;
  509. width: 100%;
  510. }
  511. .sec-menu-list .navbar-nav .dropdown-menu {
  512. border: none;
  513. padding: 0;
  514. height: 0;
  515. opacity: 0;
  516. -webkit-transition: all 1s;
  517. transition: all 1s;
  518. }
  519. .sec-menu-list .navbar-nav .dropdown-menu.show {
  520. height: -webkit-fit-content;
  521. height: -moz-fit-content;
  522. height: fit-content;
  523. opacity: 1;
  524. }
  525. .sec-menu-list .navbar-nav .dropdown-menu .dropdown-item {
  526. padding-left: 3rem;
  527. }
  528. .sec-menu-list .navbar-nav .dropdown-menu .dropdown-item:active, .sec-menu-list .navbar-nav .dropdown-menu .dropdown-item.active, .sec-menu-list .navbar-nav .dropdown-menu .dropdown-item:focus {
  529. background-color: white;
  530. }
  531. .sec-menu-list .navbar-nav .dropdown-menu .dropdown-item:hover {
  532. background-color: white;
  533. }
  534. .sec-menu-list .navbar-nav .dropdown-menu .sub-menu .dropdown-item {
  535. padding-left: 6rem;
  536. }
  537. .sec-menu-list .nav-item {
  538. font-size: 17px;
  539. display: block;
  540. width: 100%;
  541. }
  542. .sec-menu-list .nav-link {
  543. padding-top: 11px;
  544. padding-bottom: 8px;
  545. color: #707070;
  546. position: relative;
  547. }
  548. .sec-menu-list .nav-link .link_div {
  549. width: 25px;
  550. }
  551. .sec-menu-list .nav-link a {
  552. color: #707070;
  553. text-decoration: none;
  554. }
  555. .sec-menu-list .nav-link.show i {
  556. -webkit-transform: rotate(-180deg);
  557. transform: rotate(-180deg);
  558. }
  559. .sec-menu-list .nav-link .expand {
  560. position: absolute;
  561. right: 10px;
  562. }
  563. .sec-menu-list .nav-link .expand i {
  564. font-size: 11px;
  565. color: #D3D3D3;
  566. -webkit-transition: all .5s;
  567. transition: all .5s;
  568. }
  569. .sec-menu-list .nav-link.text-main {
  570. color: #EE7800;
  571. }
  572. .sec-menu-list .sub-link .expand {
  573. position: absolute;
  574. right: 20px;
  575. top: 8px;
  576. width: 1.5rem;
  577. text-align: center;
  578. }
  579. .sec-menu-list .sub-menu {
  580. display: none;
  581. }
  582. .sec-menu-list .sub-menu.show {
  583. display: block;
  584. }
  585. .sec-menu-list hr {
  586. margin: 3px 0;
  587. background-color: #bbbbbb;
  588. }
  589. .sec-menu-follows {
  590. padding: 2rem 2.5rem;
  591. background-color: #e6e6e6ef;
  592. margin-top: -9px;
  593. }
  594. .sec-menu-follows-title {
  595. color: #797979;
  596. font-size: 14px;
  597. }
  598. .sec-menu-links {
  599. margin-bottom: 2.5rem;
  600. }
  601. .sec-menu-links a {
  602. color: #797979;
  603. text-decoration: none;
  604. display: inline-block;
  605. padding: 1px 0;
  606. border-bottom: 1px solid #acacac;
  607. margin: 0 .6rem;
  608. -ms-flex-wrap: nowrap;
  609. flex-wrap: nowrap;
  610. }
  611. @media screen and (max-width: 385px) {
  612. .sec-menu-links a {
  613. margin: 0 .4rem;
  614. }
  615. }
  616. .sec-menu .follows-fp {
  617. color: #797979;
  618. text-decoration: none;
  619. font-weight: 400;
  620. display: block;
  621. padding-left: .5rem;
  622. }
  623. .sec-menu .follows-fp:nth-of-type(1) {
  624. margin-bottom: .6rem;
  625. }
  626. .sec-menu .copyright {
  627. color: #797979;
  628. font-size: 13px;
  629. }
  630. .sec-search {
  631. display: none;
  632. z-index: 107;
  633. position: absolute;
  634. top: 0;
  635. left: 0;
  636. right: 0;
  637. font-size: 14px;
  638. }
  639. .sec-search-block {
  640. padding-top: 61px;
  641. margin: 0;
  642. position: fixed;
  643. top: 0;
  644. left: 0;
  645. right: 0;
  646. width: 100;
  647. height: 100%;
  648. overflow-y: scroll;
  649. background-color: rgba(0, 0, 0, 0.774);
  650. }
  651. .sec-search-list {
  652. background-color: #F3F3F3;
  653. padding: 1rem;
  654. padding-bottom: 1.4rem;
  655. }
  656. .sec-search-list hr {
  657. background-color: #aaaaaa;
  658. }
  659. .sec-search-form {
  660. width: 100%;
  661. }
  662. .sec-search .searchBar {
  663. font-size: 17px;
  664. padding: .5rem .3rem;
  665. display: inline-block;
  666. width: 88%;
  667. outline: none;
  668. border: 2px solid #EE7800;
  669. border-radius: 5px;
  670. }
  671. .sec-search .searchBtn {
  672. outline: none;
  673. border: none;
  674. background-color: transparent;
  675. display: inline-block;
  676. width: 10%;
  677. }
  678. .sec-search-hots {
  679. padding: 1rem;
  680. background-color: white;
  681. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  682. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  683. }
  684. .sec-search-hots__title {
  685. color: #AAAAAA;
  686. font-size: 18px;
  687. font-weight: 400;
  688. padding-top: .5rem;
  689. }
  690. .sec-search-hots__link {
  691. display: inline-block;
  692. text-decoration: none;
  693. color: #797979;
  694. border: 1px solid #797979;
  695. border-radius: 3rem;
  696. padding: .3rem .5rem;
  697. margin-right: .8rem;
  698. margin-bottom: .8rem;
  699. }
  700. .sec-search-hots__link:hover {
  701. color: #797979;
  702. }
  703. .sec-login {
  704. display: none;
  705. z-index: 109;
  706. position: absolute;
  707. top: 0;
  708. left: 0;
  709. right: 0;
  710. font-size: 14px;
  711. }
  712. .sec-login-block {
  713. padding-top: 61px;
  714. margin: 0;
  715. position: fixed;
  716. top: 0;
  717. left: 0;
  718. right: 0;
  719. width: 100;
  720. height: 100%;
  721. overflow-y: hidden;
  722. background-color: #F3F3F3;
  723. }
  724. .sec-login-list {
  725. background-color: #F3F3F3;
  726. padding: 1rem;
  727. padding-bottom: 1.4rem;
  728. }
  729. .sec-login-list hr {
  730. background-color: #aaaaaa;
  731. }
  732. .sec-login-btns {
  733. padding: 1rem;
  734. background-color: white;
  735. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  736. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  737. }
  738. .sec-favor {
  739. display: block;
  740. z-index: 111;
  741. position: absolute;
  742. top: 0;
  743. left: 0;
  744. right: 0;
  745. font-size: 14px;
  746. }
  747. .sec-favor-title {
  748. color: #4C4C4C;
  749. font-size: 18px;
  750. }
  751. .sec-favor-block {
  752. padding-top: 61px;
  753. margin: 0;
  754. position: fixed;
  755. top: 0;
  756. left: 0;
  757. right: 0;
  758. width: 100;
  759. height: 100%;
  760. overflow-y: auto;
  761. background-color: #F3F3F3;
  762. }
  763. .sec-favor-list {
  764. background-color: #F3F3F3;
  765. padding: 1rem;
  766. padding-bottom: 1.4rem;
  767. }
  768. .sec-favor-list hr {
  769. background-color: #aaaaaa;
  770. }
  771. .sec-favor-form .form-user, .sec-favor-checklist .form-user {
  772. width: 50%;
  773. color: #707070;
  774. font-size: 16px;
  775. }
  776. .sec-favor-form .form-progressbar, .sec-favor-checklist .form-progressbar {
  777. width: 50%;
  778. display: -webkit-box;
  779. display: -ms-flexbox;
  780. display: flex;
  781. -webkit-box-pack: justify;
  782. -ms-flex-pack: justify;
  783. justify-content: space-between;
  784. }
  785. .sec-favor-form .form-progressbar li, .sec-favor-checklist .form-progressbar li {
  786. width: 1.6rem;
  787. height: 1.6rem;
  788. border-radius: 50%;
  789. border: 2px solid #D3D3D3;
  790. line-height: 1.4rem;
  791. display: -webkit-box;
  792. display: -ms-flexbox;
  793. display: flex;
  794. -webkit-box-pack: center;
  795. -ms-flex-pack: center;
  796. justify-content: center;
  797. position: relative;
  798. color: #D3D3D3;
  799. background-color: #F3F3F3;
  800. z-index: 2;
  801. }
  802. .sec-favor-form .form-progressbar li.active, .sec-favor-checklist .form-progressbar li.active {
  803. border: 2px solid #EE7800;
  804. color: #EE7800;
  805. }
  806. .sec-favor-form .form-progressbar li.active::before, .sec-favor-checklist .form-progressbar li.active::before {
  807. border-top: 2px solid #EE7800;
  808. }
  809. .sec-favor-form .form-progressbar li::before, .sec-favor-checklist .form-progressbar li::before {
  810. position: absolute;
  811. content: " ";
  812. width: 4rem;
  813. height: 0;
  814. border-top: 2px dashed #D3D3D3;
  815. right: 100%;
  816. top: 50%;
  817. z-index: 1;
  818. }
  819. .sec-favor-form .form-progressbar li:nth-of-type(1)::before, .sec-favor-checklist .form-progressbar li:nth-of-type(1)::before {
  820. display: none;
  821. }
  822. .sec-favor-form .form-step, .sec-favor-checklist .form-step {
  823. background-color: white;
  824. border-radius: 3px;
  825. padding: 1.5rem 1rem;
  826. padding-bottom: 1.5rem;
  827. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  828. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  829. overflow: visible;
  830. }
  831. .sec-favor-form .form-step .next, .sec-favor-checklist .form-step .next {
  832. padding: .6rem 5rem;
  833. background-color: #EE7800;
  834. border-radius: 3px;
  835. color: white;
  836. border: none;
  837. outline: none;
  838. }
  839. .sec-favor-form .form-step1, .sec-favor-checklist .form-step1 {
  840. display: block;
  841. }
  842. .sec-favor-form .form-step2, .sec-favor-checklist .form-step2 {
  843. display: none;
  844. }
  845. .sec-favor-form .form-step3, .sec-favor-checklist .form-step3 {
  846. display: none;
  847. position: relative;
  848. padding-bottom: 1.5rem;
  849. }
  850. .sec-favor-form input[type="checkbox"], .sec-favor-form input[type="radio"], .sec-favor-checklist input[type="checkbox"], .sec-favor-checklist input[type="radio"] {
  851. display: none;
  852. }
  853. .sec-favor-form .imgfr, .sec-favor-checklist .imgfr {
  854. background-image: url("../images/2_2.webp");
  855. background-position: center center;
  856. background-size: cover;
  857. background-repeat: no-repeat;
  858. width: 100%;
  859. height: 4.5rem;
  860. border-radius: 8px;
  861. border: 2px solid transparent;
  862. }
  863. .sec-favor-form h4, .sec-favor-checklist h4 {
  864. color: #AAAAAA;
  865. font-size: 15px;
  866. font-weight: 400;
  867. }
  868. .sec-favor-form input[type="checkbox"]:checked + .fs-label-info .imgfr, .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-info .imgfr {
  869. border: 2px solid #EE7800;
  870. }
  871. .sec-favor-form input[type="checkbox"]:checked + .fs-label-chbox, .sec-favor-checklist input[type="checkbox"]:checked + .fs-label-chbox {
  872. border: 1px solid #EE7800;
  873. color: #EE7800;
  874. }
  875. .sec-favor-form input[type="radio"]:checked + .fs-label-chbox, .sec-favor-checklist input[type="radio"]:checked + .fs-label-chbox {
  876. border: 1px solid #EE7800;
  877. color: #EE7800;
  878. }
  879. .sec-favor-form .step3-block, .sec-favor-checklist .step3-block {
  880. margin-bottom: 1rem;
  881. }
  882. .sec-favor-form .step3-block:nth-of-type(3), .sec-favor-checklist .step3-block:nth-of-type(3) {
  883. margin-bottom: 0;
  884. }
  885. .sec-favor-form .step3-block-title, .sec-favor-checklist .step3-block-title {
  886. color: #AAAAAA;
  887. display: block;
  888. margin-bottom: .5rem;
  889. font-size: 1rem;
  890. }
  891. .sec-favor-form .step3-block .radio, .sec-favor-checklist .step3-block .radio {
  892. display: inline-block;
  893. padding: .25rem .7rem;
  894. margin-right: .4rem;
  895. border: 1px solid #707070;
  896. border-radius: 2rem;
  897. color: #797979;
  898. margin-bottom: .5rem;
  899. }
  900. .sec-favor-form .skip, .sec-favor-checklist .skip {
  901. padding: .3rem 1rem;
  902. color: #AAAAAA;
  903. border: none;
  904. outline: none;
  905. background-color: transparent;
  906. }
  907. .sec-favor-form .btngrp, .sec-favor-checklist .btngrp {
  908. /* position: absolute;
  909. left: 50%;
  910. transform: translateX(-50%);
  911. bottom: -6rem; */
  912. display: -webkit-box;
  913. display: -ms-flexbox;
  914. display: flex;
  915. -webkit-box-orient: vertical;
  916. -webkit-box-direction: normal;
  917. -ms-flex-direction: column;
  918. flex-direction: column;
  919. -webkit-box-align: center;
  920. -ms-flex-align: center;
  921. align-items: center;
  922. }
  923. .sec-favor-form .btngrp .next, .sec-favor-checklist .btngrp .next {
  924. -webkit-transform: translateY(0rem);
  925. transform: translateY(0rem);
  926. }
  927. .sec-favor-checklist .form-user {
  928. margin: 0 auto;
  929. text-align: center;
  930. margin-bottom: 1rem;
  931. }
  932. .sec-favor-btns {
  933. padding: 1rem;
  934. background-color: white;
  935. -webkit-box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  936. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  937. }
  938. .text-main {
  939. color: #EE7800;
  940. }
  941. .text-phone {
  942. color: #EA068C;
  943. text-decoration: none;
  944. }
  945. #videoModal .modal-content {
  946. background-color: transparent;
  947. border: none;
  948. }
  949. .fixed-btn {
  950. position: fixed;
  951. right: 15px;
  952. bottom: 8rem;
  953. }
  954. .fixed-btn .btn-gotop {
  955. padding: 1.2rem .8rem;
  956. background-color: rgba(255, 255, 255, 0.897);
  957. display: -webkit-box;
  958. display: -ms-flexbox;
  959. display: flex;
  960. -webkit-box-align: center;
  961. -ms-flex-align: center;
  962. align-items: center;
  963. 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);
  964. -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);
  965. -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);
  966. }
  967. /*# sourceMappingURL=main.css.map */