style.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. @charset "UTF-8";
  2. /* 共通樣式 */
  3. :root {
  4. --main-color: #005bac;
  5. --sub-color: #00b9ef;
  6. }
  7. * {
  8. letter-spacing: 1px;
  9. font-weight: 300;
  10. font-family: "Noto Sans TC", sans-serif !important;
  11. }
  12. .navbar {
  13. box-shadow: 1px 1px 10px #ccc;
  14. }
  15. .navbar .navbar-collapse {
  16. flex-grow: 0;
  17. }
  18. p,
  19. li {
  20. line-height: 32px;
  21. }
  22. ul {
  23. list-style: none;
  24. }
  25. img {
  26. width: 100%;
  27. height: auto;
  28. }
  29. .navbar {
  30. position: fixed;
  31. right: 0;
  32. left: 0;
  33. top: 0;
  34. z-index: 1000;
  35. }
  36. .navbar .navbar-nav li {
  37. margin: 0 3px;
  38. }
  39. #all {
  40. overflow: hidden;
  41. }
  42. .logo {
  43. max-width: 400px;
  44. }
  45. .title {
  46. font-size: 36px;
  47. text-align: center;
  48. color: var(--main-color);
  49. }
  50. .sub-title {
  51. display: block;
  52. margin: 20px auto 80px;
  53. text-align: center;
  54. color: #64646c;
  55. font-weight: 300;
  56. line-height: 28px;
  57. }
  58. #about,
  59. #service,
  60. #returns,
  61. #recruit {
  62. padding: 100px 0;
  63. }
  64. .click-btn {
  65. margin-top: 50px;
  66. display: flex;
  67. justify-content: center;
  68. }
  69. .click-btn a {
  70. position: relative;
  71. padding: 15px 40px;
  72. text-decoration: none;
  73. border-radius: 100px;
  74. box-shadow: 3px 5px 12px #ccc;
  75. background-image: linear-gradient(20deg, var(--main-color) 20%, var(--sub-color) 75%);
  76. }
  77. .click-btn a::before {
  78. position: absolute;
  79. content: "";
  80. inset: 0;
  81. border-radius: 100px;
  82. background-image: linear-gradient(20deg, var(--main-color) 95%, var(--sub-color) 75%);
  83. opacity: 0;
  84. transition: opacity 0.3s linear;
  85. }
  86. .click-btn a:hover::before {
  87. opacity: 1;
  88. }
  89. .click-btn a img {
  90. position: absolute;
  91. width: 35px;
  92. bottom: -10px;
  93. right: -5px;
  94. }
  95. .click-btn a span {
  96. position: relative;
  97. z-index: 100;
  98. color: #fff;
  99. font-size: 20px;
  100. font-weight: 500;
  101. letter-spacing: 3px;
  102. }
  103. /* header Start */
  104. #header h2 {
  105. font-size: 36px;
  106. font-weight: 500;
  107. }
  108. @media (max-width: 1200px) {
  109. #header h2 {
  110. font-size: 32px;
  111. }
  112. }
  113. @media (max-width: 991px) {
  114. #header h2 {
  115. font-size: 28px;
  116. }
  117. }
  118. #header p {
  119. font-size: 18px;
  120. }
  121. #header a {
  122. display: inline-block;
  123. color: #fff;
  124. margin-top: 50px;
  125. padding: 15px 45px;
  126. font-weight: 400;
  127. border: none;
  128. border-radius: 100px;
  129. box-shadow: 3px 5px 12px #ccc;
  130. background: linear-gradient(20deg, var(--main-color) 20%, var(--sub-color) 75%);
  131. transition: all 0.3s;
  132. text-decoration: none;
  133. }
  134. #header a:hover {
  135. transform: translate(0px, -5px);
  136. }
  137. #header section {
  138. padding: 30px 60px;
  139. display: inline-block;
  140. border-radius: 10px;
  141. border: 1px solid #ccc;
  142. line-height: 26px;
  143. }
  144. #header strong {
  145. font-size: 30px;
  146. font-weight: 700;
  147. margin-bottom: 15px;
  148. display: inline-block;
  149. }
  150. #header .line {
  151. margin-left: 20px;
  152. }
  153. #header .line::after {
  154. content: "";
  155. display: inline-block;
  156. width: 50px;
  157. height: 2px;
  158. background: #000;
  159. position: relative;
  160. top: -10px;
  161. left: -17px;
  162. margin-right: -10px;
  163. }
  164. /* header End */
  165. /* about Start */
  166. #about {
  167. margin-top: 50px;
  168. background-color: #f8f9fa;
  169. }
  170. #about h4 {
  171. font-size: 26px;
  172. font-weight: 500;
  173. margin-bottom: 20px;
  174. }
  175. /* about End */
  176. /* service Start */
  177. #service h4 {
  178. padding: 8px 28px;
  179. margin-bottom: 20px;
  180. display: inline-block;
  181. color: #fff;
  182. font-size: 20px;
  183. font-weight: 500;
  184. border-radius: 10px;
  185. background: var(--sub-color);
  186. }
  187. #service h5 {
  188. line-height: 32px;
  189. }
  190. #service ul li img {
  191. width: 18px;
  192. margin-bottom: -3px;
  193. }
  194. /* service End */
  195. /* returns Start */
  196. #returns {
  197. background-color: #f8f9fa;
  198. }
  199. #returns section {
  200. display: flex;
  201. flex-direction: column;
  202. align-items: center;
  203. }
  204. #returns section h5 {
  205. margin: auto;
  206. padding: 10px 20px;
  207. display: inline-block;
  208. color: #fff;
  209. text-align: center;
  210. border-radius: 10px;
  211. background: var(--sub-color);
  212. }
  213. #returns section small {
  214. margin: 15px 0;
  215. color: #64646c;
  216. }
  217. /* returns End */
  218. /* footer Start */
  219. #recruit h4 {
  220. font-size: 20px;
  221. margin-bottom: 5px;
  222. }
  223. #recruit li {
  224. margin: 30px 0;
  225. }
  226. #recruit .arrow {
  227. width: 20px;
  228. -o-object-fit: contain;
  229. object-fit: contain;
  230. margin-right: 10px;
  231. }
  232. /* returns End */
  233. /* footer Start */
  234. .footer {
  235. color: var(--main-color);
  236. background: #eeeded;
  237. }
  238. .footer h2 {
  239. font-size: 28px;
  240. }
  241. .footer ul li {
  242. margin: 15px 0;
  243. }
  244. .footer ul li a {
  245. padding-bottom: 3px;
  246. transition: border-color 0.5s ease;
  247. text-decoration: none;
  248. color: var(--main-color);
  249. border-bottom: 1px solid transparent;
  250. }
  251. .footer ul li a:hover {
  252. border-bottom: 1px solid var(--main-color);
  253. }
  254. .footer h3 {
  255. padding: 15px 0;
  256. margin-bottom: 0;
  257. color: #fff;
  258. font-size: 16px;
  259. font-weight: 300;
  260. text-align: center;
  261. background-color: var(--main-color);
  262. }
  263. .footer img {
  264. margin-bottom: 10px;
  265. max-width: 500px;
  266. }
  267. @media (max-width: 767px) {
  268. .footer img {
  269. margin-bottom: 20px;
  270. }
  271. }
  272. .footer .content {
  273. padding: 50px 100px 35px;
  274. display: flex;
  275. justify-content: space-between;
  276. }
  277. @media (max-width: 767px) {
  278. .footer .content {
  279. padding: 50px 50px 35px;
  280. align-items: center;
  281. flex-direction: column;
  282. }
  283. }
  284. /* footer End *//*# sourceMappingURL=style.css.map */