style.css 25 KB

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