| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753 | @charset "UTF-8";* {  letter-spacing: 1px;}.navbar {  box-shadow: 0 2px 10px 2px rgb(204, 204, 204);  background-color: white !important;  width: 100%;}.navbar .navbar-collapse {  flex-grow: 0;}.navbar-nav .nav-item {  margin: 0 3px;}.navbar-nav .dropdown-menu {  padding: 0;  top: 138%;}.navbar-nav .dropdown-menu .dropdown-item {  font-size: 14px;  padding: 8px 20px;  border-bottom: 1px solid #eeeeee;  color: #999999;}.navbar-nav .dropdown-menu .dropdown-item:active {  background-color: #fff;}.navbar-nav .dropdown-menu .dropdown-item:hover {  color: #ea5413;  background-color: #fff;  padding: 8px 17px 8px 23px;}.navbar-nav .signin-link {  padding: 8px 18px;  text-decoration: none;  color: #ea5413;  font-weight: 400;  border: 1px solid #ea5413;  border-radius: 3rem;}.navbar-nav .signup-link {  padding: 8px 18px;  margin: 13px;  text-decoration: none;  color: #fff;  font-weight: 400;  border: 1px solid #ea5413;  border-radius: 3rem;  background-color: #ea5413;}.navbar-nav a {  transition: all 0.3s;}.navbar-nav a:hover {  opacity: 0.8;}.header {  margin-top: 70px;  position: relative;  padding: 6rem 0 3rem;}.header-lefttop {  position: absolute;  left: 0;  top: 0;  z-index: -1;  width: 350px;}.header-title {  font-size: 2.5rem;  line-height: 55px;  font-weight: 600;  color: #000;}@media (max-width: 768px) {  .header-title {    font-size: 2.2rem;  }}.header__sub {  color: #38a7bb;  font-size: 1.5rem;  font-weight: 300;  position: relative;}.header__sub::before,.header__sub::after {  content: " ";  position: absolute;  width: 12%;  height: 1px;  background-color: #38a7bb;  top: 50%;}.header__sub::before {  left: 28%;}.header__sub::after {  left: 60%;}.header__form {  margin: 1rem auto;  justify-content: center;}.header__form__input {  border-radius: 10rem;  padding: 0.4rem 0.8rem;  width: 60%;  margin-left: 4.5rem;}.header__form__sub {  border-radius: 10rem;  background-color: #fca25e;  color: white;  border: none;  width: 5rem;  transform: translateX(-100%);  transition: all 0.3s;}.header__form__sub:hover {  background-color: #ff892e;}.header-right {  width: 80%;  height: 50vh;  background-image: url("../imgs/電腦2.webp");  background-size: contain;  background-repeat: no-repeat;  margin: 0 auto;  position: relative;}.header-right.header-dm {  background-image: url("https://i.imgur.com/SOu53ii.jpg");}.header-right-cir {  width: 60%;  position: absolute;  right: 0%;  top: -5%;  z-index: -1;}.header-right-video {  position: absolute;  width: 70%;  height: auto;  left: 3.3rem;  top: 1.8rem;}.header-right-magnifier {  position: absolute;  width: 25%;  right: 3%;  bottom: 1%;}.header-right-bubble {  position: absolute;  width: 22%;  top: 0;  left: 0;  transform: translate(-60%, -50%);}.header-right-linecir {  width: 45%;  position: absolute;  left: -8%;  bottom: -3%;  z-index: -1;}.stock-01 {  position: absolute;  z-index: -1;  width: 800px;  top: -180px;  left: -300px;}.pageForm-btn {  position: fixed;  bottom: 90px;  right: 17px;  z-index: 1000;  cursor: pointer;}.pageForm-btn button {  width: 60px;  height: 60px;  border: none;  border-radius: 100%;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 24px;  background-image: linear-gradient(-225deg, rgb(241, 95, 121) 35%, rgb(178, 69, 146) 100%);}.pageForm-btn button:hover {  opacity: 0.9;}.pageForm-btn button img {  cursor: pointer;  filter: invert(99%) sepia(0%) saturate(2%) hue-rotate(31deg) brightness(107%) contrast(100%);}.pageForm-title-h3 {  font-weight: bold;}/* footer.html Start */.footer {  color: #656565;}.footer .footer-contacts {  margin-top: 2rem;  line-height: 32px;}.footer a {  color: #656565;  text-decoration: none;}.footer h5 {  color: black;  font-weight: 600;  padding-bottom: 15px;}.footer .link {  padding-bottom: 20px;}.footer {  background-color: #f0f0f0;  padding: 3rem;}.footer .right-column {  border-left: 1px solid black;}.footer .footer-aigirl {  font-weight: 600;  font-size: 2rem;  margin-top: 1rem;  margin-bottom: 1rem;}.footer .footer-follow {  font-size: 1.6rem;  margin-bottom: 1rem;  color: black;  font-size: 1rem;  font-weight: 600;  margin-top: 2rem;}.footer .footer-socials a {  margin-right: 0px;}/* footer.html End *//* footer_default.html Start */.footer h4 {  text-transform: uppercase;  color: white;  font-size: 14px;  font-weight: 800;}.footer__btn__text {  font-size: 1.3rem;  color: white;}.footer .btn {  border: 2px solid #38a7bb;  color: #38a7bb;  text-decoration: none;}.followus__btn {  text-decoration: none;  color: white;}.followus__btn:hover {  color: #38a7bb;}.footer .btn:hover {  color: white;  background-color: #38a7bb;}.followus__txt {  display: inline-block;  margin-right: 1rem;  color: white;  font-weight: 600;}.footer-img {  height: 60px;}/* footer_default.html End *//* iframe Start */.video-box {  position: relative;  width: 70%;  height: 0;  padding-bottom: 40%;}@media (max-width: 1200px) {  .video-box {    width: 80%;    padding-bottom: 45%;  }}@media (max-width: 767px) {  .video-box {    margin: 50px auto 0;  }}@media (max-width: 576px) {  .video-box {    width: 90%;    padding-bottom: 50%;  }}.video-box iframe {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;}/* iframe End */.category {  padding: 2rem 0rem;}.category.dm-description {  padding: 2rem 8rem;}.category-sub-h2 {  position: relative;}.category-sub-h2::after {  position: absolute;  content: "";  width: 4rem;  height: 1rem;  border-bottom: 10px solid #ff892e;  left: 50%;  top: -1.5rem;  transform: translateX(-50%);}.category-btngrp {  padding: 0 8rem;}.category-btn {  background-color: #a7d9e2;  border: none;  border-radius: 5rem;  outline: none;  color: white;  font-size: 1.3rem;  padding: 0.4rem 2rem;  text-decoration: none;}.category-btn.active {  background-color: #38a7bb;  text-decoration: none;  color: white;}.card__rank {  border: 1px solid #cecece;  box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);  position: relative;  padding: 1rem 1.5rem;}.top20 .card__rank {  margin-bottom: 1.5rem;}.top3 {  padding: 3rem 0rem;  padding-bottom: 5rem;  position: relative;}.top3 .row {  padding: 0rem 4rem;}.top3 .backfill {  position: absolute;  width: 100%;  height: 100px;  background-color: #ffebe8;  left: 0;  right: 0;  top: 7rem;}.top3__num {  color: #fca25e;  font-size: 5.8rem;  font-family: "Trebuchet MS";  position: absolute;  left: 1rem;  top: -3.5rem;  font-weight: 300;}.card__rank__word {  color: #20616d;  margin-left: 3rem;  font-size: 1.8rem;  font-weight: 400;}.card__rank__goto {  text-align: right;}.card__rank__link {  color: #38a7bb;  text-decoration: none;  font-weight: 400;}.card__rank__link:hover {  color: #19879b;}.top20 {  padding-bottom: 5rem;}.top20 .row {  padding: 0rem 4rem;}.top20 .card__rank__word {  margin-left: 0;}.top20__num {  color: #fca25e;  font-size: 2.5rem;  font-family: "Trebuchet MS";  font-weight: 300;  display: inline-block;  width: 3rem;}/* 首頁 */#home img {  max-width: 100%;  height: auto;}#home .swiper {  overflow: initial;}#home .swiper .swiper-pagination-bullet {  width: 13px;  height: 13px;  margin: 0 13px;}@media (max-width: 991px) {  #home .swiper .swiper-pagination-bullet {    width: 10px;    height: 10px;    margin: 0 10px;  }}#home .swiper .swiper-pagination {  bottom: -10px;}@media (max-width: 991px) {  #home .swiper .swiper-pagination {    bottom: -15px;  }}#home .swiper .swiper-pagination-bullet-active {  background-color: #000 !important;}#home #main {  overflow: hidden;}#home #main .content {  height: 80vh;  padding-left: 15vw;  background-image: url("/imgs/home/首頁-01.png");  background-position: center;  background-repeat: no-repeat;  display: flex;  flex-direction: column;  justify-content: center;}@media (max-width: 991px) {  #home #main .content {    background-position: -600px -100px;  }}@media (max-width: 767px) {  #home #main .content {    padding-left: 0;    align-items: center;  }}#home #main .content h4 {  color: #6c6d70;  line-height: 40px;  font-weight: bold;}@media (max-width: 767px) {  #home #main .content h4 {    text-align: center;  }}#home #main .content section h3 {  color: #ea5413;  margin-left: 10px;  font-weight: bold;  font-size: 26px;  line-height: 40px;}@media (max-width: 767px) {  #home #main .content section h3 {    font-size: 22px;  }}#home #main .content .logo {  width: 200px;}#home #main .content div {  height: 115px;}#home #main .content .action-btn {  margin-top: 60px;  padding: 8px 22px;  color: #fff;  transition: all 0.3s;  border: none;  border-radius: 20px;  background-color: #ea5413;}#home #main .content .action-btn:hover {  background-color: #d54d13;}#home #main .journey-content {  display: flex;  align-items: center;  background-image: url("/imgs/home/首頁-02.png");  background-size: cover;  background-position: top;  background-repeat: no-repeat;}#home #main .journey-content h3 {  line-height: 40px;  text-align: center;  font-weight: bold;  padding: 260px 0 80px;}@media (max-width: 767px) {  #home #main .journey-content h3 {    padding: 80px 0;  }}#home #main .journey-content h4 {  color: #ea5413;  text-align: center;  font-weight: bold;}#home #main .journey-content .line {  display: block;  height: 2px;  background: #ea5413;  width: 100%;  margin: 30px 0;}#home #main .journey-content .title {  position: relative;}#home #main .journey-content .title img {  top: -70px;  right: -75px;  width: 180px;  position: absolute;}@media (max-width: 767px) {  #home #main .journey-content .title img {    top: -45px;    right: -16vw;    width: 150px;    transform: rotate(90deg);  }}@media (max-width: 575px) {  #home #main .journey-content .title img {    top: -36px;    right: -21vw;    width: 130px;  }}#home #main .journey-content .list {  padding: 0 25px;  font-size: 18px;}@media (max-width: 1200px) {  #home #main .journey-content .list {    padding: 0;  }}@media (max-width: 991px) {  #home #main .journey-content .list {    font-size: 16px;  }}#home #main .journey-content .list h5 {  font-size: 18px;}@media (max-width: 991px) {  #home #main .journey-content .list h5 {    font-size: 16px;  }}#home #main .journey-content .list p {  height: 75px;}@media (max-width: 1200px) {  #home #main .journey-content .list p {    height: 85px;  }}@media (max-width: 767px) {  #home #main .journey-content .list p {    height: auto;  }}#home #main .journey-content .list strong {  display: block;  padding: 15px;  margin: 20px auto 50px;  text-align: center;  color: #fff;  background-color: #ea5413;}@media (max-width: 991px) {  #home #main .journey-content .list strong {    font-size: 13px;  }}@media (max-width: 767px) {  #home #main .journey-content .list strong {    font-size: 16px;    margin: 20px auto 10px;  }}#home #main .team-content {  padding: 100px 0;}#home #main .team-content strong {  font-size: 26px;}#home #main .team-content h4 {  margin: 20px 0;  color: #ea5413;  font-weight: bold;  line-height: 36px;}@media (max-width: 575px) {  #home #main .team-content h4 {    font-size: 18px;  }}#home #main .team-content ul {  list-style: none;  padding: 0;  margin: 0;}#home #main .team-content ul li {  margin: 5px 0;  font-size: 18px;}@media (max-width: 575px) {  #home #main .team-content ul li {    font-size: 16px;  }}#home .ad-content {  width: 90%;  padding: 50px 0 0;  border: 1px solid #90268f;}#home .ad-content ul {  padding: 0;  list-style: none;}#home .ad-content ul li {  margin-bottom: 50px;}#home .ad-content ul li p {  color: #90268f;  font-size: 18px;  font-weight: bold;}@media (max-width: 767px) {  #home .ad-content ul li p {    font-size: 16px;  }}#home .ad-content section h4 {  text-align: center;  font-size: 30px;  font-weight: bold;}#home .ad-content section h4 strong {  display: block;  margin: 20px 0 50px;  font-size: 24px;  color: #ea5413;}@media (max-width: 767px) {  #home .ad-content section h4 strong {    font-size: 18px;  }}@media (max-width: 575px) {  #home .ad-content section h4 strong {    padding: 0 20px;    line-height: 32px;  }}#home .ad-content h5 {  font-weight: bold;  font-size: 20px;  line-height: 32px;}@media (max-width: 991px) {  #home .ad-content h5 {    font-size: 18px;  }}#home .ad-content h5 strong {  margin: 30px 0;  display: block;  color: #90268f;}#home .ad-content .img-text {  position: absolute;  left: 50%;  top: 50%;  transform: translate(-50%, -50%);  font-size: 1.6vw;  font-weight: bold;}@media (max-width: 991px) {  #home .ad-content .img-text {    font-size: 2vw;  }}@media (max-width: 575px) {  #home .ad-content .img-text {    font-size: 5.5vw;  }}#home .tag-item {  position: absolute;  right: 0;}#home .tag-item img {  width: 200px;}#home .tag-item h5 {  position: absolute;  top: 35px;  right: 75px;  color: #fff;  font-size: 26px;}#home .seo-content {  overflow: hidden;}#home .seo-content ul {  list-style: none;}#home .seo-content ul li {  margin: 10px 0;  font-size: 18px;}@media (max-width: 575px) {  #home .seo-content ul li {    font-size: 16px;  }}#home .seo-content section p {  color: #6c6d70;  font-weight: bold;  font-size: 18px;  line-height: 32px;}@media (max-width: 575px) {  #home .seo-content section p {    font-size: 16px;  }}#home .seo-content .video-box {  width: 55%;  padding-bottom: 30%;  margin: 50px auto;}@media (max-width: 991px) {  #home .seo-content .video-box {    width: 100%;    padding-bottom: 56%;  }}#home .seo-content h4,#home .ai-content h4 {  padding-top: 130px;  text-align: center;  font-size: 30px;  font-weight: bold;}#home .ai-content {  margin-top: 100px;}#home .ai-content p {  line-height: 32px;  font-size: 18px;}@media (max-width: 575px) {  #home .ai-content p {    font-size: 16px;  }}#home .ai-content .title {  color: #ea5413;  font-weight: bold;}@media (max-width: 575px) {  #home .ai-content .title {    font-size: 22px;  }}#home .ai-content .video-title {  font-size: 30px;  font-weight: bold;}@media (max-width: 991px) {  #home .ai-content .img-item {    display: flex;    justify-content: center;  }}@media (max-width: 991px) {  #home .ai-content .img-item img {    width: 800px;    max-width: initial;  }}@media (max-width: 575px) {  #home .ai-content .img-item img {    margin-left: 50px;  }}#home .ai-content .img-item p {  position: absolute;  top: 32%;  left: 50%;  font-size: 20px;  font-weight: bold;  line-height: 38px;  color: #6c6d70;}@media (max-width: 1400px) {  #home .ai-content .img-item p {    top: 31%;    line-height: 34px;  }}@media (max-width: 1200px) {  #home .ai-content .img-item p {    top: 28%;    line-height: 32px;    font-size: 18px;  }}@media (max-width: 991px) {  #home .ai-content .img-item p {    top: 25%;    line-height: 30px;    font-size: 16px;  }}@media (max-width: 991px) {  #home .ai-content .img-item p {    left: 42%;  }}@media (max-width: 575px) {  #home .ai-content .img-item p {    left: 32vw;    top: 25%;    line-height: 26px;    font-size: 15px;  }}#home .ai-content .sec-video {  margin-top: 0;}@media (max-width: 767px) {  #home .ai-content .sec-video {    margin-bottom: 0;  }}#home .ai-content .sec-video .video-mb-title {  font-size: 26px;  font-weight: bold;}@media (max-width: 767px) {  #home .ai-content .sec-video .video-box {    width: 100%;    padding-bottom: 45%;  }}#home .ai-content .sec-usecase .usecase-title {  font-size: 30px;  font-weight: bold;}#home .ai-content .sec-usecase .usecase-imgfr {  height: auto;}#home .ai-content .sec-usecase .usecase-sub {  font-size: 18px;  margin-top: 20px;}#home .bg-img {  margin-top: -85vw;  position: relative;  z-index: -1;  transform: scale(1.1);  -o-object-position: 3vw 0px;     object-position: 3vw 0px;}#home .more-btn {  padding: 13px 30px;  color: #fff;  background-color: #ea5413;  text-decoration: none;  border-radius: 100px;  transition: all 0.3s;}#home .more-btn:hover {  background-color: #d54d13;}#home .sec-action .action-btn {  padding: 0.8rem 3.5rem;  font-size: 20px;  font-weight: bold;}#home .progress-item {  opacity: 0;  height: 100%;  position: fixed;  z-index: 100;  top: 0;  transition: all 0.3s;}@media (max-width: 767px) {  #home .progress-item {    display: none;  }}#home .progress-item .cont {  top: 50%;  left: -135px;  position: absolute;  transform: rotate(90deg);}@media (max-width: 1200px) {  #home .progress-item .cont {    left: -145px;  }}@media (max-width: 991px) {  #home .progress-item .cont {    left: -150px;  }}#home .progress-item .cont #progress-bar {  -webkit-appearance: none;     -moz-appearance: none;          appearance: none;  width: 360px;  color: #000;  height: 2px;  margin: -2px auto;}@media (max-width: 991px) {  #home .progress-item .cont #progress-bar {    margin: -1px auto;  }}#home .progress-item .cont span {  height: 15px;  width: 15px;  border-radius: 100%;  border: 3px solid #a5a7a9;  background: #a5a7a9;  position: absolute;  left: 0;  top: 12px;  cursor: pointer;  transition: all 0.3s ease-in-out;}@media (max-width: 991px) {  #home .progress-item .cont span {    height: 12px;    width: 12px;  }}#home .progress-item .cont .journey {  left: 70px;}#home .progress-item .cont .team {  left: 140px;}#home .progress-item .cont .ai-ad {  left: 210px;}#home .progress-item .cont .seo {  left: 280px;}#home .progress-item .cont .ai-video {  left: 350px;}#home .progress-item .cont .blog {  left: 420px;}#home .progress-item .cont #progress-bar::-webkit-progress-value {  /* Changes line color */  background: #ea5413;  -webkit-transition: all 0.3s ease-in-out;  transition: all 0.3s ease-in-out;}#home .progress-item .cont #progress-bar::-webkit-progress-bar {  /* Changes background color */  background: #a5a7a9;}#home .progress-item .cont .border-change {  background: #ea5413;  border-color: #ea5413;  transition: all 0.3s ease-in-out;}/* content page */.cntheader {  margin-top: 81px;  padding: 4rem 0;  position: relative;  padding-bottom: 2rem;}.cntheader__sub {  color: #38a7bb;  font-size: 1.5rem;  font-weight: 300;  position: relative;}.cntheader__sub::before,.cntheader__sub::after {  content: " ";  position: absolute;  width: 15%;  height: 1px;  background-color: #38a7bb;  top: 50%;}.cntheader__sub::before {  left: 18%;}.cntheader__sub::after {  left: 67%;}.cntheader .category-btngrp {  padding: 0 4rem;}.card__art {  padding: 1rem;  border: 1px solid #20616d;  border-radius: 1rem;  margin-bottom: 1rem;}.card__title {  font-size: 1.8rem;  font-weight: 400;}.card__text {  color: #918f8f;}.card__link {  display: inline-block;  color: #38a7bb;  margin-right: 1rem;  text-decoration: none;}.card__link:hover {  color: #20616d;}.toparticle {  border: 1px solid #cecece;  box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);}.toparticle__title {  color: white;  background-color: #38a7bb;  text-align: center;  font-size: 1.3rem;  padding: 0.3rem 0;  position: relative;}.toparticle__title img {  position: absolute;  width: 150px;  right: -4rem;  top: -3.5rem;}.toparticle__list {  padding: 1.5rem;  padding-top: 0;  list-style: none;  padding-bottom: 1rem;}.toparticle__list-item {  padding: 0.3rem;  border-bottom: 1px solid #cecece;  color: #38a7bb;  position: relative;}.toparticle__list-item:nth-of-type(10) {  border: none;}.toparticle__list-item a {  text-decoration: none;  color: #38a7bb;}.toparticle__num {  color: #fca25e;  font-size: 1.8rem;  font-family: "Trebuchet MS";  font-weight: 300;  margin-right: 8px;}.toparticle__top {  font-size: 2rem;}.toparticle__list-item small {  position: absolute;  right: 0;  top: 45%;}.cntsubscribe {  text-align: center;}.cntsubscribe__form {  position: relative;}.cntsubscribe__sub {  border-radius: 10rem;  background-color: #fca25e;  color: white;  border: none;  width: 5rem;  position: absolute;  right: 0;  top: 0;  padding: 0.45rem 0.8rem;}.cntsubscribe__sub:hover {  background-color: #ff892e;  color: white;}.cntsubscribe__input {  border-radius: 10rem;  padding: 0.4rem 0.8rem;  width: 100%;}.img-block .img-block-img {  width: 70%;}.img-block-list {  padding: 2rem 6rem;}.img-block-linecir {  position: absolute;  right: 10%;  bottom: 5%;  width: 30%;  z-index: -1;}.img-block-linecir.left {  right: -10%;  bottom: -5%;}.img-block-linecir.right {  left: -10%;  bottom: -5%;}.img-block-linecir.left {  left: -10%;  bottom: -5%;}.aboutus_img {  width: 100%;}.aboutus_prize_img {  border: 1.5rem solid rgb(231, 231, 231);  border-radius: 1rem;}.header__ai-training__span {  width: 6rem;  height: 6rem;  padding: 1rem;  display: inline-block;  font-size: 1.4rem;  background-color: rgb(255, 255, 159);  border-radius: 50%;}.ai-training__action {  border: 3px dashed #ffebe8;}.ai-training__card .card-img-top {  height: 35vh;}.ai-training__action ul {  list-style: none;  line-height: 2rem;}.ai-training__action__box {  flex-direction: row;}.ai-training__action__btn {  padding: 0.5rem 2rem;  border: none;  outline: none;  border-radius: 4rem;  background: #ea5413;  font-size: 1.3rem;  color: white;}.ai-training__action__img {  width: 15rem;  height: 15rem;  background-repeat: no-repeat;  background-position: center;  background-size: cover;  border-radius: 50%;  border: 3px solid #ffdbd6;}.hero-btn {  border: none;  outline: none;  border-radius: 3rem;  margin-top: 0.5rem;  padding: 0.6rem 1.5rem;  background: linear-gradient(20deg, #ea5413, #920783);  color: white;  font-size: 1.1rem;  box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.5294117647);}.contact-btn {  text-decoration: none;  color: white;  border: 1px solid #ea5413;  padding: 0.6rem 1.5rem;  outline: none;  background-color: #ea5413;  margin-top: 0.5rem;  border-radius: 3rem;  box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);  transition: all 0.3s;}.contact-btn:hover {  color: #ea5413;  background-color: transparent;  border: 1px solid #ea5413;}.loaded {  box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3019607843), 0 6px 20px 0 rgba(165, 200, 213, 0.4117647059);  margin-bottom: 4rem;}.pageForm-title {  padding: 0 0 0 40px;  background-image: url(/imgs/dm/accept.png);  background-position: 0 0;  background-repeat: no-repeat;  background-size: 30px auto;}.pageForm-txt {  padding-left: 40px;}.pageForm-notice {  padding-left: 40px;  color: grey;  margin-top: 50px;}.pageForm-p {  padding: 40px;}.btn-detailForm {  background-color: transparent;  border: none;  outline: none;  color: #ff892e;  padding: 0 0;  padding-bottom: 0.1rem;  margin-bottom: 0.8rem;  display: inline-block;  border-bottom: 1px dotted #ff892e;  transition: all 0.4s;  text-decoration: none;}.btn-detailForm:hover {  transform: translate(2px, 2px);  text-decoration: none;  color: #ff892e;}@media (max-width: 1300px) {  .header-right-video {    position: absolute;    width: 76%;  }}@media (max-width: 992px) {  .cntheader .header-title {    font-size: 2.2rem;  }  .header-right {    height: 40vh;  }  .header-right-magnifier {    right: -2.5rem;    bottom: 1rem;  }  .header__sub {    font-size: 1.3rem;  }  .header__sub::before,.header__sub::after {    width: 8%;  }  .header__sub::before {    left: 30%;  }  .header__sub::after {    left: 62%;  }  .header__form__input {    font-size: 0.9rem;  }  .category-btngrp {    padding: 0;  }  .category-btn {    padding: 0.3rem 1.5rem;    font-size: 1.2rem;  }  .ctncategory-btn {    padding: 0.2rem 1rem;    font-size: 1rem;  }  .top3 .row {    padding: 0;  }  .card__rank {    padding: 0.8rem 1rem;  }  .top3__num {    left: 0.6rem;    top: -2.5rem;    font-size: 4rem;  }  .card__rank__word {    margin-left: 1.5rem;    font-size: 1.2rem;  }  .card__rank hr {    margin-top: 8px;    margin-bottom: 8px;  }  .top20 .row {    padding: 0;  }  .top20__num {    font-size: 2.1rem;    width: 1.6rem;  }  .container__footer {    width: 95vw;  }  .header__form {    width: 85%;    position: relative;  }  .header__form__input {    margin-left: 0;    width: 100%;  }  .header__form__sub {    transform: none;    position: absolute;    right: 0;    top: 0;  }  .header-right-linecir {    bottom: 0;  }  .cntheader__sub {    font-size: 1.2rem;  }  .cntheader__sub::before {    left: 13%;  }  .cntheader__sub::after {    left: 72%;  }  .toparticle__title img {    position: absolute;    width: 90px;    right: -2rem;    top: -2rem;  }  .toparticle__top {    font-size: 1.7rem;  }  .fb__fr {    width: 100%;  }  .cntsubscribe__form {    width: 100%;  }  .ai-training__action__box {    flex-direction: column;  }}@media (max-width: 767px) {  .header .col-md-5 {    margin-bottom: 3rem;  }  .header-right-bubble {    width: 15%;  }  .header-right-magnifier {    right: 4rem;    bottom: 1rem;  }  .category {    padding-top: 4rem;  }  .category.dm-description {    padding-top: 4rem;    padding-left: 0;    padding-right: 0;    margin-top: 4.5rem;  }  .category.mt-xl {    margin-top: 8.5rem;  }  .category.dm-description h5 {    padding-left: 1rem;    padding-right: 1rem;  }  .top3 {    padding-bottom: 2rem;  }  .top3 .col-md-4 {    margin-bottom: 1.5rem;  }  .top3 .col-md-4:nth-of-type(3) {    margin-bottom: 0;  }  .card__rank {    margin-bottom: 1.5rem;  }  .row-right {    margin-top: 2rem;  }  .cntheader {    padding-bottom: 0rem;  }  .header-right-video {    position: absolute;    width: 70%;    left: 2.3rem;    top: 1.5rem;  }  .img-block-list {    padding: 2rem 1.5rem;  }  .ai-training__card .card-img-top {    height: 50vh;  }}@media (max-width: 576px) {  .header-title {    font-size: 2.5rem;  }  .header.ai-training {    height: 80vh;  }  .header-right {    height: 30vh;  }  .header-right-magnifier {    right: 0rem;    bottom: 1.5rem;  }  .category-btn {    padding: 0.2rem 1rem;    font-size: 1rem;  }  .category {    padding: 1rem;  }  .footer-img {    height: 50px;  }  .footer {    font-size: 0.9rem;  }  .pageForm-p {    padding: 15px;  }  .pageForm {    width: 95%;  }}@media (max-width: 480px) {  .ctncategory-btn {    margin-top: 0.6rem;  }  .header-right-video {    position: absolute;    width: 75%;    left: 2.1rem;    top: 1.3rem;  }}/* ai-anchor Start */#ai-anchor {  overflow-x: hidden;}#ai-anchor .stock-bg {  height: 850px;  left: -15vw;  top: -125px;  position: absolute;  z-index: -1;}@media (max-width: 1400px) {  #ai-anchor .stock-bg {    top: -130px;  }}@media (max-width: 991px) {  #ai-anchor .stock-bg {    top: -175px;  }}@media (max-width: 767px) {  #ai-anchor .stock-bg {    top: -155px;  }}@media (max-width: 490px) {  #ai-anchor .stock-bg {    top: -130px;  }}@media (max-width: 575px) {  #ai-anchor .header-title {    font-size: 2rem;  }}#ai-anchor .header-sub {  padding: 0 10px;  text-align: start;}#ai-anchor .header-sub span {  display: inline-block;  margin-top: 35px;  font-size: 24px;  font-weight: bold;  color: #f8a154;}#ai-anchor .header-sub p {  width: 450px;  margin: 20px auto;}@media (max-width: 991px) {  #ai-anchor .header-sub p {    width: auto;  }}#ai-anchor .ai-description {  padding-top: 200px;  padding-bottom: 100px;}@media (max-width: 991px) {  #ai-anchor .ai-description {    padding-top: 100px;  }}#ai-anchor .ai-description div .icon {  width: 30px;}#ai-anchor .ai-description h5 {  margin: 0;  font-size: 28px;  font-weight: bold;  color: #ea5413;}@media (max-width: 375px) {  #ai-anchor .ai-description h5 {    font-size: 20px;  }}#ai-anchor .ai-description .content-box {  display: flex;  justify-content: space-between;  margin-bottom: 150px;}@media (max-width: 991px) {  #ai-anchor .ai-description .content-box {    flex-direction: column;  }}#ai-anchor .ai-description .content-box section {  width: 35%;}@media (max-width: 991px) {  #ai-anchor .ai-description .content-box section {    width: 100%;  }}#ai-anchor .ai-description .triangle-item {  display: flex;  justify-content: center;}@media (max-width: 991px) {  #ai-anchor .ai-description .triangle-item {    margin-left: -35px;  }}#ai-anchor .ai-description .triangle-item img {  width: 40px;  height: 100%;  image-rendering: -webkit-optimize-contrast;}@media (max-width: 991px) {  #ai-anchor .ai-description .triangle-item img {    transform: rotate(90deg);  }}#ai-anchor .faq-content {  position: relative;}#ai-anchor .faq-content .img-box {  position: relative;}@media (max-width: 575px) {  #ai-anchor .faq-content .img-box {    width: 330px;    margin: auto;  }}#ai-anchor .faq-content .img-box .img-mb {  width: 500px;  margin: auto;}@media (max-width: 575px) {  #ai-anchor .faq-content .img-box .img-mb {    width: 100%;  }}#ai-anchor .faq-content .img-box .text-box {  position: absolute;  width: 330px;  right: 330px;  top: 80px;  line-height: 35px;  font-size: 18px;  font-weight: bold;  color: #656565;}@media (max-width: 1400px) {  #ai-anchor .faq-content .img-box .text-box {    right: 260px;    top: 55px;  }}@media (max-width: 1200px) {  #ai-anchor .faq-content .img-box .text-box {    font-size: 16px;    right: 185px;    top: 40px;  }}@media (max-width: 991px) {  #ai-anchor .faq-content .img-box .text-box {    width: 365px;    right: 160px;    top: 310px;    font-size: 18px;  }}@media (max-width: 767px) {  #ai-anchor .faq-content .img-box .text-box {    right: 70px;  }}@media (max-width: 575px) {  #ai-anchor .faq-content .img-box .text-box {    width: 285px;    right: 23px;    top: 190px;    font-size: 14px;  }}@media (max-width: 991px) {  #ai-anchor .faq-content .img-box .text-box p:last-child {    width: 200px;  }}@media (max-width: 575px) {  #ai-anchor .faq-content .img-box .text-box p:last-child {    width: 170px;  }}#ai-anchor ul {  list-style: none;  text-align: center;}@media (max-width: 767px) {  #ai-anchor ul {    padding: 0;  }}#ai-anchor ul li {  font-size: 18px;  margin-bottom: 10px;  font-weight: bold;}@media (max-width: 767px) {  #ai-anchor ul li {    font-size: 16px;  }}#ai-anchor video {  width: 75%;  height: auto;}@media (max-width: 767px) {  #ai-anchor video {    width: 90%;  }}#ai-anchor .content {  width: 800px;  margin: 0 auto 10rem;  padding: 2rem 8rem;  border-radius: 20px;  background-color: #fff2ec;  font-size: 20px;}@media (max-width: 991px) {  #ai-anchor .content {    width: 90%;    padding: 2rem 5vw;  }}@media (max-width: 567px) {  #ai-anchor .content {    padding-top: 130px;  }}#ai-anchor .content .img-01 {  position: absolute;  top: -75px;  left: -30px;  z-index: 1;  width: 45%;  image-rendering: -webkit-optimize-contrast;}@media (max-width: 567px) {  #ai-anchor .content .img-01 {    top: -40%;    width: 250px;  }}#ai-anchor .content .ai-anchor-price {  background-color: transparent;  padding: 2px 1px;  border-radius: 5px;  font-size: 48px;  color: #3190da;  background: linear-gradient(transparent 40%, rgba(255, 255, 255, 0) 50%, yellow 75%, yellow 90%, transparent 95%);}#ai-anchor .content,#ai-anchor .ai-description span {  font-size: 22px;  font-weight: bold;  color: #3190da;}/* ai-anchor End *//* ad-operation Start */#ad-operation {  overflow-x: hidden;}#ad-operation .header {  height: auto;  margin-top: -20px;}#ad-operation .header p {  font-weight: bold;  line-height: 32px;}#ad-operation .header p span {  font-size: 20px;  color: #ea5413;}#ad-operation .header .banner {  position: relative;}#ad-operation .header .banner .img {  max-width: 100vw;  height: auto;}#ad-operation .header .banner .text {  width: 100%;  position: absolute;  z-index: 100;  left: -55px;  top: -60px;}@media (max-width: 991px) {  #ad-operation .header .banner .text {    left: -45px;    top: -35px;  }}@media (max-width: 767px) {  #ad-operation .header .banner .text {    left: -30px;    top: -20px;  }}@media (max-width: 575px) {  #ad-operation .header .banner .text {    left: -15px;    top: -15px;  }}#ad-operation .header .banner .slogen {  display: flex;  flex-direction: column;  align-items: center;  position: absolute;  top: 63vw;}#ad-operation .header .banner .slogen h3 {  margin-bottom: 0;  font-size: 40px;  font-weight: bold;}@media (max-width: 1200px) {  #ad-operation .header .banner .slogen h3 {    font-size: 33px;  }}@media (max-width: 991px) {  #ad-operation .header .banner .slogen h3 {    font-size: 28px;  }}@media (max-width: 767px) {  #ad-operation .header .banner .slogen h3 {    font-size: 20px;  }}@media (max-width: 575px) {  #ad-operation .header .banner .slogen h3 {    font-size: 16px;  }}#ad-operation .header .banner .slogen h3 span {  margin: 20px 0;  display: inline-block;  font-size: 70px;  color: #900381;}@media (max-width: 1200px) {  #ad-operation .header .banner .slogen h3 span {    font-size: 58px;  }}@media (max-width: 991px) {  #ad-operation .header .banner .slogen h3 span {    margin: 10px 0;    font-size: 50px;  }}@media (max-width: 767px) {  #ad-operation .header .banner .slogen h3 span {    font-size: 36px;  }}@media (max-width: 575px) {  #ad-operation .header .banner .slogen h3 span {    margin: 5px 0;    font-size: 20px;  }}#ad-operation .header .banner .slogen h3 .point {  color: #dd541a;}#ad-operation .header .banner .slogen h3 small {  margin-left: 5px;  color: #868585;  text-decoration: line-through;}#ad-operation .header .banner .slogen h4 {  font-size: 46px;  font-weight: bold;}@media (max-width: 1200px) {  #ad-operation .header .banner .slogen h4 {    font-size: 38px;  }}@media (max-width: 991px) {  #ad-operation .header .banner .slogen h4 {    font-size: 32px;  }}@media (max-width: 767px) {  #ad-operation .header .banner .slogen h4 {    font-size: 24px;  }}@media (max-width: 575px) {  #ad-operation .header .banner .slogen h4 {    font-size: 14px;  }}#ad-operation .header .banner .slogen button {  margin-top: 30px;}@media (max-width: 991px) {  #ad-operation .header .banner .slogen button {    margin-top: 10px;  }}@media (max-width: 575px) {  #ad-operation .header .banner .slogen button {    margin-top: 5px;  }}#ad-operation .header-title {  color: #000;  font-weight: bold;  letter-spacing: 5px;}#ad-operation .header-right-cir {  right: -15%;  top: 30%;}#ad-operation .img-content {  display: flex;  justify-content: center;  margin: -100px auto;  position: relative;  z-index: 100;  width: 1300px;}@media (max-width: 1200px) {  #ad-operation .img-content {    width: 1000px;    margin: -50px auto;  }}@media (max-width: 991px) {  #ad-operation .img-content {    width: 700px;  }}@media (max-width: 767px) {  #ad-operation .img-content {    width: 600px;  }}@media (max-width: 575px) {  #ad-operation .img-content {    left: -10px;    width: 350px;  }}#ad-operation .img-content img {  width: 100%;}@media (max-width: 575px) {  #ad-operation .img-content img {    width: 140%;  }}#ad-operation .img-content h4 {  position: absolute;  font-size: 30px;  line-height: 40px;  font-weight: bold;  text-align: center;}@media (max-width: 1200px) {  #ad-operation .img-content h4 {    font-size: 22px;    line-height: 30px;  }}@media (max-width: 991px) {  #ad-operation .img-content h4 {    font-size: 16px;    line-height: 24px;  }}@media (max-width: 767px) {  #ad-operation .img-content h4 {    font-size: 14px;    line-height: 20px;  }}@media (max-width: 575px) {  #ad-operation .img-content h4 {    font-size: 12px;  }}#ad-operation .img-content .left {  top: 320px;  left: 280px;}@media (max-width: 1200px) {  #ad-operation .img-content .left {    top: 245px;    left: 218px;  }}@media (max-width: 991px) {  #ad-operation .img-content .left {    top: 170px;    left: 150px;  }}@media (max-width: 767px) {  #ad-operation .img-content .left {    top: 145px;    left: 128px;  }}@media (max-width: 575px) {  #ad-operation .img-content .left {    top: 115px;    left: 32px;  }}#ad-operation .img-content .center {  top: 420px;  left: 600px;}@media (max-width: 1200px) {  #ad-operation .img-content .center {    top: 325px;    left: 465px;  }}@media (max-width: 991px) {  #ad-operation .img-content .center {    top: 225px;    left: 323px;  }}@media (max-width: 767px) {  #ad-operation .img-content .center {    top: 193px;    left: 278px;  }}@media (max-width: 575px) {  #ad-operation .img-content .center {    top: 153px;    left: 155px;  }}#ad-operation .img-content .right {  top: 545px;  right: 240px;}@media (max-width: 1200px) {  #ad-operation .img-content .right {    top: 420px;    right: 188px;  }}@media (max-width: 991px) {  #ad-operation .img-content .right {    top: 290px;    right: 130px;  }}@media (max-width: 767px) {  #ad-operation .img-content .right {    top: 250px;    right: 109px;  }}@media (max-width: 575px) {  #ad-operation .img-content .right {    top: 200px;    right: 17px;  }}#ad-operation .dm-description {  display: flex;  flex-direction: column;  justify-content: center;  align-items: center;}#ad-operation .dm-description h2 {  margin: 0;  padding: 8px 10px;  color: #fff;  display: inline-block;  text-align: center;  font-size: 24px;  line-height: 33px;  border-radius: 10px;  background: #ea5413;}#ad-operation .dm-description h5 {  font-size: 22px;  letter-spacing: 2px;  line-height: 36px;}@media (max-width: 767px) {  #ad-operation .dm-description h5 {    font-size: 18px;  }}#ad-operation .dm-description h5 strong {  padding-bottom: 3px;}#ad-operation .dm-description .line {  display: block;  width: 50px;  height: 7px;  margin: 80px auto 40px;  background-color: #ea5413;}#ad-operation .dm-description .stock-img {  position: absolute;  z-index: -10;  width: 100vw;  top: 100%;  height: 660px;}@media (max-width: 1200px) {  #ad-operation .dm-description .stock-img {    height: 535px;  }}@media (max-width: 991px) {  #ad-operation .dm-description .stock-img {    height: 360px;  }}@media (max-width: 767px) {  #ad-operation .dm-description .stock-img {    height: 300px;  }}@media (max-width: 575px) {  #ad-operation .dm-description .stock-img {    height: 235px;  }}#ad-operation .dm-description .purple-circle {  top: 100px;}#ad-operation .card-content > div {  display: flex;  flex-direction: column;  border: 2px solid #ea5413;  border-radius: 10px;}#ad-operation .card-content h3 {  width: 60%;  margin: -17px auto 0;  padding: 8px 5px;  display: inline-block;  color: #fff;  background: #ea5413;  text-align: center;  font-size: 18px;  font-weight: bold;  letter-spacing: 2px;  border-radius: 10px;  box-shadow: 2px 2px 5px #ccc;}@media (max-width: 576px) {  #ad-operation .card-content h3 {    width: auto;    padding: 7px 15px;    font-size: 16px;  }}#ad-operation .card-content h4,#ad-operation .card-content .table {  margin-top: 25px;  padding: 20px;  font-size: 14px;  line-height: 32px;  background: #ffebe2;}#ad-operation .card-content h4 span,#ad-operation .card-content .table span {  display: block;  border-bottom: 1px solid;}#ad-operation .card-content h4 strong,#ad-operation .card-content .table strong {  font-size: 20px;}#ad-operation .card-content h4 p,#ad-operation .card-content .table p {  margin: 0;  line-height: 20px;}#ad-operation .content-box {  width: 65%;  margin: auto;  padding: 30px 0;  display: flex;  justify-content: center;  background: #ffebe2;  border: 2px solid #ffebe2;  position: relative;}@media (max-width: 991px) {  #ad-operation .content-box {    width: 90%;  }}@media (max-width: 767px) {  #ad-operation .content-box {    width: 100%;  }}@media (max-width: 475px) {  #ad-operation .content-box {    padding-left: 10px;  }}#ad-operation .content-box p {  margin: 0;  line-height: 32px;}@media (max-width: 767px) {  #ad-operation .content-box p {    font-size: 14px;  }}@media (max-width: 475px) {  #ad-operation .content-box p {    font-size: 13px;  }}#ad-operation .content-box h4 {  font-size: 22px;  font-weight: bold;  margin-bottom: 20px;}@media (max-width: 767px) {  #ad-operation .content-box h4 {    font-size: 18px;  }}@media (max-width: 475px) {  #ad-operation .content-box h4 {    font-size: 14px;    white-space: nowrap;  }}#ad-operation .content-box .line {  height: 3px;  background: #fff;  width: 950px;  position: absolute;  left: -200px;  top: 35px;}@media (max-width: 767px) {  #ad-operation .content-box .line {    top: 33px;  }}@media (max-width: 575px) {  #ad-operation .content-box .line {    top: 30px;  }}#ad-operation .content-badge {  position: absolute;  left: 0;  top: -53px;  padding: 5px 10px;  background: #ea5413;  border-radius: 10px;  font-size: 22px;  font-weight: bold;  color: #fff;}#ad-operation .client-content {  position: relative;  display: flex;  justify-content: center;}#ad-operation .client-content p {  position: absolute;  top: 11vw;  z-index: 10;  font-size: 32px;  font-weight: bold;}@media (max-width: 991px) {  #ad-operation .client-content p {    font-size: 28px;  }}@media (max-width: 767px) {  #ad-operation .client-content p {    font-size: 22px;  }}@media (max-width: 575px) {  #ad-operation .client-content p {    top: 9vw;    font-size: 18px;  }}#ad-operation .pageForm {  line-height: 32px;  letter-spacing: 1px;  background: #fff;}#ad-operation .header-lefttop {  width: 170%;  position: absolute;  left: -22vw;  top: -225px;  z-index: -1;  opacity: 0.5;}@media (max-width: 991px) {  #ad-operation .header-lefttop {    width: 100%;    left: -24vw;    top: -250px;  }}@media (max-width: 991px) {  #ad-operation .header-lefttop {    top: -26vw;  }}#ad-operation .category.dm-description {  padding: 2rem 8rem;}@media (max-width: 991px) {  #ad-operation .category.dm-description {    padding: 2rem 3rem;  }}@media (max-width: 767px) {  #ad-operation .category.dm-description {    padding: 2rem 0rem;  }}#ad-operation .accreditation p {  font-size: 24px;}@media (max-width: 575px) {  #ad-operation .accreditation p {    font-size: 20px;  }}#ad-operation .accreditation img {  width: 150px;  position: absolute;  top: -35px;  left: -25px;}@media (max-width: 767px) {  #ad-operation .accreditation img {    width: 135px;    left: -50px;  }}@media (max-width: 575px) {  #ad-operation .accreditation img {    width: 120px;    top: -80px;    left: -20px;  }}#ad-operation .purple-circle {  width: 40%;  top: -400px;  right: -150px;  position: absolute;  z-index: -100;}@media (max-width: 991px) {  #ad-operation .purple-circle {    width: 60%;  }}@media (max-width: 767px) {  #ad-operation .purple-circle {    top: -300px;  }}#ad-operation .data-text .circle {  top: -220px;  left: -5vw;}@media (max-width: 767px) {  #ad-operation .data-text .circle {    top: -100px;  }}/* ad-operation End *//* blog-traffic Start */.blog-traffic {  overflow-x: hidden;}.blog-traffic .header {  padding: 0;}.blog-traffic .banner {  width: 100vw;  height: auto;  position: absolute;  z-index: -10;}@media (max-width: 767px) {  .blog-traffic .banner {    width: 150vw;    height: auto;  }}.blog-traffic .header-img {  width: 150%;  height: auto;  position: relative;  top: -30px;  right: 30px;  z-index: -1;}@media (max-width: 767px) {  .blog-traffic .header-img {    width: 100%;    top: -45px;    right: unset;  }}.blog-traffic .header-title {  font-size: 2.5rem;  line-height: 65px;  font-weight: 600;  color: #000;}@media (max-width: 768px) {  .blog-traffic .header-title {    font-size: 2.2rem;  }}.blog-traffic .dm-description {  margin-top: -250px;}@media (max-width: 1400px) {  .blog-traffic .dm-description {    margin-top: -190px;  }}@media (max-width: 991px) {  .blog-traffic .dm-description {    margin-top: -100px;  }}.blog-traffic .dm-description p {  font-size: 20px;  line-height: 32px;}.blog-traffic .category {  padding: 0;  position: relative;}.blog-traffic .category.dm-description {  padding: 0;}@media (max-width: 575px) {  .blog-traffic .category {    padding: 0 10px;  }}.blog-traffic .category h4 {  font-size: 2rem;}.blog-traffic .category h4,.blog-traffic .category .sub-title {  margin: 0;  color: #f5ab1b;  font-weight: bold;}.blog-traffic .category-sub-h2::after {  width: 3rem;  border-bottom: 10px solid #ea5413;  margin-top: 15px;}.blog-traffic ul {  padding: 0;  list-style: none;}.blog-traffic ul li {  line-height: 32px;}.blog-traffic .img-block-img {  width: 12%;  -o-object-fit: contain;     object-fit: contain;  image-rendering: -webkit-optimize-contrast;  position: relative;  top: -30px;}@media (max-width: 1200px) {  .blog-traffic .img-block-img {    top: -10px;  }}@media (max-width: 991px) {  .blog-traffic .img-block-img {    width: 15%;  }}@media (max-width: 767px) {  .blog-traffic .img-block-img {    width: 20%;    top: 5px;  }}@media (max-width: 490px) {  .blog-traffic .img-block-img {    top: 15px;  }}@media (max-width: 414px) {  .blog-traffic .img-block-img {    top: 22px;  }}@media (max-width: 1200px) {  .blog-traffic .img-first {    top: 0;  }}@media (max-width: 767px) {  .blog-traffic .img-first {    top: 15px;  }}@media (max-width: 490px) {  .blog-traffic .img-first {    top: 40px;  }}.blog-traffic .add-img {  width: 130px;  margin: 10px auto 0;  image-rendering: -webkit-optimize-contrast;}@media (max-width: 991px) {  .blog-traffic .add-img {    margin: 0 auto;  }}@media (max-width: 767px) {  .blog-traffic .add-img {    margin: 10px auto -25px;  }}.blog-traffic .purple-circle {  width: 50%;  left: -250px;  bottom: 100px;}@media (max-width: 991px) {  .blog-traffic .purple-circle {    left: -150px;  }}@media (max-width: 767px) {  .blog-traffic .purple-circle {    left: -50px;  }}.blog-traffic .orange-circle {  width: 50%;  right: -200px;  top: -200px;}@media (max-width: 767px) {  .blog-traffic .orange-circle {    right: -100px;    top: -150px;  }}.blog-traffic .data-text .circle {  top: -250px;  right: -5vw;}@media (max-width: 767px) {  .blog-traffic .data-text .circle {    top: 0px;  }}/* blog-traffic End *//* seo Start */#seo-dm {  overflow: hidden;}#seo-dm .bg-img {  width: 50%;  position: absolute;  right: -50px;  z-index: -1;}#seo-dm .block-content {  margin-left: -35px;}#seo-dm .block-content h3 {  color: #f6ab1c;  font-size: 2.2rem;  font-weight: bold;}@media (max-width: 991px) {  #seo-dm .block-content h3 {    font-size: 1.8rem;  }}@media (max-width: 575px) {  #seo-dm .block-content h3 {    font-size: 1.5rem;  }}#seo-dm .block-content p {  color: #656565;  font-weight: bold;}#seo-dm .block-content .block-title {  margin-bottom: 20px;}@media (max-width: 575px) {  #seo-dm .block-content .block-title {    margin-bottom: 0;  }}/* seo End *//* youtube-views Start */#youtube-views,#youtube-views-zh {  overflow-x: hidden;}#youtube-views h5,#youtube-views-zh h5 {  line-height: 32px;}#youtube-views .title,#youtube-views-zh .title {  color: #ea5413;  font-size: 1.3rem;  font-weight: bold;}#youtube-views .header-right,#youtube-views-zh .header-right {  background-position: center;}#youtube-views .card-group,#youtube-views-zh .card-group {  margin-top: 50px;}#youtube-views .card-group .card,#youtube-views-zh .card-group .card {  box-shadow: 0 0 10px rgba(32, 32, 32, 0.2509803922);}#youtube-views .card-group .card ul,#youtube-views-zh .card-group .card ul {  padding: 0;  list-style: none;}#youtube-views .card-group .card ul img,#youtube-views-zh .card-group .card ul img {  margin-bottom: 1px;}#youtube-views .card-group .card .price,#youtube-views-zh .card-group .card .price {  width: 100%;  padding: 10px 0;  font-size: 28px;  font-weight: bold;  text-align: center;  color: #fff;  background-color: #ea5413;  letter-spacing: 2px;}#youtube-views .card-group .card .buy-btn,#youtube-views-zh .card-group .card .buy-btn {  padding: 6px 18px;  color: #fff;  border: 1px solid transparent;  border-radius: 50px;  background: #ea5413;  transition: all 0.3s;}#youtube-views .card-group .card .buy-btn:hover,#youtube-views-zh .card-group .card .buy-btn:hover {  color: #ea5413;  border: 1px solid #ea5413;  background: #fff;}#youtube-views .card-group .paypal-content,#youtube-views-zh .card-group .paypal-content {  margin: 0 20px;  box-shadow: none;}#youtube-views .direction-list,#youtube-views-zh .direction-list {  margin-top: 100px;}@media (max-width: 991px) {  #youtube-views .direction-list,#youtube-views-zh .direction-list {    margin-top: 60px;  }}#youtube-views .direction-list img,#youtube-views-zh .direction-list img {  width: 50px;  -o-object-fit: contain;     object-fit: contain;  filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);}#youtube-views .direction-list .content > div,#youtube-views-zh .direction-list .content > div {  margin-bottom: 40px;  padding: 0px 15px;  border-left: 1px solid rgba(0, 0, 0, 0.125);  border-bottom: 1px solid rgba(0, 0, 0, 0.125);}#youtube-views .direction-list section h5,#youtube-views-zh .direction-list section h5 {  margin: 0;  font-size: 18px;  font-weight: bold;}#youtube-views .direction-list section p,#youtube-views-zh .direction-list section p {  font-size: 14px;}#youtube-views .accordion-button,#youtube-views-zh .accordion-button {  padding: 20px;}#youtube-views .accordion-button:not(.collapsed),#youtube-views-zh .accordion-button:not(.collapsed) {  color: #ea5413 !important;  background-color: #ffebe2 !important;}#youtube-views button:focus:not(:focus-visible),#youtube-views-zh button:focus:not(:focus-visible) {  box-shadow: none !important;}#youtube-views .accordion-button:not(.collapsed)::after,#youtube-views-zh .accordion-button:not(.collapsed)::after {  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");}@media (max-width: 767px) {  #youtube-views .category.dm-description,#youtube-views-zh .category.dm-description {    padding-top: 6rem;  }}@media (max-width: 575px) {  #youtube-views .category.dm-description,#youtube-views-zh .category.dm-description {    padding-top: 14rem;  }}/* youtube-views End *//* youtube-views-zh Start */#youtube-views-zh .header {  margin-top: 0;  padding: 4.8rem 0 3rem;}#youtube-views-zh .header p {  line-height: 35px;  font-size: 18px;  font-weight: bold;  color: #656565;}@media (max-width: 414px) {  #youtube-views-zh .header p {    font-size: 14px;  }}#youtube-views-zh .header .row {  height: 1000px;}@media (max-width: 991px) {  #youtube-views-zh .header .row {    height: 700px;  }}@media (max-width: 767px) {  #youtube-views-zh .header .row {    height: auto;  }}@media (max-width: 767px) {  #youtube-views-zh .header .row div {    text-align: center;  }}#youtube-views-zh .header .header-title {  padding-top: 10rem;  margin-bottom: 30px;  font-size: 40px;  color: #ea5413;  line-height: 44px;}@media (max-width: 991px) {  #youtube-views-zh .header .header-title {    padding-top: 5rem;  }}@media (max-width: 414px) {  #youtube-views-zh .header .header-title {    font-size: 34px;  }}#youtube-views-zh .header .header-title small {  font-size: 28px;}@media (max-width: 991px) {  #youtube-views-zh .header .header-title small {    font-size: 22px;  }}#youtube-views-zh .header .banner {  width: 100vw;  height: 1360px;  position: absolute;  top: 0;  right: -16vw;  z-index: -1;  background-size: cover;  background-position: center;  background-repeat: no-repeat;  background-image: url("/imgs/dm/youtube-views-01.png");}@media (max-width: 1200px) {  #youtube-views-zh .header .banner {    top: -10vw;  }}@media (max-width: 991px) {  #youtube-views-zh .header .banner {    top: 8vw;    height: 1000px;  }}@media (max-width: 767px) {  #youtube-views-zh .info-content {    text-align: center;  }}#youtube-views-zh .info-content h4 {  font-weight: bold;  line-height: 35px;  margin-bottom: 30px;}#youtube-views-zh .info-content h4 strong {  font-size: 30px;  color: #ea5413;}#youtube-views-zh .info-content p {  width: 320px;  line-height: 35px;  color: #656565;}@media (max-width: 767px) {  #youtube-views-zh .info-content p {    margin: auto;  }}#youtube-views-zh .card-group {  margin: 170px auto 50px;}@media (max-width: 575px) {  #youtube-views-zh .card-group {    margin: 75px auto 50px;  }}#youtube-views-zh .card-group .card {  border-radius: 20px;}#youtube-views-zh .card-group .card ul {  padding: 10px;}#youtube-views-zh .card-group .card .price {  font-size: 30px;}#youtube-views-zh .card-group .card .price small {  display: block;  margin-top: -3px;  font-size: 18px;  font-weight: normal;  text-decoration: line-through;}#youtube-views-zh .card-group .card .buy-btn {  display: block;  text-decoration: none;}@media (max-width: 767px) {  #youtube-views-zh .direction-list {    margin-top: 50px;  }}#youtube-views-zh .direction-list img {  filter: unset;  position: absolute;}#youtube-views-zh .direction-list section {  margin-bottom: 40px;  padding: 0px 35px 10px;  border-left: 1px solid #656565;  border-bottom: 1px solid #656565;  border-radius: 0 0 0 10px;}#youtube-views-zh .direction-list section h5 {  margin-bottom: 20px;}#youtube-views-zh .direction-list section p {  font-size: 16px;  line-height: 30px;  color: #656565;}#youtube-views-zh .data-content {  display: flex;  flex-direction: column;  align-items: center;  margin-bottom: 150px;}#youtube-views-zh .data-content section h4 {  position: absolute;  top: 35%;  left: 50%;  width: 100%;  font-size: 28px;  text-align: center;  font-weight: bold;  line-height: 40px;  transform: translate(-50%, -50%);}@media (max-width: 1200px) {  #youtube-views-zh .data-content section h4 {    top: 40%;  }}@media (max-width: 767px) {  #youtube-views-zh .data-content section h4 {    top: 36%;    font-size: 18px;    line-height: normal;  }}@media (max-width: 575px) {  #youtube-views-zh .data-content section h4 {    top: 40%;  }}#youtube-views-zh .data-content section h4 strong {  font-size: 34px;  color: #ea5413;}@media (max-width: 767px) {  #youtube-views-zh .data-content section h4 strong {    font-size: 24px;  }}@media (max-width: 414px) {  #youtube-views-zh .data-content section h4 strong {    font-size: 22px;  }}#youtube-views-zh .data-content section img {  margin-top: 150px;}@media (max-width: 991px) {  #youtube-views-zh .data-content section img {    height: 500px;    -o-object-fit: cover;       object-fit: cover;  }}@media (max-width: 767px) {  #youtube-views-zh .data-content section img {    margin-top: 80px;    height: 400px;  }}@media (max-width: 575px) {  #youtube-views-zh .data-content section img {    height: 280px;  }}#youtube-views-zh .data-content p {  font-weight: bold;  line-height: 35px;  color: #656565;}/* youtube-views-zh End *//* seo-image Start */.seo-image {  overflow-x: hidden;}.seo-image p {  line-height: 32px;}.seo-image .header {  padding: 0;}.seo-image .video-box {  width: 100%;  padding-bottom: 56%;}.seo-image .content {  margin: 150px auto;}@media (max-width: 767px) {  .seo-image .content {    margin: 80px auto;  }}.seo-image .line {  width: 820px;  position: absolute;  top: -70px;  left: 345px;}@media (max-width: 1400px) {  .seo-image .line {    width: 840px;    top: -85px;    left: 210px;  }}@media (max-width: 1200px) {  .seo-image .line {    width: 880px;    top: -90px;    left: 114px;  }}@media (max-width: 991px) {  .seo-image .line {    display: none;  }}.seo-image .title {  font-size: 28px;  color: #f6ab1c;  font-weight: bold;}@media (max-width: 991px) {  .seo-image .img-item {    width: 100%;    max-width: 100% !important;  }}.seo-image .purple-circle,.seo-image .orange-circle {  width: 100%;}@media (max-width: 991px) {  .seo-image .purple-circle,.seo-image .orange-circle {    width: 60%;  }}.seo-image .purple-circle {  top: -470px;  right: -100%;}@media (max-width: 991px) {  .seo-image .purple-circle {    top: -350px;    right: -150px;  }}@media (max-width: 767px) {  .seo-image .purple-circle {    top: -250px;    right: -20px;  }}.seo-image .orange-circle {  top: -200px;  left: -100%;}@media (max-width: 991px) {  .seo-image .orange-circle {    top: -30vw;    left: -20vw;  }}.seo-image .data-text .circle {  top: -400px;  right: -5vw;}@media (max-width: 991px) {  .seo-image .data-text .circle {    top: -250px;  }}@media (max-width: 767px) {  .seo-image .data-text .circle {    top: -120px;  }}/* seo-image End *//* 共用 className Start */.purple-circle,.orange-circle {  position: absolute;  z-index: -1;}.data-text {  position: relative;}.data-text p {  font-size: 28px;  font-weight: bold;  text-align: center;}.data-text .circle {  width: 500px;  z-index: -100;  position: absolute;}@media (max-width: 991px) {  .data-text .circle {    width: 400px;  }}@media (max-width: 767px) {  .data-text .circle {    width: 250px;  }}/* 共用 className End *//* ai-presenter Start */.ai-presenter {  margin: 100px auto;  overflow: hidden;}.ai-presenter .title-item {  display: flex;  flex-direction: column;  justify-content: center;  align-items: center;  position: relative;}.ai-presenter .title-item img {  width: 450px;}@media (max-width: 575px) {  .ai-presenter .title-item img {    width: 350px;  }}.ai-presenter .title-item h4 {  text-align: center;  margin-top: -41px;  margin-left: -10px;  font-weight: bold;}@media (max-width: 575px) {  .ai-presenter .title-item h4 {    margin-top: -34px;  }}.ai-presenter .usecace-list {  margin-bottom: 100px;}.ai-presenter .usecace-list img {  width: 100%;}.ai-presenter .usecace-list h5 {  font-size: 18px;  text-align: center;}.ai-presenter .usecace-list h5::before {  content: "";  font-weight: bold;  display: inline-block;  border: 5px solid #e0c3dd;  border-radius: 20px;  margin-right: 10px;  margin-bottom: 2px;}.ai-presenter .video-left,.ai-presenter .video-right {  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  position: relative;  padding: 20px;  background: #d8bbd9;  border-radius: 20px;}.ai-presenter .video-left a,.ai-presenter .video-right a {  display: flex;  width: 100%;  text-decoration: none;  color: #000;}.ai-presenter .video-left a:hover .click-img,.ai-presenter .video-right a:hover .click-img {  top: 50px;}.ai-presenter .video-left .click-img,.ai-presenter .video-right .click-img {  position: absolute;  width: 50px;  top: 60px;  right: 40px;}.ai-presenter .video-left strong,.ai-presenter .video-right strong {  width: 100%;  padding: 20px;  font-size: 24px;  text-align: center;  background: #fff;  border-radius: 15px 15px 0 0;}.ai-presenter .video-left .video-box,.ai-presenter .video-right .video-box {  width: 100%;  margin-top: 20px;  padding-bottom: 45%;}.ai-presenter .video-left {  background: #d8bbd9;}.ai-presenter .video-right {  background: #fde3d9;}.ai-presenter .mp4-box {  width: 70%;  height: 0;  margin: auto;  padding-bottom: 45%;}.ai-presenter .mp4-box video {  width: 100%;  height: auto;}.ai-presenter .step-content,.ai-presenter .template-content {  margin: 100px auto;  position: relative;}.ai-presenter .step-content .container,.ai-presenter .template-content .container {  margin-top: -38px;}.ai-presenter .step-content .bg-top,.ai-presenter .step-content .bg-bottom,.ai-presenter .template-content .bg-top,.ai-presenter .template-content .bg-bottom {  width: 100%;  position: absolute;  z-index: -10;  left: 0;  right: 0;}.ai-presenter .step-content .bg-top,.ai-presenter .template-content .bg-top {  top: -10px;}.ai-presenter .step-content .bg-bottom,.ai-presenter .template-content .bg-bottom {  bottom: -10px;}.ai-presenter .step-content .link-btn,.ai-presenter .template-content .link-btn {  display: inline-block;  padding: 12px 20px;  margin-top: 25px;  border-radius: 100px;  text-decoration: none;  color: #fff;  background: #ea5413;  transition: all 0.3s;}.ai-presenter .step-content .link-btn:hover,.ai-presenter .template-content .link-btn:hover {  opacity: 0.8;}.ai-presenter .step-content ul,.ai-presenter .template-content ul {  padding: 0;  list-style: none;  display: flex;  flex-direction: column;  justify-content: center;}.ai-presenter .step-content ul li,.ai-presenter .template-content ul li {  margin: 30px auto;}.ai-presenter .step-content ul li img,.ai-presenter .template-content ul li img {  height: auto;  width: 100%;  max-width: 800px;}.ai-presenter .step-content ul li h4,.ai-presenter .template-content ul li h4 {  color: #ea5413;  font-weight: bold;  text-align: center;  line-height: 34px;}@media (max-width: 575px) {  .ai-presenter .step-content ul li h4,.ai-presenter .template-content ul li h4 {    font-size: 20px;  }}.ai-presenter .step-content ul li .point-list,.ai-presenter .template-content ul li .point-list {  list-style: decimal;}.ai-presenter .step-content ul li .point-list li,.ai-presenter .template-content ul li .point-list li {  margin: 5px 45px;}@media (max-width: 575px) {  .ai-presenter .step-content ul li .point-list li,.ai-presenter .template-content ul li .point-list li {    margin: 5px 0 5px 20px;  }}.ai-presenter .step-content .excerpt,.ai-presenter .template-content .excerpt {  margin: 15px 25px 0;  font-size: 18px;  font-weight: bold;}.ai-presenter .step-content .excerpt::before,.ai-presenter .template-content .excerpt::before {  content: "";  font-weight: bold;  display: inline-block;  border: 5px solid #ea5413;  border-radius: 20px;  margin-right: 10px;  margin-bottom: 2px;}@media (max-width: 575px) {  .ai-presenter .step-content .excerpt,.ai-presenter .template-content .excerpt {    font-size: 16px;  }}@media (max-width: 575px) {  .ai-presenter .step-content .caption,.ai-presenter .template-content .caption {    font-size: 15px;  }}.ai-presenter .template-content table {  display: table;  width: 110%;  height: auto;  margin-left: auto;  margin-top: -250px;  font-weight: bold;}@media (max-width: 1200px) {  .ai-presenter .template-content table {    margin-top: -195px;  }}@media (max-width: 991px) {  .ai-presenter .template-content table {    margin-top: -140px;  }}@media (max-width: 767px) {  .ai-presenter .template-content table {    width: 86%;    margin-top: 20px;    margin-left: 39px;  }}@media (max-width: 575px) {  .ai-presenter .template-content table {    margin: 20px auto 0;    margin-left: auto;  }}.ai-presenter .template-content table tbody {  border: 1px solid #f08757;}.ai-presenter .template-content table td {  text-align: center;}.ai-presenter .template-content table tr {  border-style: none !important;  border-bottom-width: 0px !important;}.ai-presenter .template-content .table-title {  margin-top: -242px;  text-align: end;}@media (max-width: 1200px) {  .ai-presenter .template-content .table-title {    margin-top: -185px;  }}@media (max-width: 991px) {  .ai-presenter .template-content .table-title {    margin-top: -133px;  }}@media (max-width: 767px) {  .ai-presenter .template-content .table-title {    margin-top: 0;    text-align: start;  }}.ai-presenter .template-content .table-striped > tbody > tr:nth-child(odd) > td,.ai-presenter .template-content .table-striped > tbody > tr:nth-child(odd) > th {  box-shadow: none;  background-color: #fdeae1;  border-bottom-width: 0px !important;}.ai-presenter .template-content .table-striped > tbody > tr:nth-child(even) > td,.ai-presenter .template-content .table-striped > tbody > tr:nth-child(even) > th {  border-bottom-width: 0px !important;}.ai-presenter .template-content .info img {  height: auto;  width: 100%;  max-width: 800px;}@media (max-width: 767px) {  .ai-presenter .template-content .info .img-left {    padding: 0 15px;  }}.ai-presenter .template-content .info .img-right {  width: 107%;}@media (max-width: 767px) {  .ai-presenter .template-content .info .img-right {    width: 100%;  }}.ai-presenter .template-content .info .img-text-left,.ai-presenter .template-content .info .img-text-right {  position: absolute;  top: 9%;  color: #ea5413;  font-size: 34px;  font-weight: bold;}@media (max-width: 1200px) {  .ai-presenter .template-content .info .img-text-left,.ai-presenter .template-content .info .img-text-right {    top: 8%;    font-size: 28px;  }}@media (max-width: 991px) {  .ai-presenter .template-content .info .img-text-left,.ai-presenter .template-content .info .img-text-right {    font-size: 22px;  }}@media (max-width: 767px) {  .ai-presenter .template-content .info .img-text-left,.ai-presenter .template-content .info .img-text-right {    font-size: 30px;  }}@media (max-width: 575px) {  .ai-presenter .template-content .info .img-text-left,.ai-presenter .template-content .info .img-text-right {    font-size: 4.8vw;  }}.ai-presenter .template-content .info .img-text-left {  left: 31%;}@media (max-width: 1400px) {  .ai-presenter .template-content .info .img-text-left {    left: 28.5%;  }}@media (max-width: 767px) {  .ai-presenter .template-content .info .img-text-left {    left: 30%;  }}.ai-presenter .template-content .info .img-text-right {  left: 24.5%;}@media (max-width: 1400px) {  .ai-presenter .template-content .info .img-text-right {    left: 20.5%;  }}@media (max-width: 991px) {  .ai-presenter .template-content .info .img-text-right {    left: 18.5%;  }}@media (max-width: 767px) {  .ai-presenter .template-content .info .img-text-right {    top: 13%;    left: 19%;  }}.ai-presenter .template-content .info .video-box {  position: relative;  width: 95%;  height: 0;  padding-bottom: 50%;  margin: auto;}.ai-presenter .template-content .pageForm {  margin-top: 8rem;  background: #fff;}.ai-presenter .template-content .pageForm h3 {  line-height: 40px;}.ai-presenter .sec-blogtab {  padding-top: 50px;}.ai-presenter .terms-content {  font-size: 18px;  font-weight: bold;  line-height: 32px;  color: #6c6d70;  text-align: justify;}@media (max-width: 575px) {  .ai-presenter .terms-content {    padding: 0 20px;  }}.ai-presenter .terms-content ul {  padding: 0;  list-style: none;}.ai-presenter .terms-content ul li::before {  content: "";  font-weight: bold;  display: inline-block;  border: 3px solid #ea5413;  border-radius: 20px;  margin-right: 10px;  margin-bottom: 2px;  line-height: 32px;}/* ai-presenter End *//* sec-blogtab Start*/.sec-blogtab {  padding-top: 100px;  padding-bottom: 5rem;  margin: 0 auto 50px;}.sec-blogtab .blogtab-title {  display: inline-block;  margin-bottom: 30px;  padding-bottom: 7px;  font-size: 30px;  font-weight: bold;  text-align: center;  letter-spacing: 1px;  border-bottom: 7px solid #ea5413;}.sec-blogtab .blog-txt {  font-size: 16px;}.sec-blogtab .blog-txt p {  line-height: 32px;  letter-spacing: 1px;}.sec-blogtab .btn-light {  margin-top: 4rem;  padding: 1rem 2.5rem;  transition: all 0.3s;  outline: none;  font-size: 16px;  letter-spacing: 1px;  text-decoration: none;  background-color: white;  border: 1px solid #ea5413;  border-radius: 3rem;  box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);}@media (max-width: 767px) {  .sec-blogtab .blog-tabs .blog-tabs-nav {    padding: 1rem 2rem 3rem;  }}.sec-blogtab .blog-tabs-nav a {  transition: all 0.3s;  text-decoration: none;}.sec-blogtab .blog-tabs-nav a:hover {  opacity: 0.8;}/* sec-blogtab End*//*# sourceMappingURL=style.css.map */
 |