style.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  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: #333333;
  275. }
  276. }
  277. .sec-hero .hero-title {
  278. font-size: 3.5rem;
  279. letter-spacing: 1px;
  280. padding-top: 0rem;
  281. }
  282. .sec-hero .hero-txt {
  283. font-size: 1.5em;
  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: 1rem 2.5rem;
  292. background: linear-gradient(20deg, #ea5413, #920783);
  293. color: white;
  294. font-size: 1.8rem;
  295. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
  296. }
  297. .hero-orange {
  298. position: absolute;
  299. left: 10%;
  300. top: 0%;
  301. }
  302. .hero-purple {
  303. position: absolute;
  304. right: 0%;
  305. top: -10%;
  306. z-index: -1;
  307. width: 180px;
  308. }
  309. .hero-orange-s {
  310. position: absolute;
  311. left: -5%;
  312. bottom: 13%;
  313. z-index: -1;
  314. animation: floating 8s infinite ease-in-out;
  315. width: 80px;
  316. }
  317. .hero-textgrp {
  318. z-index: 3;
  319. position: absolute;
  320. left: 5%;
  321. top: 10%;
  322. animation: floating3 6s infinite 1s ease-in-out;
  323. width: 300px;
  324. }
  325. .hero-video {
  326. z-index: 3;
  327. position: absolute;
  328. right: 3%;
  329. top: -5%;
  330. animation: floating 8s infinite 1.5s ease-in-out;
  331. width: 120px;
  332. }
  333. .hero-amplify {
  334. z-index: 3;
  335. position: absolute;
  336. bottom: 5%;
  337. right: 0;
  338. animation: floating2 5s infinite ease-in-out;
  339. width: 120px;
  340. }
  341. .hero-imgfr {
  342. width: 100%;
  343. height: 95%;
  344. }
  345. .hero-imgfr img {
  346. width: 100%;
  347. }
  348. @keyframes floating {
  349. from {
  350. transform: translate(0px, 0);
  351. }
  352. 65% {
  353. transform: translate(25px, 0);
  354. }
  355. to {
  356. transform: translate(0, -0px);
  357. }
  358. }
  359. @keyframes floating3 {
  360. from {
  361. transform: translate(0px, 0);
  362. }
  363. 65% {
  364. transform: translate(-20px, 0);
  365. }
  366. to {
  367. transform: translate(0, -0px);
  368. }
  369. }
  370. @keyframes floating2 {
  371. from {
  372. transform: translate(0px, 0);
  373. }
  374. 65% {
  375. transform: translate(0px, 10px);
  376. }
  377. to {
  378. transform: translate(0, -0px);
  379. }
  380. }
  381. /* sec-features */
  382. .ai-spokesgril {
  383. display: flex;
  384. align-items: center;
  385. justify-content: space-between;
  386. .nav-link {
  387. border: none;
  388. outline: none;
  389. background-color: transparent;
  390. color: black;
  391. }
  392. .dropdown-toggle {
  393. text-decoration: none;
  394. &:hover {
  395. text-decoration: none;
  396. }
  397. }
  398. }
  399. .sec-features {
  400. padding: 5rem 0;
  401. }
  402. .sec-features .row {
  403. margin: 8rem 0;
  404. }
  405. .sec-features .row:nth-of-type(1) {
  406. margin: 4rem 0;
  407. }
  408. .sec-features .row:nth-of-type(4) {
  409. margin-bottom: 0;
  410. }
  411. .features-orangel {
  412. position: absolute;
  413. left: -150px;
  414. top: 5%;
  415. z-index: -1;
  416. }
  417. .features-purpler {
  418. position: absolute;
  419. right: -150px;
  420. top: 5%;
  421. z-index: -1;
  422. }
  423. .features-purplel {
  424. position: absolute;
  425. left: -150px;
  426. top: 5%;
  427. z-index: -1;
  428. }
  429. .features-oranger {
  430. position: absolute;
  431. right: -150px;
  432. top: 5%;
  433. z-index: -1;
  434. }
  435. .sec-features .row .d-block {
  436. display: none;
  437. }
  438. .sec-features .features-col {
  439. position: relative;
  440. }
  441. .sec-features .features-col .features-block {
  442. position: absolute;
  443. left: 10rem;
  444. top: 6rem;
  445. display: flex;
  446. opacity: 0;
  447. transition: all 0.8s;
  448. h3 {
  449. font-family: "Roboto", Helvetica, Arial, sans-serif;
  450. font-weight: 900;
  451. line-height: 1.1;
  452. color: #333333;
  453. }
  454. }
  455. .sec-features .features-col .block-right {
  456. transform: translateX(-30%) scale(0.95);
  457. }
  458. .sec-features .features-col .block-left {
  459. transform: translateX(30%) scale(0.95);
  460. }
  461. .sec-features .features-col .features-block.active {
  462. opacity: 1;
  463. transform: translateX(0%) scale(1);
  464. }
  465. .sec-features .features-num {
  466. display: inline-block;
  467. font-size: 14rem;
  468. color: #f0f0f0;
  469. }
  470. .sec-features .features-title {
  471. font-size: 3rem;
  472. text-align: center;
  473. letter-spacing: 1px;
  474. padding-bottom: 6px;
  475. border-bottom: 8px solid #ea5413;
  476. display: inline-block;
  477. }
  478. .sec-features .features-title strong {
  479. font-size: 5rem;
  480. }
  481. .sec-features .features-imgfr {
  482. width: 100%;
  483. }
  484. .sec-features .features-imgfr video {
  485. width: 100%;
  486. }
  487. .sec-features .features-list {
  488. text-align: left;
  489. }
  490. .features-list {
  491. padding-left: 40px;
  492. font-size: 18px;
  493. }
  494. .sec-blogtab {
  495. padding-bottom: 5rem;
  496. }
  497. .blog-tabs {
  498. display: flex;
  499. align-items: center;
  500. }
  501. .blogtab-title {
  502. font-size: 3rem;
  503. letter-spacing: 1px;
  504. padding-bottom: 6px;
  505. border-bottom: 8px solid #ea5413;
  506. display: inline-block;
  507. text-align: center;
  508. }
  509. .blog-tabs .blog-tabs-nav {
  510. width: 35%;
  511. background-color: #f0f0f0;
  512. padding: 4rem 2.5rem;
  513. list-style: none;
  514. box-shadow: 0 2px 5px -2px rgb(173, 173, 173);
  515. text-align: left;
  516. }
  517. .blog-tabs .blog-tabs-nav li {
  518. padding: 10px;
  519. border-bottom: 1px dashed grey;
  520. }
  521. .blog-tabs .blog-tabs-nav li a {
  522. color: #ea5413;
  523. }
  524. .blog-tabs .blog-tabs-stage {
  525. width: 65%;
  526. padding: 3.5rem;
  527. padding-bottom: 6rem;
  528. box-shadow: 1px 1px 10px 2px grey;
  529. height: 48rem;
  530. overflow: hidden;
  531. text-align: left;
  532. position: relative;
  533. }
  534. .blog-tab-box {
  535. height: 90%;
  536. overflow: scroll;
  537. }
  538. .blog-tabs .blog-tabs-stage .blog-txt {
  539. font-size: 1.6rem;
  540. }
  541. .btn-light {
  542. color: black;
  543. border: 1px solid #ea5413;
  544. padding: 1rem 2.5rem;
  545. outline: none;
  546. background-color: white;
  547. margin-top: 4rem;
  548. border-radius: 3rem;
  549. font-size: 1.8rem;
  550. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  551. }
  552. .btn-dark {
  553. text-decoration: none;
  554. color: white;
  555. border: 1px solid #ea5413;
  556. padding: 1rem 2.5rem;
  557. outline: none;
  558. background-color: #ea5413;
  559. margin-top: 4rem;
  560. border-radius: 3rem;
  561. font-size: 1.8rem;
  562. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  563. }
  564. .blog-tabs .btn-light {
  565. margin-top: 1.5rem;
  566. color: #ea5413;
  567. position: absolute;
  568. bottom: 1rem;
  569. left: 3.5rem;
  570. }
  571. // 影片導覽區塊
  572. .video-int {
  573. .video-box {
  574. margin-top: 30px;
  575. .video-btn {
  576. padding: 15px 50px;
  577. width: 280px;
  578. background: #fff;
  579. font-size: 32px;
  580. }
  581. }
  582. }
  583. :fullscreen {
  584. .home-page {
  585. @media screen and(max-width:1280px) {
  586. height: 100vh;
  587. }
  588. }
  589. .home-box {
  590. height: 350px;
  591. @media screen and(max-width:1280px) {
  592. height: 250px;
  593. }
  594. }
  595. }
  596. // 首頁
  597. .home-page {
  598. position: relative;
  599. height: 100vh;
  600. @media screen and(max-width:1280px) {
  601. height: 130vh;
  602. }
  603. @media screen and(max-width:1080px) {
  604. height: 100vh;
  605. }
  606. .home-box {
  607. height: 33vh;
  608. }
  609. .homebutton-box {
  610. background-image: url(./img/BG_3png.png);
  611. background-size: cover;
  612. background-repeat: no-repeat;
  613. // height: 65vh;
  614. .homebtn-icon {
  615. h1 {
  616. font-size: 32px;
  617. text-align: center;
  618. transition: 0.5s;
  619. }
  620. img {
  621. width: 100px;
  622. transition: 0.5s;
  623. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  624. }
  625. &:hover {
  626. h1{
  627. font-size: 26px;
  628. }
  629. img {
  630. transform: scale(0.75);
  631. }
  632. }
  633. }
  634. }
  635. .homepage-title {
  636. h1 {
  637. color: #e95412;
  638. font-weight: 900;
  639. font-size: 48px;
  640. }
  641. }
  642. .homepage-line {
  643. position: absolute;
  644. bottom: 50px;
  645. width: 70vw;
  646. @media screen and(max-width:1280px) {
  647. bottom: 30px;
  648. }
  649. }
  650. // .paggy{
  651. // position: relative;
  652. // bottom:500px;
  653. // }
  654. }
  655. // demo
  656. .demo-btn {
  657. width: 90%;
  658. margin: 0 auto;
  659. background: #3f4c72;
  660. font-size: 32px;
  661. padding: 10px 20px;
  662. text-decoration: none;
  663. color: white;
  664. border: none;
  665. display: block;
  666. padding: 6rem 0;
  667. text-align: center;
  668. &:hover {
  669. color: white;
  670. }
  671. }
  672. .features-nav {
  673. .dropdown-toggle {
  674. &::after {
  675. display: inline-block;
  676. margin-left: 0.255em;
  677. vertical-align: 0.255em;
  678. content: "";
  679. border-top: 0.3em solid;
  680. border-right: 0.3em solid transparent;
  681. border-bottom: 0;
  682. border-left: 0.3em solid transparent;
  683. }
  684. }
  685. }
  686. // 影片導覽區塊
  687. .video-sec01 {
  688. height: 100vh;
  689. .video-int {
  690. .video-box {
  691. margin-top: 30px;
  692. .video-btn {
  693. padding: 15px 50px;
  694. width: 250px;
  695. background: #fff;
  696. font-size: 32px;
  697. }
  698. }
  699. }
  700. }
  701. #gotop {
  702. cursor: pointer;
  703. position: fixed;
  704. bottom: 50px;
  705. right: 50px;
  706. }
  707. .sec-video {
  708. height: 50vh;
  709. }
  710. .video-img {
  711. cursor: pointer;
  712. }