style.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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-m {
  229. padding-top: 10vw;
  230. }
  231. @media screen and (min-width: 1025px) {
  232. #banner #banner-container .banner-m {
  233. display: none;
  234. }
  235. }
  236. #banner #banner-container .banner-m .bannerm-1 {
  237. background: rgba(141, 194, 31, 0.8);
  238. }
  239. @media screen and (max-width: 767px) {
  240. #banner #banner-container .banner-m .bannerm-1 {
  241. margin: 0;
  242. }
  243. }
  244. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  245. font-size: 18px;
  246. }
  247. #banner #banner-container #sec01 {
  248. padding-top: 5vw;
  249. }
  250. @media screen and (max-width: 767px) {
  251. #banner #banner-container #sec01 {
  252. padding-top: 0;
  253. }
  254. }
  255. #banner #banner-container #sec01 .col-lg-2 {
  256. background: #80ab29;
  257. position: relative;
  258. -webkit-transition: 0.5s ease-in-out;
  259. transition: 0.5s ease-in-out;
  260. cursor: pointer;
  261. }
  262. #banner #banner-container #sec01 .col-lg-2 img {
  263. width: 100%;
  264. }
  265. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  266. color: #fff;
  267. text-align: center;
  268. font-size: 14px;
  269. font-weight: 900;
  270. -webkit-transition: 0.5s;
  271. transition: 0.5s;
  272. }
  273. @media screen and (max-width: 767px) {
  274. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  275. display: none;
  276. }
  277. }
  278. @media screen and (min-width: 1025px) {
  279. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  280. width: 100%;
  281. position: absolute;
  282. top: 40%;
  283. left: 0px;
  284. font-size: 16px;
  285. opacity: 0;
  286. }
  287. }
  288. #banner #banner-container #sec01 .col-lg-2:hover .sec02-p-m,
  289. #banner #banner-container #sec01 .col-lg-2:hover .sec03-p-m {
  290. opacity: 1;
  291. }
  292. #banner #banner-container #sec01 .col-lg-2:hover img {
  293. opacity: 0.2;
  294. }
  295. @media screen and (max-width: 767px) {
  296. #banner #banner-container #sec01 .col-lg-2:hover img {
  297. opacity: 1;
  298. }
  299. }
  300. #footer {
  301. background: #363636;
  302. text-align: center;
  303. width: 80vw;
  304. margin: 0 auto !important;
  305. }
  306. #footer a {
  307. text-decoration: none;
  308. color: #fff;
  309. }
  310. #footer p {
  311. padding: 15px;
  312. color: #fff;
  313. }
  314. @-webkit-keyframes Picture {
  315. 0% {
  316. -webkit-transform: scale(1.3);
  317. transform: scale(1.3);
  318. }
  319. 100% {
  320. -webkit-transform: scale(1);
  321. transform: scale(1);
  322. }
  323. }
  324. @keyframes Picture {
  325. 0% {
  326. -webkit-transform: scale(1.3);
  327. transform: scale(1.3);
  328. }
  329. 100% {
  330. -webkit-transform: scale(1);
  331. transform: scale(1);
  332. }
  333. }
  334. @-webkit-keyframes Picture2 {
  335. 0% {
  336. opacity: 0.5;
  337. }
  338. 100% {
  339. opacity: 1;
  340. }
  341. }
  342. @keyframes Picture2 {
  343. 0% {
  344. opacity: 0.5;
  345. }
  346. 100% {
  347. opacity: 1;
  348. }
  349. }
  350. /*# sourceMappingURL=style.css.map */