style.css 5.9 KB

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