style.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. html {
  10. min-height: 100%;
  11. height: auto;
  12. /*Image only BG fallback*/
  13. /*background = gradient + image pattern combo*/
  14. /* background:
  15. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  16. }
  17. body {
  18. font-family: "Montserrat", sans-serif;
  19. background-color: white;
  20. font-size: 1.05rem;
  21. }
  22. .ml {
  23. margin-left: 10px;
  24. }
  25. .mr {
  26. margin-right: 10px;
  27. }
  28. .mb {
  29. margin-bottom: 12px;
  30. }
  31. .top {
  32. margin-top: 20px;
  33. position: -webkit-sticky;
  34. position: sticky;
  35. top: 0;
  36. left: 50%;
  37. z-index: 20;
  38. background-color: inherit;
  39. }
  40. .copy {
  41. cursor: pointer;
  42. }
  43. .navbar {
  44. background-color: white;
  45. }
  46. .propertytitle {
  47. -webkit-text-stroke: 0.7px #fff;
  48. -moz-text-stroke: 0.7px #fff;
  49. }
  50. p {
  51. font-size: 24px;
  52. }
  53. .bgslider {
  54. position: relative;
  55. width: 100% !important;
  56. }
  57. ul {
  58. list-style-type: none;
  59. width: 100% !important;
  60. }
  61. ul > li {
  62. position: absolute;
  63. width: 100% !important;
  64. }
  65. ul > li:nth-child(3) {
  66. -webkit-animation: li3 12s infinite;
  67. animation: li3 12s infinite;
  68. }
  69. ul > li:nth-child(2) {
  70. -webkit-animation: li2 12s infinite;
  71. animation: li2 12s infinite;
  72. }
  73. ul > li:nth-child(1) {
  74. -webkit-animation: li1 12s infinite;
  75. animation: li1 12s infinite;
  76. }
  77. @-webkit-keyframes li3 {
  78. 0% {
  79. opacity: 1;
  80. }
  81. 35% {
  82. opacity: 0;
  83. }
  84. 75% {
  85. opacity: 0;
  86. }
  87. }
  88. @keyframes li3 {
  89. 0% {
  90. opacity: 1;
  91. }
  92. 35% {
  93. opacity: 0;
  94. }
  95. 75% {
  96. opacity: 0;
  97. }
  98. }
  99. @-webkit-keyframes li2 {
  100. 40% {
  101. opacity: 1;
  102. }
  103. 80% {
  104. opacity: 0;
  105. }
  106. 75% {
  107. opacity: 0;
  108. }
  109. }
  110. @keyframes li2 {
  111. 40% {
  112. opacity: 1;
  113. }
  114. 80% {
  115. opacity: 0;
  116. }
  117. 75% {
  118. opacity: 0;
  119. }
  120. }
  121. @-webkit-keyframes li1 {
  122. 80% {
  123. opacity: 1;
  124. }
  125. 95% {
  126. opacity: 0;
  127. }
  128. }
  129. @keyframes li1 {
  130. 80% {
  131. opacity: 1;
  132. }
  133. 95% {
  134. opacity: 0;
  135. }
  136. }
  137. .bg-item {
  138. display: none;
  139. }
  140. .bg-item2 {
  141. display: none;
  142. }
  143. .bg-item2 img {
  144. -webkit-animation-name: BgFadein;
  145. animation-name: BgFadein;
  146. -webkit-animation-duration: 3s;
  147. animation-duration: 3s;
  148. -webkit-animation-timing-function: ease-out;
  149. animation-timing-function: ease-out;
  150. }
  151. .bg-active {
  152. display: block;
  153. }
  154. @-webkit-keyframes BgFadein {
  155. 0% {
  156. opacity: 0.5;
  157. }
  158. 50% {
  159. opacity: 0.8;
  160. }
  161. 100% {
  162. opacity: 1;
  163. }
  164. }
  165. @keyframes BgFadein {
  166. 0% {
  167. opacity: 0.5;
  168. }
  169. 50% {
  170. opacity: 0.8;
  171. }
  172. 100% {
  173. opacity: 1;
  174. }
  175. }
  176. .sec-usecase .usecase-block {
  177. border: none;
  178. position: relative;
  179. background-color: transparent;
  180. }
  181. .sec-usecase .usecase-block::after {
  182. position: absolute;
  183. bottom: -1rem;
  184. left: 5%;
  185. width: 90%;
  186. height: 8rem;
  187. background-color: #FFEBE2;
  188. content: " ";
  189. z-index: -1;
  190. border-radius: 2rem;
  191. margin-left: auto;
  192. margin-right: auto;
  193. }
  194. .sec-usecase .usecase-block .usecase-imgfr {
  195. width: 85%;
  196. margin: 0 auto;
  197. height: 45vh;
  198. background-position: center center;
  199. background-size: contain;
  200. background-repeat: no-repeat;
  201. margin-bottom: 1.5rem;
  202. }
  203. .sec-usecase .usecase-block .usecase-sub {
  204. background-color: transparent;
  205. }
  206. .sec-usecase .usecase-block .usecase-sub i {
  207. color: #EA5413;
  208. }
  209. .sec-steps .container {
  210. width: 100%;
  211. }
  212. .sec-steps .steps-title {
  213. font-size: 3rem;
  214. text-align: center;
  215. letter-spacing: 1px;
  216. }
  217. .sec-steps .steps-title strong {
  218. font-size: 5rem;
  219. }
  220. .sec-steps .steps-block {
  221. padding: 0 1rem;
  222. display: -webkit-box;
  223. display: -ms-flexbox;
  224. display: flex;
  225. -webkit-box-orient: vertical;
  226. -webkit-box-direction: normal;
  227. -ms-flex-direction: column;
  228. flex-direction: column;
  229. -webkit-box-align: center;
  230. -ms-flex-align: center;
  231. align-items: center;
  232. -webkit-box-pack: center;
  233. -ms-flex-pack: center;
  234. justify-content: center;
  235. position: relative;
  236. }
  237. .sec-steps .steps-block::after {
  238. position: absolute;
  239. bottom: -1rem;
  240. left: 0;
  241. width: 100%;
  242. height: 15rem;
  243. background-color: #FFEBE2;
  244. content: " ";
  245. z-index: -1;
  246. border-radius: 2rem;
  247. }
  248. .sec-steps .steps-block .steps-imgfr {
  249. width: 85%;
  250. margin: 0 auto;
  251. height: 45vh;
  252. background-position: center center;
  253. background-size: contain;
  254. background-repeat: no-repeat;
  255. margin-bottom: 1.5rem;
  256. }
  257. .sec-steps .steps-block .steps-txt {
  258. display: -webkit-box;
  259. display: -ms-flexbox;
  260. display: flex;
  261. -webkit-box-align: center;
  262. -ms-flex-align: center;
  263. align-items: center;
  264. }
  265. .sec-steps .steps-block .steps-txt span {
  266. display: inline-block;
  267. width: 35px;
  268. height: 35px;
  269. background-color: #EA5413;
  270. color: white;
  271. font-size: 1.4rem;
  272. line-height: 35px;
  273. border-radius: 50%;
  274. text-align: center;
  275. margin-right: .6rem;
  276. }
  277. .sec-steps .steps-block .steps-txt .steps-sub {
  278. font-size: 1.6rem;
  279. }
  280. .sec-steps .step-videofr {
  281. width: 100%;
  282. }
  283. .sec-steps .step-videofr video {
  284. width: 100%;
  285. }
  286. .btn-dark {
  287. display: inline-block;
  288. text-decoration: none;
  289. color: white;
  290. border: 1px solid #EA5413;
  291. padding: 1rem 2.5rem;
  292. outline: none;
  293. background-color: #EA5413;
  294. margin-top: 4rem;
  295. border-radius: 3rem;
  296. font-size: 1.8rem;
  297. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  298. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  299. }
  300. /*# sourceMappingURL=style.css.map */