style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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. }
  186. @media screen and (max-width: 767px) {
  187. #banner #bannerdes-img .banner-img {
  188. height: 80vh;
  189. }
  190. }
  191. @media screen and (max-width: 767px) {
  192. #banner {
  193. background-size: 115vw;
  194. background-repeat: no-repeat;
  195. }
  196. }
  197. #banner #banner-container {
  198. width: 90vw;
  199. padding-top: 18vw;
  200. }
  201. @media screen and (max-width: 767px) {
  202. #banner #banner-container {
  203. padding-top: 0vw;
  204. width: 95vw;
  205. }
  206. }
  207. @media screen and (max-width: 767px) {
  208. #banner #banner-container .banner-des {
  209. display: none;
  210. }
  211. }
  212. #banner #banner-container .banner-des .banner-1 {
  213. background: rgba(141, 194, 31, 0.8);
  214. }
  215. @media screen and (max-width: 767px) {
  216. #banner #banner-container .banner-des .banner-1 {
  217. margin: 0;
  218. }
  219. }
  220. #banner #banner-container .banner-des .banner-1 .banner1-1 {
  221. font-size: 24px;
  222. }
  223. #banner #banner-container .banner-m {
  224. padding-top: 10vw;
  225. }
  226. @media screen and (min-width: 1025px) {
  227. #banner #banner-container .banner-m {
  228. display: none;
  229. }
  230. }
  231. #banner #banner-container .banner-m .bannerm-1 {
  232. background: rgba(141, 194, 31, 0.8);
  233. }
  234. @media screen and (max-width: 767px) {
  235. #banner #banner-container .banner-m .bannerm-1 {
  236. margin: 0;
  237. }
  238. }
  239. #banner #banner-container .banner-m .bannerm-1 .banner1-1 {
  240. font-size: 18px;
  241. }
  242. #banner #banner-container #sec01 {
  243. padding-top: 5vw;
  244. }
  245. @media screen and (max-width: 767px) {
  246. #banner #banner-container #sec01 {
  247. padding-top: 0;
  248. }
  249. }
  250. #banner #banner-container #sec01 .col-lg-2 {
  251. background: #80ab29;
  252. position: relative;
  253. -webkit-transition: 0.5s ease-in-out;
  254. transition: 0.5s ease-in-out;
  255. cursor: pointer;
  256. }
  257. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  258. color: #fff;
  259. text-align: center;
  260. font-size: 14px;
  261. font-weight: 900;
  262. -webkit-transition: 0.5s;
  263. transition: 0.5s;
  264. }
  265. @media screen and (max-width: 767px) {
  266. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  267. display: none;
  268. }
  269. }
  270. @media screen and (min-width: 1025px) {
  271. #banner #banner-container #sec01 .col-lg-2 .sec02-p-m {
  272. width: 100%;
  273. position: absolute;
  274. top: 70px;
  275. left: 0px;
  276. font-size: 16px;
  277. opacity: 0;
  278. }
  279. }
  280. #banner #banner-container #sec01 .col-lg-2:hover .sec02-p-m, #banner #banner-container #sec01 .col-lg-2:hover .sec03-p-m {
  281. opacity: 1;
  282. }
  283. #banner #banner-container #sec01 .col-lg-2:hover img {
  284. opacity: 0.2;
  285. }
  286. @media screen and (max-width: 767px) {
  287. #banner #banner-container #sec01 .col-lg-2:hover img {
  288. opacity: 1;
  289. }
  290. }
  291. #footer {
  292. background: #363636;
  293. text-align: center;
  294. width: 80vw;
  295. margin: 0 auto !important;
  296. }
  297. #footer a {
  298. text-decoration: none;
  299. color: #fff;
  300. }
  301. #footer p {
  302. padding: 15px;
  303. color: #fff;
  304. }
  305. /*# sourceMappingURL=style.css.map */