style.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  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% {
  132. opacity: 0.8;
  133. }
  134. // 50% {opacity: 1;}
  135. 100% {
  136. opacity: 1;
  137. }
  138. }
  139. // sec-usecase
  140. .sec-usecase {
  141. .usecase-block {
  142. border: none;
  143. position: relative;
  144. background-color: transparent;
  145. &::after {
  146. position: absolute;
  147. bottom: -1rem;
  148. left: 5%;
  149. width: 90%;
  150. height: 8rem;
  151. background-color: #ffebe2;
  152. content: " ";
  153. z-index: -1;
  154. border-radius: 2rem;
  155. margin-left: auto;
  156. margin-right: auto;
  157. }
  158. .usecase-imgfr {
  159. width: 85%;
  160. margin: 0 auto;
  161. height: 45vh;
  162. background-position: center center;
  163. background-size: contain;
  164. background-repeat: no-repeat;
  165. margin-bottom: 1.5rem;
  166. }
  167. .usecase-sub {
  168. background-color: transparent;
  169. i {
  170. color: #ea5413;
  171. }
  172. }
  173. }
  174. }
  175. .sec-steps {
  176. .container {
  177. width: 100%;
  178. }
  179. .steps-title {
  180. font-size: 3rem;
  181. text-align: center;
  182. letter-spacing: 1px;
  183. }
  184. .steps-title strong {
  185. font-size: 5rem;
  186. }
  187. .steps-block {
  188. padding: 0 1rem;
  189. display: flex;
  190. flex-direction: column;
  191. align-items: center;
  192. justify-content: center;
  193. position: relative;
  194. &::after {
  195. position: absolute;
  196. bottom: -1rem;
  197. left: 0;
  198. width: 100%;
  199. height: 15rem;
  200. background-color: #ffebe2;
  201. content: " ";
  202. z-index: -1;
  203. border-radius: 2rem;
  204. }
  205. .steps-imgfr {
  206. width: 85%;
  207. margin: 0 auto;
  208. height: 45vh;
  209. background-position: center center;
  210. background-size: contain;
  211. background-repeat: no-repeat;
  212. margin-bottom: 1.5rem;
  213. }
  214. .steps-txt {
  215. display: flex;
  216. align-items: center;
  217. span {
  218. display: inline-block;
  219. width: 35px;
  220. height: 35px;
  221. background-color: #ea5413;
  222. color: white;
  223. font-size: 1.4rem;
  224. line-height: 35px;
  225. border-radius: 50%;
  226. text-align: center;
  227. margin-right: 0.6rem;
  228. }
  229. .steps-sub {
  230. font-size: 1.6rem;
  231. }
  232. }
  233. }
  234. .step-videofr {
  235. width: 100%;
  236. }
  237. .step-videofr video {
  238. width: 100%;
  239. }
  240. }
  241. .btn-dark {
  242. display: inline-block;
  243. text-decoration: none;
  244. color: white;
  245. border: 1px solid #ea5413;
  246. padding: 1rem 2.5rem;
  247. outline: none;
  248. background-color: #ea5413;
  249. margin-top: 4rem;
  250. border-radius: 3rem;
  251. font-size: 1.8rem;
  252. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  253. }
  254. /* sec-hero */
  255. .sec-hero {
  256. padding: 6rem 0;
  257. padding-bottom: 0;
  258. margin-bottom: 0 !important;
  259. h1,
  260. h2,
  261. h3,
  262. h4,
  263. h5,
  264. h6,
  265. .h1,
  266. .h2,
  267. .h3,
  268. .h4,
  269. .h5,
  270. .h6 {
  271. font-family: "Roboto", Helvetica, Arial, sans-serif;
  272. font-weight: 900;
  273. line-height: 1.1;
  274. color: #e95412;
  275. }
  276. }
  277. .sec-hero .hero-title {
  278. font-size: 48px;
  279. letter-spacing: 1px;
  280. padding-top: 0rem;
  281. }
  282. .sec-hero .hero-txt {
  283. font-size:30px;
  284. letter-spacing: 1px;
  285. }
  286. .sec-hero .hero-btn {
  287. border: none;
  288. outline: none;
  289. border-radius: 3rem;
  290. margin-top: 2rem;
  291. padding: 0.5rem 2.5rem;
  292. // background: linear-gradient(20deg, #ea5413, #920783);
  293. background:#e95412 ;
  294. color: white;
  295. font-size: 1.8rem;
  296. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  297. }
  298. .hero-orange {
  299. position: absolute;
  300. left: 10%;
  301. top: 0%;
  302. }
  303. .hero-purple {
  304. position: absolute;
  305. right: 0%;
  306. top: -10%;
  307. z-index: -1;
  308. width: 180px;
  309. }
  310. .hero-orange-s {
  311. position: absolute;
  312. left: -5%;
  313. bottom: 13%;
  314. z-index: -1;
  315. animation: floating 8s infinite ease-in-out;
  316. width: 80px;
  317. }
  318. .hero-slide{
  319. width: 100px;
  320. z-index: 3;
  321. position: absolute;
  322. top: 1%;
  323. left: -1%;
  324. animation: floating2 5s infinite ease-in-out;
  325. }
  326. .hero-textgrp {
  327. z-index: 3;
  328. position: absolute;
  329. left: -10%;
  330. bottom: 10%;
  331. animation: floating3 6s infinite 1s ease-in-out;
  332. width: 300px;
  333. }
  334. .hero-aips{
  335. z-index: 3;
  336. position: absolute;
  337. right: 0%;
  338. bottom: 10%;
  339. animation: floating3 6s infinite 1s ease-in-out;
  340. width: 250px;
  341. }
  342. .hero-video {
  343. z-index: 3;
  344. position: absolute;
  345. right: 10%;
  346. top: -10%;
  347. animation: floating 8s infinite 1.5s ease-in-out;
  348. width: 120px;
  349. }
  350. .hero-amplify {
  351. z-index: 3;
  352. position: absolute;
  353. bottom: 5%;
  354. right: 0;
  355. animation: floating2 5s infinite ease-in-out;
  356. width: 120px;
  357. }
  358. .hero-imgfr {
  359. width: 100%;
  360. height: 95%;
  361. }
  362. .hero-imgfr img {
  363. width: 100%;
  364. }
  365. @keyframes floating {
  366. from {
  367. transform: translate(0px, 0);
  368. }
  369. 65% {
  370. transform: translate(25px, 0);
  371. }
  372. to {
  373. transform: translate(0, -0px);
  374. }
  375. }
  376. @keyframes floating3 {
  377. from {
  378. transform: translate(0px, 0);
  379. }
  380. 65% {
  381. transform: translate(-20px, 0);
  382. }
  383. to {
  384. transform: translate(0, -0px);
  385. }
  386. }
  387. @keyframes floating2 {
  388. from {
  389. transform: translate(0px, 0);
  390. }
  391. 65% {
  392. transform: translate(0px, 30px);
  393. }
  394. to {
  395. transform: translate(0, -0px);
  396. }
  397. }
  398. .nav-link {
  399. border: none;
  400. outline: none;
  401. background-color: transparent;
  402. color: black;
  403. }
  404. /* sec-features */
  405. .ai-spokesgril {
  406. display: flex;
  407. align-items: center;
  408. justify-content: space-between;
  409. .nav-link {
  410. border: none;
  411. outline: none;
  412. background-color: transparent;
  413. color: black;
  414. }
  415. .dropdown-toggle {
  416. text-decoration: none;
  417. &:hover {
  418. text-decoration: none;
  419. }
  420. }
  421. }
  422. .sec-features {
  423. padding: 5rem 0;
  424. }
  425. .sec-features .row {
  426. margin: 8rem 0;
  427. }
  428. .sec-features .row:nth-of-type(1) {
  429. margin: 4rem 0;
  430. }
  431. .sec-features .row:nth-of-type(4) {
  432. margin-bottom: 0;
  433. }
  434. .features-orangel {
  435. position: absolute;
  436. left: -150px;
  437. top: 5%;
  438. z-index: -1;
  439. }
  440. .features-purpler {
  441. position: absolute;
  442. right: -150px;
  443. top: 5%;
  444. z-index: -1;
  445. }
  446. .features-purplel {
  447. position: absolute;
  448. left: -150px;
  449. top: 5%;
  450. z-index: -1;
  451. }
  452. .features-oranger {
  453. position: absolute;
  454. right: -150px;
  455. top: 5%;
  456. z-index: -1;
  457. }
  458. .sec-features .row .d-block {
  459. display: none;
  460. }
  461. .sec-features .features-col {
  462. position: relative;
  463. }
  464. .sec-features .features-col .features-block {
  465. position: absolute;
  466. // left: 10rem;
  467. // top: 6rem;
  468. display: flex;
  469. opacity: 0;
  470. transition: all 0.8s;
  471. }
  472. .sec-features{
  473. h3 {
  474. font-family: "Roboto", Helvetica, Arial, sans-serif;
  475. font-weight: 900;
  476. line-height: 1.1;
  477. color:#e95412;
  478. }
  479. }
  480. .sec-features .features-col .block-right {
  481. transform: translateX(-30%) scale(0.95);
  482. }
  483. .sec-features .features-col .block-left {
  484. transform: translateX(30%) scale(0.95);
  485. }
  486. .sec-features .features-col .features-block.active {
  487. opacity: 1;
  488. transform: translateX(0%) scale(1);
  489. }
  490. .sec-features .features-num {
  491. display: inline-block;
  492. font-size: 14rem;
  493. color: #f0f0f0;
  494. }
  495. .sec-features .features-title {
  496. font-size: 3rem;
  497. text-align: center;
  498. letter-spacing: 1px;
  499. padding-bottom: 6px;
  500. border-bottom: 8px solid #ea5413;
  501. display: inline-block;
  502. }
  503. .sec-features .features-title strong {
  504. font-size: 5rem;
  505. }
  506. .sec-features .features-imgfr {
  507. width: 100%;
  508. }
  509. .sec-features .features-imgfr video {
  510. width: 100%;
  511. }
  512. .sec-features .features-list {
  513. text-align: left;
  514. }
  515. .features-list {
  516. padding-left: 40px;
  517. font-size: 18px;
  518. }
  519. .sec-blogtab {
  520. padding-bottom: 5rem;
  521. }
  522. .blog-tabs {
  523. display: flex;
  524. align-items: center;
  525. }
  526. .blogtab-title {
  527. font-size: 3rem;
  528. letter-spacing: 1px;
  529. padding-bottom: 6px;
  530. border-bottom: 8px solid #ea5413;
  531. display: inline-block;
  532. text-align: center;
  533. }
  534. .blog-tabs .blog-tabs-nav {
  535. width: 35%;
  536. background-color: #f0f0f0;
  537. padding: 4rem 2.5rem;
  538. list-style: none;
  539. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  540. text-align: left;
  541. }
  542. .blog-tabs .blog-tabs-nav li {
  543. padding: 10px;
  544. border-bottom: 1px dashed grey;
  545. }
  546. .blog-tabs .blog-tabs-nav li a {
  547. color: #ea5413;
  548. }
  549. .blog-tabs .blog-tabs-stage {
  550. width: 65%;
  551. padding: 3.5rem;
  552. padding-bottom: 6rem;
  553. box-shadow: 1px 1px 10px 2px grey;
  554. height: 48rem;
  555. overflow: hidden;
  556. text-align: left;
  557. position: relative;
  558. }
  559. .blog-tab-box {
  560. height: 90%;
  561. overflow: scroll;
  562. }
  563. .blog-tabs .blog-tabs-stage .blog-txt {
  564. font-size: 1.6rem;
  565. }
  566. .btn-light {
  567. color: black;
  568. border: 1px solid #ea5413;
  569. padding: 1rem 2.5rem;
  570. outline: none;
  571. background-color: white;
  572. margin-top: 4rem;
  573. border-radius: 3rem;
  574. font-size: 1.8rem;
  575. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  576. }
  577. .btn-dark {
  578. text-decoration: none;
  579. color: white;
  580. border: 1px solid #ea5413;
  581. padding: 1rem 2.5rem;
  582. outline: none;
  583. background-color: #ea5413;
  584. margin-top: 4rem;
  585. border-radius: 3rem;
  586. font-size: 1.8rem;
  587. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  588. }
  589. .blog-tabs .btn-light {
  590. margin-top: 1.5rem;
  591. color: #ea5413;
  592. position: absolute;
  593. bottom: 1rem;
  594. left: 3.5rem;
  595. }
  596. // 影片導覽區塊
  597. .video-int {
  598. .video-box {
  599. margin-top: 30px;
  600. .video-btn {
  601. padding: 15px 50px;
  602. width: 280px;
  603. background: #fff;
  604. font-size: 32px;
  605. }
  606. }
  607. }
  608. :fullscreen {
  609. #expand {
  610. display: none;
  611. }
  612. .home-page {
  613. @media screen and(max-width:1280px) {
  614. height: 100vh;
  615. }
  616. }
  617. .home-box {
  618. height: 350px;
  619. @media screen and(max-width:1280px) {
  620. height: 250px;
  621. }
  622. }
  623. }
  624. #compression {
  625. display: none;
  626. }
  627. // 首頁
  628. .home-page {
  629. position: relative;
  630. height: 100vh;
  631. @media screen and(max-width:1280px) {
  632. height: 130vh;
  633. }
  634. @media screen and(max-width:1080px) {
  635. height: 100vh;
  636. }
  637. .home-box {
  638. height: 33vh;
  639. }
  640. .homebutton-box {
  641. background-image: url(./img/BG_3png.png);
  642. background-size: cover;
  643. background-repeat: no-repeat;
  644. // height: 65vh;
  645. .homebtn-icon {
  646. h1 {
  647. font-size: 32px;
  648. text-align: center;
  649. transition: 0.5s;
  650. }
  651. img {
  652. width: 100px;
  653. transition: 0.5s;
  654. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  655. }
  656. &:hover {
  657. h1 {
  658. font-size: 26px;
  659. }
  660. img {
  661. transform: scale(0.75);
  662. }
  663. }
  664. }
  665. }
  666. .homepage-title {
  667. h1 {
  668. color: #e95412;
  669. font-weight: 900;
  670. font-size: 48px;
  671. }
  672. }
  673. .homepage-line {
  674. position: absolute;
  675. bottom: 50px;
  676. width: 70vw;
  677. @media screen and(max-width:1280px) {
  678. bottom: 30px;
  679. }
  680. }
  681. // #wheel{
  682. // animation-name: wheel;
  683. // animation-duration: 10s;
  684. // }
  685. }
  686. .home-btn{
  687. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  688. }
  689. // @keyframes wheel {
  690. // 0%{
  691. // transform: rotate(0);
  692. // }
  693. // 100%{
  694. // transform: rotate(10deg);
  695. // }
  696. // }
  697. // demo
  698. .demo-btn {
  699. width: 90%;
  700. margin: 0 auto;
  701. // background: #3f4c72;
  702. font-size: 32px;
  703. padding: 10px 20px;
  704. text-decoration: none;
  705. color: white;
  706. border: none;
  707. display: block;
  708. padding: 3rem 0;
  709. text-align: center;
  710. &:hover {
  711. color: white;
  712. }
  713. }
  714. .demo-box{
  715. background:#E2E2E2;
  716. width: 90%;
  717. margin:0 auto ;
  718. .demo-card{
  719. padding: 4rem 30px;
  720. }
  721. li{
  722. font-size: 17px;
  723. }
  724. .demo-CTA{
  725. color:#fff;
  726. padding: 15px 50px;
  727. font-size: 24px;
  728. transition: 1s;
  729. &:hover{
  730. opacity: 0.7;
  731. }
  732. }
  733. }
  734. .features-nav {
  735. .dropdown-toggle {
  736. &::after {
  737. display: inline-block;
  738. margin-left: 0.255em;
  739. vertical-align: 0.255em;
  740. content: "";
  741. border-top: 0.3em solid;
  742. border-right: 0.3em solid transparent;
  743. border-bottom: 0;
  744. border-left: 0.3em solid transparent;
  745. }
  746. }
  747. }
  748. // 影片導覽區塊
  749. .video-sec01 {
  750. height: 100vh;
  751. .video-int {
  752. .video-box {
  753. margin-top: 30px;
  754. .video-btn {
  755. padding: 15px 50px;
  756. width: 250px;
  757. background: #fff;
  758. font-size: 32px;
  759. }
  760. }
  761. }
  762. }
  763. #gotop {
  764. cursor: pointer;
  765. position: fixed;
  766. bottom: 50px;
  767. right: 50px;
  768. }
  769. .sec-video {
  770. height: 50vh;
  771. }
  772. .video-img {
  773. cursor: pointer;
  774. }
  775. .aboutpage{
  776. height:100vh;
  777. }