style.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. }
  8. .container-fluid {
  9. width: 80vw;
  10. margin: 0 auto;
  11. }
  12. @media screen and (max-width: 767px) {
  13. .container-fluid {
  14. width: 100vw;
  15. }
  16. }
  17. #Navigation {
  18. width: 100vw;
  19. background-color: #eb144c;
  20. color: #fff;
  21. position: fixed;
  22. opacity: 1 !important;
  23. z-index: 20;
  24. }
  25. #Navigation #logo {
  26. padding-top: 3vw;
  27. }
  28. @media screen and (max-width: 767px) {
  29. #Navigation #logo {
  30. padding: 15px;
  31. }
  32. }
  33. #Navigation #logo img {
  34. width: 180px;
  35. }
  36. @media screen and (max-width: 767px) {
  37. #Navigation #logo img {
  38. width: 140px;
  39. }
  40. }
  41. #Navigation #link {
  42. padding: 4vw 1vw 2vw 1vw;
  43. }
  44. @media screen and (max-width: 767px) {
  45. #Navigation #link {
  46. display: none;
  47. }
  48. }
  49. #Navigation #link a {
  50. text-decoration: none;
  51. color: #fff;
  52. letter-spacing: 1px;
  53. font-size: 0.9rem;
  54. font-weight: 600;
  55. cursor: pointer;
  56. padding: 15px;
  57. position: relative;
  58. }
  59. #Navigation #link a :hover {
  60. opacity: 0.8;
  61. }
  62. #Navigation #link a:after {
  63. content: "";
  64. display: block;
  65. width: 80%;
  66. height: 3px;
  67. background-color: #fff;
  68. position: absolute;
  69. left: 12%;
  70. bottom: 0;
  71. -webkit-transition: all 0.3s;
  72. transition: all 0.3s;
  73. opacity: 0;
  74. }
  75. #Navigation #link a:hover:after {
  76. width: 80%;
  77. opacity: 1;
  78. }
  79. @media screen and (max-width: 1024px) {
  80. #Navigation #link a {
  81. padding: 5px;
  82. padding-top: 2vw;
  83. }
  84. }
  85. #Navigation #menu-btn1 {
  86. position: absolute;
  87. right: 2vw;
  88. top: 5vw;
  89. width: 15vw;
  90. z-index: 6;
  91. }
  92. @media screen and (min-width: 1025px) {
  93. #Navigation #menu-btn1 {
  94. display: none;
  95. }
  96. }
  97. @media screen and (min-width: 768px) {
  98. #Navigation #menu-btn1 {
  99. display: none;
  100. }
  101. }
  102. #menu-box {
  103. width: 40vw;
  104. right: 0px;
  105. position: fixed;
  106. z-index: 20;
  107. overflow: hidden;
  108. display: none;
  109. }
  110. @media screen and (min-width: 1025px) {
  111. #menu-box {
  112. display: none;
  113. }
  114. }
  115. #menu-box hr {
  116. margin: 5px auto !important;
  117. width: 25vw;
  118. background: #fff;
  119. opacity: 1 !important;
  120. }
  121. #menu-box #menu-box2 {
  122. padding-bottom: 5vw;
  123. position: relative;
  124. width: 40vw;
  125. background-color: #eb144c;
  126. z-index: 7;
  127. text-align: center;
  128. }
  129. #menu-box #menu-box2 .close {
  130. padding: 30px 15px 15px 15px;
  131. }
  132. #menu-box #menu-box2 a {
  133. display: inline-block;
  134. text-decoration: none;
  135. color: #fff;
  136. font-size: 14px;
  137. font-weight: 900;
  138. text-align: center;
  139. padding: 0 !important;
  140. }
  141. #banner {
  142. width: 100vw;
  143. display: inline-block;
  144. background: #fff;
  145. }
  146. #banner #banner-container {
  147. width: 80vw;
  148. margin: 50px auto;
  149. padding-bottom: 5vw;
  150. }
  151. @media screen and (max-width: 767px) {
  152. #banner #banner-container {
  153. width: 100vw;
  154. margin: 0;
  155. padding-bottom: 15vw;
  156. }
  157. }
  158. #banner #banner-container img {
  159. padding-top: 10vw;
  160. width: 80vw;
  161. -o-object-fit: cover;
  162. object-fit: cover;
  163. }
  164. @media screen and (max-width: 767px) {
  165. #banner #banner-container img {
  166. padding-top: 15vw;
  167. width: 100vw;
  168. }
  169. }
  170. #sec01 {
  171. padding-bottom: 10vw;
  172. background: #fff;
  173. }
  174. #sec01 #sec01-title {
  175. margin-bottom: 50px;
  176. }
  177. #sec01 #sec01-title h1 {
  178. text-align: center;
  179. color: #e02d4b;
  180. font-size: 45px;
  181. font-weight: 900;
  182. padding: 5px 10px;
  183. }
  184. @media screen and (max-width: 767px) {
  185. #sec01 #sec01-title h1 {
  186. font-weight: 900;
  187. font-size: 32px;
  188. }
  189. }
  190. #sec01 #sec01-title hr {
  191. width: 5vw;
  192. height: 5px;
  193. color: #e02d4b;
  194. margin: 10px auto;
  195. opacity: 1 !important;
  196. }
  197. @media screen and (max-width: 767px) {
  198. #sec01 #sec01-title hr {
  199. width: 30vw;
  200. }
  201. }
  202. #sec01 .learn-more {
  203. width: 45%;
  204. }
  205. #sec01 #sec01-container .row {
  206. overflow: hidden;
  207. }
  208. #sec01 #sec01-container .row [class*="col-"] {
  209. margin-bottom: -9999px;
  210. padding-bottom: 9999px;
  211. }
  212. #sec01 #sec01-container .sec01-1 .card {
  213. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  214. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  215. border-radius: 10px;
  216. }
  217. #sec01 #sec01-container .sec01-1 .card img {
  218. padding: 5px;
  219. -o-object-fit: cover;
  220. object-fit: cover;
  221. }
  222. #sec01 #sec01-container .sec01-1 .card .card-title {
  223. font-weight: 900;
  224. }
  225. #sec01-moblie {
  226. padding-top: 5vw;
  227. padding-bottom: 5vw;
  228. background: #fff;
  229. position: relative;
  230. overflow: hidden;
  231. }
  232. #sec01-moblie .arrow-table {
  233. position: fixed;
  234. width: 25px;
  235. right: 15px;
  236. bottom: 240px;
  237. z-index: 6;
  238. }
  239. @media screen and (max-width: 350px) {
  240. #sec01-moblie .arrow-table {
  241. right: 10px;
  242. }
  243. }
  244. @media screen and (min-width: 1025px) {
  245. #sec01-moblie {
  246. display: none;
  247. }
  248. }
  249. #sec01-moblie #sec01-moblie-header h1 {
  250. text-align: center;
  251. color: #e02d4b;
  252. font-size: 45px;
  253. font-weight: 900;
  254. padding: 5px 10px;
  255. }
  256. @media screen and (max-width: 767px) {
  257. #sec01-moblie #sec01-moblie-header h1 {
  258. font-weight: 900;
  259. font-size: 32px;
  260. }
  261. }
  262. #sec01-moblie #sec01-moblie-header hr {
  263. margin: 10px auto !important;
  264. width: 25vw;
  265. height: 5px;
  266. color: #e02d4b;
  267. margin: 10px;
  268. opacity: 1 !important;
  269. }
  270. #sec01-moblie #sec01-moblie-container {
  271. padding-top: 10vw;
  272. }
  273. #sec01-moblie #sec01-moblie-container .col {
  274. margin: 10px;
  275. }
  276. #sec01-moblie #sec01-moblie-container .col .card {
  277. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  278. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  279. border-radius: 10px;
  280. }
  281. #sec01-moblie #sec01-moblie-container .col .card img {
  282. height: 150px;
  283. -o-object-fit: cover;
  284. object-fit: cover;
  285. }
  286. #sec01-moblie #sec01-moblie-container .col .card .card-title {
  287. font-weight: 900;
  288. }
  289. #sec01-moblie #sec01-moblie-container .col .card .learn-more {
  290. width: 120px;
  291. }
  292. #sec02 {
  293. background: #eb144c;
  294. padding: 5vw 0px;
  295. }
  296. @media screen and (max-width: 767px) {
  297. #sec02 {
  298. display: none;
  299. }
  300. }
  301. #sec02 #sec02-container {
  302. width: 90vw;
  303. padding: 15px;
  304. font-weight: 900;
  305. color: #fff;
  306. position: relative;
  307. }
  308. #sec02 #sec02-container #sec02-top-box {
  309. position: relative;
  310. }
  311. #sec02 #sec02-container #sec02-top-box #sec02-top-title {
  312. text-align: center;
  313. }
  314. #sec02 #sec02-container #sec02-top-box #sec02-top-title hr {
  315. width: 5vw;
  316. height: 5px;
  317. color: #fff;
  318. margin: 10px auto;
  319. opacity: 1 !important;
  320. }
  321. @media screen and (max-width: 767px) {
  322. #sec02 #sec02-container #sec02-top-box #sec02-top-title hr {
  323. width: 30vw;
  324. }
  325. }
  326. #sec02 #sec02-container #sec02-top-box #sec02-content {
  327. position: absolute;
  328. top: -150px;
  329. left: 300px;
  330. }
  331. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  332. color: #fff;
  333. }
  334. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  335. display: inline;
  336. width: 200px;
  337. height: 200px;
  338. -o-object-fit: cover;
  339. object-fit: cover;
  340. }
  341. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  342. font-size: 20px;
  343. }
  344. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  345. font-size: 30px;
  346. }
  347. #sec02-moblie {
  348. padding-top: 3vw;
  349. }
  350. @media screen and (min-width: 1025px) {
  351. #sec02-moblie {
  352. display: none;
  353. }
  354. }
  355. #sec02-moblie #sec02-moblie-header h1 {
  356. text-align: center;
  357. color: #eb144c;
  358. font-size: 45px;
  359. font-weight: 900;
  360. padding: 5px 10px;
  361. }
  362. @media screen and (max-width: 767px) {
  363. #sec02-moblie #sec02-moblie-header h1 {
  364. font-weight: 900;
  365. font-size: 32px;
  366. }
  367. }
  368. #sec02-moblie #sec02-moblie-header hr {
  369. margin: 10px auto !important;
  370. width: 25vw;
  371. height: 5px;
  372. color: #eb144c;
  373. margin: 10px;
  374. opacity: 1 !important;
  375. }
  376. #sec02-moblie #sec02-container {
  377. background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(40%, transparent), color-stop(20%, #eb144c));
  378. background: linear-gradient(180deg, #fff 20%, transparent 40%, #eb144c 20%);
  379. padding: 15px;
  380. font-weight: 900;
  381. color: #fff;
  382. text-align: right;
  383. padding: 20vw 0;
  384. }
  385. #sec02-moblie #sec02-container #sec02-content {
  386. position: relative;
  387. }
  388. @media screen and (max-width: 350px) {
  389. #sec02-moblie #sec02-container #sec02-top-box {
  390. left: 10px;
  391. }
  392. }
  393. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  394. color: #fff;
  395. }
  396. @media screen and (max-width: 350px) {
  397. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  398. width: 100px;
  399. height: 130px;
  400. }
  401. }
  402. @media screen and (max-width: 350px) {
  403. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  404. width: 70px;
  405. height: 100px;
  406. }
  407. }
  408. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  409. font-size: 12px;
  410. text-align: center;
  411. }
  412. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  413. font-size: 30px;
  414. }
  415. @media screen and (max-width: 350px) {
  416. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  417. font-size: 25px;
  418. }
  419. }
  420. #sec03 {
  421. padding-bottom: 5vw;
  422. }
  423. @media screen and (max-width: 767px) {
  424. #sec03 {
  425. display: none;
  426. }
  427. }
  428. #sec03 #sec03-table .sec03-table-title {
  429. font-family: 微軟正黑體;
  430. font-weight: 900;
  431. padding: 15px;
  432. font-size: 35px;
  433. }
  434. #sec03 #sec03-table .table th {
  435. font-size: 40px;
  436. display: table-cell;
  437. vertical-align: middle;
  438. }
  439. #sec03 #sec03-table .table td {
  440. padding: 15px;
  441. }
  442. #sec03 #sec03-table .table img {
  443. width: 80px;
  444. }
  445. #sec03 #sec03-table .table .sec03-table-text {
  446. padding: 10px;
  447. display: table-cell;
  448. vertical-align: middle;
  449. }
  450. #sec03 #sec03-table .table .sec03-table-text h1 {
  451. font-size: 20px;
  452. margin: 0;
  453. }
  454. #sec03 #sec03-table .table .sec03-table-text p {
  455. margin: 0;
  456. }
  457. #sec03-moblie {
  458. position: relative;
  459. }
  460. #sec03-moblie .arrow-table {
  461. position: fixed;
  462. width: 25px;
  463. right: 15px;
  464. bottom: 250px;
  465. z-index: 6;
  466. }
  467. @media screen and (max-width: 350px) {
  468. #sec03-moblie .arrow-table {
  469. right: 10px;
  470. bottom: 200px;
  471. }
  472. }
  473. #sec03-moblie .sec03-table-title,
  474. #sec03-moblie .sec03-table-title2 {
  475. font-family: 微軟正黑體;
  476. font-weight: 900;
  477. font-size: 14px;
  478. display: inline-block;
  479. color: #9b9b9b;
  480. }
  481. #sec03-moblie .contant-toggle {
  482. display: inline-block;
  483. color: #000;
  484. padding-bottom: 10px;
  485. border-bottom: 2px solid #000;
  486. }
  487. #sec03-moblie #sec03-slider {
  488. padding-top: 5vw;
  489. }
  490. #sec03-moblie #sec03-slider .slick-slide img {
  491. display: inline;
  492. }
  493. #sec03-moblie #sec03-slider #sec03-slider1,
  494. #sec03-moblie #sec03-slider #sec03-slider2 {
  495. margin: 0 5px;
  496. }
  497. @media screen and (max-width: 350px) {
  498. #sec03-moblie #sec03-slider #sec03-slider1,
  499. #sec03-moblie #sec03-slider #sec03-slider2 {
  500. margin: 0 5px;
  501. }
  502. }
  503. #sec03-moblie #sec03-slider .table th {
  504. font-size: 40px;
  505. display: table-cell;
  506. vertical-align: middle;
  507. padding: 15px;
  508. }
  509. @media screen and (max-width: 350px) {
  510. #sec03-moblie #sec03-slider .table th {
  511. font-size: 30px;
  512. }
  513. }
  514. #sec03-moblie #sec03-slider .table td {
  515. display: table-cell;
  516. vertical-align: middle;
  517. padding: 15px;
  518. padding: 10px;
  519. }
  520. @media screen and (max-width: 350px) {
  521. #sec03-moblie #sec03-slider .table td {
  522. padding: 0px;
  523. }
  524. }
  525. #sec03-moblie #sec03-slider .table img {
  526. width: 70px;
  527. }
  528. #sec03-moblie #sec03-slider .table .sec03-table-text {
  529. padding: 0px 0px 0px 3px;
  530. display: table-cell;
  531. vertical-align: middle;
  532. }
  533. @media screen and (max-width: 350px) {
  534. #sec03-moblie #sec03-slider .table .sec03-table-text {
  535. padding: 0px;
  536. }
  537. }
  538. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  539. font-size: 14px;
  540. margin: 0;
  541. }
  542. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  543. margin: 0;
  544. font-size: 12px;
  545. }
  546. @media screen and (min-width: 1025px) {
  547. #sec03-moblie {
  548. display: none;
  549. }
  550. }
  551. #sec04 {
  552. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #ededf9));
  553. background: linear-gradient(180deg, #fff 50%, #ededf9 50%);
  554. padding-bottom: 10vw;
  555. }
  556. @media screen and (max-width: 767px) {
  557. #sec04 {
  558. display: none;
  559. }
  560. }
  561. #sec04 #sec04-title {
  562. margin-bottom: 50px;
  563. }
  564. #sec04 #sec04-title h1 {
  565. text-align: center;
  566. color: #eb144c;
  567. font-size: 45px;
  568. font-weight: 900;
  569. padding: 5px 10px;
  570. }
  571. @media screen and (max-width: 767px) {
  572. #sec04 #sec04-title h1 {
  573. font-weight: 900;
  574. font-size: 32px;
  575. }
  576. }
  577. #sec04 #sec04-title hr {
  578. width: 5vw;
  579. height: 5px;
  580. color: #eb144c;
  581. margin: 10px auto;
  582. opacity: 1 !important;
  583. }
  584. @media screen and (max-width: 767px) {
  585. #sec04 #sec04-title hr {
  586. width: 30vw;
  587. }
  588. }
  589. #sec04 .learn-more {
  590. width: 45%;
  591. }
  592. #sec04 #sec04-container .card {
  593. -webkit-box-shadow: 0 10px 1px #eb144c;
  594. box-shadow: 0 10px 1px #eb144c;
  595. border-radius: 10px;
  596. }
  597. #sec04 #sec04-container .card img {
  598. padding: 5px;
  599. height: 150px;
  600. -o-object-fit: cover;
  601. object-fit: cover;
  602. }
  603. #sec04 #sec04-container .card .card-title {
  604. font-weight: 900;
  605. }
  606. #sec04-moblie {
  607. padding-top: 5vw;
  608. padding-bottom: 5vw;
  609. background: #fff;
  610. position: relative;
  611. overflow: hidden;
  612. }
  613. #sec04-moblie .arrow-table {
  614. position: fixed;
  615. width: 25px;
  616. right: 15px;
  617. bottom: 240px;
  618. z-index: 6;
  619. }
  620. @media screen and (max-width: 350px) {
  621. #sec04-moblie .arrow-table {
  622. right: 10px;
  623. }
  624. }
  625. @media screen and (min-width: 1025px) {
  626. #sec04-moblie {
  627. display: none;
  628. }
  629. }
  630. #sec04-moblie #sec04-moblie-header h1 {
  631. text-align: center;
  632. color: #eb144c;
  633. font-size: 45px;
  634. font-weight: 900;
  635. padding: 5px 10px;
  636. }
  637. @media screen and (max-width: 767px) {
  638. #sec04-moblie #sec04-moblie-header h1 {
  639. font-weight: 900;
  640. font-size: 32px;
  641. }
  642. }
  643. #sec04-moblie #sec04-moblie-header hr {
  644. margin: 10px auto !important;
  645. width: 25vw;
  646. height: 5px;
  647. color: #eb144c;
  648. margin: 10px;
  649. opacity: 1 !important;
  650. }
  651. #sec04-moblie #sec04-moblie-container {
  652. padding-top: 10vw;
  653. }
  654. #sec04-moblie #sec04-moblie-container .col {
  655. margin: 10px;
  656. }
  657. #sec04-moblie #sec04-moblie-container .col .card {
  658. -webkit-box-shadow: 0 10px 1px #eb144c;
  659. box-shadow: 0 10px 1px #eb144c;
  660. border-radius: 10px;
  661. }
  662. #sec04-moblie #sec04-moblie-container .col .card img {
  663. height: 150px;
  664. -o-object-fit: cover;
  665. object-fit: cover;
  666. }
  667. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  668. font-weight: 900;
  669. }
  670. #sec04-moblie #sec04-moblie-container .col .card .learn-more {
  671. width: 120px;
  672. }
  673. #sec05 {
  674. padding-top: 5vw;
  675. padding-bottom: 5vw;
  676. }
  677. #sec05 #sec05-title {
  678. margin-bottom: 50px;
  679. }
  680. #sec05 #sec05-title h1 {
  681. text-align: center;
  682. color: #eb144c;
  683. font-size: 45px;
  684. font-weight: 900;
  685. padding: 5px 10px;
  686. }
  687. @media screen and (max-width: 767px) {
  688. #sec05 #sec05-title h1 {
  689. font-weight: 900;
  690. font-size: 32px;
  691. }
  692. }
  693. #sec05 #sec05-title hr {
  694. width: 5vw;
  695. height: 5px;
  696. color: #eb144c;
  697. margin: 10px auto;
  698. opacity: 1 !important;
  699. }
  700. @media screen and (max-width: 767px) {
  701. #sec05 #sec05-title hr {
  702. width: 30vw;
  703. }
  704. }
  705. #sec05 #tag-group {
  706. border: 3px solid #ea504d;
  707. }
  708. @media screen and (max-width: 767px) {
  709. #sec05 #tag-group {
  710. font-size: 16px;
  711. padding: 0 10px;
  712. margin: 0 10px;
  713. border: 0;
  714. }
  715. }
  716. #sec05 #tag-group .tag button {
  717. padding: 0 30px;
  718. margin: 0 30px;
  719. color: #ffafae;
  720. background: none;
  721. font-size: 32px;
  722. }
  723. @media screen and (max-width: 767px) {
  724. #sec05 #tag-group .tag button {
  725. font-size: 16px;
  726. padding: 0 15px;
  727. margin: 0 10px;
  728. color: #fff;
  729. background: #ffafae;
  730. }
  731. }
  732. #sec05 #tag-group .tag button:hover, #sec05 #tag-group .tag button:focus {
  733. color: #fff;
  734. background: #eb144c;
  735. }
  736. #sec05 #sec05-container #sec05-course a {
  737. color: #000;
  738. font-weight: 900;
  739. }
  740. #sec05 #sec05-container #sec05-course img {
  741. margin: 30px 0;
  742. -o-object-fit: cover;
  743. object-fit: cover;
  744. }
  745. @media screen and (max-width: 767px) {
  746. #sec05 #sec05-container #sec05-course img {
  747. width: 95vw;
  748. }
  749. }
  750. #sec06 {
  751. padding-top: 5vw;
  752. padding-bottom: 5vw;
  753. }
  754. #sec06 #sec06-container-box {
  755. padding-top: 8vw;
  756. background: url(./img/sec06/sec06-1.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(30%, #fff));
  757. background: url(./img/sec06/sec06-1.png), linear-gradient(180deg, transparent 50%, #fff 30%);
  758. background-size: contain;
  759. background-repeat: no-repeat;
  760. background-blend-mode: overlay;
  761. }
  762. #sec06 #sec06-title {
  763. width: 80vw;
  764. margin: 0 auto;
  765. text-align: right !important;
  766. }
  767. #sec06 #sec06-title h1 {
  768. color: #eb144c;
  769. font-size: 45px;
  770. font-weight: 900;
  771. padding: 5px 10px;
  772. margin-top: 50px;
  773. margin-right: 50px;
  774. }
  775. @media screen and (max-width: 767px) {
  776. #sec06 #sec06-title h1 {
  777. font-weight: 900;
  778. font-size: 32px;
  779. }
  780. }
  781. #sec06 #sec06-title hr {
  782. display: inline-block;
  783. margin-right: 80px;
  784. width: 8vw;
  785. height: 5px;
  786. color: #eb144c;
  787. opacity: 1 !important;
  788. }
  789. @media screen and (max-width: 767px) {
  790. #sec06 #sec06-title hr {
  791. width: 30vw;
  792. }
  793. }
  794. #sec06 #sec06-container {
  795. text-align: center;
  796. }
  797. #sec06 #sec06-container .card {
  798. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  799. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  800. background: #fff;
  801. padding-top: 5vw;
  802. padding-bottom: 5vw;
  803. border: none;
  804. }
  805. #sec06 #sec06-container .card .sec09-7 {
  806. width: 200px;
  807. }
  808. #sec06 #sec06-container .card .adv4 {
  809. display: -webkit-box;
  810. display: -ms-flexbox;
  811. display: flex;
  812. -webkit-box-align: center;
  813. -ms-flex-align: center;
  814. align-items: center;
  815. }
  816. #sec06 #sec06-container .card .adv4 img {
  817. -webkit-box-align: center;
  818. -ms-flex-align: center;
  819. align-items: center;
  820. }
  821. #sec06 #sec06-container .col-3 {
  822. margin: 10px 0;
  823. }
  824. @media screen and (max-width: 1025px) {
  825. #sec06 #sec06-container .col-3 {
  826. padding: 15px;
  827. }
  828. }
  829. @media screen and (max-width: 767px) {
  830. #sec06 #sec06-container .col-3 {
  831. padding: 5px;
  832. }
  833. }
  834. #sec06 #sec06-container .col-3 img {
  835. -o-object-fit: cover;
  836. object-fit: cover;
  837. }
  838. @media screen and (max-width: 767px) {
  839. #sec06 #sec06-container .col-3 img {
  840. padding: 0px;
  841. }
  842. }
  843. #sec06 #sec06-container .sec09-1 {
  844. padding: 50px;
  845. }
  846. @media screen and (max-width: 767px) {
  847. #sec06 #sec06-container .sec09-1 {
  848. padding: 20px;
  849. }
  850. }
  851. #footer {
  852. width: 100vw;
  853. text-align: center;
  854. line-height: 2;
  855. background: #eb144c;
  856. color: #fff;
  857. padding-bottom: 3vw !important;
  858. }
  859. #footer .footer-link {
  860. padding-top: 3vw;
  861. }
  862. #footer .footer-link a {
  863. text-decoration: none;
  864. font-size: 20px;
  865. padding: 10px;
  866. color: #fff;
  867. }
  868. @media screen and (max-width: 767px) {
  869. #footer .footer-link a {
  870. font-size: 14px;
  871. padding: 0 !important;
  872. }
  873. }
  874. @media screen and (max-width: 400px) {
  875. #footer .footer-link a {
  876. font-size: 12px;
  877. }
  878. }
  879. #footer .footer-link a span {
  880. font-size: 28px;
  881. }
  882. @media screen and (max-width: 767px) {
  883. #footer .footer-link a span {
  884. font-size: 16px;
  885. }
  886. }
  887. @media screen and (max-width: 350px) {
  888. #footer .footer-link a span {
  889. font-size: 14px;
  890. }
  891. }
  892. #footer .text {
  893. padding-top: 3vw;
  894. }
  895. #footer .text a {
  896. text-decoration: none;
  897. color: #fff;
  898. }
  899. #footer .text h2 {
  900. font-size: 20px;
  901. margin: 10px;
  902. letter-spacing: 1px;
  903. display: inline;
  904. }
  905. @media screen and (max-width: 767px) {
  906. #footer .text h2 {
  907. display: block;
  908. font-size: 16px;
  909. margin: 8px;
  910. }
  911. }
  912. #footer .text p {
  913. margin: 0 !important;
  914. }
  915. /*# sourceMappingURL=style.css.map */