about.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  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: 500px;
  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 #about-title {
  171. position: absolute;
  172. right: 50px;
  173. top: 100px;
  174. }
  175. @media screen and (max-width: 767px) {
  176. #banner #about-title {
  177. display: none;
  178. }
  179. }
  180. #banner #bannerdes-img {
  181. position: absolute;
  182. z-index: -1;
  183. opacity: 1;
  184. }
  185. #banner #bannerdes-img .banner-img {
  186. width: 100vw;
  187. height: 70vh;
  188. -o-object-fit: cover;
  189. object-fit: cover;
  190. }
  191. @media screen and (max-width: 767px) {
  192. #banner #bannerdes-img .banner-img {
  193. height: 80vh;
  194. }
  195. }
  196. @media screen and (max-width: 767px) {
  197. #banner {
  198. background-size: 110vw;
  199. background-repeat: no-repeat;
  200. }
  201. }
  202. #banner #banner-container {
  203. padding-top: 15vw;
  204. width: 90vw;
  205. }
  206. @media screen and (max-width: 767px) {
  207. #banner #banner-container {
  208. width: 95vw;
  209. }
  210. }
  211. @media screen and (max-width: 767px) {
  212. #banner #banner-container .banner-des-about {
  213. display: none;
  214. }
  215. }
  216. @media screen and (max-width: 767px) {
  217. #banner #banner-container .banner-des-about .banner-2 img {
  218. display: none;
  219. }
  220. }
  221. #banner #banner-container .banner-des-about .banner-3 img {
  222. margin-bottom: -52px;
  223. }
  224. @media screen and (min-width: 1025px) {
  225. #banner #banner-container .banner-m {
  226. display: none;
  227. }
  228. }
  229. #banner #banner-container .banner-m .bannerm-1 {
  230. background: rgba(141, 194, 31, 0.8);
  231. }
  232. @media screen and (max-width: 767px) {
  233. #banner #banner-container .banner-m .bannerm-1 {
  234. margin: 0;
  235. }
  236. }
  237. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  238. font-size: 18px;
  239. }
  240. #banner #banner-container ul {
  241. position: static;
  242. border-top-right-radius: 30px;
  243. border-bottom-right-radius: 30px;
  244. text-align: center;
  245. background: rgba(141, 194, 31, 0.8);
  246. }
  247. @media screen and (min-width: 1025px) {
  248. #banner #banner-container ul {
  249. margin-left: 8px;
  250. margin-bottom: 10px;
  251. }
  252. }
  253. @media screen and (max-width: 767px) {
  254. #banner #banner-container ul {
  255. margin-top: 5vw;
  256. width: 100vw;
  257. }
  258. }
  259. #banner #banner-container ul .nav-item {
  260. padding: 10px;
  261. }
  262. @media screen and (max-width: 767px) {
  263. #banner #banner-container ul .nav-item {
  264. padding: 6px;
  265. }
  266. }
  267. #banner #banner-container ul .nav-item .nav-item2 {
  268. position: relative;
  269. }
  270. #banner #banner-container ul .nav-item .nav-item2:after {
  271. content: url(../img/about/sec01/item-arrow.png);
  272. display: block;
  273. width: 80%;
  274. height: 8px;
  275. position: absolute;
  276. left: 12%;
  277. bottom: 0;
  278. -webkit-transition: all 0.3s;
  279. transition: all 0.3s;
  280. opacity: 0;
  281. }
  282. #banner #banner-container ul .nav-item .nav-item2 .after-nav {
  283. opacity: 1;
  284. }
  285. #banner #banner-container ul .nav-item .nav-item2:focus:after {
  286. width: 80%;
  287. opacity: 1;
  288. }
  289. #banner #banner-container .tab-content .condition {
  290. padding: 24px;
  291. font-size: 16px;
  292. padding-bottom: 10vw;
  293. }
  294. @media screen and (max-width: 767px) {
  295. #banner #banner-container .tab-content .condition {
  296. padding: 18px;
  297. }
  298. }
  299. #banner #banner-container .tab-content .idea {
  300. padding: 24px;
  301. font-size: 16px;
  302. padding-bottom: 10vw;
  303. background-size: contain;
  304. background-repeat: no-repeat;
  305. background-blend-mode: overlay;
  306. }
  307. #banner #banner-container .tab-content .contact {
  308. padding-bottom: 10vw;
  309. padding: 24px;
  310. font-size: 16px;
  311. background-size: contain;
  312. background-repeat: no-repeat;
  313. background-blend-mode: overlay;
  314. word-break: break-all;
  315. }
  316. #banner #banner-container .tab-content .contact a {
  317. text-decoration: none;
  318. color: #fff;
  319. }
  320. @media screen and (max-width: 767px) {
  321. #banner #banner-container .tab-content .contact {
  322. padding: 18px;
  323. }
  324. }
  325. #banner #banner-container .tab-content .sec02 .col-lg-4,
  326. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  327. position: relative;
  328. background: #80ab29;
  329. -webkit-transition: 0.3s ease-in-out;
  330. transition: 0.3s ease-in-out;
  331. cursor: pointer;
  332. }
  333. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  334. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  335. color: #fff;
  336. text-align: center;
  337. font-size: 14px;
  338. -webkit-transition: 0.3s;
  339. transition: 0.3s;
  340. -webkit-transition: 0.3s ease-in-out;
  341. transition: 0.3s ease-in-out;
  342. }
  343. @media screen and (min-width: 1025px) {
  344. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m,
  345. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m {
  346. width: 100%;
  347. position: absolute;
  348. top: 100px;
  349. left: 0px;
  350. font-size: 18px;
  351. opacity: 0;
  352. }
  353. }
  354. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .play1,
  355. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  356. opacity: 1;
  357. }
  358. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec02-p-m,
  359. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec03-p-m,
  360. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec02-p-m,
  361. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec03-p-m {
  362. opacity: 1;
  363. }
  364. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  365. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  366. opacity: 0.2;
  367. }
  368. @media screen and (max-width: 767px) {
  369. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  370. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  371. opacity: 1;
  372. }
  373. }
  374. @media screen and (max-width: 767px) {
  375. #banner #banner-container .tab-content .sec02 .col-lg-4,
  376. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  377. background: none;
  378. }
  379. }
  380. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  381. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  382. -o-object-fit: cover;
  383. object-fit: cover;
  384. width: 100% !important;
  385. height: 280px !important;
  386. opacity: 1;
  387. -webkit-transition: 0.3s ease-in-out;
  388. transition: 0.3s ease-in-out;
  389. }
  390. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m,
  391. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  392. text-align: center;
  393. width: 100%;
  394. position: absolute;
  395. top: 100px;
  396. }
  397. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  398. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  399. text-align: center;
  400. width: 100%;
  401. position: absolute;
  402. }
  403. @media screen and (max-width: 767px) {
  404. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1,
  405. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  406. top: 80px;
  407. }
  408. }
  409. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  410. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  411. width: 50px !important;
  412. height: 50px !important;
  413. }
  414. @media screen and (max-width: 767px) {
  415. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-img-m1 .play1,
  416. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  417. display: none;
  418. }
  419. }
  420. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  421. position: relative;
  422. background: #80ab29;
  423. -webkit-transition: 0.3s ease-in-out;
  424. transition: 0.3s ease-in-out;
  425. cursor: pointer;
  426. }
  427. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  428. color: #fff;
  429. text-align: center;
  430. font-size: 14px;
  431. -webkit-transition: 0.3s;
  432. transition: 0.3s;
  433. -webkit-transition: 0.3s ease-in-out;
  434. transition: 0.3s ease-in-out;
  435. }
  436. @media screen and (min-width: 1025px) {
  437. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  438. width: 100%;
  439. position: absolute;
  440. top: 100px;
  441. left: 0px;
  442. font-size: 16px;
  443. opacity: 0;
  444. }
  445. }
  446. @media screen and (min-width: 1025px) {
  447. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m {
  448. position: absolute;
  449. top: 50px;
  450. left: 0px;
  451. background-size: contain;
  452. opacity: 0;
  453. }
  454. }
  455. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .play1 {
  456. opacity: 1;
  457. }
  458. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec02-p-m,
  459. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec03-p-m {
  460. opacity: 1;
  461. }
  462. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  463. opacity: 0.2;
  464. }
  465. @media screen and (max-width: 767px) {
  466. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img {
  467. opacity: 1;
  468. }
  469. }
  470. @media screen and (max-width: 767px) {
  471. #banner #banner-container .tab-content .sec03 .col-lg-4 {
  472. background: none;
  473. }
  474. }
  475. #banner #banner-container .tab-content .sec03 .col-lg-4 img {
  476. -o-object-fit: cover;
  477. object-fit: cover;
  478. width: 100% !important;
  479. height: 200px !important;
  480. opacity: 1;
  481. -webkit-transition: 0.3s ease-in-out;
  482. transition: 0.3s ease-in-out;
  483. }
  484. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m {
  485. text-align: center;
  486. width: 100%;
  487. position: absolute;
  488. top: 100px;
  489. }
  490. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  491. text-align: center;
  492. width: 100%;
  493. position: absolute;
  494. }
  495. @media screen and (max-width: 767px) {
  496. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 {
  497. top: 80px;
  498. }
  499. }
  500. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-img-m1 .play1 {
  501. width: 50px !important;
  502. height: 50px !important;
  503. }
  504. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  505. background: rgba(0, 0, 0, 0.8);
  506. text-align: center;
  507. height: 600px;
  508. }
  509. @media screen and (max-width: 767px) {
  510. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row {
  511. height: 300px;
  512. }
  513. }
  514. #banner #banner-container .tab-content .sec03 .sec03-1 .sec05-row p {
  515. letter-spacing: 5px;
  516. }
  517. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  518. position: relative;
  519. background: #80ab29;
  520. -webkit-transition: 0.3s ease-in-out;
  521. transition: 0.3s ease-in-out;
  522. cursor: pointer;
  523. }
  524. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  525. color: #fff;
  526. text-align: center;
  527. font-size: 14px;
  528. -webkit-transition: 0.3s;
  529. transition: 0.3s;
  530. -webkit-transition: 0.3s ease-in-out;
  531. transition: 0.3s ease-in-out;
  532. }
  533. @media screen and (min-width: 1025px) {
  534. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec04-p-m {
  535. width: 100%;
  536. position: absolute;
  537. top: 50px;
  538. left: 0px;
  539. font-size: 18px;
  540. opacity: 0;
  541. }
  542. }
  543. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .play1 {
  544. opacity: 1;
  545. }
  546. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec04-p-m {
  547. opacity: 1;
  548. }
  549. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  550. opacity: 0.2;
  551. }
  552. @media screen and (max-width: 767px) {
  553. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  554. opacity: 1;
  555. }
  556. }
  557. @media screen and (max-width: 767px) {
  558. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  559. background: none;
  560. }
  561. }
  562. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  563. -o-object-fit: cover;
  564. object-fit: cover;
  565. width: 100% !important;
  566. height: 200px !important;
  567. opacity: 1;
  568. -webkit-transition: 0.3s ease-in-out;
  569. transition: 0.3s ease-in-out;
  570. }
  571. @media screen and (max-width: 767px) {
  572. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  573. height: 180px !important;
  574. }
  575. }
  576. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m {
  577. text-align: center;
  578. width: 100%;
  579. position: absolute;
  580. top: 100px;
  581. }
  582. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  583. text-align: center;
  584. width: 100%;
  585. position: absolute;
  586. }
  587. @media screen and (max-width: 767px) {
  588. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 {
  589. top: 80px;
  590. }
  591. }
  592. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-img-m1 .play1 {
  593. width: 50px !important;
  594. height: 50px !important;
  595. }
  596. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  597. background: rgba(0, 0, 0, 0.8);
  598. text-align: center;
  599. width: 100%;
  600. height: 600px;
  601. }
  602. @media screen and (max-width: 767px) {
  603. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row {
  604. height: 300px;
  605. }
  606. }
  607. #banner #banner-container .tab-content .sec04 .sec04-1 .sec05-row p {
  608. letter-spacing: 5px;
  609. }
  610. #footer {
  611. background: #363636;
  612. text-align: center;
  613. width: 80vw;
  614. margin: 0 auto !important;
  615. }
  616. @media screen and (max-width: 767px) {
  617. #footer {
  618. width: 95vw;
  619. padding-bottom: 30vw;
  620. }
  621. }
  622. #footer a {
  623. text-decoration: none;
  624. color: #fff;
  625. }
  626. #footer p {
  627. color: #fff;
  628. }
  629. /*# sourceMappingURL=about.css.map */