style.css 22 KB

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