style.css 6.8 KB

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