style.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  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. .pageForm-btn {
  133. position: fixed;
  134. bottom: 90px;
  135. right: 17px;
  136. z-index: 1000;
  137. cursor: pointer;
  138. }
  139. .pageForm-btn button {
  140. width: 60px;
  141. height: 60px;
  142. border: none;
  143. border-radius: 100%;
  144. box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 24px;
  145. background-image: linear-gradient(-225deg, rgb(241, 95, 121) 35%, rgb(178, 69, 146) 100%);
  146. }
  147. .pageForm-btn button:hover {
  148. opacity: 0.9;
  149. }
  150. .pageForm-btn button img {
  151. cursor: pointer;
  152. filter: invert(99%) sepia(0%) saturate(2%) hue-rotate(31deg) brightness(107%) contrast(100%);
  153. }
  154. /* footer.html Start */
  155. .footer {
  156. color: #656565;
  157. }
  158. .footer .footer-contacts {
  159. margin-top: 2rem;
  160. line-height: 32px;
  161. }
  162. .footer a {
  163. color: #656565;
  164. text-decoration: none;
  165. }
  166. .footer h5 {
  167. color: black;
  168. font-weight: 600;
  169. padding-bottom: 15px;
  170. }
  171. .footer .link {
  172. padding-bottom: 20px;
  173. }
  174. .footer {
  175. background-color: #f0f0f0;
  176. padding: 3rem;
  177. }
  178. .footer .right-column {
  179. border-left: 1px solid black;
  180. }
  181. .footer .footer-aigirl {
  182. font-weight: 600;
  183. font-size: 2rem;
  184. margin-top: 1rem;
  185. margin-bottom: 1rem;
  186. }
  187. .footer .footer-follow {
  188. font-size: 1.6rem;
  189. margin-bottom: 1rem;
  190. color: black;
  191. font-size: 1rem;
  192. font-weight: 600;
  193. margin-top: 2rem;
  194. }
  195. .footer .footer-socials a {
  196. margin-right: 5px;
  197. }
  198. /* footer.html End */
  199. /* footer_default.html Start */
  200. .footer h4 {
  201. text-transform: uppercase;
  202. color: white;
  203. font-size: 14px;
  204. font-weight: 800;
  205. }
  206. .footer__btn__text {
  207. font-size: 1.3rem;
  208. color: white;
  209. }
  210. .footer .btn {
  211. border: 2px solid #38a7bb;
  212. color: #38a7bb;
  213. text-decoration: none;
  214. }
  215. .followus__btn {
  216. text-decoration: none;
  217. color: white;
  218. }
  219. .followus__btn:hover {
  220. color: #38a7bb;
  221. }
  222. .footer .btn:hover {
  223. color: white;
  224. background-color: #38a7bb;
  225. }
  226. .followus__txt {
  227. display: inline-block;
  228. margin-right: 1rem;
  229. color: white;
  230. font-weight: 600;
  231. }
  232. .footer-img {
  233. height: 60px;
  234. }
  235. /* footer_default.html End */
  236. /* iframe Start */
  237. .video-box {
  238. position: relative;
  239. width: 70%;
  240. height: 0;
  241. padding-bottom: 40%;
  242. }
  243. @media (max-width: 1200px) {
  244. .video-box {
  245. width: 80%;
  246. padding-bottom: 45%;
  247. }
  248. }
  249. @media (max-width: 767px) {
  250. .video-box {
  251. margin: 50px auto 0;
  252. }
  253. }
  254. @media (max-width: 576px) {
  255. .video-box {
  256. width: 90%;
  257. padding-bottom: 50%;
  258. }
  259. }
  260. .video-box iframe {
  261. position: absolute;
  262. top: 0;
  263. left: 0;
  264. width: 100%;
  265. height: 100%;
  266. }
  267. /* iframe End */
  268. .category {
  269. padding: 2rem 0rem;
  270. }
  271. .category.dm-description {
  272. padding: 2rem 8rem;
  273. }
  274. .category-sub-h2 {
  275. position: relative;
  276. }
  277. .category-sub-h2::after {
  278. position: absolute;
  279. content: "";
  280. width: 4rem;
  281. height: 1rem;
  282. border-bottom: 10px solid #ff892e;
  283. left: 50%;
  284. top: -1.5rem;
  285. transform: translateX(-50%);
  286. }
  287. .category-btngrp {
  288. padding: 0 8rem;
  289. }
  290. .category-btn {
  291. background-color: #a7d9e2;
  292. border: none;
  293. border-radius: 5rem;
  294. outline: none;
  295. color: white;
  296. font-size: 1.3rem;
  297. padding: 0.4rem 2rem;
  298. text-decoration: none;
  299. }
  300. .category-btn.active {
  301. background-color: #38a7bb;
  302. text-decoration: none;
  303. color: white;
  304. }
  305. .card__rank {
  306. border: 1px solid #cecece;
  307. box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);
  308. position: relative;
  309. padding: 1rem 1.5rem;
  310. }
  311. .top20 .card__rank {
  312. margin-bottom: 1.5rem;
  313. }
  314. .top3 {
  315. padding: 3rem 0rem;
  316. padding-bottom: 5rem;
  317. position: relative;
  318. }
  319. .top3 .row {
  320. padding: 0rem 4rem;
  321. }
  322. .top3 .backfill {
  323. position: absolute;
  324. width: 100%;
  325. height: 100px;
  326. background-color: #ffebe8;
  327. left: 0;
  328. right: 0;
  329. top: 7rem;
  330. }
  331. .top3__num {
  332. color: #fca25e;
  333. font-size: 5.8rem;
  334. font-family: "Trebuchet MS";
  335. position: absolute;
  336. left: 1rem;
  337. top: -3.5rem;
  338. font-weight: 300;
  339. }
  340. .card__rank__word {
  341. color: #20616d;
  342. margin-left: 3rem;
  343. font-size: 1.8rem;
  344. font-weight: 400;
  345. }
  346. .card__rank__goto {
  347. text-align: right;
  348. }
  349. .card__rank__link {
  350. color: #38a7bb;
  351. text-decoration: none;
  352. font-weight: 400;
  353. }
  354. .card__rank__link:hover {
  355. color: #19879b;
  356. }
  357. .top20 {
  358. padding-bottom: 5rem;
  359. }
  360. .top20 .row {
  361. padding: 0rem 4rem;
  362. }
  363. .top20 .card__rank__word {
  364. margin-left: 0;
  365. }
  366. .top20__num {
  367. color: #fca25e;
  368. font-size: 2.5rem;
  369. font-family: "Trebuchet MS";
  370. font-weight: 300;
  371. display: inline-block;
  372. width: 3rem;
  373. }
  374. /* content page */
  375. .cntheader {
  376. margin-top: 81px;
  377. padding: 4rem 0;
  378. position: relative;
  379. padding-bottom: 2rem;
  380. }
  381. .cntheader__sub {
  382. color: #38a7bb;
  383. font-size: 1.5rem;
  384. font-weight: 300;
  385. position: relative;
  386. }
  387. .cntheader__sub::before,
  388. .cntheader__sub::after {
  389. content: " ";
  390. position: absolute;
  391. width: 15%;
  392. height: 1px;
  393. background-color: #38a7bb;
  394. top: 50%;
  395. }
  396. .cntheader__sub::before {
  397. left: 18%;
  398. }
  399. .cntheader__sub::after {
  400. left: 67%;
  401. }
  402. .cntheader .category-btngrp {
  403. padding: 0 4rem;
  404. }
  405. .card__art {
  406. padding: 1rem;
  407. border: 1px solid #20616d;
  408. border-radius: 1rem;
  409. margin-bottom: 1rem;
  410. }
  411. .card__title {
  412. font-size: 1.8rem;
  413. font-weight: 400;
  414. }
  415. .card__text {
  416. color: #918f8f;
  417. }
  418. .card__link {
  419. display: inline-block;
  420. color: #38a7bb;
  421. margin-right: 1rem;
  422. text-decoration: none;
  423. }
  424. .card__link:hover {
  425. color: #20616d;
  426. }
  427. .toparticle {
  428. border: 1px solid #cecece;
  429. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  430. }
  431. .toparticle__title {
  432. color: white;
  433. background-color: #38a7bb;
  434. text-align: center;
  435. font-size: 1.3rem;
  436. padding: 0.3rem 0;
  437. position: relative;
  438. }
  439. .toparticle__title img {
  440. position: absolute;
  441. width: 150px;
  442. right: -4rem;
  443. top: -3.5rem;
  444. }
  445. .toparticle__list {
  446. padding: 1.5rem;
  447. padding-top: 0;
  448. list-style: none;
  449. padding-bottom: 1rem;
  450. }
  451. .toparticle__list-item {
  452. padding: 0.3rem;
  453. border-bottom: 1px solid #cecece;
  454. color: #38a7bb;
  455. position: relative;
  456. }
  457. .toparticle__list-item:nth-of-type(10) {
  458. border: none;
  459. }
  460. .toparticle__list-item a {
  461. text-decoration: none;
  462. color: #38a7bb;
  463. }
  464. .toparticle__num {
  465. color: #fca25e;
  466. font-size: 1.8rem;
  467. font-family: "Trebuchet MS";
  468. font-weight: 300;
  469. margin-right: 8px;
  470. }
  471. .toparticle__top {
  472. font-size: 2rem;
  473. }
  474. .toparticle__list-item small {
  475. position: absolute;
  476. right: 0;
  477. top: 45%;
  478. }
  479. .cntsubscribe {
  480. text-align: center;
  481. }
  482. .cntsubscribe__form {
  483. position: relative;
  484. }
  485. .cntsubscribe__sub {
  486. border-radius: 10rem;
  487. background-color: #fca25e;
  488. color: white;
  489. border: none;
  490. width: 5rem;
  491. position: absolute;
  492. right: 0;
  493. top: 0;
  494. padding: 0.45rem 0.8rem;
  495. }
  496. .cntsubscribe__sub:hover {
  497. background-color: #ff892e;
  498. color: white;
  499. }
  500. .cntsubscribe__input {
  501. border-radius: 10rem;
  502. padding: 0.4rem 0.8rem;
  503. width: 100%;
  504. }
  505. .img-block .img-block-img {
  506. width: 70%;
  507. }
  508. .img-block-list {
  509. padding: 2rem 6rem;
  510. }
  511. .img-block-linecir {
  512. position: absolute;
  513. right: 10%;
  514. bottom: 5%;
  515. width: 30%;
  516. z-index: -1;
  517. }
  518. .img-block-linecir.left {
  519. right: -10%;
  520. bottom: -5%;
  521. }
  522. .img-block-linecir.right {
  523. left: -10%;
  524. bottom: -5%;
  525. }
  526. .img-block-linecir.left {
  527. left: -10%;
  528. bottom: -5%;
  529. }
  530. .aboutus_img {
  531. width: 100%;
  532. }
  533. .aboutus_prize_img {
  534. border: 1.5rem solid rgb(231, 231, 231);
  535. border-radius: 1rem;
  536. }
  537. .header__ai-training__span {
  538. width: 6rem;
  539. height: 6rem;
  540. padding: 1rem;
  541. display: inline-block;
  542. font-size: 1.4rem;
  543. background-color: rgb(255, 255, 159);
  544. border-radius: 50%;
  545. }
  546. .ai-training__action {
  547. border: 3px dashed #ffebe8;
  548. }
  549. .ai-training__card .card-img-top {
  550. height: 35vh;
  551. }
  552. .ai-training__action ul {
  553. list-style: none;
  554. line-height: 2rem;
  555. }
  556. .ai-training__action__box {
  557. flex-direction: row;
  558. }
  559. .ai-training__action__btn {
  560. padding: 0.5rem 2rem;
  561. border: none;
  562. outline: none;
  563. border-radius: 4rem;
  564. background: #ea5413;
  565. font-size: 1.3rem;
  566. color: white;
  567. }
  568. .ai-training__action__img {
  569. width: 15rem;
  570. height: 15rem;
  571. background-repeat: no-repeat;
  572. background-position: center;
  573. background-size: cover;
  574. border-radius: 50%;
  575. border: 3px solid #ffdbd6;
  576. }
  577. .hero-btn {
  578. border: none;
  579. outline: none;
  580. border-radius: 3rem;
  581. margin-top: 0.5rem;
  582. padding: 0.6rem 1.5rem;
  583. background: linear-gradient(20deg, #ea5413, #920783);
  584. color: white;
  585. font-size: 1.1rem;
  586. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.5294117647);
  587. }
  588. .contact-btn {
  589. text-decoration: none;
  590. color: white;
  591. border: 1px solid #ea5413;
  592. padding: 0.6rem 1.5rem;
  593. outline: none;
  594. background-color: #ea5413;
  595. margin-top: 0.5rem;
  596. border-radius: 3rem;
  597. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  598. transition: all 0.3s;
  599. }
  600. .contact-btn:hover {
  601. color: #ea5413;
  602. background-color: transparent;
  603. border: 1px solid #ea5413;
  604. }
  605. .loaded {
  606. box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3019607843), 0 6px 20px 0 rgba(165, 200, 213, 0.4117647059);
  607. margin-bottom: 4rem;
  608. }
  609. .pageForm-title {
  610. padding: 0 0 0 40px;
  611. background-image: url(/imgs/dm/accept.png);
  612. background-position: 0 0;
  613. background-repeat: no-repeat;
  614. background-size: 30px auto;
  615. }
  616. .pageForm-txt {
  617. padding-left: 40px;
  618. }
  619. .pageForm-notice {
  620. padding-left: 40px;
  621. color: grey;
  622. margin-top: 50px;
  623. }
  624. .pageForm-p {
  625. padding: 40px;
  626. }
  627. .btn-detailForm {
  628. background-color: transparent;
  629. border: none;
  630. outline: none;
  631. color: #ff892e;
  632. padding: 0 0;
  633. padding-bottom: 0.1rem;
  634. margin-bottom: 0.8rem;
  635. display: inline-block;
  636. border-bottom: 1px dotted #ff892e;
  637. transition: all 0.4s;
  638. text-decoration: none;
  639. }
  640. .btn-detailForm:hover {
  641. transform: translate(2px, 2px);
  642. text-decoration: none;
  643. color: #ff892e;
  644. }
  645. @media (max-width: 1300px) {
  646. .header-right__video {
  647. position: absolute;
  648. width: 76%;
  649. }
  650. }
  651. @media (max-width: 992px) {
  652. .header-title {
  653. font-size: 3rem;
  654. }
  655. .cntheader .header-title {
  656. font-size: 2.2rem;
  657. }
  658. .header-right {
  659. height: 40vh;
  660. }
  661. .header-right-magnifier {
  662. right: -2.5rem;
  663. bottom: 1rem;
  664. }
  665. .header__sub {
  666. font-size: 1.3rem;
  667. }
  668. .header__sub::before,
  669. .header__sub::after {
  670. width: 8%;
  671. }
  672. .header__sub::before {
  673. left: 30%;
  674. }
  675. .header__sub::after {
  676. left: 62%;
  677. }
  678. .header__form__input {
  679. font-size: 0.9rem;
  680. }
  681. .category-btngrp {
  682. padding: 0;
  683. }
  684. .category-btn {
  685. padding: 0.3rem 1.5rem;
  686. font-size: 1.2rem;
  687. }
  688. .ctncategory-btn {
  689. padding: 0.2rem 1rem;
  690. font-size: 1rem;
  691. }
  692. .top3 .row {
  693. padding: 0;
  694. }
  695. .card__rank {
  696. padding: 0.8rem 1rem;
  697. }
  698. .top3__num {
  699. left: 0.6rem;
  700. top: -2.5rem;
  701. font-size: 4rem;
  702. }
  703. .card__rank__word {
  704. margin-left: 1.5rem;
  705. font-size: 1.2rem;
  706. }
  707. .card__rank hr {
  708. margin-top: 8px;
  709. margin-bottom: 8px;
  710. }
  711. .top20 .row {
  712. padding: 0;
  713. }
  714. .top20__num {
  715. font-size: 2.1rem;
  716. width: 1.6rem;
  717. }
  718. .container__footer {
  719. width: 95vw;
  720. }
  721. .header__form {
  722. width: 85%;
  723. position: relative;
  724. }
  725. .header__form__input {
  726. margin-left: 0;
  727. width: 100%;
  728. }
  729. .header__form__sub {
  730. transform: none;
  731. position: absolute;
  732. right: 0;
  733. top: 0;
  734. }
  735. .header-right-linecir {
  736. bottom: 0;
  737. }
  738. .cntheader__sub {
  739. font-size: 1.2rem;
  740. }
  741. .cntheader__sub::before {
  742. left: 13%;
  743. }
  744. .cntheader__sub::after {
  745. left: 72%;
  746. }
  747. .toparticle__title img {
  748. position: absolute;
  749. width: 90px;
  750. right: -2rem;
  751. top: -2rem;
  752. }
  753. .toparticle__top {
  754. font-size: 1.7rem;
  755. }
  756. .fb__fr {
  757. width: 100%;
  758. }
  759. .cntsubscribe__form {
  760. width: 100%;
  761. }
  762. .ai-training__action__box {
  763. flex-direction: column;
  764. }
  765. }
  766. @media (max-width: 767px) {
  767. .header .col-md-5 {
  768. margin-bottom: 3rem;
  769. }
  770. .header-right-bubble {
  771. width: 15%;
  772. }
  773. .header-right-magnifier {
  774. right: 4rem;
  775. bottom: 1rem;
  776. }
  777. .category {
  778. padding-top: 4rem;
  779. }
  780. .category.dm-description {
  781. padding-top: 4rem;
  782. padding-left: 0;
  783. padding-right: 0;
  784. margin-top: 4.5rem;
  785. }
  786. .category.mt-xl {
  787. margin-top: 8.5rem;
  788. }
  789. .category.dm-description h5 {
  790. padding-left: 1rem;
  791. padding-right: 1rem;
  792. }
  793. .top3 {
  794. padding-bottom: 2rem;
  795. }
  796. .top3 .col-md-4 {
  797. margin-bottom: 1.5rem;
  798. }
  799. .top3 .col-md-4:nth-of-type(3) {
  800. margin-bottom: 0;
  801. }
  802. .card__rank {
  803. margin-bottom: 1.5rem;
  804. }
  805. .row-right {
  806. margin-top: 2rem;
  807. }
  808. .cntheader {
  809. padding-bottom: 0rem;
  810. }
  811. .header-right__video {
  812. position: absolute;
  813. width: 70%;
  814. left: 2.3rem;
  815. top: 1.5rem;
  816. }
  817. .img-block-list {
  818. padding: 2rem 1.5rem;
  819. }
  820. .ai-training__card .card-img-top {
  821. height: 50vh;
  822. }
  823. }
  824. @media (max-width: 576px) {
  825. .header-title {
  826. font-size: 2.5rem;
  827. }
  828. .header.ai-training {
  829. height: 80vh;
  830. }
  831. .header-right {
  832. height: 30vh;
  833. }
  834. .header-right-magnifier {
  835. right: 0rem;
  836. bottom: 1.5rem;
  837. }
  838. .category-btn {
  839. padding: 0.2rem 1rem;
  840. font-size: 1rem;
  841. }
  842. .category {
  843. padding: 1rem;
  844. }
  845. .footer-img {
  846. height: 50px;
  847. }
  848. .footer {
  849. font-size: 0.9rem;
  850. }
  851. .pageForm-p {
  852. padding: 15px;
  853. }
  854. .pageForm {
  855. width: 95%;
  856. }
  857. }
  858. @media (max-width: 480px) {
  859. .ctncategory-btn {
  860. margin-top: 0.6rem;
  861. }
  862. .header-right__video {
  863. position: absolute;
  864. width: 75%;
  865. left: 2.1rem;
  866. top: 1.3rem;
  867. }
  868. }
  869. /* ai-anchor Start */
  870. #ai-anchor {
  871. overflow-x: hidden;
  872. }
  873. #ai-anchor .stock-bg {
  874. height: 850px;
  875. left: -15vw;
  876. top: -125px;
  877. position: absolute;
  878. z-index: -1;
  879. }
  880. @media (max-width: 1400px) {
  881. #ai-anchor .stock-bg {
  882. top: -130px;
  883. }
  884. }
  885. @media (max-width: 991px) {
  886. #ai-anchor .stock-bg {
  887. top: -175px;
  888. }
  889. }
  890. @media (max-width: 767px) {
  891. #ai-anchor .stock-bg {
  892. top: -155px;
  893. }
  894. }
  895. @media (max-width: 490px) {
  896. #ai-anchor .stock-bg {
  897. top: -130px;
  898. }
  899. }
  900. #ai-anchor .header-sub {
  901. padding: 0 10px;
  902. text-align: start;
  903. }
  904. #ai-anchor .header-sub span {
  905. display: inline-block;
  906. margin-top: 35px;
  907. font-size: 24px;
  908. font-weight: bold;
  909. color: #f8a154;
  910. }
  911. #ai-anchor .header-sub p {
  912. width: 450px;
  913. margin: 20px auto;
  914. }
  915. @media (max-width: 991px) {
  916. #ai-anchor .header-sub p {
  917. width: auto;
  918. }
  919. }
  920. #ai-anchor .ai-description {
  921. padding: 200px 0 100px;
  922. }
  923. @media (max-width: 991px) {
  924. #ai-anchor .ai-description {
  925. padding: 100px 0;
  926. }
  927. }
  928. #ai-anchor .ai-description div img {
  929. width: 30px;
  930. }
  931. #ai-anchor .ai-description h5 {
  932. margin: 0;
  933. font-size: 22px;
  934. font-weight: bold;
  935. color: #ea5413;
  936. }
  937. @media (max-width: 375px) {
  938. #ai-anchor .ai-description h5 {
  939. font-size: 20px;
  940. }
  941. }
  942. @media (max-width: 991px) {
  943. #ai-anchor .ai-description .triangle-item {
  944. margin-left: -35px;
  945. }
  946. }
  947. #ai-anchor .ai-description .triangle-item img {
  948. width: 40px;
  949. height: 100%;
  950. image-rendering: -webkit-optimize-contrast;
  951. }
  952. @media (max-width: 991px) {
  953. #ai-anchor .ai-description .triangle-item img {
  954. transform: rotate(90deg);
  955. }
  956. }
  957. #ai-anchor .content {
  958. width: 800px;
  959. margin: 10rem auto;
  960. padding: 2rem 8rem;
  961. border-radius: 20px;
  962. background-color: #fff2ec;
  963. font-size: 20px;
  964. }
  965. @media (max-width: 991px) {
  966. #ai-anchor .content {
  967. width: 90%;
  968. padding: 2rem 5vw;
  969. }
  970. }
  971. @media (max-width: 567px) {
  972. #ai-anchor .content {
  973. padding-top: 130px;
  974. }
  975. }
  976. #ai-anchor .content .img-01 {
  977. position: absolute;
  978. top: -75px;
  979. left: -30px;
  980. z-index: 1;
  981. width: 45%;
  982. image-rendering: -webkit-optimize-contrast;
  983. }
  984. @media (max-width: 567px) {
  985. #ai-anchor .content .img-01 {
  986. top: -40%;
  987. width: 250px;
  988. }
  989. }
  990. #ai-anchor .content .ai-anchor-price mark {
  991. background-color: transparent;
  992. padding: 2px 1px;
  993. border-radius: 5px;
  994. color: #3190da;
  995. background: linear-gradient(transparent 40%, rgba(255, 255, 255, 0) 50%, yellow 75%, yellow 90%, transparent 95%);
  996. }
  997. #ai-anchor .content,
  998. #ai-anchor .ai-description span {
  999. font-weight: bold;
  1000. color: #3190da;
  1001. }
  1002. /* ai-anchor End */
  1003. /* ad-operation Start */
  1004. #ad-operation {
  1005. overflow-x: hidden;
  1006. }
  1007. #ad-operation .header {
  1008. height: auto;
  1009. margin-top: -20px;
  1010. }
  1011. #ad-operation .header p {
  1012. font-weight: bold;
  1013. line-height: 32px;
  1014. }
  1015. #ad-operation .header p span {
  1016. font-size: 20px;
  1017. color: #ea5413;
  1018. }
  1019. #ad-operation .header .banner {
  1020. position: relative;
  1021. }
  1022. #ad-operation .header .banner .img {
  1023. max-width: 100vw;
  1024. height: auto;
  1025. }
  1026. #ad-operation .header .banner .text {
  1027. width: 100%;
  1028. position: absolute;
  1029. z-index: 100;
  1030. left: -55px;
  1031. top: -60px;
  1032. }
  1033. @media (max-width: 991px) {
  1034. #ad-operation .header .banner .text {
  1035. left: -45px;
  1036. top: -35px;
  1037. }
  1038. }
  1039. @media (max-width: 767px) {
  1040. #ad-operation .header .banner .text {
  1041. left: -30px;
  1042. top: -20px;
  1043. }
  1044. }
  1045. @media (max-width: 575px) {
  1046. #ad-operation .header .banner .text {
  1047. left: -15px;
  1048. top: -15px;
  1049. }
  1050. }
  1051. #ad-operation .header .banner .slogen {
  1052. display: flex;
  1053. flex-direction: column;
  1054. align-items: center;
  1055. position: absolute;
  1056. top: 63vw;
  1057. }
  1058. #ad-operation .header .banner .slogen h3 {
  1059. margin-bottom: 0;
  1060. font-size: 40px;
  1061. font-weight: bold;
  1062. }
  1063. @media (max-width: 1200px) {
  1064. #ad-operation .header .banner .slogen h3 {
  1065. font-size: 33px;
  1066. }
  1067. }
  1068. @media (max-width: 991px) {
  1069. #ad-operation .header .banner .slogen h3 {
  1070. font-size: 28px;
  1071. }
  1072. }
  1073. @media (max-width: 767px) {
  1074. #ad-operation .header .banner .slogen h3 {
  1075. font-size: 20px;
  1076. }
  1077. }
  1078. @media (max-width: 575px) {
  1079. #ad-operation .header .banner .slogen h3 {
  1080. font-size: 16px;
  1081. }
  1082. }
  1083. #ad-operation .header .banner .slogen h3 span {
  1084. margin: 20px 0;
  1085. display: inline-block;
  1086. font-size: 70px;
  1087. color: #900381;
  1088. }
  1089. @media (max-width: 1200px) {
  1090. #ad-operation .header .banner .slogen h3 span {
  1091. font-size: 58px;
  1092. }
  1093. }
  1094. @media (max-width: 991px) {
  1095. #ad-operation .header .banner .slogen h3 span {
  1096. margin: 10px 0;
  1097. font-size: 50px;
  1098. }
  1099. }
  1100. @media (max-width: 767px) {
  1101. #ad-operation .header .banner .slogen h3 span {
  1102. font-size: 36px;
  1103. }
  1104. }
  1105. @media (max-width: 575px) {
  1106. #ad-operation .header .banner .slogen h3 span {
  1107. margin: 5px 0;
  1108. font-size: 20px;
  1109. }
  1110. }
  1111. #ad-operation .header .banner .slogen h3 .point {
  1112. color: #dd541a;
  1113. }
  1114. #ad-operation .header .banner .slogen h3 small {
  1115. margin-left: 5px;
  1116. color: #868585;
  1117. text-decoration: line-through;
  1118. }
  1119. #ad-operation .header .banner .slogen h4 {
  1120. font-size: 46px;
  1121. font-weight: bold;
  1122. }
  1123. @media (max-width: 1200px) {
  1124. #ad-operation .header .banner .slogen h4 {
  1125. font-size: 38px;
  1126. }
  1127. }
  1128. @media (max-width: 991px) {
  1129. #ad-operation .header .banner .slogen h4 {
  1130. font-size: 32px;
  1131. }
  1132. }
  1133. @media (max-width: 767px) {
  1134. #ad-operation .header .banner .slogen h4 {
  1135. font-size: 24px;
  1136. }
  1137. }
  1138. @media (max-width: 575px) {
  1139. #ad-operation .header .banner .slogen h4 {
  1140. font-size: 14px;
  1141. }
  1142. }
  1143. #ad-operation .header .banner .slogen button {
  1144. margin-top: 30px;
  1145. }
  1146. @media (max-width: 991px) {
  1147. #ad-operation .header .banner .slogen button {
  1148. margin-top: 10px;
  1149. }
  1150. }
  1151. @media (max-width: 575px) {
  1152. #ad-operation .header .banner .slogen button {
  1153. margin-top: 5px;
  1154. }
  1155. }
  1156. #ad-operation .header-title {
  1157. color: #000;
  1158. font-weight: bold;
  1159. letter-spacing: 5px;
  1160. }
  1161. #ad-operation .img-content {
  1162. display: flex;
  1163. justify-content: center;
  1164. margin: -550px auto 0;
  1165. position: relative;
  1166. z-index: 100;
  1167. width: 1300px;
  1168. }
  1169. @media (max-width: 1200px) {
  1170. #ad-operation .img-content {
  1171. width: 1000px;
  1172. margin: -400px auto 0;
  1173. }
  1174. }
  1175. @media (max-width: 991px) {
  1176. #ad-operation .img-content {
  1177. width: 700px;
  1178. margin: -300px auto 0;
  1179. }
  1180. }
  1181. @media (max-width: 767px) {
  1182. #ad-operation .img-content {
  1183. width: 600px;
  1184. margin: -250px auto 0;
  1185. }
  1186. }
  1187. @media (max-width: 575px) {
  1188. #ad-operation .img-content {
  1189. left: -10px;
  1190. width: 350px;
  1191. }
  1192. }
  1193. #ad-operation .img-content img {
  1194. width: 100%;
  1195. }
  1196. @media (max-width: 575px) {
  1197. #ad-operation .img-content img {
  1198. width: 140%;
  1199. }
  1200. }
  1201. #ad-operation .img-content h4 {
  1202. position: absolute;
  1203. font-size: 30px;
  1204. line-height: 40px;
  1205. font-weight: bold;
  1206. text-align: center;
  1207. }
  1208. @media (max-width: 1200px) {
  1209. #ad-operation .img-content h4 {
  1210. font-size: 22px;
  1211. line-height: 30px;
  1212. }
  1213. }
  1214. @media (max-width: 991px) {
  1215. #ad-operation .img-content h4 {
  1216. font-size: 16px;
  1217. line-height: 24px;
  1218. }
  1219. }
  1220. @media (max-width: 767px) {
  1221. #ad-operation .img-content h4 {
  1222. font-size: 14px;
  1223. line-height: 20px;
  1224. }
  1225. }
  1226. @media (max-width: 575px) {
  1227. #ad-operation .img-content h4 {
  1228. font-size: 12px;
  1229. }
  1230. }
  1231. #ad-operation .img-content .left {
  1232. top: 320px;
  1233. left: 280px;
  1234. }
  1235. @media (max-width: 1200px) {
  1236. #ad-operation .img-content .left {
  1237. top: 245px;
  1238. left: 218px;
  1239. }
  1240. }
  1241. @media (max-width: 991px) {
  1242. #ad-operation .img-content .left {
  1243. top: 170px;
  1244. left: 150px;
  1245. }
  1246. }
  1247. @media (max-width: 767px) {
  1248. #ad-operation .img-content .left {
  1249. top: 145px;
  1250. left: 128px;
  1251. }
  1252. }
  1253. @media (max-width: 575px) {
  1254. #ad-operation .img-content .left {
  1255. top: 115px;
  1256. left: 32px;
  1257. }
  1258. }
  1259. #ad-operation .img-content .center {
  1260. top: 420px;
  1261. left: 600px;
  1262. }
  1263. @media (max-width: 1200px) {
  1264. #ad-operation .img-content .center {
  1265. top: 325px;
  1266. left: 465px;
  1267. }
  1268. }
  1269. @media (max-width: 991px) {
  1270. #ad-operation .img-content .center {
  1271. top: 225px;
  1272. left: 323px;
  1273. }
  1274. }
  1275. @media (max-width: 767px) {
  1276. #ad-operation .img-content .center {
  1277. top: 193px;
  1278. left: 278px;
  1279. }
  1280. }
  1281. @media (max-width: 575px) {
  1282. #ad-operation .img-content .center {
  1283. top: 153px;
  1284. left: 155px;
  1285. }
  1286. }
  1287. #ad-operation .img-content .right {
  1288. top: 545px;
  1289. right: 240px;
  1290. }
  1291. @media (max-width: 1200px) {
  1292. #ad-operation .img-content .right {
  1293. top: 420px;
  1294. right: 188px;
  1295. }
  1296. }
  1297. @media (max-width: 991px) {
  1298. #ad-operation .img-content .right {
  1299. top: 290px;
  1300. right: 130px;
  1301. }
  1302. }
  1303. @media (max-width: 767px) {
  1304. #ad-operation .img-content .right {
  1305. top: 250px;
  1306. right: 109px;
  1307. }
  1308. }
  1309. @media (max-width: 575px) {
  1310. #ad-operation .img-content .right {
  1311. top: 200px;
  1312. right: 17px;
  1313. }
  1314. }
  1315. #ad-operation .dm-description h2 {
  1316. margin: 0;
  1317. padding: 8px 10px;
  1318. color: #fff;
  1319. display: inline-block;
  1320. text-align: center;
  1321. font-size: 24px;
  1322. line-height: 33px;
  1323. border-radius: 10px;
  1324. background: #ea5413;
  1325. }
  1326. #ad-operation .dm-description h5 {
  1327. font-size: 16px;
  1328. line-height: 32px;
  1329. }
  1330. #ad-operation .dm-description h5 strong {
  1331. padding-bottom: 3px;
  1332. background: linear-gradient(to bottom, #fff 50%, #ffebe2 50%);
  1333. }
  1334. #ad-operation .dm-description .purple-circle {
  1335. top: 100px;
  1336. }
  1337. #ad-operation .card-content > div {
  1338. display: flex;
  1339. flex-direction: column;
  1340. border: 2px solid #ea5413;
  1341. border-radius: 10px;
  1342. }
  1343. #ad-operation .card-content h3 {
  1344. width: 60%;
  1345. margin: -17px auto 0;
  1346. padding: 8px 5px;
  1347. display: inline-block;
  1348. color: #fff;
  1349. background: #ea5413;
  1350. text-align: center;
  1351. font-size: 18px;
  1352. font-weight: bold;
  1353. letter-spacing: 2px;
  1354. border-radius: 10px;
  1355. box-shadow: 2px 2px 5px #ccc;
  1356. }
  1357. @media (max-width: 576px) {
  1358. #ad-operation .card-content h3 {
  1359. width: auto;
  1360. padding: 7px 15px;
  1361. font-size: 16px;
  1362. }
  1363. }
  1364. #ad-operation .card-content h4,
  1365. #ad-operation .card-content .table {
  1366. margin-top: 25px;
  1367. padding: 20px;
  1368. font-size: 14px;
  1369. line-height: 32px;
  1370. background: #ffebe2;
  1371. }
  1372. #ad-operation .card-content h4 span,
  1373. #ad-operation .card-content .table span {
  1374. display: block;
  1375. border-bottom: 1px solid;
  1376. }
  1377. #ad-operation .card-content h4 strong,
  1378. #ad-operation .card-content .table strong {
  1379. font-size: 20px;
  1380. }
  1381. #ad-operation .card-content h4 p,
  1382. #ad-operation .card-content .table p {
  1383. margin: 0;
  1384. line-height: 20px;
  1385. }
  1386. #ad-operation .content-box {
  1387. width: 65%;
  1388. margin: auto;
  1389. padding: 30px 0;
  1390. display: flex;
  1391. justify-content: center;
  1392. background: #ffebe2;
  1393. border: 2px solid #ffebe2;
  1394. position: relative;
  1395. }
  1396. @media (max-width: 991px) {
  1397. #ad-operation .content-box {
  1398. width: 90%;
  1399. }
  1400. }
  1401. @media (max-width: 767px) {
  1402. #ad-operation .content-box {
  1403. width: 100%;
  1404. }
  1405. }
  1406. @media (max-width: 475px) {
  1407. #ad-operation .content-box {
  1408. padding-left: 10px;
  1409. }
  1410. }
  1411. #ad-operation .content-box p {
  1412. margin: 0;
  1413. line-height: 32px;
  1414. }
  1415. @media (max-width: 767px) {
  1416. #ad-operation .content-box p {
  1417. font-size: 14px;
  1418. }
  1419. }
  1420. @media (max-width: 475px) {
  1421. #ad-operation .content-box p {
  1422. font-size: 13px;
  1423. }
  1424. }
  1425. #ad-operation .content-box h4 {
  1426. font-size: 22px;
  1427. font-weight: bold;
  1428. margin-bottom: 20px;
  1429. }
  1430. @media (max-width: 767px) {
  1431. #ad-operation .content-box h4 {
  1432. font-size: 18px;
  1433. }
  1434. }
  1435. @media (max-width: 475px) {
  1436. #ad-operation .content-box h4 {
  1437. font-size: 14px;
  1438. white-space: nowrap;
  1439. }
  1440. }
  1441. #ad-operation .content-box .line {
  1442. height: 3px;
  1443. background: #fff;
  1444. width: 950px;
  1445. position: absolute;
  1446. left: -200px;
  1447. top: 35px;
  1448. }
  1449. @media (max-width: 767px) {
  1450. #ad-operation .content-box .line {
  1451. top: 33px;
  1452. }
  1453. }
  1454. @media (max-width: 575px) {
  1455. #ad-operation .content-box .line {
  1456. top: 30px;
  1457. }
  1458. }
  1459. #ad-operation .content-badge {
  1460. position: absolute;
  1461. left: 0;
  1462. top: -53px;
  1463. padding: 5px 10px;
  1464. background: #ea5413;
  1465. border-radius: 10px;
  1466. font-size: 22px;
  1467. font-weight: bold;
  1468. color: #fff;
  1469. }
  1470. #ad-operation .client-content {
  1471. position: relative;
  1472. display: flex;
  1473. justify-content: center;
  1474. }
  1475. #ad-operation .client-content p {
  1476. position: absolute;
  1477. top: 11vw;
  1478. z-index: 10;
  1479. font-size: 32px;
  1480. font-weight: bold;
  1481. }
  1482. @media (max-width: 991px) {
  1483. #ad-operation .client-content p {
  1484. font-size: 28px;
  1485. }
  1486. }
  1487. @media (max-width: 767px) {
  1488. #ad-operation .client-content p {
  1489. font-size: 22px;
  1490. }
  1491. }
  1492. @media (max-width: 575px) {
  1493. #ad-operation .client-content p {
  1494. top: 9vw;
  1495. font-size: 18px;
  1496. }
  1497. }
  1498. #ad-operation .pageForm {
  1499. line-height: 32px;
  1500. letter-spacing: 1px;
  1501. background: #fff;
  1502. }
  1503. #ad-operation .header-lefttop {
  1504. width: 100%;
  1505. position: absolute;
  1506. left: -35vw;
  1507. top: 400px;
  1508. z-index: -1;
  1509. opacity: 0.5;
  1510. }
  1511. #ad-operation .category.dm-description {
  1512. padding: 2rem 8rem;
  1513. }
  1514. @media (max-width: 991px) {
  1515. #ad-operation .category.dm-description {
  1516. padding: 2rem 3rem;
  1517. }
  1518. }
  1519. @media (max-width: 767px) {
  1520. #ad-operation .category.dm-description {
  1521. padding: 2rem 0rem;
  1522. }
  1523. }
  1524. #ad-operation .accreditation p {
  1525. font-size: 24px;
  1526. }
  1527. @media (max-width: 575px) {
  1528. #ad-operation .accreditation p {
  1529. font-size: 20px;
  1530. }
  1531. }
  1532. #ad-operation .accreditation img {
  1533. width: 150px;
  1534. position: absolute;
  1535. top: -35px;
  1536. left: -25px;
  1537. }
  1538. @media (max-width: 767px) {
  1539. #ad-operation .accreditation img {
  1540. width: 135px;
  1541. left: -50px;
  1542. }
  1543. }
  1544. @media (max-width: 575px) {
  1545. #ad-operation .accreditation img {
  1546. width: 120px;
  1547. top: -80px;
  1548. left: -20px;
  1549. }
  1550. }
  1551. #ad-operation .purple-circle {
  1552. width: 40%;
  1553. top: -400px;
  1554. right: -150px;
  1555. position: absolute;
  1556. z-index: -100;
  1557. }
  1558. @media (max-width: 991px) {
  1559. #ad-operation .purple-circle {
  1560. width: 60%;
  1561. }
  1562. }
  1563. @media (max-width: 767px) {
  1564. #ad-operation .purple-circle {
  1565. top: -300px;
  1566. }
  1567. }
  1568. #ad-operation .data-text .circle {
  1569. top: -220px;
  1570. left: -5vw;
  1571. }
  1572. @media (max-width: 767px) {
  1573. #ad-operation .data-text .circle {
  1574. top: -100px;
  1575. }
  1576. }
  1577. /* ad-operation End */
  1578. /* blog-traffic Start */
  1579. .blog-traffic {
  1580. overflow-x: hidden;
  1581. }
  1582. .blog-traffic .header {
  1583. padding: 0;
  1584. }
  1585. .blog-traffic .banner {
  1586. width: 100vw;
  1587. height: auto;
  1588. position: absolute;
  1589. z-index: -10;
  1590. }
  1591. @media (max-width: 767px) {
  1592. .blog-traffic .banner {
  1593. width: 150vw;
  1594. height: auto;
  1595. }
  1596. }
  1597. .blog-traffic .header-img {
  1598. width: 150%;
  1599. height: auto;
  1600. position: relative;
  1601. top: -30px;
  1602. right: 30px;
  1603. z-index: -1;
  1604. }
  1605. @media (max-width: 767px) {
  1606. .blog-traffic .header-img {
  1607. width: 100%;
  1608. top: -45px;
  1609. right: unset;
  1610. }
  1611. }
  1612. .blog-traffic .header-title {
  1613. font-size: 2.5rem;
  1614. line-height: 65px;
  1615. font-weight: 600;
  1616. color: #000;
  1617. }
  1618. @media (max-width: 768px) {
  1619. .blog-traffic .header-title {
  1620. font-size: 2.2rem;
  1621. }
  1622. }
  1623. .blog-traffic .dm-description {
  1624. margin-top: -250px;
  1625. }
  1626. @media (max-width: 1400px) {
  1627. .blog-traffic .dm-description {
  1628. margin-top: -190px;
  1629. }
  1630. }
  1631. @media (max-width: 991px) {
  1632. .blog-traffic .dm-description {
  1633. margin-top: -100px;
  1634. }
  1635. }
  1636. .blog-traffic .dm-description p {
  1637. font-size: 20px;
  1638. line-height: 32px;
  1639. }
  1640. .blog-traffic .category {
  1641. padding: 0;
  1642. position: relative;
  1643. }
  1644. .blog-traffic .category.dm-description {
  1645. padding: 0;
  1646. }
  1647. @media (max-width: 575px) {
  1648. .blog-traffic .category {
  1649. padding: 0 10px;
  1650. }
  1651. }
  1652. .blog-traffic .category h4 {
  1653. font-size: 2rem;
  1654. }
  1655. .blog-traffic .category h4,
  1656. .blog-traffic .category .sub-title {
  1657. margin: 0;
  1658. color: #f5ab1b;
  1659. font-weight: bold;
  1660. }
  1661. .blog-traffic .category-sub-h2::after {
  1662. width: 3rem;
  1663. border-bottom: 10px solid #ea5413;
  1664. margin-top: 15px;
  1665. }
  1666. .blog-traffic ul {
  1667. padding: 0;
  1668. list-style: none;
  1669. }
  1670. .blog-traffic ul li {
  1671. line-height: 32px;
  1672. }
  1673. .blog-traffic .img-block-img {
  1674. width: 12%;
  1675. -o-object-fit: contain;
  1676. object-fit: contain;
  1677. image-rendering: -webkit-optimize-contrast;
  1678. position: relative;
  1679. top: -30px;
  1680. }
  1681. @media (max-width: 1200px) {
  1682. .blog-traffic .img-block-img {
  1683. top: -10px;
  1684. }
  1685. }
  1686. @media (max-width: 991px) {
  1687. .blog-traffic .img-block-img {
  1688. width: 15%;
  1689. }
  1690. }
  1691. @media (max-width: 767px) {
  1692. .blog-traffic .img-block-img {
  1693. width: 20%;
  1694. top: 5px;
  1695. }
  1696. }
  1697. @media (max-width: 490px) {
  1698. .blog-traffic .img-block-img {
  1699. top: 15px;
  1700. }
  1701. }
  1702. @media (max-width: 414px) {
  1703. .blog-traffic .img-block-img {
  1704. top: 22px;
  1705. }
  1706. }
  1707. @media (max-width: 1200px) {
  1708. .blog-traffic .img-first {
  1709. top: 0;
  1710. }
  1711. }
  1712. @media (max-width: 767px) {
  1713. .blog-traffic .img-first {
  1714. top: 15px;
  1715. }
  1716. }
  1717. @media (max-width: 490px) {
  1718. .blog-traffic .img-first {
  1719. top: 40px;
  1720. }
  1721. }
  1722. .blog-traffic .add-img {
  1723. width: 130px;
  1724. margin: 10px auto 0;
  1725. image-rendering: -webkit-optimize-contrast;
  1726. }
  1727. @media (max-width: 991px) {
  1728. .blog-traffic .add-img {
  1729. margin: 0 auto;
  1730. }
  1731. }
  1732. @media (max-width: 767px) {
  1733. .blog-traffic .add-img {
  1734. margin: 10px auto -25px;
  1735. }
  1736. }
  1737. .blog-traffic .purple-circle {
  1738. width: 50%;
  1739. left: -250px;
  1740. bottom: 100px;
  1741. }
  1742. @media (max-width: 991px) {
  1743. .blog-traffic .purple-circle {
  1744. left: -150px;
  1745. }
  1746. }
  1747. @media (max-width: 767px) {
  1748. .blog-traffic .purple-circle {
  1749. left: -50px;
  1750. }
  1751. }
  1752. .blog-traffic .orange-circle {
  1753. width: 50%;
  1754. right: -200px;
  1755. top: -200px;
  1756. }
  1757. @media (max-width: 767px) {
  1758. .blog-traffic .orange-circle {
  1759. right: -100px;
  1760. top: -150px;
  1761. }
  1762. }
  1763. .blog-traffic .data-text .circle {
  1764. top: -250px;
  1765. right: -5vw;
  1766. }
  1767. @media (max-width: 767px) {
  1768. .blog-traffic .data-text .circle {
  1769. top: 0px;
  1770. }
  1771. }
  1772. /* blog-traffic End */
  1773. /* seo Start */
  1774. #seo-dm {
  1775. overflow: hidden;
  1776. }
  1777. #seo-dm .bg-img {
  1778. width: 50%;
  1779. position: absolute;
  1780. right: -50px;
  1781. z-index: -1;
  1782. }
  1783. #seo-dm .block-content {
  1784. margin-left: -35px;
  1785. }
  1786. #seo-dm .block-content h3 {
  1787. color: #f6ab1c;
  1788. font-size: 2.2rem;
  1789. font-weight: bold;
  1790. }
  1791. @media (max-width: 991px) {
  1792. #seo-dm .block-content h3 {
  1793. font-size: 1.8rem;
  1794. }
  1795. }
  1796. @media (max-width: 575px) {
  1797. #seo-dm .block-content h3 {
  1798. font-size: 1.5rem;
  1799. }
  1800. }
  1801. #seo-dm .block-content p {
  1802. color: #656565;
  1803. font-weight: bold;
  1804. }
  1805. #seo-dm .block-content .block-title {
  1806. margin-bottom: 20px;
  1807. }
  1808. @media (max-width: 575px) {
  1809. #seo-dm .block-content .block-title {
  1810. margin-bottom: 0;
  1811. }
  1812. }
  1813. /* seo End */
  1814. /* youtube-views Start */
  1815. #youtube-views {
  1816. overflow-x: hidden;
  1817. }
  1818. #youtube-views h5 {
  1819. line-height: 32px;
  1820. }
  1821. #youtube-views .title {
  1822. color: #ea5413;
  1823. font-size: 1.3rem;
  1824. font-weight: bold;
  1825. }
  1826. #youtube-views .header-right {
  1827. background-position: center;
  1828. }
  1829. #youtube-views .card-group {
  1830. margin-top: 50px;
  1831. }
  1832. #youtube-views .card-group .card {
  1833. box-shadow: 0 0 10px rgba(32, 32, 32, 0.2509803922);
  1834. }
  1835. #youtube-views .card-group .card ul {
  1836. padding: 0;
  1837. list-style: none;
  1838. }
  1839. #youtube-views .card-group .card ul img {
  1840. margin-bottom: 1px;
  1841. }
  1842. #youtube-views .card-group .card .price {
  1843. width: 100%;
  1844. padding: 10px 0;
  1845. font-size: 28px;
  1846. font-weight: bold;
  1847. text-align: center;
  1848. color: #fff;
  1849. background-color: #ea5413;
  1850. letter-spacing: 2px;
  1851. }
  1852. #youtube-views .card-group .card .buy-btn {
  1853. padding: 10px 20px;
  1854. color: #fff;
  1855. border: 1px solid transparent;
  1856. border-radius: 50px;
  1857. background: #ea5413;
  1858. transition: all 0.3s;
  1859. }
  1860. #youtube-views .card-group .card .buy-btn:hover {
  1861. color: #ea5413;
  1862. border: 1px solid #ea5413;
  1863. background: #fff;
  1864. }
  1865. #youtube-views .card-group .paypal-content {
  1866. margin: 0 20px;
  1867. box-shadow: none;
  1868. }
  1869. #youtube-views .direction-list {
  1870. margin-top: 100px;
  1871. }
  1872. #youtube-views .direction-list img {
  1873. width: 50px;
  1874. -o-object-fit: contain;
  1875. object-fit: contain;
  1876. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  1877. }
  1878. #youtube-views .direction-list .content > div {
  1879. margin-bottom: 40px;
  1880. padding: 0px 15px;
  1881. border-left: 1px solid rgba(0, 0, 0, 0.125);
  1882. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1883. }
  1884. #youtube-views .direction-list section h5 {
  1885. margin: 0;
  1886. font-size: 18px;
  1887. font-weight: bold;
  1888. }
  1889. #youtube-views .direction-list section p {
  1890. font-size: 14px;
  1891. }
  1892. #youtube-views .accordion-button {
  1893. padding: 20px;
  1894. }
  1895. #youtube-views .accordion-button:not(.collapsed) {
  1896. color: #ea5413 !important;
  1897. background-color: #ffebe2 !important;
  1898. }
  1899. #youtube-views button:focus:not(:focus-visible) {
  1900. box-shadow: none !important;
  1901. }
  1902. #youtube-views .accordion-button:not(.collapsed)::after {
  1903. 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");
  1904. }
  1905. @media (max-width: 767px) {
  1906. #youtube-views .category.dm-description {
  1907. padding-top: 6rem;
  1908. }
  1909. }
  1910. @media (max-width: 575px) {
  1911. #youtube-views .category.dm-description {
  1912. padding-top: 14rem;
  1913. }
  1914. }
  1915. /* youtube-views End */
  1916. /* seo-image Start */
  1917. .seo-image {
  1918. overflow-x: hidden;
  1919. }
  1920. .seo-image p {
  1921. line-height: 32px;
  1922. }
  1923. .seo-image .header {
  1924. padding: 0;
  1925. }
  1926. .seo-image .video-box {
  1927. width: 100%;
  1928. padding-bottom: 56%;
  1929. }
  1930. .seo-image .content {
  1931. margin: 150px auto;
  1932. }
  1933. @media (max-width: 767px) {
  1934. .seo-image .content {
  1935. margin: 80px auto;
  1936. }
  1937. }
  1938. .seo-image .line {
  1939. width: 820px;
  1940. position: absolute;
  1941. top: -70px;
  1942. left: 345px;
  1943. }
  1944. @media (max-width: 1400px) {
  1945. .seo-image .line {
  1946. width: 840px;
  1947. top: -85px;
  1948. left: 210px;
  1949. }
  1950. }
  1951. @media (max-width: 1200px) {
  1952. .seo-image .line {
  1953. width: 880px;
  1954. top: -90px;
  1955. left: 114px;
  1956. }
  1957. }
  1958. @media (max-width: 991px) {
  1959. .seo-image .line {
  1960. display: none;
  1961. }
  1962. }
  1963. .seo-image .title {
  1964. font-size: 28px;
  1965. color: #f6ab1c;
  1966. font-weight: bold;
  1967. }
  1968. @media (max-width: 991px) {
  1969. .seo-image .img-item {
  1970. width: 100%;
  1971. max-width: 100% !important;
  1972. }
  1973. }
  1974. .seo-image .purple-circle,
  1975. .seo-image .orange-circle {
  1976. width: 100%;
  1977. }
  1978. @media (max-width: 991px) {
  1979. .seo-image .purple-circle,
  1980. .seo-image .orange-circle {
  1981. width: 60%;
  1982. }
  1983. }
  1984. .seo-image .purple-circle {
  1985. top: -470px;
  1986. right: -100%;
  1987. }
  1988. @media (max-width: 991px) {
  1989. .seo-image .purple-circle {
  1990. top: -350px;
  1991. right: -150px;
  1992. }
  1993. }
  1994. @media (max-width: 767px) {
  1995. .seo-image .purple-circle {
  1996. top: -250px;
  1997. right: -20px;
  1998. }
  1999. }
  2000. .seo-image .orange-circle {
  2001. top: -200px;
  2002. left: -100%;
  2003. }
  2004. @media (max-width: 991px) {
  2005. .seo-image .orange-circle {
  2006. top: -30vw;
  2007. left: -20vw;
  2008. }
  2009. }
  2010. .seo-image .data-text .circle {
  2011. top: -400px;
  2012. right: -5vw;
  2013. }
  2014. @media (max-width: 991px) {
  2015. .seo-image .data-text .circle {
  2016. top: -250px;
  2017. }
  2018. }
  2019. @media (max-width: 767px) {
  2020. .seo-image .data-text .circle {
  2021. top: -120px;
  2022. }
  2023. }
  2024. /* seo-image End */
  2025. /* 共用 className Start */
  2026. .purple-circle,
  2027. .orange-circle {
  2028. position: absolute;
  2029. z-index: -1;
  2030. }
  2031. .data-text {
  2032. position: relative;
  2033. }
  2034. .data-text p {
  2035. font-size: 28px;
  2036. font-weight: bold;
  2037. text-align: center;
  2038. }
  2039. .data-text .circle {
  2040. width: 500px;
  2041. z-index: -100;
  2042. position: absolute;
  2043. }
  2044. @media (max-width: 991px) {
  2045. .data-text .circle {
  2046. width: 400px;
  2047. }
  2048. }
  2049. @media (max-width: 767px) {
  2050. .data-text .circle {
  2051. width: 250px;
  2052. }
  2053. }
  2054. /* 共用 className End *//*# sourceMappingURL=style.css.map */