style.scss 15 KB

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