style.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: 微軟正黑體;
  6. }
  7. $moblie: 767px;
  8. $desktop: 1025px;
  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. // basic reset
  18. body {
  19. font-family: "Montserrat", sans-serif;
  20. background-color: white;
  21. font-size: 1.05rem;
  22. }
  23. .ml {
  24. margin-left: 10px;
  25. }
  26. .mr {
  27. margin-right: 10px;
  28. }
  29. .mb {
  30. margin-bottom: 12px;
  31. }
  32. .top {
  33. margin-top: 20px;
  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. animation: li3 12s infinite;
  67. }
  68. ul>li:nth-child(2){
  69. animation: li2 12s infinite;
  70. }
  71. ul>li:nth-child(1){
  72. animation: li1 12s infinite;
  73. }
  74. @keyframes li3{
  75. 0%{
  76. opacity: 1;
  77. }
  78. 35%{
  79. opacity: 0;
  80. }
  81. 75%{
  82. opacity: 0;
  83. }
  84. }
  85. @keyframes li2{
  86. 40%{
  87. opacity: 1;
  88. }
  89. 80%{
  90. opacity: 0;
  91. }
  92. 75%{
  93. opacity: 0;
  94. }
  95. }
  96. @keyframes li1{
  97. 80%{
  98. opacity: 1;
  99. }
  100. 95%{
  101. opacity: 0;
  102. }
  103. }
  104. .bg-item{
  105. display: none;
  106. // img{
  107. // // opacity: 0;
  108. // // animation-name:BgFadein;
  109. // // animation-duration: 5s;
  110. // // animation-delay: -3s;
  111. // // animation-fill-mode:forwards;
  112. // // animation-fill-mode:backwards;
  113. // // animation-timing-function:ease-out;
  114. // }
  115. }
  116. .bg-item2{
  117. display: none;
  118. img{
  119. animation-name:BgFadein;
  120. animation-duration: 3s;
  121. animation-timing-function:ease-out;
  122. }
  123. }
  124. .bg-active{
  125. display: block;
  126. }
  127. @keyframes BgFadein {
  128. 0% {
  129. opacity: 0.5;
  130. }
  131. 50% {opacity: 0.8;}
  132. // 50% {opacity: 1;}
  133. 100%{
  134. opacity: 1;
  135. }
  136. }
  137. // sec-usecase
  138. .sec-usecase {
  139. .usecase-block {
  140. border: none;
  141. position: relative;
  142. background-color: transparent;
  143. &::after {
  144. position: absolute;
  145. bottom: -1rem;
  146. left: 5%;
  147. width: 90%;
  148. height: 8rem;
  149. background-color: #FFEBE2;
  150. content: " ";
  151. z-index: -1;
  152. border-radius: 2rem;
  153. margin-left: auto;
  154. margin-right: auto;
  155. }
  156. .usecase-imgfr {
  157. width: 85%;
  158. margin: 0 auto;
  159. height: 45vh;
  160. background-position: center center;
  161. background-size: contain;
  162. background-repeat: no-repeat;
  163. margin-bottom: 1.5rem;
  164. }
  165. .usecase-sub {
  166. background-color: transparent;
  167. i {
  168. color: #EA5413;
  169. }
  170. }
  171. }
  172. }
  173. .sec-steps {
  174. .container {
  175. width: 100%;
  176. }
  177. .steps-title {
  178. font-size: 3rem;
  179. text-align: center;
  180. letter-spacing: 1px;
  181. }
  182. .steps-title strong {
  183. font-size: 5rem;
  184. }
  185. .steps-block {
  186. padding: 0 1rem;
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. justify-content: center;
  191. position: relative;
  192. &::after {
  193. position: absolute;
  194. bottom: -1rem;
  195. left: 0;
  196. width: 100%;
  197. height: 15rem;
  198. background-color: #FFEBE2;
  199. content: " ";
  200. z-index: -1;
  201. border-radius: 2rem;
  202. }
  203. .steps-imgfr {
  204. width: 85%;
  205. margin: 0 auto;
  206. height: 45vh;
  207. background-position: center center;
  208. background-size: contain;
  209. background-repeat: no-repeat;
  210. margin-bottom: 1.5rem;
  211. }
  212. .steps-txt {
  213. display: flex;
  214. align-items: center;
  215. span {
  216. display: inline-block;
  217. width: 35px;
  218. height: 35px;
  219. background-color: #EA5413;
  220. color: white;
  221. font-size: 1.4rem;
  222. line-height: 35px;
  223. border-radius: 50%;
  224. text-align: center;
  225. margin-right: .6rem;
  226. }
  227. .steps-sub {
  228. font-size: 1.6rem;
  229. }
  230. }
  231. }
  232. .step-videofr {
  233. width: 100%;
  234. }
  235. .step-videofr video {
  236. width: 100%;
  237. }
  238. }
  239. .btn-dark {
  240. display: inline-block;
  241. text-decoration: none;
  242. color: white;
  243. border: 1px solid #EA5413;
  244. padding: 1rem 2.5rem;
  245. outline: none;
  246. background-color: #EA5413;
  247. margin-top: 4rem;
  248. border-radius: 3rem;
  249. font-size: 1.8rem;
  250. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  251. }