style.scss 35 KB

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