style.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  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. .bg-item {
  54. display: none;
  55. }
  56. .bg-item2 {
  57. display: none;
  58. }
  59. .bg-item2 img {
  60. -webkit-animation-name: BgFadein;
  61. animation-name: BgFadein;
  62. -webkit-animation-duration: 3s;
  63. animation-duration: 3s;
  64. -webkit-animation-timing-function: ease-out;
  65. animation-timing-function: ease-out;
  66. }
  67. .bg-active {
  68. display: block;
  69. }
  70. @-webkit-keyframes BgFadein {
  71. 0% {
  72. opacity: 0.5;
  73. }
  74. 50% {
  75. opacity: 0.8;
  76. }
  77. 100% {
  78. opacity: 1;
  79. }
  80. }
  81. @keyframes BgFadein {
  82. 0% {
  83. opacity: 0.5;
  84. }
  85. 50% {
  86. opacity: 0.8;
  87. }
  88. 100% {
  89. opacity: 1;
  90. }
  91. }
  92. .sec-usecase .usecase-block {
  93. border: none;
  94. position: relative;
  95. background-color: transparent;
  96. }
  97. .sec-usecase .usecase-block::after {
  98. position: absolute;
  99. bottom: -1rem;
  100. left: 5%;
  101. width: 90%;
  102. height: 8rem;
  103. background-color: #FFEBE2;
  104. content: " ";
  105. z-index: -1;
  106. border-radius: 2rem;
  107. margin-left: auto;
  108. margin-right: auto;
  109. }
  110. .sec-usecase .usecase-block .usecase-imgfr {
  111. width: 85%;
  112. margin: 0 auto;
  113. height: 45vh;
  114. background-position: center center;
  115. background-size: contain;
  116. background-repeat: no-repeat;
  117. margin-bottom: 1.5rem;
  118. }
  119. .sec-usecase .usecase-block .usecase-sub {
  120. background-color: transparent;
  121. }
  122. .sec-usecase .usecase-block .usecase-sub i {
  123. color: #EA5413;
  124. }
  125. .sec-steps .container {
  126. width: 100%;
  127. }
  128. .sec-steps .steps-title {
  129. font-size: 3rem;
  130. text-align: center;
  131. letter-spacing: 1px;
  132. }
  133. .sec-steps .steps-title strong {
  134. font-size: 5rem;
  135. }
  136. .sec-steps .steps-block {
  137. padding: 0 1rem;
  138. display: -webkit-box;
  139. display: -ms-flexbox;
  140. display: flex;
  141. -webkit-box-orient: vertical;
  142. -webkit-box-direction: normal;
  143. -ms-flex-direction: column;
  144. flex-direction: column;
  145. -webkit-box-align: center;
  146. -ms-flex-align: center;
  147. align-items: center;
  148. -webkit-box-pack: center;
  149. -ms-flex-pack: center;
  150. justify-content: center;
  151. position: relative;
  152. }
  153. .sec-steps .steps-block::after {
  154. position: absolute;
  155. bottom: -1rem;
  156. left: 0;
  157. width: 100%;
  158. height: 15rem;
  159. background-color: #FFEBE2;
  160. content: " ";
  161. z-index: -1;
  162. border-radius: 2rem;
  163. }
  164. .sec-steps .steps-block .steps-imgfr {
  165. width: 85%;
  166. margin: 0 auto;
  167. height: 45vh;
  168. background-position: center center;
  169. background-size: contain;
  170. background-repeat: no-repeat;
  171. margin-bottom: 1.5rem;
  172. }
  173. .sec-steps .steps-block .steps-txt {
  174. display: -webkit-box;
  175. display: -ms-flexbox;
  176. display: flex;
  177. -webkit-box-align: center;
  178. -ms-flex-align: center;
  179. align-items: center;
  180. }
  181. .sec-steps .steps-block .steps-txt span {
  182. display: inline-block;
  183. width: 35px;
  184. height: 35px;
  185. background-color: #EA5413;
  186. color: white;
  187. font-size: 1.4rem;
  188. line-height: 35px;
  189. border-radius: 50%;
  190. text-align: center;
  191. margin-right: .6rem;
  192. }
  193. .sec-steps .steps-block .steps-txt .steps-sub {
  194. font-size: 1.6rem;
  195. }
  196. .sec-steps .step-videofr {
  197. width: 100%;
  198. }
  199. .sec-steps .step-videofr video {
  200. width: 100%;
  201. }
  202. .btn-dark {
  203. text-decoration: none;
  204. color: white;
  205. border: 1px solid #EA5413;
  206. padding: 1rem 2.5rem;
  207. outline: none;
  208. background-color: #EA5413;
  209. margin-top: 4rem;
  210. border-radius: 3rem;
  211. font-size: 1.8rem;
  212. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  213. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  214. }
  215. /* sec-hero */
  216. .sec-hero {
  217. padding: 6rem 0;
  218. padding-bottom: 0;
  219. margin-bottom: 0 !important;
  220. }
  221. .sec-hero h1,
  222. .sec-hero h2,
  223. .sec-hero h3,
  224. .sec-hero h4,
  225. .sec-hero h5,
  226. .sec-hero h6,
  227. .sec-hero .h1,
  228. .sec-hero .h2,
  229. .sec-hero .h3,
  230. .sec-hero .h4,
  231. .sec-hero .h5,
  232. .sec-hero .h6 {
  233. font-family: "Roboto", Helvetica, Arial, sans-serif;
  234. font-weight: 900;
  235. line-height: 1.1;
  236. color: #333333;
  237. }
  238. .sec-hero .hero-title {
  239. font-size: 3.5rem;
  240. letter-spacing: 1px;
  241. padding-top: 0rem;
  242. }
  243. .sec-hero .hero-txt {
  244. font-size: 1.5em;
  245. letter-spacing: 1px;
  246. }
  247. .sec-hero .hero-btn {
  248. border: none;
  249. outline: none;
  250. border-radius: 3rem;
  251. margin-top: 2rem;
  252. padding: 1rem 2.5rem;
  253. background: linear-gradient(20deg, #EA5413, #920783);
  254. color: white;
  255. font-size: 1.8rem;
  256. -webkit-box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  257. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  258. }
  259. .hero-orange {
  260. position: absolute;
  261. left: 10%;
  262. top: 0%;
  263. }
  264. .hero-purple {
  265. position: absolute;
  266. right: 0%;
  267. top: -10%;
  268. z-index: -1;
  269. width: 180px;
  270. }
  271. .hero-orange-s {
  272. position: absolute;
  273. left: -5%;
  274. bottom: 13%;
  275. z-index: -1;
  276. -webkit-animation: floating 8s infinite ease-in-out;
  277. animation: floating 8s infinite ease-in-out;
  278. width: 80px;
  279. }
  280. .hero-textgrp {
  281. z-index: 3;
  282. position: absolute;
  283. left: 5%;
  284. top: 10%;
  285. -webkit-animation: floating3 6s infinite 1s ease-in-out;
  286. animation: floating3 6s infinite 1s ease-in-out;
  287. width: 300px;
  288. }
  289. .hero-video {
  290. z-index: 3;
  291. position: absolute;
  292. right: 3%;
  293. top: -5%;
  294. -webkit-animation: floating 8s infinite 1.5s ease-in-out;
  295. animation: floating 8s infinite 1.5s ease-in-out;
  296. width: 120px;
  297. }
  298. .hero-amplify {
  299. z-index: 3;
  300. position: absolute;
  301. bottom: 5%;
  302. right: 0;
  303. -webkit-animation: floating2 5s infinite ease-in-out;
  304. animation: floating2 5s infinite ease-in-out;
  305. width: 120px;
  306. }
  307. .hero-imgfr {
  308. width: 100%;
  309. height: 95%;
  310. }
  311. .hero-imgfr img {
  312. width: 100%;
  313. }
  314. @-webkit-keyframes floating {
  315. from {
  316. -webkit-transform: translate(0px, 0);
  317. transform: translate(0px, 0);
  318. }
  319. 65% {
  320. -webkit-transform: translate(25px, 0);
  321. transform: translate(25px, 0);
  322. }
  323. to {
  324. -webkit-transform: translate(0, 0px);
  325. transform: translate(0, 0px);
  326. }
  327. }
  328. @keyframes floating {
  329. from {
  330. -webkit-transform: translate(0px, 0);
  331. transform: translate(0px, 0);
  332. }
  333. 65% {
  334. -webkit-transform: translate(25px, 0);
  335. transform: translate(25px, 0);
  336. }
  337. to {
  338. -webkit-transform: translate(0, 0px);
  339. transform: translate(0, 0px);
  340. }
  341. }
  342. @-webkit-keyframes floating3 {
  343. from {
  344. -webkit-transform: translate(0px, 0);
  345. transform: translate(0px, 0);
  346. }
  347. 65% {
  348. -webkit-transform: translate(-20px, 0);
  349. transform: translate(-20px, 0);
  350. }
  351. to {
  352. -webkit-transform: translate(0, 0px);
  353. transform: translate(0, 0px);
  354. }
  355. }
  356. @keyframes floating3 {
  357. from {
  358. -webkit-transform: translate(0px, 0);
  359. transform: translate(0px, 0);
  360. }
  361. 65% {
  362. -webkit-transform: translate(-20px, 0);
  363. transform: translate(-20px, 0);
  364. }
  365. to {
  366. -webkit-transform: translate(0, 0px);
  367. transform: translate(0, 0px);
  368. }
  369. }
  370. @-webkit-keyframes floating2 {
  371. from {
  372. -webkit-transform: translate(0px, 0);
  373. transform: translate(0px, 0);
  374. }
  375. 65% {
  376. -webkit-transform: translate(0px, 10px);
  377. transform: translate(0px, 10px);
  378. }
  379. to {
  380. -webkit-transform: translate(0, 0px);
  381. transform: translate(0, 0px);
  382. }
  383. }
  384. @keyframes floating2 {
  385. from {
  386. -webkit-transform: translate(0px, 0);
  387. transform: translate(0px, 0);
  388. }
  389. 65% {
  390. -webkit-transform: translate(0px, 10px);
  391. transform: translate(0px, 10px);
  392. }
  393. to {
  394. -webkit-transform: translate(0, 0px);
  395. transform: translate(0, 0px);
  396. }
  397. }
  398. /* sec-features */
  399. .ai-spokesgril {
  400. margin-top: 50px;
  401. }
  402. .sec-features {
  403. padding: 5rem 0;
  404. }
  405. .sec-features .row {
  406. margin: 8rem 0;
  407. }
  408. .sec-features .row:nth-of-type(1) {
  409. margin: 4rem 0;
  410. }
  411. .sec-features .row:nth-of-type(4) {
  412. margin-bottom: 0;
  413. }
  414. .features-orangel {
  415. position: absolute;
  416. left: -150px;
  417. top: 5%;
  418. z-index: -1;
  419. }
  420. .features-purpler {
  421. position: absolute;
  422. right: -150px;
  423. top: 5%;
  424. z-index: -1;
  425. }
  426. .features-purplel {
  427. position: absolute;
  428. left: -150px;
  429. top: 5%;
  430. z-index: -1;
  431. }
  432. .features-oranger {
  433. position: absolute;
  434. right: -150px;
  435. top: 5%;
  436. z-index: -1;
  437. }
  438. .sec-features .row .d-block {
  439. display: none;
  440. }
  441. .sec-features .features-col {
  442. position: relative;
  443. }
  444. .sec-features .features-col .features-block {
  445. position: absolute;
  446. left: 10rem;
  447. top: 6rem;
  448. display: -webkit-box;
  449. display: -ms-flexbox;
  450. display: flex;
  451. opacity: 0;
  452. -webkit-transition: all .8s;
  453. transition: all .8s;
  454. }
  455. .sec-features .features-col .features-block h3 {
  456. font-family: "Roboto", Helvetica, Arial, sans-serif;
  457. font-weight: 900;
  458. line-height: 1.1;
  459. color: #333333;
  460. }
  461. .sec-features .features-col .block-right {
  462. -webkit-transform: translateX(-30%) scale(0.95);
  463. transform: translateX(-30%) scale(0.95);
  464. }
  465. .sec-features .features-col .block-left {
  466. -webkit-transform: translateX(30%) scale(0.95);
  467. transform: translateX(30%) scale(0.95);
  468. }
  469. .sec-features .features-col .features-block.active {
  470. opacity: 1;
  471. -webkit-transform: translateX(0%) scale(1);
  472. transform: translateX(0%) scale(1);
  473. }
  474. .sec-features .features-num {
  475. display: inline-block;
  476. font-size: 14rem;
  477. color: #F0F0F0;
  478. }
  479. .sec-features .features-title {
  480. font-size: 3rem;
  481. text-align: center;
  482. letter-spacing: 1px;
  483. padding-bottom: 6px;
  484. border-bottom: 8px solid #EA5413;
  485. display: inline-block;
  486. }
  487. .sec-features .features-title strong {
  488. font-size: 5rem;
  489. }
  490. .sec-features .features-imgfr {
  491. width: 100%;
  492. }
  493. .sec-features .features-imgfr video {
  494. width: 100%;
  495. }
  496. .sec-features .features-list {
  497. text-align: left;
  498. }
  499. .features-list {
  500. padding-left: 40px;
  501. font-size: 18px;
  502. }
  503. .sec-blogtab {
  504. padding-bottom: 5rem;
  505. }
  506. .blog-tabs {
  507. display: -webkit-box;
  508. display: -ms-flexbox;
  509. display: flex;
  510. -webkit-box-align: center;
  511. -ms-flex-align: center;
  512. align-items: center;
  513. }
  514. .blogtab-title {
  515. font-size: 3rem;
  516. letter-spacing: 1px;
  517. padding-bottom: 6px;
  518. border-bottom: 8px solid #EA5413;
  519. display: inline-block;
  520. text-align: center;
  521. }
  522. .blog-tabs .blog-tabs-nav {
  523. width: 35%;
  524. background-color: #F0F0F0;
  525. padding: 4rem 2.5rem;
  526. list-style: none;
  527. -webkit-box-shadow: 0 2px 5px -2px #adadad;
  528. box-shadow: 0 2px 5px -2px #adadad;
  529. text-align: left;
  530. }
  531. .blog-tabs .blog-tabs-nav li {
  532. padding: 10px;
  533. border-bottom: 1px dashed grey;
  534. }
  535. .blog-tabs .blog-tabs-nav li a {
  536. color: #EA5413;
  537. }
  538. .blog-tabs .blog-tabs-stage {
  539. width: 65%;
  540. padding: 3.5rem;
  541. padding-bottom: 6rem;
  542. -webkit-box-shadow: 1px 1px 10px 2px grey;
  543. box-shadow: 1px 1px 10px 2px grey;
  544. height: 48rem;
  545. overflow: hidden;
  546. text-align: left;
  547. position: relative;
  548. }
  549. .blog-tab-box {
  550. height: 90%;
  551. overflow: scroll;
  552. }
  553. .blog-tabs .blog-tabs-stage .blog-txt {
  554. font-size: 1.6rem;
  555. }
  556. .btn-light {
  557. color: black;
  558. border: 1px solid #EA5413;
  559. padding: 1rem 2.5rem;
  560. outline: none;
  561. background-color: white;
  562. margin-top: 4rem;
  563. border-radius: 3rem;
  564. font-size: 1.8rem;
  565. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  566. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  567. }
  568. .btn-dark {
  569. text-decoration: none;
  570. color: white;
  571. border: 1px solid #EA5413;
  572. padding: 1rem 2.5rem;
  573. outline: none;
  574. background-color: #EA5413;
  575. margin-top: 4rem;
  576. border-radius: 3rem;
  577. font-size: 1.8rem;
  578. -webkit-box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  579. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  580. }
  581. .blog-tabs .btn-light {
  582. margin-top: 1.5rem;
  583. color: #EA5413;
  584. position: absolute;
  585. bottom: 1rem;
  586. left: 3.5rem;
  587. }
  588. /*# sourceMappingURL=style.css.map */