about.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  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: url(../img/about/banner/banner.webp), -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(49%, #363636));
  12. background: url(../img/about/banner/banner.webp), linear-gradient(180deg, transparent 10%, #363636 49%);
  13. background-size: 120vw;
  14. background-repeat: no-repeat;
  15. }
  16. @media screen and (max-width: 767px) {
  17. body {
  18. background: #363636;
  19. }
  20. }
  21. body .arrow {
  22. position: fixed;
  23. right: 30px;
  24. bottom: 30px;
  25. width: 45px;
  26. height: 40px;
  27. z-index: 10;
  28. background-color: #e06649;
  29. }
  30. body .arrow:hover {
  31. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  32. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  33. }
  34. @media screen and (max-width: 767px) {
  35. body .arrow {
  36. position: absolute;
  37. bottom: 80px;
  38. }
  39. }
  40. #Navigation {
  41. background: rgba(112, 112, 112, 0.5);
  42. height: 4.5vw;
  43. width: 100vw !important;
  44. z-index: 10;
  45. }
  46. @media screen and (max-width: 1024px) {
  47. #Navigation {
  48. height: 8vw;
  49. }
  50. }
  51. @media screen and (max-width: 767px) {
  52. #Navigation {
  53. height: 15vw;
  54. position: fixed;
  55. z-index: 5;
  56. background: rgba(0, 0, 0, 0.8);
  57. }
  58. }
  59. #Navigation #nav {
  60. width: 100vw;
  61. margin: 0 auto;
  62. }
  63. #Navigation #logo {
  64. padding-top: 0.5vw;
  65. }
  66. @media screen and (max-width: 767px) {
  67. #Navigation #logo {
  68. padding-top: 0;
  69. }
  70. }
  71. #Navigation #logo img {
  72. width: 120px;
  73. }
  74. #Navigation #link {
  75. text-align: right;
  76. padding: 1.5vw 3vw;
  77. }
  78. @media screen and (max-width: 1024px) {
  79. #Navigation #link {
  80. padding-top: 2vw;
  81. }
  82. }
  83. @media screen and (max-width: 767px) {
  84. #Navigation #link {
  85. display: none;
  86. }
  87. }
  88. #Navigation #link a {
  89. text-decoration: none;
  90. color: #fff;
  91. letter-spacing: 1px;
  92. font-size: 0.9rem;
  93. font-weight: 600;
  94. cursor: pointer;
  95. padding: 5px;
  96. position: relative;
  97. }
  98. #Navigation #link a img {
  99. -o-object-fit: cover;
  100. object-fit: cover;
  101. }
  102. #Navigation #menu-btn1 {
  103. position: absolute;
  104. right: 1vw;
  105. top: 1vw;
  106. width: 18vw;
  107. z-index: 6;
  108. }
  109. @media screen and (min-width: 1025px) {
  110. #Navigation #menu-btn1 {
  111. display: none;
  112. }
  113. }
  114. @media screen and (min-width: 768px) {
  115. #Navigation #menu-btn1 {
  116. display: none;
  117. }
  118. }
  119. #Navigation2 {
  120. background: rgba(112, 112, 112, 0.75);
  121. height: 4.5vw;
  122. width: 100vw !important;
  123. position: fixed;
  124. bottom: 0px;
  125. z-index: 10;
  126. }
  127. @media screen and (min-width: 1025px) {
  128. #Navigation2 {
  129. display: none;
  130. }
  131. }
  132. @media screen and (max-width: 1024px) {
  133. #Navigation2 {
  134. height: 8vw;
  135. }
  136. }
  137. @media screen and (max-width: 767px) {
  138. #Navigation2 {
  139. height: 15vw;
  140. position: fixed;
  141. z-index: 5;
  142. background: rgba(0, 0, 0, 0.8);
  143. }
  144. }
  145. #Navigation2 #nav {
  146. width: 90vw;
  147. margin: 0 auto;
  148. display: -ms-grid;
  149. display: grid;
  150. -ms-grid-columns: (1fr)[5];
  151. grid-template-columns: repeat(5, 1fr);
  152. text-align: center;
  153. }
  154. #Navigation2 #nav a {
  155. text-decoration: none;
  156. color: #fff;
  157. letter-spacing: 1px;
  158. font-size: 0.9rem;
  159. font-weight: 600;
  160. cursor: pointer;
  161. position: relative;
  162. }
  163. #Navigation2 #nav a img {
  164. margin: 10px auto;
  165. -o-object-fit: cover;
  166. object-fit: cover;
  167. }
  168. @media screen and (max-width: 767px) {
  169. #banner {
  170. background-image: url(../img/about/banner/banner-m2.png);
  171. background-size: 110vw;
  172. background-repeat: no-repeat;
  173. }
  174. }
  175. #banner #banner-container {
  176. width: 85vw;
  177. }
  178. @media screen and (max-width: 767px) {
  179. #banner #banner-container {
  180. width: 95vw;
  181. }
  182. }
  183. @media screen and (max-width: 767px) {
  184. #banner #banner-container .banner-des-about {
  185. display: none;
  186. }
  187. }
  188. @media screen and (max-width: 767px) {
  189. #banner #banner-container .banner-des-about .banner-2 img {
  190. display: none;
  191. }
  192. }
  193. #banner #banner-container .banner-m {
  194. padding-top: 80vw;
  195. }
  196. @media screen and (min-width: 1025px) {
  197. #banner #banner-container .banner-m {
  198. display: none;
  199. }
  200. }
  201. #banner #banner-container .banner-m .bannerm-1 {
  202. background: rgba(141, 194, 31, 0.8);
  203. }
  204. @media screen and (max-width: 767px) {
  205. #banner #banner-container .banner-m .bannerm-1 {
  206. margin: 0;
  207. }
  208. }
  209. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  210. font-size: 18px;
  211. }
  212. #banner #banner-container ul {
  213. text-align: center;
  214. background: rgba(141, 194, 31, 0.8);
  215. }
  216. @media screen and (max-width: 767px) {
  217. #banner #banner-container ul {
  218. margin-top: 5vw;
  219. }
  220. }
  221. #banner #banner-container ul .nav-item {
  222. padding: 10px;
  223. }
  224. @media screen and (max-width: 767px) {
  225. #banner #banner-container ul .nav-item {
  226. padding: 6px;
  227. }
  228. }
  229. #banner #banner-container ul .nav-item .nav-item2 {
  230. position: relative;
  231. }
  232. #banner #banner-container ul .nav-item .nav-item2:after {
  233. content: url(../img/about/sec01/item-arrow.png);
  234. display: block;
  235. width: 80%;
  236. height: 5px;
  237. position: absolute;
  238. left: 12%;
  239. bottom: 0;
  240. -webkit-transition: all 0.3s;
  241. transition: all 0.3s;
  242. opacity: 0;
  243. }
  244. #banner #banner-container ul .nav-item .nav-item2 .after-nav {
  245. opacity: 1;
  246. }
  247. #banner #banner-container ul .nav-item .nav-item2:focus:after {
  248. width: 80%;
  249. opacity: 1;
  250. }
  251. #banner #banner-container .tab-content .condition {
  252. padding: 24px;
  253. font-size: 13px;
  254. padding-bottom: 10vw;
  255. }
  256. @media screen and (max-width: 767px) {
  257. #banner #banner-container .tab-content .condition {
  258. padding: 18px;
  259. }
  260. }
  261. #banner #banner-container .tab-content .idea {
  262. padding: 24px;
  263. font-size: 12px;
  264. padding-bottom: 10vw;
  265. background-size: contain;
  266. background-repeat: no-repeat;
  267. background-blend-mode: overlay;
  268. }
  269. #banner #banner-container .tab-content .contact {
  270. padding-bottom: 10vw;
  271. padding: 24px;
  272. font-size: 13px;
  273. background-size: contain;
  274. background-repeat: no-repeat;
  275. background-blend-mode: overlay;
  276. }
  277. #banner #banner-container .tab-content .contact a {
  278. text-decoration: none;
  279. color: #fff;
  280. }
  281. @media screen and (max-width: 767px) {
  282. #banner #banner-container .tab-content .contact {
  283. padding: 18px;
  284. }
  285. }
  286. #banner #banner-container .tab-content .sec02 .col-lg-4,
  287. #banner #banner-container .tab-content .sec03 .col-lg-4,
  288. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  289. position: relative;
  290. background: #80ab29;
  291. -webkit-transition: 0.3s ease-in-out;
  292. transition: 0.3s ease-in-out;
  293. cursor: pointer;
  294. }
  295. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m, #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-p-m,
  296. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec02-p-m,
  297. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m,
  298. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m,
  299. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-p-m {
  300. color: #fff;
  301. text-align: center;
  302. font-size: 14px;
  303. -webkit-transition: 0.3s;
  304. transition: 0.3s;
  305. -webkit-transition: 0.3s ease-in-out;
  306. transition: 0.3s ease-in-out;
  307. }
  308. @media screen and (min-width: 1025px) {
  309. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec02-p-m, #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-p-m,
  310. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec02-p-m,
  311. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m,
  312. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec02-p-m,
  313. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-p-m {
  314. position: absolute;
  315. top: 100px;
  316. left: 20px;
  317. font-size: 16px;
  318. opacity: 0;
  319. }
  320. }
  321. @media screen and (min-width: 1025px) {
  322. #banner #banner-container .tab-content .sec02 .col-lg-4 .sec03-p-m,
  323. #banner #banner-container .tab-content .sec03 .col-lg-4 .sec03-p-m,
  324. #banner #banner-container .tab-content .sec04 .col-lg-4 .sec03-p-m {
  325. position: absolute;
  326. top: 50px;
  327. left: 10px;
  328. opacity: 0;
  329. }
  330. }
  331. #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec02-p-m, #banner #banner-container .tab-content .sec02 .col-lg-4:hover .sec03-p-m,
  332. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec02-p-m,
  333. #banner #banner-container .tab-content .sec03 .col-lg-4:hover .sec03-p-m,
  334. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec02-p-m,
  335. #banner #banner-container .tab-content .sec04 .col-lg-4:hover .sec03-p-m {
  336. opacity: 1;
  337. }
  338. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  339. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img,
  340. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  341. opacity: 0.2;
  342. }
  343. @media screen and (max-width: 767px) {
  344. #banner #banner-container .tab-content .sec02 .col-lg-4:hover img,
  345. #banner #banner-container .tab-content .sec03 .col-lg-4:hover img,
  346. #banner #banner-container .tab-content .sec04 .col-lg-4:hover img {
  347. opacity: 1;
  348. }
  349. }
  350. @media screen and (max-width: 767px) {
  351. #banner #banner-container .tab-content .sec02 .col-lg-4,
  352. #banner #banner-container .tab-content .sec03 .col-lg-4,
  353. #banner #banner-container .tab-content .sec04 .col-lg-4 {
  354. background: none;
  355. }
  356. }
  357. #banner #banner-container .tab-content .sec02 .col-lg-4 img,
  358. #banner #banner-container .tab-content .sec03 .col-lg-4 img,
  359. #banner #banner-container .tab-content .sec04 .col-lg-4 img {
  360. opacity: 1;
  361. -webkit-transition: 0.3s ease-in-out;
  362. transition: 0.3s ease-in-out;
  363. }
  364. #banner #banner-container .tab-content .sec04 {
  365. background: rgba(0, 0, 0, 0.8);
  366. text-align: center;
  367. height: 600px;
  368. }
  369. @media screen and (max-width: 767px) {
  370. #banner #banner-container .tab-content .sec04 {
  371. height: 300px;
  372. }
  373. }
  374. #banner #banner-container .tab-content .sec04 p {
  375. letter-spacing: 5px;
  376. }
  377. #footer {
  378. background: #363636;
  379. text-align: center;
  380. width: 80vw;
  381. margin: 0 auto !important;
  382. }
  383. @media screen and (max-width: 767px) {
  384. #footer {
  385. width: 95vw;
  386. padding-bottom: 30vw;
  387. }
  388. }
  389. #footer p {
  390. color: #fff;
  391. }
  392. /*# sourceMappingURL=about.css.map */