style.scss 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369
  1. * {
  2. letter-spacing: 1px;
  3. }
  4. .navbar {
  5. box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
  6. background-color: white;
  7. width: 100%;
  8. }
  9. .navbar .navbar-collapse {
  10. flex-grow: 0;
  11. }
  12. .header {
  13. margin-top: 70px;
  14. position: relative;
  15. padding: 6rem 0 3rem;
  16. // padding-top: 6rem;
  17. // padding-bottom: 3rem;
  18. // @media (max-width: 767px) {
  19. // margin-top: 70px;
  20. // }
  21. }
  22. .header-lefttop {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. z-index: -1;
  27. width: 350px;
  28. }
  29. .header-title {
  30. font-size: 3rem;
  31. // color: #20616d;
  32. font-weight: 400;
  33. }
  34. .header__sub {
  35. color: #38a7bb;
  36. font-size: 1.5rem;
  37. font-weight: 300;
  38. position: relative;
  39. }
  40. .header__sub::before,
  41. .header__sub::after {
  42. content: " ";
  43. position: absolute;
  44. width: 12%;
  45. height: 1px;
  46. background-color: #38a7bb;
  47. top: 50%;
  48. }
  49. .header__sub::before {
  50. left: 28%;
  51. }
  52. .header__sub::after {
  53. left: 60%;
  54. }
  55. .header__form {
  56. margin: 1rem auto;
  57. justify-content: center;
  58. }
  59. .header__form__input {
  60. border-radius: 10rem;
  61. padding: 0.4rem 0.8rem;
  62. width: 60%;
  63. margin-left: 4.5rem;
  64. }
  65. .header__form__sub {
  66. border-radius: 10rem;
  67. background-color: #fca25e;
  68. color: white;
  69. border: none;
  70. width: 5rem;
  71. transform: translateX(-100%);
  72. transition: all 0.3s;
  73. }
  74. .header__form__sub:hover {
  75. background-color: #ff892e;
  76. }
  77. .header-right {
  78. width: 80%;
  79. height: 50vh;
  80. background-image: url("../imgs/電腦2.webp");
  81. background-size: contain;
  82. background-repeat: no-repeat;
  83. margin: 0 auto;
  84. position: relative;
  85. }
  86. .header-right.header-dm {
  87. background-image: url("https://i.imgur.com/SOu53ii.jpg");
  88. }
  89. .header-right-cir {
  90. width: 60%;
  91. position: absolute;
  92. right: 0%;
  93. top: -5%;
  94. z-index: -1;
  95. }
  96. .header-right__video {
  97. position: absolute;
  98. width: calc(80% - 10%);
  99. height: auto;
  100. left: 3.3rem;
  101. top: 1.8rem;
  102. }
  103. .header-right-magnifier {
  104. position: absolute;
  105. width: 25%;
  106. right: 3%;
  107. bottom: 1%;
  108. }
  109. .header-right-bubble {
  110. position: absolute;
  111. width: 22%;
  112. top: 0;
  113. left: 0;
  114. transform: translate(-60%, -50%);
  115. }
  116. .header-right-linecir {
  117. width: 45%;
  118. position: absolute;
  119. left: -8%;
  120. bottom: -3%;
  121. z-index: -1;
  122. }
  123. /* footer.html Start */
  124. .footer {
  125. color: #656565;
  126. .footer-contacts {
  127. margin-top: 2rem;
  128. line-height: 32px;
  129. }
  130. }
  131. .footer a {
  132. color: #656565;
  133. text-decoration: none;
  134. }
  135. .footer h5 {
  136. color: black;
  137. font-weight: 600;
  138. padding-bottom: 15px;
  139. }
  140. .footer .link {
  141. padding-bottom: 20px;
  142. }
  143. .footer {
  144. background-color: #f0f0f0;
  145. padding: 3rem;
  146. }
  147. .footer .right-column {
  148. border-left: 1px solid black;
  149. }
  150. .footer .footer-aigirl {
  151. font-weight: 600;
  152. font-size: 2rem;
  153. margin-top: 1rem;
  154. margin-bottom: 1rem;
  155. }
  156. .footer .footer-follow {
  157. font-size: 1.6rem;
  158. margin-bottom: 1rem;
  159. color: black;
  160. font-size: 1rem;
  161. font-weight: 600;
  162. margin-top: 2rem;
  163. }
  164. .footer .footer-socials a {
  165. margin-right: 5px;
  166. }
  167. /* footer.html End */
  168. /* footer_default.html Start */
  169. // .footer {
  170. // background-color: #555555;
  171. // padding: 50px 0;
  172. // color: #999999;
  173. // }
  174. .footer h4 {
  175. text-transform: uppercase;
  176. color: white;
  177. font-size: 14px;
  178. font-weight: 800;
  179. }
  180. .footer__btn__text {
  181. font-size: 1.3rem;
  182. color: white;
  183. }
  184. .footer .btn {
  185. border: 2px solid #38a7bb;
  186. color: #38a7bb;
  187. text-decoration: none;
  188. }
  189. .followus__btn {
  190. text-decoration: none;
  191. color: white;
  192. }
  193. .followus__btn:hover {
  194. color: #38a7bb;
  195. }
  196. .footer .btn:hover {
  197. color: white;
  198. background-color: #38a7bb;
  199. }
  200. .followus__txt {
  201. display: inline-block;
  202. margin-right: 1rem;
  203. color: white;
  204. font-weight: 600;
  205. }
  206. .footer-img {
  207. height: 60px;
  208. }
  209. /* footer_default.html End */
  210. /* iframe Start */
  211. .video-box {
  212. position: relative;
  213. width: 70%;
  214. height: 0;
  215. padding-bottom: 40%;
  216. }
  217. @media (max-width: 1200px) {
  218. .video-box {
  219. width: 80%;
  220. padding-bottom: 45%;
  221. }
  222. }
  223. @media (max-width: 767px) {
  224. .video-box {
  225. margin: 50px auto 0;
  226. }
  227. }
  228. @media (max-width: 576px) {
  229. .video-box {
  230. width: 90%;
  231. padding-bottom: 50%;
  232. }
  233. }
  234. .video-box iframe {
  235. position: absolute;
  236. top: 0;
  237. left: 0;
  238. width: 100%;
  239. height: 100%;
  240. }
  241. /* iframe End */
  242. .category {
  243. padding: 2rem 0rem;
  244. }
  245. .category.dm-description {
  246. padding: 2rem 8rem;
  247. }
  248. .category-sub-h2 {
  249. position: relative;
  250. }
  251. .category-sub-h2::after {
  252. position: absolute;
  253. content: "";
  254. width: 4rem;
  255. height: 1rem;
  256. border-bottom: 10px solid #ff892e;
  257. left: 50%;
  258. top: -1.5rem;
  259. transform: translateX(-50%);
  260. }
  261. .category-btngrp {
  262. padding: 0 8rem;
  263. }
  264. .category-btn {
  265. background-color: #a7d9e2;
  266. border: none;
  267. border-radius: 5rem;
  268. outline: none;
  269. color: white;
  270. font-size: 1.3rem;
  271. padding: 0.4rem 2rem;
  272. text-decoration: none;
  273. }
  274. .category-btn.active {
  275. background-color: #38a7bb;
  276. text-decoration: none;
  277. color: white;
  278. }
  279. .card__rank {
  280. border: 1px solid #cecece;
  281. box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);
  282. position: relative;
  283. padding: 1rem 1.5rem;
  284. }
  285. .top20 .card__rank {
  286. margin-bottom: 1.5rem;
  287. }
  288. .top3 {
  289. padding: 3rem 0rem;
  290. padding-bottom: 5rem;
  291. position: relative;
  292. }
  293. .top3 .row {
  294. padding: 0rem 4rem;
  295. }
  296. .top3 .backfill {
  297. position: absolute;
  298. width: 100%;
  299. height: 100px;
  300. background-color: #ffebe8;
  301. left: 0;
  302. right: 0;
  303. top: 7rem;
  304. }
  305. .top3__num {
  306. color: #fca25e;
  307. font-size: 5.8rem;
  308. font-family: "Trebuchet MS";
  309. position: absolute;
  310. left: 1rem;
  311. top: -3.5rem;
  312. font-weight: 300;
  313. }
  314. .card__rank__word {
  315. color: #20616d;
  316. margin-left: 3rem;
  317. font-size: 1.8rem;
  318. font-weight: 400;
  319. }
  320. .card__rank__goto {
  321. text-align: right;
  322. }
  323. .card__rank__link {
  324. color: #38a7bb;
  325. text-decoration: none;
  326. font-weight: 400;
  327. }
  328. .card__rank__link:hover {
  329. color: #19879b;
  330. }
  331. .top20 {
  332. padding-bottom: 5rem;
  333. }
  334. .top20 .row {
  335. padding: 0rem 4rem;
  336. }
  337. .top20 .card__rank__word {
  338. margin-left: 0;
  339. }
  340. .top20__num {
  341. color: #fca25e;
  342. font-size: 2.5rem;
  343. font-family: "Trebuchet MS";
  344. font-weight: 300;
  345. display: inline-block;
  346. width: 3rem;
  347. }
  348. /* content page */
  349. .cntheader {
  350. margin-top: 81px;
  351. padding: 4rem 0;
  352. position: relative;
  353. padding-bottom: 2rem;
  354. }
  355. .cntheader__sub {
  356. color: #38a7bb;
  357. font-size: 1.5rem;
  358. font-weight: 300;
  359. position: relative;
  360. }
  361. .cntheader__sub::before,
  362. .cntheader__sub::after {
  363. content: " ";
  364. position: absolute;
  365. width: 15%;
  366. height: 1px;
  367. background-color: #38a7bb;
  368. top: 50%;
  369. }
  370. .cntheader__sub::before {
  371. left: 18%;
  372. }
  373. .cntheader__sub::after {
  374. left: 67%;
  375. }
  376. .cntheader .category-btngrp {
  377. padding: 0 4rem;
  378. }
  379. .card__art {
  380. padding: 1rem;
  381. border: 1px solid #20616d;
  382. border-radius: 1rem;
  383. margin-bottom: 1rem;
  384. }
  385. .card__title {
  386. font-size: 1.8rem;
  387. font-weight: 400;
  388. }
  389. .card__text {
  390. color: #918f8f;
  391. }
  392. .card__link {
  393. display: inline-block;
  394. color: #38a7bb;
  395. margin-right: 1rem;
  396. text-decoration: none;
  397. }
  398. .card__link:hover {
  399. color: #20616d;
  400. }
  401. .toparticle {
  402. border: 1px solid #cecece;
  403. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  404. }
  405. .toparticle__title {
  406. color: white;
  407. background-color: #38a7bb;
  408. text-align: center;
  409. font-size: 1.3rem;
  410. padding: 0.3rem 0;
  411. position: relative;
  412. }
  413. .toparticle__title img {
  414. position: absolute;
  415. width: 150px;
  416. right: -4rem;
  417. top: -3.5rem;
  418. }
  419. .toparticle__list {
  420. padding: 1.5rem;
  421. padding-top: 0;
  422. list-style: none;
  423. padding-bottom: 1rem;
  424. }
  425. .toparticle__list-item {
  426. padding: 0.3rem;
  427. border-bottom: 1px solid #cecece;
  428. color: #38a7bb;
  429. position: relative;
  430. }
  431. .toparticle__list-item:nth-of-type(10) {
  432. border: none;
  433. }
  434. .toparticle__list-item a {
  435. text-decoration: none;
  436. color: #38a7bb;
  437. }
  438. .toparticle__num {
  439. color: #fca25e;
  440. font-size: 1.8rem;
  441. font-family: "Trebuchet MS";
  442. font-weight: 300;
  443. margin-right: 8px;
  444. }
  445. .toparticle__top {
  446. font-size: 2rem;
  447. }
  448. .toparticle__list-item small {
  449. position: absolute;
  450. right: 0;
  451. top: 45%;
  452. }
  453. .cntsubscribe {
  454. text-align: center;
  455. }
  456. .cntsubscribe__form {
  457. position: relative;
  458. }
  459. .cntsubscribe__sub {
  460. border-radius: 10rem;
  461. background-color: #fca25e;
  462. color: white;
  463. border: none;
  464. width: 5rem;
  465. position: absolute;
  466. right: 0;
  467. top: 0;
  468. padding: 0.45rem 0.8rem;
  469. }
  470. .cntsubscribe__sub:hover {
  471. background-color: #ff892e;
  472. color: white;
  473. }
  474. .cntsubscribe__input {
  475. border-radius: 10rem;
  476. padding: 0.4rem 0.8rem;
  477. width: 100%;
  478. }
  479. .img-block .img-block-img {
  480. width: 70%;
  481. }
  482. .img-block-list {
  483. padding: 2rem 6rem;
  484. }
  485. .img-block-linecir {
  486. position: absolute;
  487. right: 10%;
  488. bottom: 5%;
  489. width: 30%;
  490. z-index: -1;
  491. }
  492. .img-block-linecir.left {
  493. right: -10%;
  494. bottom: -5%;
  495. }
  496. .img-block-linecir.right {
  497. left: -10%;
  498. bottom: -5%;
  499. }
  500. .img-block-linecir.left {
  501. left: -10%;
  502. bottom: -5%;
  503. }
  504. .aboutus_img {
  505. width: 100%;
  506. }
  507. .aboutus_prize_img {
  508. border: 1.5rem solid rgb(231, 231, 231);
  509. border-radius: 1rem;
  510. }
  511. .header__ai-training__span {
  512. width: 6rem;
  513. height: 6rem;
  514. padding: 1rem;
  515. display: inline-block;
  516. font-size: 1.4rem;
  517. background-color: rgb(255, 255, 159);
  518. border-radius: 50%;
  519. }
  520. .ai-training__action {
  521. border: 3px dashed #ffebe8;
  522. }
  523. .ai-training__card .card-img-top {
  524. height: 35vh;
  525. }
  526. .ai-training__action ul {
  527. list-style: none;
  528. line-height: 2rem;
  529. }
  530. .ai-training__action__box {
  531. flex-direction: row;
  532. }
  533. .ai-training__action__btn {
  534. padding: 1.2rem 3rem;
  535. border: none;
  536. outline: none;
  537. border-radius: 4rem;
  538. background: #fca25e;
  539. font-size: 1.5rem;
  540. }
  541. .ai-training__action__img {
  542. width: 15rem;
  543. height: 15rem;
  544. background-repeat: no-repeat;
  545. background-position: center;
  546. background-size: cover;
  547. border-radius: 50%;
  548. border: 3px solid #ffdbd6;
  549. }
  550. .hero-btn {
  551. border: none;
  552. outline: none;
  553. border-radius: 3rem;
  554. margin-top: 0.5rem;
  555. padding: 0.6rem 1.5rem;
  556. background: linear-gradient(20deg, #ea5413, #920783);
  557. color: white;
  558. font-size: 1.1rem;
  559. box-shadow: 1px 1px 5px 1px rgb(207, 207, 207, 0.53);
  560. }
  561. .contact-btn {
  562. text-decoration: none;
  563. color: white;
  564. border: 1px solid #ea5413;
  565. padding: 0.6rem 1.5rem;
  566. outline: none;
  567. background-color: #ea5413;
  568. margin-top: 0.5rem;
  569. border-radius: 3rem;
  570. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  571. transition: all 0.3s;
  572. &:hover {
  573. color: #ea5413;
  574. background-color: transparent;
  575. border: 1px solid #ea5413;
  576. }
  577. }
  578. .loaded {
  579. box-shadow: 0 4px 8px 0 rgb(53, 105, 128, 0.3), 0 6px 20px 0 rgb(165, 200, 213, 0.41);
  580. margin-bottom: 4rem;
  581. }
  582. .pageForm-title {
  583. padding: 0 0 0 40px;
  584. background-image: url(/imgs/dm/accept.png);
  585. background-position: 0 0;
  586. background-repeat: no-repeat;
  587. background-size: 30px auto;
  588. }
  589. .pageForm-txt {
  590. padding-left: 40px;
  591. }
  592. .pageForm-notice {
  593. padding-left: 40px;
  594. color: grey;
  595. margin-top: 50px;
  596. }
  597. .pageForm-p {
  598. padding: 40px;
  599. }
  600. .btn-detailForm {
  601. background-color: transparent;
  602. border: none;
  603. outline: none;
  604. color: #ff892e;
  605. padding: 0 0;
  606. padding-bottom: 0.1rem;
  607. margin-bottom: 0.8rem;
  608. display: inline-block;
  609. border-bottom: 1px dotted #ff892e;
  610. transition: all 0.4s;
  611. text-decoration: none;
  612. }
  613. .btn-detailForm:hover {
  614. transform: translate(2px, 2px);
  615. text-decoration: none;
  616. color: #ff892e;
  617. }
  618. @media (max-width: 1300px) {
  619. .header-right__video {
  620. position: absolute;
  621. width: calc(80% - 4%);
  622. }
  623. }
  624. @media (max-width: 992px) {
  625. .header-title {
  626. font-size: 3rem;
  627. }
  628. .cntheader .header-title {
  629. font-size: 2.2rem;
  630. }
  631. // .header {
  632. // padding-top: 4rem;
  633. // height: 50vh;
  634. // }
  635. .header-right {
  636. height: 40vh;
  637. }
  638. .header-right-magnifier {
  639. right: -2.5rem;
  640. bottom: 1rem;
  641. }
  642. .header__sub {
  643. font-size: 1.3rem;
  644. }
  645. .header__sub::before,
  646. .header__sub::after {
  647. width: 8%;
  648. }
  649. .header__sub::before {
  650. left: 30%;
  651. }
  652. .header__sub::after {
  653. left: 62%;
  654. }
  655. .header__form__input {
  656. font-size: 0.9rem;
  657. }
  658. .category-btngrp {
  659. padding: 0;
  660. }
  661. .category-btn {
  662. padding: 0.3rem 1.5rem;
  663. font-size: 1.2rem;
  664. }
  665. .ctncategory-btn {
  666. padding: 0.2rem 1rem;
  667. font-size: 1rem;
  668. }
  669. .top3 .row {
  670. padding: 0;
  671. }
  672. .card__rank {
  673. padding: 0.8rem 1rem;
  674. }
  675. .top3__num {
  676. left: 0.6rem;
  677. top: -2.5rem;
  678. font-size: 4rem;
  679. }
  680. .card__rank__word {
  681. margin-left: 1.5rem;
  682. font-size: 1.2rem;
  683. }
  684. .card__rank hr {
  685. margin-top: 8px;
  686. margin-bottom: 8px;
  687. }
  688. .top20 .row {
  689. padding: 0;
  690. }
  691. .top20__num {
  692. font-size: 2.1rem;
  693. width: 1.6rem;
  694. }
  695. .container__footer {
  696. width: 95vw;
  697. }
  698. .header__form {
  699. width: 85%;
  700. position: relative;
  701. }
  702. .header__form__input {
  703. margin-left: 0;
  704. width: 100%;
  705. }
  706. .header__form__sub {
  707. transform: none;
  708. position: absolute;
  709. right: 0;
  710. top: 0;
  711. }
  712. .header-right-linecir {
  713. bottom: 0;
  714. }
  715. .cntheader__sub {
  716. font-size: 1.2rem;
  717. }
  718. .cntheader__sub::before {
  719. left: 13%;
  720. }
  721. .cntheader__sub::after {
  722. left: 72%;
  723. }
  724. .toparticle__title img {
  725. position: absolute;
  726. width: 90px;
  727. right: -2rem;
  728. top: -2rem;
  729. }
  730. .toparticle__top {
  731. font-size: 1.7rem;
  732. }
  733. .fb__fr {
  734. width: 100%;
  735. }
  736. .cntsubscribe__form {
  737. width: 100%;
  738. }
  739. .ai-training__action__box {
  740. flex-direction: column;
  741. }
  742. }
  743. @media (max-width: 767px) {
  744. // .header {
  745. // height: 70vh;
  746. // }
  747. .header .col-md-5 {
  748. margin-bottom: 3rem;
  749. }
  750. .header-right-bubble {
  751. width: 15%;
  752. }
  753. .header-right-magnifier {
  754. right: 4rem;
  755. bottom: 1rem;
  756. }
  757. .category {
  758. padding-top: 4rem;
  759. }
  760. .category.dm-description {
  761. padding-top: 4rem;
  762. padding-left: 0;
  763. padding-right: 0;
  764. margin-top: 4.5rem;
  765. }
  766. .category.mt-xl {
  767. margin-top: 8.5rem;
  768. }
  769. .category.dm-description h5 {
  770. padding-left: 1rem;
  771. padding-right: 1rem;
  772. }
  773. .top3 {
  774. padding-bottom: 2rem;
  775. }
  776. .top3 .col-md-4 {
  777. margin-bottom: 1.5rem;
  778. }
  779. .top3 .col-md-4:nth-of-type(3) {
  780. margin-bottom: 0;
  781. }
  782. .card__rank {
  783. margin-bottom: 1.5rem;
  784. }
  785. .row-right {
  786. margin-top: 2rem;
  787. }
  788. .cntheader {
  789. padding-bottom: 0rem;
  790. }
  791. .header-right__video {
  792. position: absolute;
  793. width: calc(80% - 10%);
  794. left: 2.3rem;
  795. top: 1.5rem;
  796. }
  797. .img-block-list {
  798. padding: 2rem 1.5rem;
  799. }
  800. .ai-training__card .card-img-top {
  801. height: 50vh;
  802. }
  803. }
  804. @media (max-width: 576px) {
  805. .header-title {
  806. font-size: 2.5rem;
  807. }
  808. // .header {
  809. // padding-top: 3rem;
  810. // height: 63vh;
  811. // padding-bottom: 0rem;
  812. // }
  813. .header.ai-training {
  814. height: 80vh;
  815. }
  816. .header-right {
  817. height: 30vh;
  818. }
  819. .header-right-magnifier {
  820. right: 0rem;
  821. bottom: 1.5rem;
  822. }
  823. .category-btn {
  824. padding: 0.2rem 1rem;
  825. font-size: 1rem;
  826. }
  827. .category {
  828. padding: 1rem;
  829. }
  830. .footer-img {
  831. height: 50px;
  832. }
  833. .footer {
  834. font-size: 0.9rem;
  835. }
  836. .pageForm-p {
  837. padding: 15px;
  838. }
  839. .pageForm {
  840. width: 95%;
  841. }
  842. }
  843. @media (max-width: 480px) {
  844. .ctncategory-btn {
  845. margin-top: 0.6rem;
  846. }
  847. .header-right__video {
  848. position: absolute;
  849. width: calc(80% - 5%);
  850. left: 2.1rem;
  851. top: 1.3rem;
  852. }
  853. }
  854. /* blog-traffic Start */
  855. .blog-traffic {
  856. overflow-x: hidden;
  857. .header {
  858. padding: 0;
  859. }
  860. .banner {
  861. width: 100vw;
  862. height: auto;
  863. position: absolute;
  864. z-index: -10;
  865. @media (max-width: 767px) {
  866. width: 150vw;
  867. height: auto;
  868. }
  869. }
  870. .header-img {
  871. width: 150%;
  872. height: auto;
  873. position: relative;
  874. top: -30px;
  875. right: 30px;
  876. z-index: -1;
  877. @media (max-width: 767px) {
  878. width: 100%;
  879. top: -45px;
  880. right: unset;
  881. }
  882. }
  883. .header-title {
  884. font-size: 2.5rem;
  885. line-height: 65px;
  886. font-weight: 600;
  887. color: #000;
  888. @media (max-width: 768px) {
  889. font-size: 2.2rem;
  890. }
  891. }
  892. .dm-description {
  893. margin-top: -250px;
  894. @media (max-width: 1400px) {
  895. margin-top: -190px;
  896. }
  897. @media (max-width: 991px) {
  898. margin-top: -100px;
  899. }
  900. p {
  901. font-size: 20px;
  902. line-height: 32px;
  903. }
  904. }
  905. .category {
  906. padding: 0;
  907. position: relative;
  908. &.dm-description {
  909. padding: 0;
  910. }
  911. @media (max-width: 575px) {
  912. padding: 0 10px;
  913. }
  914. h4 {
  915. font-size: 2rem;
  916. }
  917. h4,
  918. .sub-title {
  919. margin: 0;
  920. color: #f5ab1b;
  921. font-weight: bold;
  922. }
  923. }
  924. .category-sub-h2::after {
  925. width: 3rem;
  926. border-bottom: 10px solid #ea5413;
  927. margin-top: 15px;
  928. }
  929. ul {
  930. padding: 0;
  931. list-style: none;
  932. li {
  933. line-height: 32px;
  934. }
  935. }
  936. .img-block-img {
  937. width: 12%;
  938. object-fit: contain;
  939. image-rendering: -webkit-optimize-contrast;
  940. position: relative;
  941. top: -30px;
  942. @media (max-width: 1200px) {
  943. top: -10px;
  944. }
  945. @media (max-width: 991px) {
  946. width: 15%;
  947. }
  948. @media (max-width: 767px) {
  949. width: 20%;
  950. top: 5px;
  951. }
  952. @media (max-width: 490px) {
  953. top: 15px;
  954. }
  955. @media (max-width: 414px) {
  956. top: 22px;
  957. }
  958. }
  959. .img-first {
  960. @media (max-width: 1200px) {
  961. top: 0;
  962. }
  963. @media (max-width: 767px) {
  964. top: 15px;
  965. }
  966. @media (max-width: 490px) {
  967. top: 40px;
  968. }
  969. }
  970. .add-img {
  971. width: 130px;
  972. margin: 10px auto 0;
  973. image-rendering: -webkit-optimize-contrast;
  974. @media (max-width: 991px) {
  975. margin: 0 auto;
  976. }
  977. @media (max-width: 767px) {
  978. margin: 10px auto -25px;
  979. }
  980. }
  981. .purple-circle {
  982. width: 50%;
  983. left: -250px;
  984. bottom: 100px;
  985. @media (max-width: 991px) {
  986. left: -150px;
  987. }
  988. @media (max-width: 767px) {
  989. left: -50px;
  990. }
  991. }
  992. .orange-circle {
  993. width: 50%;
  994. right: -200px;
  995. top: -200px;
  996. @media (max-width: 767px) {
  997. right: -100px;
  998. top: -150px;
  999. }
  1000. }
  1001. .data-text {
  1002. .circle {
  1003. top: -250px;
  1004. right: -5vw;
  1005. @media (max-width: 767px) {
  1006. top: 0px;
  1007. }
  1008. }
  1009. }
  1010. }
  1011. /* blog-traffic End */
  1012. /* youtube-views Start */
  1013. #youtube-views {
  1014. overflow-x: hidden;
  1015. h5 {
  1016. line-height: 32px;
  1017. }
  1018. .title {
  1019. color: #ea5413;
  1020. font-size: 1.3rem;
  1021. font-weight: bold;
  1022. }
  1023. .header-right {
  1024. background-position: center;
  1025. }
  1026. .card-group {
  1027. margin-top: 50px;
  1028. .card {
  1029. box-shadow: 0 0 10px rgb(32 32 32 / 25%);
  1030. ul {
  1031. padding: 0;
  1032. list-style: none;
  1033. img {
  1034. margin-bottom: 1px;
  1035. }
  1036. }
  1037. .price {
  1038. width: 100%;
  1039. padding: 10px 0;
  1040. font-size: 28px;
  1041. font-weight: bold;
  1042. text-align: center;
  1043. color: #fff;
  1044. background-color: #ea5413;
  1045. letter-spacing: 2px;
  1046. }
  1047. .buy-btn {
  1048. padding: 10px 20px;
  1049. color: #fff;
  1050. border: 1px solid transparent;
  1051. border-radius: 50px;
  1052. background: #ea5413;
  1053. transition: all 0.3s;
  1054. &:hover {
  1055. color: #ea5413;
  1056. border: 1px solid #ea5413;
  1057. background: #fff;
  1058. }
  1059. }
  1060. }
  1061. .paypal-content {
  1062. margin: 0 20px;
  1063. box-shadow: none;
  1064. }
  1065. }
  1066. .direction-list {
  1067. margin-top: 100px;
  1068. img {
  1069. width: 50px;
  1070. object-fit: contain;
  1071. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  1072. }
  1073. .content > div {
  1074. margin-bottom: 40px;
  1075. padding: 0px 15px;
  1076. border-left: 1px solid rgba(0, 0, 0, 0.125);
  1077. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1078. }
  1079. section {
  1080. h5 {
  1081. margin: 0;
  1082. font-size: 18px;
  1083. font-weight: bold;
  1084. }
  1085. p {
  1086. font-size: 14px;
  1087. }
  1088. }
  1089. }
  1090. .accordion-button {
  1091. padding: 20px;
  1092. }
  1093. .accordion-button:not(.collapsed) {
  1094. color: #ea5413 !important;
  1095. background-color: #ffebe2 !important;
  1096. }
  1097. button:focus:not(:focus-visible) {
  1098. box-shadow: none !important;
  1099. }
  1100. .accordion-button:not(.collapsed)::after {
  1101. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea5413'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  1102. }
  1103. @media (max-width: 767px) {
  1104. & .category.dm-description {
  1105. padding-top: 6rem;
  1106. }
  1107. }
  1108. @media (max-width: 575px) {
  1109. & .category.dm-description {
  1110. padding-top: 14rem;
  1111. }
  1112. }
  1113. }
  1114. /* youtube-views End */
  1115. /* seo-image Start */
  1116. .seo-image {
  1117. overflow-x: hidden;
  1118. p {
  1119. line-height: 32px;
  1120. }
  1121. .header {
  1122. padding: 0;
  1123. }
  1124. .video-box {
  1125. width: 100%;
  1126. padding-bottom: 56%;
  1127. }
  1128. .content {
  1129. margin: 150px auto;
  1130. @media (max-width: 767px) {
  1131. margin: 80px auto;
  1132. }
  1133. }
  1134. .line {
  1135. width: 820px;
  1136. position: absolute;
  1137. top: -70px;
  1138. left: 345px;
  1139. @media (max-width: 1400px) {
  1140. width: 840px;
  1141. top: -85px;
  1142. left: 210px;
  1143. }
  1144. @media (max-width: 1200px) {
  1145. width: 880px;
  1146. top: -90px;
  1147. left: 114px;
  1148. }
  1149. @media (max-width: 991px) {
  1150. display: none;
  1151. }
  1152. }
  1153. .title {
  1154. font-size: 28px;
  1155. color: #f6ab1c;
  1156. font-weight: bold;
  1157. }
  1158. .img-item {
  1159. @media (max-width: 991px) {
  1160. width: 100%;
  1161. max-width: 100% !important;
  1162. }
  1163. }
  1164. .purple-circle,
  1165. .orange-circle {
  1166. width: 100%;
  1167. @media (max-width: 991px) {
  1168. width: 60%;
  1169. }
  1170. }
  1171. .purple-circle {
  1172. top: -470px;
  1173. right: -100%;
  1174. @media (max-width: 991px) {
  1175. top: -350px;
  1176. right: -150px;
  1177. }
  1178. @media (max-width: 767px) {
  1179. top: -250px;
  1180. right: -20px;
  1181. }
  1182. }
  1183. .orange-circle {
  1184. top: -200px;
  1185. left: -100%;
  1186. @media (max-width: 991px) {
  1187. top: -30vw;
  1188. left: -20vw;
  1189. }
  1190. }
  1191. .data-text {
  1192. .circle {
  1193. top: -400px;
  1194. right: -5vw;
  1195. @media (max-width: 991px) {
  1196. top: -250px;
  1197. }
  1198. @media (max-width: 767px) {
  1199. top: -120px;
  1200. }
  1201. }
  1202. }
  1203. }
  1204. /* seo-image End */
  1205. /* 共用 className Start */
  1206. .purple-circle,
  1207. .orange-circle {
  1208. position: absolute;
  1209. z-index: -1;
  1210. }
  1211. .data-text {
  1212. position: relative;
  1213. p {
  1214. font-size: 28px;
  1215. font-weight: bold;
  1216. text-align: center;
  1217. }
  1218. .circle {
  1219. width: 500px;
  1220. z-index: -100;
  1221. position: absolute;
  1222. @media (max-width: 991px) {
  1223. width: 400px;
  1224. }
  1225. @media (max-width: 767px) {
  1226. width: 250px;
  1227. }
  1228. }
  1229. }
  1230. /* 共用 className End */