style.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096
  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 .sec05-1 .card {
  737. height: 600px;
  738. }
  739. #sec05 #sec05-container #sec05-course a {
  740. color: #000;
  741. font-weight: 900;
  742. }
  743. #sec05 #sec05-container #sec05-course img {
  744. margin: 30px 0;
  745. -o-object-fit: cover;
  746. object-fit: cover;
  747. }
  748. @media screen and (max-width: 767px) {
  749. #sec05 #sec05-container #sec05-course img {
  750. width: 95vw;
  751. }
  752. }
  753. #sec06 {
  754. padding-top: 5vw;
  755. padding-bottom: 5vw;
  756. }
  757. #sec06 #sec06-container-box {
  758. padding-top: 8vw;
  759. background: url(./img/sec06/sec06-1.png), -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(30%, #fff));
  760. background: url(./img/sec06/sec06-1.png), linear-gradient(180deg, transparent 50%, #fff 30%);
  761. background-size: contain;
  762. background-repeat: no-repeat;
  763. background-blend-mode: overlay;
  764. }
  765. #sec06 #sec06-title {
  766. width: 80vw;
  767. margin: 0 auto;
  768. text-align: right !important;
  769. }
  770. #sec06 #sec06-title h1 {
  771. color: #eb144c;
  772. font-size: 45px;
  773. font-weight: 900;
  774. padding: 5px 10px;
  775. margin-top: 50px;
  776. margin-right: 50px;
  777. }
  778. @media screen and (max-width: 767px) {
  779. #sec06 #sec06-title h1 {
  780. font-weight: 900;
  781. font-size: 32px;
  782. }
  783. }
  784. #sec06 #sec06-title hr {
  785. display: inline-block;
  786. margin-right: 80px;
  787. width: 8vw;
  788. height: 5px;
  789. color: #eb144c;
  790. opacity: 1 !important;
  791. }
  792. @media screen and (max-width: 767px) {
  793. #sec06 #sec06-title hr {
  794. width: 30vw;
  795. }
  796. }
  797. #sec06 #sec06-container {
  798. text-align: center;
  799. }
  800. #sec06 #sec06-container .card {
  801. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  802. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  803. background: #fff;
  804. padding-top: 5vw;
  805. padding-bottom: 5vw;
  806. border: none;
  807. }
  808. #sec06 #sec06-container .card .sec09-7 {
  809. width: 200px;
  810. }
  811. #sec06 #sec06-container .card .adv4 {
  812. display: -webkit-box;
  813. display: -ms-flexbox;
  814. display: flex;
  815. -webkit-box-align: center;
  816. -ms-flex-align: center;
  817. align-items: center;
  818. }
  819. #sec06 #sec06-container .card .adv4 img {
  820. -webkit-box-align: center;
  821. -ms-flex-align: center;
  822. align-items: center;
  823. }
  824. #sec06 #sec06-container .col-3 {
  825. margin: 10px 0;
  826. }
  827. @media screen and (max-width: 1025px) {
  828. #sec06 #sec06-container .col-3 {
  829. padding: 15px;
  830. }
  831. }
  832. @media screen and (max-width: 767px) {
  833. #sec06 #sec06-container .col-3 {
  834. padding: 5px;
  835. }
  836. }
  837. #sec06 #sec06-container .col-3 img {
  838. -o-object-fit: cover;
  839. object-fit: cover;
  840. }
  841. @media screen and (max-width: 767px) {
  842. #sec06 #sec06-container .col-3 img {
  843. padding: 0px;
  844. }
  845. }
  846. #sec06 #sec06-container .sec09-1 {
  847. padding: 50px;
  848. }
  849. @media screen and (max-width: 767px) {
  850. #sec06 #sec06-container .sec09-1 {
  851. padding: 20px;
  852. }
  853. }
  854. #footer {
  855. width: 100vw;
  856. text-align: center;
  857. line-height: 2;
  858. background: #eb144c;
  859. color: #fff;
  860. padding-bottom: 3vw !important;
  861. }
  862. #footer .footer-link {
  863. padding-top: 3vw;
  864. }
  865. #footer .footer-link a {
  866. text-decoration: none;
  867. font-size: 20px;
  868. padding: 10px;
  869. color: #fff;
  870. }
  871. @media screen and (max-width: 767px) {
  872. #footer .footer-link a {
  873. font-size: 14px;
  874. padding: 0 !important;
  875. }
  876. }
  877. @media screen and (max-width: 400px) {
  878. #footer .footer-link a {
  879. font-size: 12px;
  880. }
  881. }
  882. #footer .footer-link a span {
  883. font-size: 28px;
  884. }
  885. @media screen and (max-width: 767px) {
  886. #footer .footer-link a span {
  887. font-size: 16px;
  888. }
  889. }
  890. @media screen and (max-width: 350px) {
  891. #footer .footer-link a span {
  892. font-size: 14px;
  893. }
  894. }
  895. #footer .text {
  896. padding-top: 3vw;
  897. }
  898. #footer .text a {
  899. text-decoration: none;
  900. color: #fff;
  901. }
  902. #footer .text h2 {
  903. font-size: 20px;
  904. margin: 10px;
  905. letter-spacing: 1px;
  906. display: inline;
  907. }
  908. @media screen and (max-width: 767px) {
  909. #footer .text h2 {
  910. display: block;
  911. font-size: 16px;
  912. margin: 8px;
  913. }
  914. }
  915. #footer .text p {
  916. margin: 0 !important;
  917. }
  918. /*# sourceMappingURL=style.css.map */