about.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. font-family: 微軟正黑體;
  8. }
  9. body {
  10. position: relative;
  11. background: #363636;
  12. }
  13. @media screen and (max-width: 767px) {
  14. body {
  15. background: #363636;
  16. }
  17. }
  18. body .arrow {
  19. position: fixed;
  20. right: 30px;
  21. top: 400px;
  22. width: 45px;
  23. height: 40px;
  24. z-index: 10;
  25. }
  26. body .arrow a {
  27. margin: 30px 0px;
  28. }
  29. @media screen and (max-width: 767px) {
  30. body .arrow .icon {
  31. display: none;
  32. }
  33. }
  34. body .arrow:hover {
  35. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  36. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  37. }
  38. #Navigation {
  39. background: rgba(112, 112, 112, 0.5);
  40. height: 4.5vw;
  41. width: 100vw !important;
  42. position: fixed;
  43. z-index: 10;
  44. }
  45. @media screen and (max-width: 1024px) {
  46. #Navigation {
  47. height: 8vw;
  48. }
  49. }
  50. @media screen and (max-width: 767px) {
  51. #Navigation {
  52. height: 15vw;
  53. position: fixed;
  54. z-index: 5;
  55. background: rgba(0, 0, 0, 0.8);
  56. }
  57. }
  58. #Navigation #nav {
  59. width: 100vw;
  60. margin: 0 auto;
  61. }
  62. #Navigation #logo {
  63. padding-top: 0.5vw;
  64. }
  65. @media screen and (max-width: 767px) {
  66. #Navigation #logo {
  67. padding-top: 0;
  68. }
  69. }
  70. #Navigation #logo img {
  71. width: 120px;
  72. }
  73. #Navigation #link {
  74. text-align: right;
  75. padding: 1.5vw 3vw;
  76. }
  77. @media screen and (max-width: 1024px) {
  78. #Navigation #link {
  79. padding-top: 2vw;
  80. }
  81. }
  82. @media screen and (max-width: 767px) {
  83. #Navigation #link {
  84. display: none;
  85. }
  86. }
  87. #Navigation #link a {
  88. text-decoration: none;
  89. color: #fff;
  90. letter-spacing: 1px;
  91. font-size: 0.9rem;
  92. font-weight: 600;
  93. cursor: pointer;
  94. padding: 5px;
  95. position: relative;
  96. }
  97. #Navigation #link a img {
  98. -o-object-fit: cover;
  99. object-fit: cover;
  100. }
  101. #Navigation #menu-btn1 {
  102. position: absolute;
  103. right: 1vw;
  104. top: 1vw;
  105. width: 18vw;
  106. z-index: 6;
  107. }
  108. @media screen and (min-width: 1025px) {
  109. #Navigation #menu-btn1 {
  110. display: none;
  111. }
  112. }
  113. @media screen and (min-width: 768px) {
  114. #Navigation #menu-btn1 {
  115. display: none;
  116. }
  117. }
  118. #Navigation2 {
  119. background: rgba(112, 112, 112, 0.75);
  120. height: 4.5vw;
  121. width: 100vw !important;
  122. position: fixed;
  123. bottom: 0px;
  124. z-index: 10;
  125. }
  126. @media screen and (min-width: 1025px) {
  127. #Navigation2 {
  128. display: none;
  129. }
  130. }
  131. @media screen and (max-width: 1024px) {
  132. #Navigation2 {
  133. height: 8vw;
  134. }
  135. }
  136. @media screen and (max-width: 767px) {
  137. #Navigation2 {
  138. height: 15vw;
  139. position: fixed;
  140. z-index: 5;
  141. background: rgba(0, 0, 0, 0.8);
  142. }
  143. }
  144. #Navigation2 #nav {
  145. width: 90vw;
  146. margin: 0 auto;
  147. display: -ms-grid;
  148. display: grid;
  149. -ms-grid-columns: (1fr)[5];
  150. grid-template-columns: repeat(5, 1fr);
  151. text-align: center;
  152. }
  153. #Navigation2 #nav a {
  154. text-decoration: none;
  155. color: #fff;
  156. letter-spacing: 1px;
  157. font-size: 0.9rem;
  158. font-weight: 600;
  159. cursor: pointer;
  160. position: relative;
  161. }
  162. #Navigation2 #nav a img {
  163. margin: 10px auto;
  164. -o-object-fit: cover;
  165. object-fit: cover;
  166. }
  167. #banner {
  168. position: relative;
  169. }
  170. #banner .banner-filter {
  171. position: absolute;
  172. z-index: -1;
  173. }
  174. #banner .banner-filter .bannerfilter {
  175. width: 100vw;
  176. -o-object-fit: cover;
  177. object-fit: cover;
  178. height: 50vw;
  179. -webkit-animation-delay: 0.1s;
  180. animation-delay: 0.1s;
  181. }
  182. @media screen and (max-width: 767px) {
  183. #banner .banner-filter .bannerfilter {
  184. height: 80vh;
  185. }
  186. }
  187. #banner #about-title {
  188. position: absolute;
  189. right: 50px;
  190. top: 100px;
  191. }
  192. @media screen and (max-width: 767px) {
  193. #banner #about-title {
  194. display: none;
  195. }
  196. }
  197. #banner #bannerdes-img {
  198. position: absolute;
  199. z-index: -2;
  200. opacity: 1;
  201. }
  202. #banner #bannerdes-img .banner-img {
  203. width: 100vw;
  204. height: 50vw;
  205. -o-object-fit: cover;
  206. object-fit: cover;
  207. }
  208. @media screen and (max-width: 767px) {
  209. #banner #bannerdes-img .banner-img {
  210. height: 80vh;
  211. }
  212. }
  213. @media screen and (max-width: 767px) {
  214. #banner {
  215. background-size: 110vw;
  216. background-repeat: no-repeat;
  217. }
  218. }
  219. #banner #banner-container {
  220. padding-top: 15vw;
  221. width: 90vw;
  222. }
  223. @media screen and (max-width: 767px) {
  224. #banner #banner-container {
  225. width: 95vw;
  226. }
  227. }
  228. @media screen and (max-width: 767px) {
  229. #banner #banner-container .banner-des-about {
  230. display: none;
  231. }
  232. }
  233. @media screen and (max-width: 767px) {
  234. #banner #banner-container .banner-des-about .banner-2 img {
  235. display: none;
  236. }
  237. }
  238. #banner #banner-container .banner-des-about .banner-3 img {
  239. margin-bottom: -52px;
  240. }
  241. @media screen and (min-width: 1025px) {
  242. #banner #banner-container .banner-m {
  243. display: none;
  244. }
  245. }
  246. #banner #banner-container .banner-m .bannerm-1 {
  247. background: rgba(141, 194, 31, 0.8);
  248. }
  249. @media screen and (max-width: 767px) {
  250. #banner #banner-container .banner-m .bannerm-1 {
  251. margin: 0;
  252. }
  253. }
  254. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  255. font-size: 18px;
  256. }
  257. #banner #banner-container ul {
  258. position: static;
  259. border-top-right-radius: 30px;
  260. border-bottom-right-radius: 30px;
  261. text-align: center;
  262. background: rgba(141, 194, 31, 0.8);
  263. }
  264. @media screen and (min-width: 1025px) {
  265. #banner #banner-container ul {
  266. margin-left: 8px;
  267. margin-bottom: 10px;
  268. }
  269. }
  270. @media screen and (max-width: 767px) {
  271. #banner #banner-container ul {
  272. margin-top: 5vw;
  273. width: 100vw;
  274. }
  275. }
  276. #banner #banner-container ul .nav-item {
  277. padding: 10px;
  278. }
  279. @media screen and (max-width: 767px) {
  280. #banner #banner-container ul .nav-item {
  281. padding: 6px;
  282. }
  283. }
  284. #banner #banner-container ul .nav-item .nav-item2 {
  285. position: relative;
  286. }
  287. #banner #banner-container ul .nav-item .nav-item2:after {
  288. content: url(../img/about/sec01/item-arrow.png);
  289. display: block;
  290. width: 80%;
  291. height: 8px;
  292. position: absolute;
  293. left: 12%;
  294. bottom: 0;
  295. -webkit-transition: all 0.3s;
  296. transition: all 0.3s;
  297. opacity: 0;
  298. }
  299. #banner #banner-container ul .nav-item .nav-item2 .after-nav {
  300. opacity: 1;
  301. }
  302. #banner #banner-container ul .nav-item .nav-item2:focus:after {
  303. width: 80%;
  304. opacity: 1;
  305. }
  306. #banner #banner-container .tab-content .sec01 .condition {
  307. padding: 4vw 24px;
  308. font-size: 16px;
  309. padding-bottom: 10vw;
  310. }
  311. @media screen and (max-width: 767px) {
  312. #banner #banner-container .tab-content .sec01 .condition {
  313. padding: 10vw 18px;
  314. padding-bottom: 15vw;
  315. }
  316. }
  317. #banner #banner-container .tab-content .sec01 .idea {
  318. padding: 4vw 24px;
  319. font-size: 16px;
  320. padding-bottom: 10vw;
  321. background-size: contain;
  322. background-repeat: no-repeat;
  323. background-blend-mode: overlay;
  324. }
  325. @media screen and (max-width: 767px) {
  326. #banner #banner-container .tab-content .sec01 .idea {
  327. padding: 10vw 18px;
  328. padding-bottom: 15vw;
  329. }
  330. }
  331. #banner #banner-container .tab-content .sec01 .contact {
  332. padding-bottom: 10vw;
  333. padding: 4vw 24px;
  334. font-size: 16px;
  335. background-size: contain;
  336. background-repeat: no-repeat;
  337. background-blend-mode: overlay;
  338. word-break: break-all;
  339. }
  340. @media screen and (max-width: 767px) {
  341. #banner #banner-container .tab-content .sec01 .contact {
  342. padding: 10vw 18px;
  343. padding-bottom: 15vw;
  344. }
  345. }
  346. #banner #banner-container .tab-content .sec01 .contact a {
  347. text-decoration: none;
  348. color: #fff;
  349. }
  350. #banner #banner-container .tab-content .sec02 .col-lg-4,
  351. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  352. position: relative;
  353. background: #80ab29;
  354. -webkit-transition: 0.3s ease-in-out;
  355. transition: 0.3s ease-in-out;
  356. cursor: pointer;
  357. }
  358. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  359. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  360. color: #fff;
  361. text-align: center;
  362. font-size: 14px;
  363. -webkit-transition: 0.3s;
  364. transition: 0.3s;
  365. -webkit-transition: 0.3s ease-in-out;
  366. transition: 0.3s ease-in-out;
  367. }
  368. @media screen and (min-width: 1025px) {
  369. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  370. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  371. width: 100%;
  372. position: absolute;
  373. top: 35%;
  374. left: 0px;
  375. font-size: 18px;
  376. opacity: 0;
  377. }
  378. }
  379. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .play1,
  380. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  381. opacity: 1;
  382. }
  383. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec02-p-m,
  384. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec03-p-m,
  385. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec02-p-m,
  386. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec03-p-m {
  387. opacity: 1;
  388. }
  389. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  390. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  391. opacity: 0.2;
  392. }
  393. @media screen and (max-width: 767px) {
  394. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  395. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  396. opacity: 1;
  397. }
  398. }
  399. @media screen and (max-width: 767px) {
  400. #banner #banner-container .tab-content .sec02 .col-lg-4,
  401. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  402. background: none;
  403. }
  404. }
  405. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  406. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  407. -o-object-fit: cover;
  408. object-fit: cover;
  409. width: 100% !important;
  410. height: 17vw;
  411. opacity: 1;
  412. -webkit-transition: 0.3s ease-in-out;
  413. transition: 0.3s ease-in-out;
  414. }
  415. @media screen and (max-width: 767px) {
  416. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  417. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  418. height: 50vw;
  419. }
  420. }
  421. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m,
  422. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  423. text-align: center;
  424. width: 100%;
  425. position: absolute;
  426. top: 100px;
  427. }
  428. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  429. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  430. text-align: center;
  431. width: 100%;
  432. position: absolute;
  433. }
  434. @media screen and (max-width: 767px) {
  435. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  436. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  437. top: 80px;
  438. }
  439. }
  440. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  441. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  442. width: 50px !important;
  443. height: 50px !important;
  444. }
  445. @media screen and (max-width: 767px) {
  446. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  447. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  448. display: none;
  449. }
  450. }
  451. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  452. position: relative;
  453. background: #80ab29;
  454. -webkit-transition: 0.3s ease-in-out;
  455. transition: 0.3s ease-in-out;
  456. cursor: pointer;
  457. }
  458. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  459. color: #fff;
  460. text-align: center;
  461. font-size: 14px;
  462. -webkit-transition: 0.3s;
  463. transition: 0.3s;
  464. -webkit-transition: 0.3s ease-in-out;
  465. transition: 0.3s ease-in-out;
  466. }
  467. @media screen and (min-width: 1025px) {
  468. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  469. width: 100%;
  470. position: absolute;
  471. top: 100px;
  472. left: 0px;
  473. font-size: 16px;
  474. opacity: 0;
  475. }
  476. }
  477. @media screen and (min-width: 1025px) {
  478. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  479. position: absolute;
  480. top: 30%;
  481. left: 0px;
  482. background-size: contain;
  483. opacity: 0;
  484. }
  485. }
  486. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .play1 {
  487. opacity: 1;
  488. }
  489. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec02-p-m,
  490. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec03-p-m {
  491. opacity: 1;
  492. }
  493. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  494. opacity: 0.2;
  495. }
  496. @media screen and (max-width: 767px) {
  497. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  498. opacity: 1;
  499. }
  500. }
  501. @media screen and (max-width: 767px) {
  502. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  503. background: none;
  504. }
  505. }
  506. #banner #banner-container .tab-content .sec03 .col-lg-4 img {
  507. -o-object-fit: cover;
  508. object-fit: cover;
  509. width: 100% !important;
  510. height: 17vw;
  511. opacity: 1;
  512. -webkit-transition: 0.3s ease-in-out;
  513. transition: 0.3s ease-in-out;
  514. }
  515. @media screen and (max-width: 767px) {
  516. #banner #banner-container .tab-content .sec03 .col-lg-4 img {
  517. height: 50vw;
  518. }
  519. }
  520. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m {
  521. text-align: center;
  522. width: 100%;
  523. position: absolute;
  524. top: 100px;
  525. }
  526. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  527. text-align: center;
  528. width: 100%;
  529. position: absolute;
  530. }
  531. @media screen and (max-width: 767px) {
  532. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  533. top: 80px;
  534. }
  535. }
  536. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 .play1 {
  537. width: 50px !important;
  538. height: 50px !important;
  539. }
  540. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  541. background: rgba(0, 0, 0, 0.8);
  542. text-align: center;
  543. height: 600px;
  544. }
  545. @media screen and (max-width: 767px) {
  546. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  547. height: 300px;
  548. }
  549. }
  550. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row p {
  551. letter-spacing: 5px;
  552. }
  553. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  554. position: relative;
  555. background: #80ab29;
  556. -webkit-transition: 0.3s ease-in-out;
  557. transition: 0.3s ease-in-out;
  558. cursor: pointer;
  559. }
  560. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  561. color: #fff;
  562. text-align: center;
  563. font-size: 14px;
  564. -webkit-transition: 0.3s;
  565. transition: 0.3s;
  566. -webkit-transition: 0.3s ease-in-out;
  567. transition: 0.3s ease-in-out;
  568. }
  569. @media screen and (min-width: 1025px) {
  570. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  571. width: 100%;
  572. position: absolute;
  573. top: 50px;
  574. left: 0px;
  575. font-size: 18px;
  576. opacity: 0;
  577. }
  578. }
  579. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  580. opacity: 1;
  581. }
  582. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec04-p-m {
  583. opacity: 1;
  584. }
  585. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  586. opacity: 0.2;
  587. }
  588. @media screen and (max-width: 767px) {
  589. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  590. opacity: 1;
  591. }
  592. }
  593. @media screen and (max-width: 767px) {
  594. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  595. background: none;
  596. }
  597. }
  598. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  599. -o-object-fit: cover;
  600. object-fit: cover;
  601. width: 100% !important;
  602. height: 16.5vw;
  603. opacity: 1;
  604. -webkit-transition: 0.3s ease-in-out;
  605. transition: 0.3s ease-in-out;
  606. }
  607. @media screen and (max-width: 767px) {
  608. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  609. height: 50vw;
  610. }
  611. }
  612. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  613. text-align: center;
  614. width: 100%;
  615. position: absolute;
  616. top: 100px;
  617. }
  618. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  619. text-align: center;
  620. width: 100%;
  621. position: absolute;
  622. }
  623. @media screen and (max-width: 767px) {
  624. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  625. top: 80px;
  626. }
  627. }
  628. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  629. width: 50px !important;
  630. height: 50px !important;
  631. }
  632. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  633. background: rgba(0, 0, 0, 0.8);
  634. text-align: center;
  635. width: 100% !important;
  636. height: 600px;
  637. }
  638. @media screen and (max-width: 767px) {
  639. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  640. height: 300px;
  641. }
  642. }
  643. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row p {
  644. letter-spacing: 5px;
  645. }
  646. #footer {
  647. background: #363636;
  648. text-align: center;
  649. width: 80vw;
  650. margin: 0 auto !important;
  651. padding-top: 2vw;
  652. padding: 1vw;
  653. }
  654. @media screen and (max-width: 767px) {
  655. #footer {
  656. width: 95vw;
  657. padding: 30vw 5vw;
  658. }
  659. }
  660. #footer a {
  661. text-decoration: none;
  662. color: #fff;
  663. }
  664. #footer p {
  665. color: #fff;
  666. }
  667. /*# sourceMappingURL=about.css.map */