style.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409
  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: bold;
  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: 0.5rem 2rem;
  525. border: none;
  526. outline: none;
  527. border-radius: 4rem;
  528. background: #ea5413;
  529. font-size: 1.3rem;
  530. color: white;
  531. }
  532. .ai-training__action__img {
  533. width: 15rem;
  534. height: 15rem;
  535. background-repeat: no-repeat;
  536. background-position: center;
  537. background-size: cover;
  538. border-radius: 50%;
  539. border: 3px solid #ffdbd6;
  540. }
  541. .hero-btn {
  542. border: none;
  543. outline: none;
  544. border-radius: 3rem;
  545. margin-top: 0.5rem;
  546. padding: 0.6rem 1.5rem;
  547. background: linear-gradient(20deg, #ea5413, #920783);
  548. color: white;
  549. font-size: 1.1rem;
  550. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.53);
  551. }
  552. .contact-btn {
  553. text-decoration: none;
  554. color: white;
  555. border: 1px solid #ea5413;
  556. padding: 0.6rem 1.5rem;
  557. outline: none;
  558. background-color: #ea5413;
  559. margin-top: 0.5rem;
  560. border-radius: 3rem;
  561. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  562. transition: all 0.3s;
  563. }
  564. .contact-btn:hover {
  565. color: #ea5413;
  566. background-color: transparent;
  567. border: 1px solid #ea5413;
  568. }
  569. .loaded {
  570. box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3), 0 6px 20px 0 rgba(165, 200, 213, 0.41);
  571. margin-bottom: 4rem;
  572. }
  573. .pageForm-title {
  574. padding: 0 0 0 40px;
  575. background-image: url(/imgs/dm/accept.png);
  576. background-position: 0 0;
  577. background-repeat: no-repeat;
  578. background-size: 30px auto;
  579. }
  580. .pageForm-txt {
  581. padding-left: 40px;
  582. }
  583. .pageForm-notice {
  584. padding-left: 40px;
  585. color: grey;
  586. margin-top: 50px;
  587. }
  588. .pageForm-p {
  589. padding: 40px;
  590. }
  591. .btn-detailForm {
  592. background-color: transparent;
  593. border: none;
  594. outline: none;
  595. color: #ff892e;
  596. padding: 0 0;
  597. padding-bottom: 0.1rem;
  598. margin-bottom: 0.8rem;
  599. display: inline-block;
  600. border-bottom: 1px dotted #ff892e;
  601. transition: all 0.4s;
  602. text-decoration: none;
  603. }
  604. .btn-detailForm:hover {
  605. transform: translate(2px, 2px);
  606. text-decoration: none;
  607. color: #ff892e;
  608. }
  609. @media (max-width: 1300px) {
  610. .header-right__video {
  611. position: absolute;
  612. width: 76%;
  613. }
  614. }
  615. @media (max-width: 992px) {
  616. .header-title {
  617. font-size: 3rem;
  618. }
  619. .cntheader .header-title {
  620. font-size: 2.2rem;
  621. }
  622. .header-right {
  623. height: 40vh;
  624. }
  625. .header-right-magnifier {
  626. right: -2.5rem;
  627. bottom: 1rem;
  628. }
  629. .header__sub {
  630. font-size: 1.3rem;
  631. }
  632. .header__sub::before,
  633. .header__sub::after {
  634. width: 8%;
  635. }
  636. .header__sub::before {
  637. left: 30%;
  638. }
  639. .header__sub::after {
  640. left: 62%;
  641. }
  642. .header__form__input {
  643. font-size: 0.9rem;
  644. }
  645. .category-btngrp {
  646. padding: 0;
  647. }
  648. .category-btn {
  649. padding: 0.3rem 1.5rem;
  650. font-size: 1.2rem;
  651. }
  652. .ctncategory-btn {
  653. padding: 0.2rem 1rem;
  654. font-size: 1rem;
  655. }
  656. .top3 .row {
  657. padding: 0;
  658. }
  659. .card__rank {
  660. padding: 0.8rem 1rem;
  661. }
  662. .top3__num {
  663. left: 0.6rem;
  664. top: -2.5rem;
  665. font-size: 4rem;
  666. }
  667. .card__rank__word {
  668. margin-left: 1.5rem;
  669. font-size: 1.2rem;
  670. }
  671. .card__rank hr {
  672. margin-top: 8px;
  673. margin-bottom: 8px;
  674. }
  675. .top20 .row {
  676. padding: 0;
  677. }
  678. .top20__num {
  679. font-size: 2.1rem;
  680. width: 1.6rem;
  681. }
  682. .container__footer {
  683. width: 95vw;
  684. }
  685. .header__form {
  686. width: 85%;
  687. position: relative;
  688. }
  689. .header__form__input {
  690. margin-left: 0;
  691. width: 100%;
  692. }
  693. .header__form__sub {
  694. transform: none;
  695. position: absolute;
  696. right: 0;
  697. top: 0;
  698. }
  699. .header-right-linecir {
  700. bottom: 0;
  701. }
  702. .cntheader__sub {
  703. font-size: 1.2rem;
  704. }
  705. .cntheader__sub::before {
  706. left: 13%;
  707. }
  708. .cntheader__sub::after {
  709. left: 72%;
  710. }
  711. .toparticle__title img {
  712. position: absolute;
  713. width: 90px;
  714. right: -2rem;
  715. top: -2rem;
  716. }
  717. .toparticle__top {
  718. font-size: 1.7rem;
  719. }
  720. .fb__fr {
  721. width: 100%;
  722. }
  723. .cntsubscribe__form {
  724. width: 100%;
  725. }
  726. .ai-training__action__box {
  727. flex-direction: column;
  728. }
  729. }
  730. @media (max-width: 767px) {
  731. .header .col-md-5 {
  732. margin-bottom: 3rem;
  733. }
  734. .header-right-bubble {
  735. width: 15%;
  736. }
  737. .header-right-magnifier {
  738. right: 4rem;
  739. bottom: 1rem;
  740. }
  741. .category {
  742. padding-top: 4rem;
  743. }
  744. .category.dm-description {
  745. padding-top: 4rem;
  746. padding-left: 0;
  747. padding-right: 0;
  748. margin-top: 4.5rem;
  749. }
  750. .category.mt-xl {
  751. margin-top: 8.5rem;
  752. }
  753. .category.dm-description h5 {
  754. padding-left: 1rem;
  755. padding-right: 1rem;
  756. }
  757. .top3 {
  758. padding-bottom: 2rem;
  759. }
  760. .top3 .col-md-4 {
  761. margin-bottom: 1.5rem;
  762. }
  763. .top3 .col-md-4:nth-of-type(3) {
  764. margin-bottom: 0;
  765. }
  766. .card__rank {
  767. margin-bottom: 1.5rem;
  768. }
  769. .row-right {
  770. margin-top: 2rem;
  771. }
  772. .cntheader {
  773. padding-bottom: 0rem;
  774. }
  775. .header-right__video {
  776. position: absolute;
  777. width: 70%;
  778. left: 2.3rem;
  779. top: 1.5rem;
  780. }
  781. .img-block-list {
  782. padding: 2rem 1.5rem;
  783. }
  784. .ai-training__card .card-img-top {
  785. height: 50vh;
  786. }
  787. }
  788. @media (max-width: 576px) {
  789. .header-title {
  790. font-size: 2.5rem;
  791. }
  792. .header.ai-training {
  793. height: 80vh;
  794. }
  795. .header-right {
  796. height: 30vh;
  797. }
  798. .header-right-magnifier {
  799. right: 0rem;
  800. bottom: 1.5rem;
  801. }
  802. .category-btn {
  803. padding: 0.2rem 1rem;
  804. font-size: 1rem;
  805. }
  806. .category {
  807. padding: 1rem;
  808. }
  809. .footer-img {
  810. height: 50px;
  811. }
  812. .footer {
  813. font-size: 0.9rem;
  814. }
  815. .pageForm-p {
  816. padding: 15px;
  817. }
  818. .pageForm {
  819. width: 95%;
  820. }
  821. }
  822. @media (max-width: 480px) {
  823. .ctncategory-btn {
  824. margin-top: 0.6rem;
  825. }
  826. .header-right__video {
  827. position: absolute;
  828. width: 75%;
  829. left: 2.1rem;
  830. top: 1.3rem;
  831. }
  832. }
  833. /* blog-traffic Start */
  834. .blog-traffic {
  835. overflow-x: hidden;
  836. }
  837. .blog-traffic .header {
  838. padding: 0;
  839. }
  840. .blog-traffic .banner {
  841. width: 100vw;
  842. height: auto;
  843. position: absolute;
  844. z-index: -10;
  845. }
  846. @media (max-width: 767px) {
  847. .blog-traffic .banner {
  848. width: 150vw;
  849. height: auto;
  850. }
  851. }
  852. .blog-traffic .header-img {
  853. width: 150%;
  854. height: auto;
  855. position: relative;
  856. top: -30px;
  857. right: 30px;
  858. z-index: -1;
  859. }
  860. @media (max-width: 767px) {
  861. .blog-traffic .header-img {
  862. width: 100%;
  863. top: -45px;
  864. right: unset;
  865. }
  866. }
  867. .blog-traffic .header-title {
  868. font-size: 2.5rem;
  869. line-height: 65px;
  870. font-weight: 600;
  871. color: #000;
  872. }
  873. @media (max-width: 768px) {
  874. .blog-traffic .header-title {
  875. font-size: 2.2rem;
  876. }
  877. }
  878. .blog-traffic .dm-description {
  879. margin-top: -250px;
  880. }
  881. @media (max-width: 1400px) {
  882. .blog-traffic .dm-description {
  883. margin-top: -190px;
  884. }
  885. }
  886. @media (max-width: 991px) {
  887. .blog-traffic .dm-description {
  888. margin-top: -100px;
  889. }
  890. }
  891. .blog-traffic .dm-description p {
  892. font-size: 20px;
  893. line-height: 32px;
  894. }
  895. .blog-traffic .category {
  896. padding: 0;
  897. position: relative;
  898. }
  899. .blog-traffic .category.dm-description {
  900. padding: 0;
  901. }
  902. @media (max-width: 575px) {
  903. .blog-traffic .category {
  904. padding: 0 10px;
  905. }
  906. }
  907. .blog-traffic .category h4 {
  908. font-size: 2rem;
  909. }
  910. .blog-traffic .category h4,
  911. .blog-traffic .category .sub-title {
  912. margin: 0;
  913. color: #f5ab1b;
  914. font-weight: bold;
  915. }
  916. .blog-traffic .category-sub-h2::after {
  917. width: 3rem;
  918. border-bottom: 10px solid #ea5413;
  919. margin-top: 15px;
  920. }
  921. .blog-traffic ul {
  922. padding: 0;
  923. list-style: none;
  924. }
  925. .blog-traffic ul li {
  926. line-height: 32px;
  927. }
  928. .blog-traffic .img-block-img {
  929. width: 12%;
  930. -o-object-fit: contain;
  931. object-fit: contain;
  932. image-rendering: -webkit-optimize-contrast;
  933. position: relative;
  934. top: -30px;
  935. }
  936. @media (max-width: 1200px) {
  937. .blog-traffic .img-block-img {
  938. top: -10px;
  939. }
  940. }
  941. @media (max-width: 991px) {
  942. .blog-traffic .img-block-img {
  943. width: 15%;
  944. }
  945. }
  946. @media (max-width: 767px) {
  947. .blog-traffic .img-block-img {
  948. width: 20%;
  949. top: 5px;
  950. }
  951. }
  952. @media (max-width: 490px) {
  953. .blog-traffic .img-block-img {
  954. top: 15px;
  955. }
  956. }
  957. @media (max-width: 414px) {
  958. .blog-traffic .img-block-img {
  959. top: 22px;
  960. }
  961. }
  962. @media (max-width: 1200px) {
  963. .blog-traffic .img-first {
  964. top: 0;
  965. }
  966. }
  967. @media (max-width: 767px) {
  968. .blog-traffic .img-first {
  969. top: 15px;
  970. }
  971. }
  972. @media (max-width: 490px) {
  973. .blog-traffic .img-first {
  974. top: 40px;
  975. }
  976. }
  977. .blog-traffic .add-img {
  978. width: 130px;
  979. margin: 10px auto 0;
  980. image-rendering: -webkit-optimize-contrast;
  981. }
  982. @media (max-width: 991px) {
  983. .blog-traffic .add-img {
  984. margin: 0 auto;
  985. }
  986. }
  987. @media (max-width: 767px) {
  988. .blog-traffic .add-img {
  989. margin: 10px auto -25px;
  990. }
  991. }
  992. .blog-traffic .purple-circle {
  993. width: 50%;
  994. left: -250px;
  995. bottom: 100px;
  996. }
  997. @media (max-width: 991px) {
  998. .blog-traffic .purple-circle {
  999. left: -150px;
  1000. }
  1001. }
  1002. @media (max-width: 767px) {
  1003. .blog-traffic .purple-circle {
  1004. left: -50px;
  1005. }
  1006. }
  1007. .blog-traffic .orange-circle {
  1008. width: 50%;
  1009. right: -200px;
  1010. top: -200px;
  1011. }
  1012. @media (max-width: 767px) {
  1013. .blog-traffic .orange-circle {
  1014. right: -100px;
  1015. top: -150px;
  1016. }
  1017. }
  1018. .blog-traffic .data-text .circle {
  1019. top: -250px;
  1020. right: -5vw;
  1021. }
  1022. @media (max-width: 767px) {
  1023. .blog-traffic .data-text .circle {
  1024. top: 0px;
  1025. }
  1026. }
  1027. /* blog-traffic End */
  1028. /* seo Start */
  1029. #seo-dm {
  1030. overflow: hidden;
  1031. }
  1032. #seo-dm .stock-01 {
  1033. position: absolute;
  1034. z-index: -1;
  1035. width: 800px;
  1036. top: -180px;
  1037. left: -300px;
  1038. }
  1039. #seo-dm .block-content {
  1040. margin-left: -35px;
  1041. }
  1042. #seo-dm .block-content h3 {
  1043. color: #f6ab1c;
  1044. font-size: 2.2rem;
  1045. font-weight: bold;
  1046. }
  1047. #seo-dm .block-content p {
  1048. color: #656565;
  1049. font-weight: bold;
  1050. }
  1051. /* seo End */
  1052. /* youtube-views Start */
  1053. #youtube-views {
  1054. overflow-x: hidden;
  1055. }
  1056. #youtube-views h5 {
  1057. line-height: 32px;
  1058. }
  1059. #youtube-views .title {
  1060. color: #ea5413;
  1061. font-size: 1.3rem;
  1062. font-weight: bold;
  1063. }
  1064. #youtube-views .header-right {
  1065. background-position: center;
  1066. }
  1067. #youtube-views .card-group {
  1068. margin-top: 50px;
  1069. }
  1070. #youtube-views .card-group .card {
  1071. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  1072. }
  1073. #youtube-views .card-group .card ul {
  1074. padding: 0;
  1075. list-style: none;
  1076. }
  1077. #youtube-views .card-group .card ul img {
  1078. margin-bottom: 1px;
  1079. }
  1080. #youtube-views .card-group .card .price {
  1081. width: 100%;
  1082. padding: 10px 0;
  1083. font-size: 28px;
  1084. font-weight: bold;
  1085. text-align: center;
  1086. color: #fff;
  1087. background-color: #ea5413;
  1088. letter-spacing: 2px;
  1089. }
  1090. #youtube-views .card-group .card .buy-btn {
  1091. padding: 10px 20px;
  1092. color: #fff;
  1093. border: 1px solid transparent;
  1094. border-radius: 50px;
  1095. background: #ea5413;
  1096. transition: all 0.3s;
  1097. }
  1098. #youtube-views .card-group .card .buy-btn:hover {
  1099. color: #ea5413;
  1100. border: 1px solid #ea5413;
  1101. background: #fff;
  1102. }
  1103. #youtube-views .card-group .paypal-content {
  1104. margin: 0 20px;
  1105. box-shadow: none;
  1106. }
  1107. #youtube-views .direction-list {
  1108. margin-top: 100px;
  1109. }
  1110. #youtube-views .direction-list img {
  1111. width: 50px;
  1112. -o-object-fit: contain;
  1113. object-fit: contain;
  1114. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  1115. }
  1116. #youtube-views .direction-list .content > div {
  1117. margin-bottom: 40px;
  1118. padding: 0px 15px;
  1119. border-left: 1px solid rgba(0, 0, 0, 0.125);
  1120. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1121. }
  1122. #youtube-views .direction-list section h5 {
  1123. margin: 0;
  1124. font-size: 18px;
  1125. font-weight: bold;
  1126. }
  1127. #youtube-views .direction-list section p {
  1128. font-size: 14px;
  1129. }
  1130. #youtube-views .accordion-button {
  1131. padding: 20px;
  1132. }
  1133. #youtube-views .accordion-button:not(.collapsed) {
  1134. color: #ea5413 !important;
  1135. background-color: #ffebe2 !important;
  1136. }
  1137. #youtube-views button:focus:not(:focus-visible) {
  1138. box-shadow: none !important;
  1139. }
  1140. #youtube-views .accordion-button:not(.collapsed)::after {
  1141. 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");
  1142. }
  1143. @media (max-width: 767px) {
  1144. #youtube-views .category.dm-description {
  1145. padding-top: 6rem;
  1146. }
  1147. }
  1148. @media (max-width: 575px) {
  1149. #youtube-views .category.dm-description {
  1150. padding-top: 14rem;
  1151. }
  1152. }
  1153. /* youtube-views End */
  1154. /* seo-image Start */
  1155. .seo-image {
  1156. overflow-x: hidden;
  1157. }
  1158. .seo-image p {
  1159. line-height: 32px;
  1160. }
  1161. .seo-image .header {
  1162. padding: 0;
  1163. }
  1164. .seo-image .video-box {
  1165. width: 100%;
  1166. padding-bottom: 56%;
  1167. }
  1168. .seo-image .content {
  1169. margin: 150px auto;
  1170. }
  1171. @media (max-width: 767px) {
  1172. .seo-image .content {
  1173. margin: 80px auto;
  1174. }
  1175. }
  1176. .seo-image .line {
  1177. width: 820px;
  1178. position: absolute;
  1179. top: -70px;
  1180. left: 345px;
  1181. }
  1182. @media (max-width: 1400px) {
  1183. .seo-image .line {
  1184. width: 840px;
  1185. top: -85px;
  1186. left: 210px;
  1187. }
  1188. }
  1189. @media (max-width: 1200px) {
  1190. .seo-image .line {
  1191. width: 880px;
  1192. top: -90px;
  1193. left: 114px;
  1194. }
  1195. }
  1196. @media (max-width: 991px) {
  1197. .seo-image .line {
  1198. display: none;
  1199. }
  1200. }
  1201. .seo-image .title {
  1202. font-size: 28px;
  1203. color: #f6ab1c;
  1204. font-weight: bold;
  1205. }
  1206. @media (max-width: 991px) {
  1207. .seo-image .img-item {
  1208. width: 100%;
  1209. max-width: 100% !important;
  1210. }
  1211. }
  1212. .seo-image .purple-circle,
  1213. .seo-image .orange-circle {
  1214. width: 100%;
  1215. }
  1216. @media (max-width: 991px) {
  1217. .seo-image .purple-circle,
  1218. .seo-image .orange-circle {
  1219. width: 60%;
  1220. }
  1221. }
  1222. .seo-image .purple-circle {
  1223. top: -470px;
  1224. right: -100%;
  1225. }
  1226. @media (max-width: 991px) {
  1227. .seo-image .purple-circle {
  1228. top: -350px;
  1229. right: -150px;
  1230. }
  1231. }
  1232. @media (max-width: 767px) {
  1233. .seo-image .purple-circle {
  1234. top: -250px;
  1235. right: -20px;
  1236. }
  1237. }
  1238. .seo-image .orange-circle {
  1239. top: -200px;
  1240. left: -100%;
  1241. }
  1242. @media (max-width: 991px) {
  1243. .seo-image .orange-circle {
  1244. top: -30vw;
  1245. left: -20vw;
  1246. }
  1247. }
  1248. .seo-image .data-text .circle {
  1249. top: -400px;
  1250. right: -5vw;
  1251. }
  1252. @media (max-width: 991px) {
  1253. .seo-image .data-text .circle {
  1254. top: -250px;
  1255. }
  1256. }
  1257. @media (max-width: 767px) {
  1258. .seo-image .data-text .circle {
  1259. top: -120px;
  1260. }
  1261. }
  1262. /* seo-image End */
  1263. /* 共用 className Start */
  1264. .purple-circle,
  1265. .orange-circle {
  1266. position: absolute;
  1267. z-index: -1;
  1268. }
  1269. .data-text {
  1270. position: relative;
  1271. }
  1272. .data-text p {
  1273. font-size: 28px;
  1274. font-weight: bold;
  1275. text-align: center;
  1276. }
  1277. .data-text .circle {
  1278. width: 500px;
  1279. z-index: -100;
  1280. position: absolute;
  1281. }
  1282. @media (max-width: 991px) {
  1283. .data-text .circle {
  1284. width: 400px;
  1285. }
  1286. }
  1287. @media (max-width: 767px) {
  1288. .data-text .circle {
  1289. width: 250px;
  1290. }
  1291. }
  1292. /* 共用 className End *//*# sourceMappingURL=style.css.map */