style.scss 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711
  1. * {
  2. letter-spacing: 1px;
  3. }
  4. .navbar {
  5. box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
  6. background-color: white !important;
  7. width: 100%;
  8. font-size: 16px;
  9. .logo {
  10. width: 140px;
  11. @media (max-width: 991px) {
  12. width: 120px;
  13. }
  14. }
  15. }
  16. .navbar .navbar-collapse {
  17. flex-grow: 0;
  18. }
  19. .navbar-nav {
  20. .nav-item {
  21. margin: 0 3px;
  22. }
  23. .dropdown-menu {
  24. padding: 0;
  25. top: 138%;
  26. .dropdown-item {
  27. font-size: 14px;
  28. padding: 8px 20px;
  29. border-bottom: 1px solid #eeeeee;
  30. color: #999999;
  31. &:active {
  32. background-color: #fff;
  33. }
  34. &:hover {
  35. color: #ea5413;
  36. background-color: #fff;
  37. padding: 8px 17px 8px 23px;
  38. }
  39. }
  40. }
  41. .solution-link {
  42. padding: 8px 18px;
  43. text-decoration: none;
  44. color: #fff;
  45. font-weight: 400;
  46. border: 1px solid #ea5413;
  47. background-color: #ea5413;
  48. border-radius: 3rem;
  49. transition: all 0.3s;
  50. &:hover {
  51. opacity: 0.8;
  52. }
  53. @media (max-width: 1400px) {
  54. padding: 8px 10px;
  55. font-size: 12px;
  56. }
  57. @media (max-width: 1199px) {
  58. padding: 8px 16px;
  59. font-size: 16px;
  60. }
  61. }
  62. .signin-link {
  63. padding: 8px 18px;
  64. text-decoration: none;
  65. color: #ea5413;
  66. font-weight: 400;
  67. border: 1px solid #ea5413;
  68. border-radius: 3rem;
  69. @media (max-width: 1400px) {
  70. padding: 8px 10px;
  71. font-size: 12px;
  72. }
  73. @media (max-width: 1199px) {
  74. padding: 8px 16px;
  75. font-size: 16px;
  76. }
  77. }
  78. .signup-link {
  79. padding: 8px 18px;
  80. margin: 13px;
  81. text-decoration: none;
  82. color: #fff;
  83. font-weight: 400;
  84. border: 1px solid #ea5413;
  85. border-radius: 3rem;
  86. background-color: #ea5413;
  87. }
  88. a {
  89. transition: all 0.3s;
  90. &:hover {
  91. opacity: 0.8;
  92. }
  93. }
  94. }
  95. .navbar {
  96. @media (max-width: 1400px) {
  97. font-size: 14px;
  98. }
  99. @media (max-width: 1199px) {
  100. font-size: 16px;
  101. }
  102. }
  103. .header {
  104. margin-top: 70px;
  105. position: relative;
  106. padding: 6rem 0 3rem;
  107. // padding-top: 6rem;
  108. // padding-bottom: 3rem;
  109. // @media (max-width: 767px) {
  110. // margin-top: 70px;
  111. // }
  112. }
  113. .header-lefttop {
  114. position: absolute;
  115. left: 0;
  116. top: 0;
  117. z-index: -1;
  118. width: 350px;
  119. }
  120. // .header-title {
  121. // font-size: 3rem;
  122. // font-weight: bold;
  123. // color: #20616d;
  124. // }
  125. .header-title {
  126. font-size: 2.5rem;
  127. line-height: 55px;
  128. font-weight: 600;
  129. color: #000;
  130. @media (max-width: 768px) {
  131. font-size: 2.2rem;
  132. }
  133. }
  134. .header__sub {
  135. color: #38a7bb;
  136. font-size: 1.5rem;
  137. font-weight: 300;
  138. position: relative;
  139. }
  140. .header__sub::before,
  141. .header__sub::after {
  142. content: " ";
  143. position: absolute;
  144. width: 12%;
  145. height: 1px;
  146. background-color: #38a7bb;
  147. top: 50%;
  148. }
  149. .header__sub::before {
  150. left: 28%;
  151. }
  152. .header__sub::after {
  153. left: 60%;
  154. }
  155. .header__form {
  156. margin: 1rem auto;
  157. justify-content: center;
  158. }
  159. .header__form__input {
  160. border-radius: 10rem;
  161. padding: 0.4rem 0.8rem;
  162. width: 60%;
  163. margin-left: 4.5rem;
  164. }
  165. .header__form__sub {
  166. border-radius: 10rem;
  167. background-color: #fca25e;
  168. color: white;
  169. border: none;
  170. width: 5rem;
  171. transform: translateX(-100%);
  172. transition: all 0.3s;
  173. }
  174. .header__form__sub:hover {
  175. background-color: #ff892e;
  176. }
  177. .header-right {
  178. width: 80%;
  179. height: 50vh;
  180. background-image: url("../imgs/電腦2.webp");
  181. background-size: contain;
  182. background-repeat: no-repeat;
  183. margin: 0 auto;
  184. position: relative;
  185. }
  186. .header-right.header-dm {
  187. background-image: url("https://i.imgur.com/SOu53ii.jpg");
  188. }
  189. .header-right-cir {
  190. width: 60%;
  191. position: absolute;
  192. right: 0%;
  193. top: -5%;
  194. z-index: -1;
  195. }
  196. .header-right-video {
  197. position: absolute;
  198. width: calc(80% - 10%);
  199. height: auto;
  200. left: 3.3rem;
  201. top: 1.8rem;
  202. }
  203. .header-right-magnifier {
  204. position: absolute;
  205. width: 25%;
  206. right: 3%;
  207. bottom: 1%;
  208. }
  209. .header-right-bubble {
  210. position: absolute;
  211. width: 22%;
  212. top: 0;
  213. left: 0;
  214. transform: translate(-60%, -50%);
  215. }
  216. .header-right-linecir {
  217. width: 45%;
  218. position: absolute;
  219. left: -8%;
  220. bottom: -3%;
  221. z-index: -1;
  222. }
  223. .stock-01 {
  224. position: absolute;
  225. z-index: -1;
  226. width: 800px;
  227. top: -180px;
  228. left: -300px;
  229. }
  230. .pageForm-btn {
  231. position: fixed;
  232. bottom: 158px;
  233. right: 15px;
  234. z-index: 1000;
  235. cursor: pointer;
  236. button {
  237. width: 63px;
  238. height: 63px;
  239. border: none;
  240. border-radius: 100%;
  241. // box-shadow: rgb(0 0 0 / 10%) 0px 1px 6px, rgb(0 0 0 / 20%) 0px 2px 24px;
  242. background-image: linear-gradient(-225deg, rgb(241, 95, 121) 35%, rgb(178, 69, 146) 100%);
  243. &:hover {
  244. opacity: 0.9;
  245. }
  246. img {
  247. cursor: pointer;
  248. filter: invert(99%) sepia(0%) saturate(2%) hue-rotate(31deg) brightness(107%) contrast(100%);
  249. }
  250. }
  251. }
  252. .pageForm-title-h3 {
  253. font-weight: bold;
  254. }
  255. /* footer.html Start */
  256. .footer {
  257. color: #656565;
  258. .footer-contacts {
  259. margin-top: 2rem;
  260. line-height: 32px;
  261. }
  262. }
  263. .footer a {
  264. color: #656565;
  265. text-decoration: none;
  266. }
  267. .footer h5 {
  268. color: black;
  269. font-weight: 600;
  270. padding-bottom: 15px;
  271. }
  272. .footer .link {
  273. padding-bottom: 20px;
  274. }
  275. .footer {
  276. background-color: #f0f0f0;
  277. padding: 3rem;
  278. }
  279. .footer .right-column {
  280. border-left: 1px solid black;
  281. }
  282. .footer .footer-aigirl {
  283. font-weight: 600;
  284. font-size: 2rem;
  285. margin-top: 1rem;
  286. margin-bottom: 1rem;
  287. }
  288. .footer .footer-follow {
  289. font-size: 1.6rem;
  290. margin-bottom: 1rem;
  291. color: black;
  292. font-size: 1rem;
  293. font-weight: 600;
  294. margin-top: 2rem;
  295. }
  296. .footer .footer-socials a {
  297. margin-right: 0px;
  298. }
  299. /* footer.html End */
  300. /* footer_default.html Start */
  301. // .footer {
  302. // background-color: #555555;
  303. // padding: 50px 0;
  304. // color: #999999;
  305. // }
  306. .footer h4 {
  307. text-transform: uppercase;
  308. color: white;
  309. font-size: 14px;
  310. font-weight: 800;
  311. }
  312. .footer-btn-text {
  313. font-size: 1.3rem;
  314. color: white;
  315. }
  316. .footer .btn {
  317. border: 2px solid #38a7bb;
  318. color: #38a7bb;
  319. text-decoration: none;
  320. }
  321. .followus__btn {
  322. text-decoration: none;
  323. color: white;
  324. }
  325. .followus__btn:hover {
  326. color: #38a7bb;
  327. }
  328. .footer .btn:hover {
  329. color: white;
  330. background-color: #38a7bb;
  331. }
  332. .followus-txt {
  333. display: inline-block;
  334. margin-right: 1rem;
  335. color: white;
  336. font-weight: 600;
  337. }
  338. .footer-img {
  339. height: 60px;
  340. }
  341. /* footer_default.html End */
  342. /* iframe Start */
  343. .video-box {
  344. position: relative;
  345. width: 70%;
  346. height: 0;
  347. padding-bottom: 40%;
  348. }
  349. @media (max-width: 1199px) {
  350. .video-box {
  351. width: 80%;
  352. padding-bottom: 45%;
  353. }
  354. }
  355. @media (max-width: 767px) {
  356. .video-box {
  357. margin: 50px auto 0;
  358. }
  359. }
  360. @media (max-width: 576px) {
  361. .video-box {
  362. width: 90%;
  363. padding-bottom: 50%;
  364. }
  365. }
  366. .video-box iframe {
  367. position: absolute;
  368. top: 0;
  369. left: 0;
  370. width: 100%;
  371. height: 100%;
  372. }
  373. /* iframe End */
  374. .category {
  375. padding: 2rem 0rem;
  376. }
  377. .category.dm-description {
  378. padding: 2rem 8rem;
  379. }
  380. .category-sub-h2 {
  381. position: relative;
  382. }
  383. .category-sub-h2::after {
  384. position: absolute;
  385. content: "";
  386. width: 4rem;
  387. height: 1rem;
  388. border-bottom: 10px solid #ff892e;
  389. left: 50%;
  390. top: -1.5rem;
  391. transform: translateX(-50%);
  392. }
  393. .category-btngrp {
  394. padding: 0 8rem;
  395. }
  396. .category-btn {
  397. background-color: #a7d9e2;
  398. border: none;
  399. border-radius: 5rem;
  400. outline: none;
  401. color: white;
  402. font-size: 1.3rem;
  403. padding: 0.4rem 2rem;
  404. text-decoration: none;
  405. }
  406. .category-btn.active {
  407. background-color: #38a7bb;
  408. text-decoration: none;
  409. color: white;
  410. }
  411. .card__rank {
  412. border: 1px solid #cecece;
  413. box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);
  414. position: relative;
  415. padding: 1rem 1.5rem;
  416. }
  417. .top20 .card__rank {
  418. margin-bottom: 1.5rem;
  419. }
  420. .top3 {
  421. padding: 3rem 0rem;
  422. padding-bottom: 5rem;
  423. position: relative;
  424. }
  425. .top3 .row {
  426. padding: 0rem 4rem;
  427. }
  428. .top3 .backfill {
  429. position: absolute;
  430. width: 100%;
  431. height: 100px;
  432. background-color: #ffebe8;
  433. left: 0;
  434. right: 0;
  435. top: 7rem;
  436. }
  437. .top3__num {
  438. color: #fca25e;
  439. font-size: 5.8rem;
  440. font-family: "Trebuchet MS";
  441. position: absolute;
  442. left: 1rem;
  443. top: -3.5rem;
  444. font-weight: 300;
  445. }
  446. .card__rank-word {
  447. color: #20616d;
  448. margin-left: 3rem;
  449. font-size: 1.8rem;
  450. font-weight: 400;
  451. }
  452. .card__rank__goto {
  453. text-align: right;
  454. }
  455. .card__rank__link {
  456. color: #38a7bb;
  457. text-decoration: none;
  458. font-weight: 400;
  459. }
  460. .card__rank__link:hover {
  461. color: #19879b;
  462. }
  463. .top20 {
  464. padding-bottom: 5rem;
  465. }
  466. .top20 .row {
  467. padding: 0rem 4rem;
  468. }
  469. .top20 .card__rank-word {
  470. margin-left: 0;
  471. }
  472. .top20__num {
  473. color: #fca25e;
  474. font-size: 2.5rem;
  475. font-family: "Trebuchet MS";
  476. font-weight: 300;
  477. display: inline-block;
  478. width: 3rem;
  479. }
  480. /* 首頁 */
  481. #home {
  482. img {
  483. max-width: 100%;
  484. height: auto;
  485. }
  486. .swiper {
  487. width: 100%;
  488. height: 100%;
  489. // overflow: initial;
  490. // .swiper-pagination-bullet {
  491. // width: 13px;
  492. // height: 13px;
  493. // margin: 0 13px;
  494. // @media (max-width: 991px) {
  495. // width: 10px;
  496. // height: 10px;
  497. // margin: 0 10px;
  498. // }
  499. // }
  500. // .swiper-pagination {
  501. // bottom: -10px;
  502. // @media (max-width: 991px) {
  503. // bottom: -15px;
  504. // }
  505. // }
  506. // .swiper-pagination-bullet-active {
  507. // background-color: #000 !important;
  508. // }
  509. // .swiper-button-next {
  510. // right: -50px;
  511. // }
  512. // .swiper-button-prev {
  513. // left: -50px;
  514. // }
  515. // .swiper-button-next,
  516. // .swiper-button-prev {
  517. // color: #6c6d70;
  518. // }
  519. // .swiper-button-next,
  520. // .swiper-button-prev {
  521. // &::after,
  522. // &::before {
  523. // content: "";
  524. // display: block;
  525. // width: 30px;
  526. // height: 3px;
  527. // background-color: #fff;
  528. // position: absolute;
  529. // left: 50%;
  530. // transform: translate(-50%, -50%) rotate(45deg);
  531. // box-shadow: 2px 2px 5px #333;
  532. // }
  533. // }
  534. // .swiper-button-prev {
  535. // &::after {
  536. // top: 40px;
  537. // transform: translate(-50%, -50%) rotate(45deg);
  538. // }
  539. // &::before {
  540. // top: 20px;
  541. // transform: translate(-50%, -50%) rotate(-45deg);
  542. // }
  543. // }
  544. // .swiper-button-next {
  545. // &::after {
  546. // top: 40px;
  547. // transform: translate(-50%, -50%) rotate(-45deg);
  548. // }
  549. // &::before {
  550. // top: 20px;
  551. // transform: translate(-50%, -50%) rotate(45deg);
  552. // }
  553. // }
  554. }
  555. .swiper-pagination-bullet {
  556. width: 13px;
  557. height: 13px;
  558. margin: 0 13px;
  559. @media (max-width: 991px) {
  560. width: 10px;
  561. height: 10px;
  562. margin: 0 10px;
  563. }
  564. }
  565. .swiper-pagination-bullet-active {
  566. background-color: #000 !important;
  567. }
  568. .swiper-button-next {
  569. right: -50px;
  570. }
  571. .swiper-button-prev {
  572. left: -50px;
  573. }
  574. .swiper-button-next,
  575. .swiper-button-prev {
  576. color: #6c6d70;
  577. }
  578. #main {
  579. overflow: hidden;
  580. .content {
  581. height: 80vh;
  582. padding-left: 15vw;
  583. background-image: url("/imgs/home/首頁-01.png");
  584. background-position: center;
  585. background-repeat: no-repeat;
  586. display: flex;
  587. flex-direction: column;
  588. justify-content: center;
  589. @media (max-width: 991px) {
  590. background-position: -600px -100px;
  591. }
  592. @media (max-width: 767px) {
  593. padding-left: 0;
  594. align-items: center;
  595. }
  596. h4 {
  597. color: #6c6d70;
  598. line-height: 40px;
  599. font-weight: bold;
  600. @media (max-width: 767px) {
  601. text-align: center;
  602. }
  603. }
  604. section {
  605. h3 {
  606. color: #ea5413;
  607. margin-left: 10px;
  608. font-weight: bold;
  609. font-size: 26px;
  610. line-height: 40px;
  611. @media (max-width: 767px) {
  612. font-size: 22px;
  613. }
  614. }
  615. }
  616. .logo {
  617. width: 200px;
  618. }
  619. div {
  620. height: 115px;
  621. }
  622. .action-btn {
  623. margin-top: 60px;
  624. padding: 13px 30px;
  625. border: none;
  626. color: #fff;
  627. background-color: #ea5413;
  628. text-decoration: none;
  629. border-radius: 100px;
  630. transition: all 0.3s;
  631. &:hover {
  632. background-color: #d54d13;
  633. }
  634. }
  635. }
  636. .journey-content {
  637. display: flex;
  638. align-items: center;
  639. background-image: url("/imgs/home/首頁-02.png");
  640. background-size: cover;
  641. background-position: top;
  642. background-repeat: no-repeat;
  643. h3 {
  644. line-height: 40px;
  645. text-align: center;
  646. font-weight: bold;
  647. padding: 260px 0 80px;
  648. @media (max-width: 767px) {
  649. padding: 80px 0;
  650. }
  651. }
  652. h4 {
  653. color: #ea5413;
  654. text-align: center;
  655. font-weight: bold;
  656. }
  657. .line {
  658. display: block;
  659. height: 2px;
  660. background: #ea5413;
  661. width: 100%;
  662. margin: 30px 0;
  663. }
  664. .title {
  665. position: relative;
  666. img {
  667. top: -70px;
  668. right: -75px;
  669. width: 180px;
  670. position: absolute;
  671. @media (max-width: 767px) {
  672. top: -45px;
  673. right: -16vw;
  674. width: 150px;
  675. transform: rotate(90deg);
  676. }
  677. @media (max-width: 575px) {
  678. top: -36px;
  679. right: -21vw;
  680. width: 130px;
  681. }
  682. }
  683. }
  684. .list {
  685. padding: 0 25px;
  686. font-size: 18px;
  687. @media (max-width: 1199px) {
  688. padding: 0;
  689. }
  690. @media (max-width: 991px) {
  691. font-size: 16px;
  692. }
  693. h5 {
  694. font-size: 18px;
  695. @media (max-width: 991px) {
  696. font-size: 16px;
  697. }
  698. }
  699. p {
  700. height: 75px;
  701. @media (max-width: 1199px) {
  702. height: 85px;
  703. }
  704. @media (max-width: 767px) {
  705. height: auto;
  706. }
  707. }
  708. strong {
  709. display: block;
  710. padding: 15px;
  711. margin: 20px auto 50px;
  712. text-align: center;
  713. color: #fff;
  714. background-color: #ea5413;
  715. @media (max-width: 991px) {
  716. font-size: 13px;
  717. }
  718. @media (max-width: 767px) {
  719. font-size: 16px;
  720. margin: 20px auto 10px;
  721. }
  722. }
  723. }
  724. }
  725. .team-content {
  726. padding: 100px 0;
  727. strong {
  728. font-size: 26px;
  729. }
  730. h4 {
  731. margin: 20px 0;
  732. color: #ea5413;
  733. font-weight: bold;
  734. line-height: 36px;
  735. @media (max-width: 575px) {
  736. font-size: 18px;
  737. }
  738. }
  739. ul {
  740. list-style: none;
  741. padding: 0;
  742. margin: 0;
  743. li {
  744. margin: 5px 0;
  745. font-size: 18px;
  746. @media (max-width: 575px) {
  747. font-size: 16px;
  748. }
  749. }
  750. }
  751. }
  752. }
  753. .ad-content {
  754. width: 90%;
  755. padding: 50px 0 0;
  756. border: 1px solid #90268f;
  757. ul {
  758. padding: 0;
  759. list-style: none;
  760. li {
  761. margin-bottom: 50px;
  762. p {
  763. color: #90268f;
  764. font-size: 18px;
  765. font-weight: bold;
  766. @media (max-width: 767px) {
  767. font-size: 16px;
  768. }
  769. }
  770. }
  771. }
  772. section {
  773. h4 {
  774. text-align: center;
  775. font-size: 30px;
  776. font-weight: bold;
  777. strong {
  778. display: block;
  779. margin: 20px 0 50px;
  780. font-size: 24px;
  781. color: #ea5413;
  782. @media (max-width: 767px) {
  783. font-size: 18px;
  784. }
  785. @media (max-width: 575px) {
  786. padding: 0 20px;
  787. line-height: 32px;
  788. }
  789. }
  790. }
  791. }
  792. h5 {
  793. font-weight: bold;
  794. font-size: 20px;
  795. line-height: 32px;
  796. @media (max-width: 991px) {
  797. font-size: 18px;
  798. }
  799. strong {
  800. margin: 30px 0;
  801. display: block;
  802. color: #90268f;
  803. }
  804. }
  805. .img-text {
  806. position: absolute;
  807. left: 50%;
  808. top: 50%;
  809. transform: translate(-50%, -50%);
  810. font-size: 1.6vw;
  811. font-weight: bold;
  812. @media (max-width: 991px) {
  813. font-size: 2vw;
  814. }
  815. @media (max-width: 575px) {
  816. font-size: 5.5vw;
  817. }
  818. }
  819. }
  820. .tag-item {
  821. position: absolute;
  822. right: 0;
  823. img {
  824. width: 200px;
  825. }
  826. h5 {
  827. position: absolute;
  828. top: 35px;
  829. right: 75px;
  830. color: #fff;
  831. font-size: 26px;
  832. }
  833. }
  834. .seo-content {
  835. overflow: hidden;
  836. ul {
  837. list-style: none;
  838. li {
  839. margin: 10px 0;
  840. font-size: 18px;
  841. @media (max-width: 575px) {
  842. font-size: 16px;
  843. }
  844. }
  845. }
  846. section {
  847. p {
  848. color: #6c6d70;
  849. font-weight: bold;
  850. font-size: 18px;
  851. line-height: 32px;
  852. @media (max-width: 575px) {
  853. font-size: 16px;
  854. }
  855. }
  856. }
  857. .video-box {
  858. width: 55%;
  859. padding-bottom: 30%;
  860. margin: 50px auto;
  861. @media (max-width: 991px) {
  862. width: 100%;
  863. padding-bottom: 56%;
  864. }
  865. }
  866. }
  867. .seo-content,
  868. .ai-content {
  869. h4 {
  870. padding-top: 130px;
  871. text-align: center;
  872. font-size: 30px;
  873. font-weight: bold;
  874. }
  875. }
  876. .ai-content {
  877. margin-top: 100px;
  878. p {
  879. line-height: 32px;
  880. font-size: 18px;
  881. @media (max-width: 575px) {
  882. font-size: 16px;
  883. }
  884. }
  885. .title {
  886. color: #ea5413;
  887. font-weight: bold;
  888. @media (max-width: 575px) {
  889. font-size: 22px;
  890. }
  891. }
  892. .video-title {
  893. font-size: 30px;
  894. font-weight: bold;
  895. }
  896. .img-item {
  897. @media (max-width: 991px) {
  898. display: flex;
  899. justify-content: center;
  900. }
  901. img {
  902. @media (max-width: 991px) {
  903. width: 800px;
  904. max-width: initial;
  905. }
  906. @media (max-width: 575px) {
  907. margin-left: 50px;
  908. }
  909. }
  910. p {
  911. position: absolute;
  912. top: 32%;
  913. left: 50%;
  914. font-size: 20px;
  915. font-weight: bold;
  916. line-height: 38px;
  917. color: #6c6d70;
  918. @media (max-width: 1400px) {
  919. top: 31%;
  920. line-height: 34px;
  921. }
  922. @media (max-width: 1199px) {
  923. top: 28%;
  924. line-height: 32px;
  925. font-size: 18px;
  926. }
  927. @media (max-width: 991px) {
  928. top: 25%;
  929. line-height: 30px;
  930. font-size: 16px;
  931. }
  932. @media (max-width: 991px) {
  933. left: 42%;
  934. }
  935. @media (max-width: 575px) {
  936. left: 32vw;
  937. top: 25%;
  938. line-height: 26px;
  939. font-size: 15px;
  940. }
  941. }
  942. }
  943. .sec-video {
  944. margin-top: 0;
  945. @media (max-width: 767px) {
  946. margin-bottom: 0;
  947. }
  948. .video-mb-title {
  949. font-size: 26px;
  950. font-weight: bold;
  951. }
  952. .video-box {
  953. @media (max-width: 767px) {
  954. width: 100%;
  955. padding-bottom: 45%;
  956. }
  957. }
  958. }
  959. .sec-usecase {
  960. .usecase-title {
  961. font-size: 30px;
  962. font-weight: bold;
  963. }
  964. .usecase-imgfr {
  965. height: auto;
  966. }
  967. .usecase-sub {
  968. font-size: 18px;
  969. margin-top: 20px;
  970. }
  971. }
  972. }
  973. .bg-img {
  974. margin-top: -85vw;
  975. position: relative;
  976. z-index: -1;
  977. transform: scale(1.1);
  978. object-position: 3vw 0px;
  979. }
  980. .more-btn {
  981. padding: 13px 30px;
  982. color: #fff;
  983. background-color: #ea5413;
  984. text-decoration: none;
  985. border-radius: 100px;
  986. transition: all 0.3s;
  987. &:hover {
  988. background-color: #d54d13;
  989. }
  990. }
  991. .sec-action {
  992. .action-btn {
  993. padding: 0.8rem 3.5rem;
  994. font-size: 20px;
  995. font-weight: bold;
  996. }
  997. }
  998. .progress-item {
  999. opacity: 0; // 動態顯示
  1000. height: 100%;
  1001. position: fixed;
  1002. z-index: 100;
  1003. top: 0;
  1004. transition: all 0.3s;
  1005. @media (max-width: 767px) {
  1006. display: none;
  1007. }
  1008. .cont {
  1009. top: 50%;
  1010. left: -135px;
  1011. position: absolute;
  1012. transform: rotate(90deg);
  1013. @media (max-width: 1199px) {
  1014. left: -145px;
  1015. }
  1016. @media (max-width: 991px) {
  1017. left: -150px;
  1018. }
  1019. #progress-bar {
  1020. appearance: none;
  1021. width: 360px;
  1022. color: #000;
  1023. height: 2px;
  1024. margin: -2px auto;
  1025. @media (max-width: 991px) {
  1026. margin: -1px auto;
  1027. }
  1028. }
  1029. span {
  1030. height: 15px;
  1031. width: 15px;
  1032. border-radius: 100%;
  1033. border: 3px solid #a5a7a9;
  1034. background: #a5a7a9;
  1035. position: absolute;
  1036. left: 0;
  1037. top: 12px;
  1038. cursor: pointer;
  1039. transition: all 0.3s ease-in-out;
  1040. @media (max-width: 991px) {
  1041. height: 12px;
  1042. width: 12px;
  1043. }
  1044. }
  1045. .journey {
  1046. left: calc(420 / 6) + px;
  1047. }
  1048. .team {
  1049. left: calc(420 / 6 * 2) + px;
  1050. }
  1051. .ai-ad {
  1052. left: calc(420 / 6 * 3) + px;
  1053. }
  1054. .seo {
  1055. left: calc(420 / 6 * 4) + px;
  1056. }
  1057. .ai-video {
  1058. left: calc(420 / 6 * 5) + px;
  1059. }
  1060. .blog {
  1061. left: calc(420 / 6 * 6) + px;
  1062. }
  1063. #progress-bar::-webkit-progress-value {
  1064. /* Changes line color */
  1065. background: #ea5413;
  1066. transition: all 0.3s ease-in-out;
  1067. }
  1068. #progress-bar::-webkit-progress-bar {
  1069. /* Changes background color */
  1070. background: #a5a7a9;
  1071. }
  1072. .border-change {
  1073. background: #ea5413;
  1074. border-color: #ea5413;
  1075. transition: all 0.3s ease-in-out;
  1076. }
  1077. }
  1078. }
  1079. }
  1080. .language-btn {
  1081. border: none;
  1082. text-decoration: none;
  1083. background-color: #fff;
  1084. color: rgba(0, 0, 0, 0.55);
  1085. }
  1086. #home {
  1087. .home-en {
  1088. display: none;
  1089. .ai-content {
  1090. .img-item {
  1091. p {
  1092. max-width: 500px;
  1093. top: 35%;
  1094. left: 48%;
  1095. @media (max-width: 1400px) {
  1096. top: 35%;
  1097. left: 45%;
  1098. }
  1099. @media (max-width: 1199px) {
  1100. max-width: 350px;
  1101. top: 28%;
  1102. left: 50%;
  1103. }
  1104. @media (max-width: 767px) {
  1105. max-width: 500px;
  1106. top: 30%;
  1107. left: 35%;
  1108. }
  1109. @media (max-width: 475px) {
  1110. top: 25%;
  1111. }
  1112. }
  1113. }
  1114. }
  1115. .journey-content {
  1116. .list {
  1117. span {
  1118. display: block;
  1119. height: 155px;
  1120. @media (max-width: 991px) {
  1121. height: 180px;
  1122. }
  1123. }
  1124. p {
  1125. height: auto !important;
  1126. }
  1127. }
  1128. }
  1129. }
  1130. .ai-reporter {
  1131. .cover-img {
  1132. display: flex;
  1133. justify-content: center;
  1134. img {
  1135. width: 100%;
  1136. }
  1137. }
  1138. .info {
  1139. margin: 3rem auto;
  1140. display: flex;
  1141. flex-direction: column;
  1142. align-items: center;
  1143. justify-content: center;
  1144. position: relative;
  1145. @media (max-width: 767px) {
  1146. margin: auto;
  1147. }
  1148. span {
  1149. width: 100%;
  1150. padding: 1rem 2rem;
  1151. border-radius: 30px;
  1152. background-color: #f8e6e2;
  1153. @media (max-width: 767px) {
  1154. width: 90%;
  1155. }
  1156. &.grey {
  1157. background-color: #dddddd;
  1158. @media (max-width: 767px) {
  1159. background-color: #f8e6e2;
  1160. }
  1161. }
  1162. h3 {
  1163. font-weight: bold;
  1164. text-align: center;
  1165. line-height: 1.4;
  1166. @media (max-width: 991px) {
  1167. font-size: 1.25rem;
  1168. }
  1169. }
  1170. img {
  1171. width: 100%;
  1172. height: 40vh;
  1173. object-fit: contain;
  1174. @media (max-width: 991px) {
  1175. height: 15vh;
  1176. }
  1177. }
  1178. }
  1179. p {
  1180. margin-top: 1rem;
  1181. font-size: 1.25rem;
  1182. font-weight: bold;
  1183. text-align: center;
  1184. position: absolute;
  1185. bottom: -90px;
  1186. @media (max-width: 991px) {
  1187. font-size: 1rem;
  1188. }
  1189. @media (max-width: 767px) {
  1190. position: static;
  1191. }
  1192. }
  1193. .material {
  1194. width: 100px;
  1195. position: absolute;
  1196. top: -25px;
  1197. left: -25px;
  1198. @media (max-width: 991px) {
  1199. width: 75px;
  1200. }
  1201. @media (max-width: 767px) {
  1202. left: 0px;
  1203. }
  1204. }
  1205. }
  1206. }
  1207. }
  1208. /* content page */
  1209. .cntheader {
  1210. margin-top: 81px;
  1211. padding: 4rem 0;
  1212. position: relative;
  1213. padding-bottom: 2rem;
  1214. }
  1215. .cntheader__sub {
  1216. color: #38a7bb;
  1217. font-size: 1.5rem;
  1218. font-weight: 300;
  1219. position: relative;
  1220. }
  1221. .cntheader__sub::before,
  1222. .cntheader__sub::after {
  1223. content: " ";
  1224. position: absolute;
  1225. width: 15%;
  1226. height: 1px;
  1227. background-color: #38a7bb;
  1228. top: 50%;
  1229. }
  1230. .cntheader__sub::before {
  1231. left: 18%;
  1232. }
  1233. .cntheader__sub::after {
  1234. left: 67%;
  1235. }
  1236. .cntheader .category-btngrp {
  1237. padding: 0 4rem;
  1238. }
  1239. .card__art {
  1240. padding: 1rem;
  1241. border: 1px solid #20616d;
  1242. border-radius: 1rem;
  1243. margin-bottom: 1rem;
  1244. }
  1245. .card__title {
  1246. font-size: 1.8rem;
  1247. font-weight: 400;
  1248. }
  1249. .card__text {
  1250. color: #918f8f;
  1251. }
  1252. .card__link {
  1253. display: inline-block;
  1254. color: #38a7bb;
  1255. margin-right: 1rem;
  1256. text-decoration: none;
  1257. }
  1258. .card__link:hover {
  1259. color: #20616d;
  1260. }
  1261. .toparticle {
  1262. border: 1px solid #cecece;
  1263. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  1264. }
  1265. .toparticle__title {
  1266. color: white;
  1267. background-color: #38a7bb;
  1268. text-align: center;
  1269. font-size: 1.3rem;
  1270. padding: 0.3rem 0;
  1271. position: relative;
  1272. }
  1273. .toparticle__title img {
  1274. position: absolute;
  1275. width: 150px;
  1276. right: -4rem;
  1277. top: -3.5rem;
  1278. }
  1279. .toparticle__list {
  1280. padding: 1.5rem;
  1281. padding-top: 0;
  1282. list-style: none;
  1283. padding-bottom: 1rem;
  1284. }
  1285. .toparticle__list-item {
  1286. padding: 0.3rem;
  1287. border-bottom: 1px solid #cecece;
  1288. color: #38a7bb;
  1289. position: relative;
  1290. }
  1291. .toparticle__list-item:nth-of-type(10) {
  1292. border: none;
  1293. }
  1294. .toparticle__list-item a {
  1295. text-decoration: none;
  1296. color: #38a7bb;
  1297. }
  1298. .toparticle__num {
  1299. color: #fca25e;
  1300. font-size: 1.8rem;
  1301. font-family: "Trebuchet MS";
  1302. font-weight: 300;
  1303. margin-right: 8px;
  1304. }
  1305. .toparticle__top {
  1306. font-size: 2rem;
  1307. }
  1308. .toparticle__list-item small {
  1309. position: absolute;
  1310. right: 0;
  1311. top: 45%;
  1312. }
  1313. .cntsubscribe {
  1314. text-align: center;
  1315. }
  1316. .cntsubscribe__form {
  1317. position: relative;
  1318. }
  1319. .cntsubscribe__sub {
  1320. border-radius: 10rem;
  1321. background-color: #fca25e;
  1322. color: white;
  1323. border: none;
  1324. width: 5rem;
  1325. position: absolute;
  1326. right: 0;
  1327. top: 0;
  1328. padding: 0.45rem 0.8rem;
  1329. }
  1330. .cntsubscribe__sub:hover {
  1331. background-color: #ff892e;
  1332. color: white;
  1333. }
  1334. .cntsubscribe__input {
  1335. border-radius: 10rem;
  1336. padding: 0.4rem 0.8rem;
  1337. width: 100%;
  1338. }
  1339. .img-block .img-block-img {
  1340. width: 70%;
  1341. }
  1342. .img-block-list {
  1343. padding: 2rem 6rem;
  1344. }
  1345. .img-block-linecir {
  1346. position: absolute;
  1347. right: 10%;
  1348. bottom: 5%;
  1349. width: 30%;
  1350. z-index: -1;
  1351. }
  1352. .img-block-linecir.left {
  1353. right: -10%;
  1354. bottom: -5%;
  1355. }
  1356. .img-block-linecir.right {
  1357. left: -10%;
  1358. bottom: -5%;
  1359. }
  1360. .img-block-linecir.left {
  1361. left: -10%;
  1362. bottom: -5%;
  1363. }
  1364. .aboutus_img {
  1365. width: 100%;
  1366. }
  1367. .aboutus_prize_img {
  1368. border: 1.5rem solid rgb(231, 231, 231);
  1369. border-radius: 1rem;
  1370. }
  1371. .header__ai-training__span {
  1372. width: 6rem;
  1373. height: 6rem;
  1374. padding: 1rem;
  1375. display: inline-block;
  1376. font-size: 1.4rem;
  1377. background-color: rgb(255, 255, 159);
  1378. border-radius: 50%;
  1379. }
  1380. .ai-training__action {
  1381. border: 3px dashed #ffebe8;
  1382. }
  1383. .ai-training__card .card-img-top {
  1384. height: 35vh;
  1385. }
  1386. .ai-training__action ul {
  1387. list-style: none;
  1388. line-height: 2rem;
  1389. }
  1390. .ai-training__action__box {
  1391. flex-direction: row;
  1392. }
  1393. .ai-training__action__btn {
  1394. padding: 0.5rem 2rem;
  1395. border: none;
  1396. outline: none;
  1397. border-radius: 4rem;
  1398. background: #ea5413;
  1399. font-size: 1.3rem;
  1400. color: white;
  1401. }
  1402. .ai-training__action__img {
  1403. width: 15rem;
  1404. height: 15rem;
  1405. background-repeat: no-repeat;
  1406. background-position: center;
  1407. background-size: cover;
  1408. border-radius: 50%;
  1409. border: 3px solid #ffdbd6;
  1410. }
  1411. .hero-btn {
  1412. border: none;
  1413. outline: none;
  1414. border-radius: 3rem;
  1415. margin-top: 0.5rem;
  1416. padding: 0.6rem 1.5rem;
  1417. background: linear-gradient(20deg, #ea5413, #920783);
  1418. color: white;
  1419. font-size: 1.1rem;
  1420. box-shadow: 1px 1px 5px 1px #cfcfcf87;
  1421. }
  1422. .contact-btn {
  1423. display: inline-block;
  1424. text-decoration: none;
  1425. color: white;
  1426. border: 1px solid #ea5413;
  1427. padding: 0.6rem 1.5rem;
  1428. outline: none;
  1429. background-color: #ea5413;
  1430. margin-top: 0.5rem;
  1431. border-radius: 3rem;
  1432. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  1433. transition: all 0.3s;
  1434. &:hover {
  1435. color: #ea5413;
  1436. background-color: transparent;
  1437. border: 1px solid #ea5413;
  1438. }
  1439. }
  1440. .loaded {
  1441. box-shadow:
  1442. 0 4px 8px 0 #3569804d,
  1443. 0 6px 20px 0 #a5c8d569;
  1444. margin-bottom: 4rem;
  1445. }
  1446. .pageForm-title {
  1447. padding: 0 0 0 40px;
  1448. background-image: url(/imgs/dm/accept.png);
  1449. background-position: 0 0;
  1450. background-repeat: no-repeat;
  1451. background-size: 30px auto;
  1452. }
  1453. .pageForm-txt {
  1454. padding-left: 40px;
  1455. }
  1456. .pageForm-notice {
  1457. padding-left: 40px;
  1458. color: grey;
  1459. margin-top: 50px;
  1460. }
  1461. .pageForm-p {
  1462. padding: 40px;
  1463. }
  1464. .btn-detailForm {
  1465. background-color: transparent;
  1466. border: none;
  1467. outline: none;
  1468. color: #ff892e;
  1469. padding: 0 0;
  1470. padding-bottom: 0.1rem;
  1471. margin-bottom: 0.8rem;
  1472. display: inline-block;
  1473. border-bottom: 1px dotted #ff892e;
  1474. transition: all 0.4s;
  1475. text-decoration: none;
  1476. }
  1477. .btn-detailForm:hover {
  1478. transform: translate(2px, 2px);
  1479. text-decoration: none;
  1480. color: #ff892e;
  1481. }
  1482. @media (max-width: 1300px) {
  1483. .header-right-video {
  1484. position: absolute;
  1485. width: calc(80% - 4%);
  1486. }
  1487. }
  1488. @media (max-width: 992px) {
  1489. .cntheader .header-title {
  1490. font-size: 2.2rem;
  1491. }
  1492. // .header {
  1493. // padding-top: 4rem;
  1494. // height: 50vh;
  1495. // }
  1496. .header-right {
  1497. height: 40vh;
  1498. }
  1499. .header-right-magnifier {
  1500. right: -2.5rem;
  1501. bottom: 1rem;
  1502. }
  1503. .header__sub {
  1504. font-size: 1.3rem;
  1505. }
  1506. .header__sub::before,
  1507. .header__sub::after {
  1508. width: 8%;
  1509. }
  1510. .header__sub::before {
  1511. left: 30%;
  1512. }
  1513. .header__sub::after {
  1514. left: 62%;
  1515. }
  1516. .header__form__input {
  1517. font-size: 0.9rem;
  1518. }
  1519. .category-btngrp {
  1520. padding: 0;
  1521. }
  1522. .category-btn {
  1523. padding: 0.3rem 1.5rem;
  1524. font-size: 1.2rem;
  1525. }
  1526. .ctncategory-btn {
  1527. padding: 0.2rem 1rem;
  1528. font-size: 1rem;
  1529. }
  1530. .top3 .row {
  1531. padding: 0;
  1532. }
  1533. .card__rank {
  1534. padding: 0.8rem 1rem;
  1535. }
  1536. .top3__num {
  1537. left: 0.6rem;
  1538. top: -2.5rem;
  1539. font-size: 4rem;
  1540. }
  1541. .card__rank-word {
  1542. margin-left: 1.5rem;
  1543. font-size: 1.2rem;
  1544. }
  1545. .card__rank hr {
  1546. margin-top: 8px;
  1547. margin-bottom: 8px;
  1548. }
  1549. .top20 .row {
  1550. padding: 0;
  1551. }
  1552. .top20__num {
  1553. font-size: 2rem;
  1554. width: 1.6rem;
  1555. }
  1556. .container-footer {
  1557. width: 95vw;
  1558. }
  1559. .header__form {
  1560. width: 85%;
  1561. position: relative;
  1562. }
  1563. .header__form__input {
  1564. margin-left: 0;
  1565. width: 100%;
  1566. }
  1567. .header__form__sub {
  1568. transform: none;
  1569. position: absolute;
  1570. right: 0;
  1571. top: 0;
  1572. }
  1573. .header-right-linecir {
  1574. bottom: 0;
  1575. }
  1576. .cntheader__sub {
  1577. font-size: 1.2rem;
  1578. }
  1579. .cntheader__sub::before {
  1580. left: 13%;
  1581. }
  1582. .cntheader__sub::after {
  1583. left: 72%;
  1584. }
  1585. .toparticle__title img {
  1586. position: absolute;
  1587. width: 90px;
  1588. right: -2rem;
  1589. top: -2rem;
  1590. }
  1591. .toparticle__top {
  1592. font-size: 1.7rem;
  1593. }
  1594. .fb__fr {
  1595. width: 100%;
  1596. }
  1597. .cntsubscribe__form {
  1598. width: 100%;
  1599. }
  1600. .ai-training__action__box {
  1601. flex-direction: column;
  1602. }
  1603. }
  1604. @media (max-width: 767px) {
  1605. // .header {
  1606. // height: 70vh;
  1607. // }
  1608. .header .col-md-5 {
  1609. margin-bottom: 3rem;
  1610. }
  1611. .header-right-bubble {
  1612. width: 15%;
  1613. }
  1614. .header-right-magnifier {
  1615. right: 4rem;
  1616. bottom: 1rem;
  1617. }
  1618. .category {
  1619. padding-top: 4rem;
  1620. }
  1621. .category.dm-description {
  1622. padding-top: 4rem;
  1623. padding-left: 0;
  1624. padding-right: 0;
  1625. margin-top: 4.5rem;
  1626. }
  1627. .category.mt-xl {
  1628. margin-top: 8.5rem;
  1629. }
  1630. .category.dm-description h5 {
  1631. padding-left: 1rem;
  1632. padding-right: 1rem;
  1633. }
  1634. .top3 {
  1635. padding-bottom: 2rem;
  1636. }
  1637. .top3 .col-md-4 {
  1638. margin-bottom: 1.5rem;
  1639. }
  1640. .top3 .col-md-4:nth-of-type(3) {
  1641. margin-bottom: 0;
  1642. }
  1643. .card__rank {
  1644. margin-bottom: 1.5rem;
  1645. }
  1646. .row-right {
  1647. margin-top: 2rem;
  1648. }
  1649. .cntheader {
  1650. padding-bottom: 0rem;
  1651. }
  1652. .header-right-video {
  1653. position: absolute;
  1654. width: calc(80% - 10%);
  1655. left: 2.3rem;
  1656. top: 1.5rem;
  1657. }
  1658. .img-block-list {
  1659. padding: 2rem 1.5rem;
  1660. }
  1661. .ai-training__card .card-img-top {
  1662. height: 50vh;
  1663. }
  1664. }
  1665. @media (max-width: 576px) {
  1666. .header-title {
  1667. font-size: 2.5rem;
  1668. }
  1669. // .header {
  1670. // padding-top: 3rem;
  1671. // height: 63vh;
  1672. // padding-bottom: 0rem;
  1673. // }
  1674. .header.ai-training {
  1675. height: 80vh;
  1676. }
  1677. .header-right {
  1678. height: 30vh;
  1679. }
  1680. .header-right-magnifier {
  1681. right: 0rem;
  1682. bottom: 1.5rem;
  1683. }
  1684. .category-btn {
  1685. padding: 0.2rem 1rem;
  1686. font-size: 1rem;
  1687. }
  1688. .category {
  1689. padding: 1rem;
  1690. }
  1691. .footer-img {
  1692. height: 50px;
  1693. }
  1694. .footer {
  1695. font-size: 0.9rem;
  1696. }
  1697. .pageForm-p {
  1698. padding: 15px;
  1699. }
  1700. .pageForm {
  1701. width: 95%;
  1702. }
  1703. }
  1704. @media (max-width: 480px) {
  1705. .ctncategory-btn {
  1706. margin-top: 0.6rem;
  1707. }
  1708. .header-right-video {
  1709. position: absolute;
  1710. width: calc(80% - 5%);
  1711. left: 2.1rem;
  1712. top: 1.3rem;
  1713. }
  1714. }
  1715. /* ai-anchor Start */
  1716. #ai-anchor {
  1717. overflow-x: hidden;
  1718. .stock-bg {
  1719. height: 850px;
  1720. left: -15vw;
  1721. top: -125px;
  1722. position: absolute;
  1723. z-index: -1;
  1724. @media (max-width: 1400px) {
  1725. top: -130px;
  1726. }
  1727. @media (max-width: 991px) {
  1728. top: -175px;
  1729. }
  1730. @media (max-width: 767px) {
  1731. top: -155px;
  1732. }
  1733. @media (max-width: 490px) {
  1734. top: -130px;
  1735. }
  1736. }
  1737. .header-title {
  1738. @media (max-width: 575px) {
  1739. font-size: 2rem;
  1740. }
  1741. }
  1742. .header-sub {
  1743. padding: 0 10px;
  1744. text-align: start;
  1745. span {
  1746. display: inline-block;
  1747. margin-top: 35px;
  1748. font-size: 24px;
  1749. font-weight: bold;
  1750. color: #f8a154;
  1751. }
  1752. p {
  1753. width: 450px;
  1754. margin: 20px auto;
  1755. @media (max-width: 991px) {
  1756. width: auto;
  1757. }
  1758. }
  1759. }
  1760. .ai-description {
  1761. padding-top: 200px;
  1762. padding-bottom: 100px;
  1763. @media (max-width: 991px) {
  1764. padding-top: 100px;
  1765. }
  1766. div {
  1767. .icon {
  1768. width: 30px;
  1769. }
  1770. }
  1771. h5 {
  1772. margin: 0;
  1773. font-size: 28px;
  1774. font-weight: bold;
  1775. color: #ea5413;
  1776. @media (max-width: 375px) {
  1777. font-size: 20px;
  1778. }
  1779. }
  1780. .content-box {
  1781. display: flex;
  1782. justify-content: space-between;
  1783. margin-bottom: 150px;
  1784. @media (max-width: 991px) {
  1785. flex-direction: column;
  1786. }
  1787. section {
  1788. width: 35%;
  1789. @media (max-width: 991px) {
  1790. width: 100%;
  1791. }
  1792. }
  1793. }
  1794. .triangle-item {
  1795. display: flex;
  1796. justify-content: center;
  1797. @media (max-width: 991px) {
  1798. margin-left: -35px;
  1799. }
  1800. img {
  1801. width: 40px;
  1802. height: 100%;
  1803. image-rendering: -webkit-optimize-contrast;
  1804. @media (max-width: 991px) {
  1805. transform: rotate(90deg);
  1806. }
  1807. }
  1808. }
  1809. }
  1810. .faq-content {
  1811. position: relative;
  1812. .img-box {
  1813. position: relative;
  1814. @media (max-width: 575px) {
  1815. width: 330px;
  1816. margin: auto;
  1817. }
  1818. .img-mb {
  1819. width: 500px;
  1820. margin: auto;
  1821. @media (max-width: 575px) {
  1822. width: 100%;
  1823. }
  1824. }
  1825. .text-box {
  1826. position: absolute;
  1827. width: 330px;
  1828. right: 330px;
  1829. top: 80px;
  1830. line-height: 35px;
  1831. font-size: 18px;
  1832. font-weight: bold;
  1833. color: #656565;
  1834. @media (max-width: 1400px) {
  1835. right: 260px;
  1836. top: 55px;
  1837. }
  1838. @media (max-width: 1199px) {
  1839. font-size: 16px;
  1840. right: 185px;
  1841. top: 40px;
  1842. }
  1843. @media (max-width: 991px) {
  1844. width: 365px;
  1845. right: 160px;
  1846. top: 310px;
  1847. font-size: 18px;
  1848. }
  1849. @media (max-width: 767px) {
  1850. right: 70px;
  1851. }
  1852. @media (max-width: 575px) {
  1853. width: 285px;
  1854. right: 23px;
  1855. top: 190px;
  1856. font-size: 14px;
  1857. }
  1858. p:last-child {
  1859. @media (max-width: 991px) {
  1860. width: 200px;
  1861. }
  1862. @media (max-width: 575px) {
  1863. width: 170px;
  1864. }
  1865. }
  1866. }
  1867. }
  1868. }
  1869. ul {
  1870. list-style: none;
  1871. text-align: center;
  1872. @media (max-width: 767px) {
  1873. padding: 0;
  1874. }
  1875. li {
  1876. font-size: 18px;
  1877. margin-bottom: 10px;
  1878. font-weight: bold;
  1879. @media (max-width: 767px) {
  1880. font-size: 16px;
  1881. }
  1882. }
  1883. }
  1884. video {
  1885. width: 75%;
  1886. height: auto;
  1887. @media (max-width: 767px) {
  1888. width: 90%;
  1889. }
  1890. }
  1891. .content {
  1892. width: 800px;
  1893. margin: 0 auto 10rem;
  1894. padding: 2rem 8rem;
  1895. border-radius: 20px;
  1896. background-color: #fff2ec;
  1897. font-size: 20px;
  1898. @media (max-width: 991px) {
  1899. width: 90%;
  1900. padding: 2rem 5vw;
  1901. }
  1902. @media (max-width: 567px) {
  1903. padding-top: 130px;
  1904. }
  1905. .img-01 {
  1906. position: absolute;
  1907. top: -75px;
  1908. left: -30px;
  1909. z-index: 1;
  1910. width: 45%;
  1911. image-rendering: -webkit-optimize-contrast;
  1912. @media (max-width: 567px) {
  1913. top: -40%;
  1914. width: 250px;
  1915. }
  1916. }
  1917. .ai-anchor-price {
  1918. background-color: transparent;
  1919. padding: 2px 1px;
  1920. border-radius: 5px;
  1921. font-size: 48px;
  1922. color: #3190da;
  1923. background: linear-gradient(transparent 40%, rgba(255, 255, 255, 0) 50%, yellow 75%, yellow 90%, transparent 95%);
  1924. }
  1925. }
  1926. .content,
  1927. .ai-description span {
  1928. font-size: 22px;
  1929. font-weight: bold;
  1930. color: #3190da;
  1931. }
  1932. }
  1933. /* ai-anchor End */
  1934. /* ad-operation Start */
  1935. #ad-operation {
  1936. overflow-x: hidden;
  1937. .header {
  1938. height: auto;
  1939. margin-top: -20px;
  1940. p {
  1941. font-weight: bold;
  1942. line-height: 32px;
  1943. span {
  1944. font-size: 20px;
  1945. color: #ea5413;
  1946. }
  1947. }
  1948. .banner {
  1949. position: relative;
  1950. .img {
  1951. max-width: 100vw;
  1952. height: auto;
  1953. }
  1954. .text {
  1955. width: 100%;
  1956. position: absolute;
  1957. z-index: 100;
  1958. left: -55px;
  1959. top: -60px;
  1960. @media (max-width: 991px) {
  1961. left: -45px;
  1962. top: -35px;
  1963. }
  1964. @media (max-width: 767px) {
  1965. left: -30px;
  1966. top: -20px;
  1967. }
  1968. @media (max-width: 575px) {
  1969. left: -15px;
  1970. top: -15px;
  1971. }
  1972. }
  1973. .slogen {
  1974. display: flex;
  1975. flex-direction: column;
  1976. align-items: center;
  1977. position: absolute;
  1978. top: 63vw;
  1979. // @media (max-width: 1199px) {
  1980. // margin-top: 44vw;
  1981. // }
  1982. h3 {
  1983. margin-bottom: 0;
  1984. font-size: 40px;
  1985. font-weight: bold;
  1986. @media (max-width: 1199px) {
  1987. font-size: 33px;
  1988. }
  1989. @media (max-width: 991px) {
  1990. font-size: 28px;
  1991. }
  1992. @media (max-width: 767px) {
  1993. font-size: 20px;
  1994. }
  1995. @media (max-width: 575px) {
  1996. font-size: 16px;
  1997. }
  1998. span {
  1999. margin: 20px 0;
  2000. display: inline-block;
  2001. font-size: 70px;
  2002. color: #900381;
  2003. @media (max-width: 1199px) {
  2004. font-size: 58px;
  2005. }
  2006. @media (max-width: 991px) {
  2007. margin: 10px 0;
  2008. font-size: 50px;
  2009. }
  2010. @media (max-width: 767px) {
  2011. font-size: 36px;
  2012. }
  2013. @media (max-width: 575px) {
  2014. margin: 5px 0;
  2015. font-size: 20px;
  2016. }
  2017. }
  2018. .point {
  2019. color: #dd541a;
  2020. }
  2021. small {
  2022. margin-left: 5px;
  2023. color: #868585;
  2024. text-decoration: line-through;
  2025. }
  2026. }
  2027. h4 {
  2028. font-size: 46px;
  2029. font-weight: bold;
  2030. @media (max-width: 1199px) {
  2031. font-size: 38px;
  2032. }
  2033. @media (max-width: 991px) {
  2034. font-size: 32px;
  2035. }
  2036. @media (max-width: 767px) {
  2037. font-size: 24px;
  2038. }
  2039. @media (max-width: 575px) {
  2040. font-size: 14px;
  2041. }
  2042. }
  2043. button {
  2044. margin-top: 30px;
  2045. @media (max-width: 991px) {
  2046. margin-top: 10px;
  2047. }
  2048. @media (max-width: 575px) {
  2049. margin-top: 5px;
  2050. }
  2051. }
  2052. }
  2053. }
  2054. }
  2055. .header-title {
  2056. color: #000;
  2057. font-weight: bold;
  2058. letter-spacing: 5px;
  2059. }
  2060. .header-right-cir {
  2061. right: -15%;
  2062. top: 30%;
  2063. }
  2064. .img-content {
  2065. display: flex;
  2066. justify-content: center;
  2067. margin: -100px auto;
  2068. // margin: -550px auto 0;
  2069. position: relative;
  2070. z-index: 100;
  2071. width: 1300px;
  2072. @media (max-width: 1199px) {
  2073. width: 1000px;
  2074. margin: -50px auto;
  2075. // margin: -400px auto 0;
  2076. }
  2077. @media (max-width: 991px) {
  2078. width: 700px;
  2079. // margin: -300px auto 0;
  2080. }
  2081. @media (max-width: 767px) {
  2082. width: 600px;
  2083. // margin: -250px auto 0;
  2084. }
  2085. @media (max-width: 575px) {
  2086. left: -10px;
  2087. width: 350px;
  2088. }
  2089. img {
  2090. width: 100%;
  2091. @media (max-width: 575px) {
  2092. width: 140%;
  2093. }
  2094. }
  2095. h4 {
  2096. position: absolute;
  2097. font-size: 30px;
  2098. line-height: 40px;
  2099. font-weight: bold;
  2100. text-align: center;
  2101. @media (max-width: 1199px) {
  2102. font-size: 22px;
  2103. line-height: 30px;
  2104. }
  2105. @media (max-width: 991px) {
  2106. font-size: 16px;
  2107. line-height: 24px;
  2108. }
  2109. @media (max-width: 767px) {
  2110. font-size: 14px;
  2111. line-height: 20px;
  2112. }
  2113. @media (max-width: 575px) {
  2114. font-size: 12px;
  2115. }
  2116. }
  2117. .left {
  2118. top: 320px;
  2119. left: 280px;
  2120. @media (max-width: 1199px) {
  2121. top: 245px;
  2122. left: 218px;
  2123. }
  2124. @media (max-width: 991px) {
  2125. top: 170px;
  2126. left: 150px;
  2127. }
  2128. @media (max-width: 767px) {
  2129. top: 145px;
  2130. left: 128px;
  2131. }
  2132. @media (max-width: 575px) {
  2133. top: 115px;
  2134. left: 32px;
  2135. }
  2136. }
  2137. .center {
  2138. top: 420px;
  2139. left: 600px;
  2140. @media (max-width: 1199px) {
  2141. top: 325px;
  2142. left: 465px;
  2143. }
  2144. @media (max-width: 991px) {
  2145. top: 225px;
  2146. left: 323px;
  2147. }
  2148. @media (max-width: 767px) {
  2149. top: 193px;
  2150. left: 278px;
  2151. }
  2152. @media (max-width: 575px) {
  2153. top: 153px;
  2154. left: 155px;
  2155. }
  2156. }
  2157. .right {
  2158. top: 545px;
  2159. right: 240px;
  2160. @media (max-width: 1199px) {
  2161. top: 420px;
  2162. right: 188px;
  2163. }
  2164. @media (max-width: 991px) {
  2165. top: 290px;
  2166. right: 130px;
  2167. }
  2168. @media (max-width: 767px) {
  2169. top: 250px;
  2170. right: 109px;
  2171. }
  2172. @media (max-width: 575px) {
  2173. top: 200px;
  2174. right: 17px;
  2175. }
  2176. }
  2177. }
  2178. .dm-description {
  2179. display: flex;
  2180. flex-direction: column;
  2181. justify-content: center;
  2182. align-items: center;
  2183. h2 {
  2184. margin: 0;
  2185. padding: 8px 10px;
  2186. color: #fff;
  2187. display: inline-block;
  2188. text-align: center;
  2189. font-size: 24px;
  2190. line-height: 33px;
  2191. border-radius: 10px;
  2192. background: #ea5413;
  2193. }
  2194. h5 {
  2195. font-size: 22px;
  2196. letter-spacing: 2px;
  2197. line-height: 36px;
  2198. @media (max-width: 767px) {
  2199. font-size: 18px;
  2200. }
  2201. strong {
  2202. padding-bottom: 3px;
  2203. // background: linear-gradient(to bottom, #fff 50%, #ffebe2 50%);
  2204. // border-bottom: 3px solid rgb(248, 228, 72);
  2205. }
  2206. }
  2207. .line {
  2208. display: block;
  2209. width: 50px;
  2210. height: 7px;
  2211. margin: 80px auto 40px;
  2212. background-color: #ea5413;
  2213. }
  2214. .stock-img {
  2215. position: absolute;
  2216. z-index: -10;
  2217. width: 100vw;
  2218. top: 100%;
  2219. height: 660px;
  2220. @media (max-width: 1199px) {
  2221. height: 535px;
  2222. }
  2223. @media (max-width: 991px) {
  2224. height: 360px;
  2225. }
  2226. @media (max-width: 767px) {
  2227. height: 300px;
  2228. }
  2229. @media (max-width: 575px) {
  2230. height: 235px;
  2231. }
  2232. }
  2233. .purple-circle {
  2234. top: 100px;
  2235. }
  2236. }
  2237. .card-content {
  2238. & > div {
  2239. display: flex;
  2240. flex-direction: column;
  2241. // border: 2px solid #ffebe2;
  2242. border: 2px solid #ea5413;
  2243. border-radius: 10px;
  2244. }
  2245. h3 {
  2246. width: 60%;
  2247. margin: -17px auto 0;
  2248. padding: 8px 5px;
  2249. display: inline-block;
  2250. color: #fff;
  2251. background: #ea5413;
  2252. text-align: center;
  2253. font-size: 18px;
  2254. font-weight: bold;
  2255. letter-spacing: 2px;
  2256. border-radius: 10px;
  2257. box-shadow: 2px 2px 5px #ccc;
  2258. @media (max-width: 576px) {
  2259. width: auto;
  2260. padding: 7px 15px;
  2261. font-size: 16px;
  2262. }
  2263. }
  2264. h4,
  2265. .table {
  2266. margin-top: 25px;
  2267. padding: 20px;
  2268. font-size: 14px;
  2269. line-height: 32px;
  2270. background: #ffebe2;
  2271. span {
  2272. display: block;
  2273. border-bottom: 1px solid;
  2274. }
  2275. strong {
  2276. font-size: 20px;
  2277. }
  2278. p {
  2279. margin: 0;
  2280. line-height: 20px;
  2281. }
  2282. }
  2283. }
  2284. .content-box {
  2285. width: 65%;
  2286. margin: auto;
  2287. padding: 30px 0;
  2288. display: flex;
  2289. justify-content: center;
  2290. background: #ffebe2;
  2291. border: 2px solid #ffebe2;
  2292. position: relative;
  2293. @media (max-width: 991px) {
  2294. width: 90%;
  2295. }
  2296. @media (max-width: 767px) {
  2297. width: 100%;
  2298. }
  2299. @media (max-width: 475px) {
  2300. padding-left: 10px;
  2301. }
  2302. p {
  2303. margin: 0;
  2304. line-height: 32px;
  2305. @media (max-width: 767px) {
  2306. font-size: 14px;
  2307. }
  2308. @media (max-width: 475px) {
  2309. font-size: 13px;
  2310. }
  2311. }
  2312. h4 {
  2313. font-size: 22px;
  2314. font-weight: bold;
  2315. margin-bottom: 20px;
  2316. @media (max-width: 767px) {
  2317. font-size: 18px;
  2318. }
  2319. @media (max-width: 475px) {
  2320. font-size: 14px;
  2321. white-space: nowrap;
  2322. }
  2323. }
  2324. .line {
  2325. height: 3px;
  2326. background: #fff;
  2327. width: 950px;
  2328. position: absolute;
  2329. left: -200px;
  2330. top: 35px;
  2331. @media (max-width: 767px) {
  2332. top: 33px;
  2333. }
  2334. @media (max-width: 575px) {
  2335. top: 30px;
  2336. }
  2337. }
  2338. }
  2339. .content-badge {
  2340. position: absolute;
  2341. left: 0;
  2342. top: -53px;
  2343. padding: 5px 10px;
  2344. background: #ea5413;
  2345. border-radius: 10px;
  2346. font-size: 22px;
  2347. font-weight: bold;
  2348. color: #fff;
  2349. }
  2350. .client-content {
  2351. position: relative;
  2352. display: flex;
  2353. justify-content: center;
  2354. p {
  2355. position: absolute;
  2356. top: 11vw;
  2357. z-index: 10;
  2358. font-size: 32px;
  2359. font-weight: bold;
  2360. @media (max-width: 991px) {
  2361. font-size: 28px;
  2362. }
  2363. @media (max-width: 767px) {
  2364. font-size: 22px;
  2365. }
  2366. @media (max-width: 575px) {
  2367. top: 9vw;
  2368. font-size: 18px;
  2369. }
  2370. }
  2371. }
  2372. .pageForm {
  2373. line-height: 32px;
  2374. letter-spacing: 1px;
  2375. background: #fff;
  2376. }
  2377. .header-lefttop {
  2378. width: 170%;
  2379. position: absolute;
  2380. left: -22vw;
  2381. top: -225px;
  2382. z-index: -1;
  2383. opacity: 0.5;
  2384. @media (max-width: 991px) {
  2385. width: 100%;
  2386. left: -24vw;
  2387. top: -250px;
  2388. }
  2389. @media (max-width: 991px) {
  2390. top: -26vw;
  2391. }
  2392. }
  2393. .category.dm-description {
  2394. padding: 2rem 8rem;
  2395. @media (max-width: 991px) {
  2396. padding: 2rem 3rem;
  2397. }
  2398. @media (max-width: 767px) {
  2399. padding: 2rem 0rem;
  2400. }
  2401. }
  2402. .accreditation {
  2403. p {
  2404. font-size: 24px;
  2405. @media (max-width: 575px) {
  2406. font-size: 20px;
  2407. }
  2408. }
  2409. img {
  2410. width: 150px;
  2411. position: absolute;
  2412. top: -35px;
  2413. left: -25px;
  2414. @media (max-width: 767px) {
  2415. width: 135px;
  2416. left: -50px;
  2417. }
  2418. @media (max-width: 575px) {
  2419. width: 120px;
  2420. top: -80px;
  2421. left: -20px;
  2422. }
  2423. }
  2424. }
  2425. .purple-circle {
  2426. width: 40%;
  2427. top: -400px;
  2428. right: -150px;
  2429. position: absolute;
  2430. z-index: -100;
  2431. @media (max-width: 991px) {
  2432. width: 60%;
  2433. }
  2434. @media (max-width: 767px) {
  2435. top: -300px;
  2436. }
  2437. }
  2438. .data-text .circle {
  2439. top: -220px;
  2440. left: -5vw;
  2441. @media (max-width: 767px) {
  2442. top: -100px;
  2443. }
  2444. }
  2445. }
  2446. /* ad-operation End */
  2447. /* blog-traffic Start */
  2448. .blog-traffic {
  2449. overflow-x: hidden;
  2450. .header {
  2451. padding: 0;
  2452. }
  2453. .banner {
  2454. width: 100vw;
  2455. height: auto;
  2456. position: absolute;
  2457. z-index: -10;
  2458. @media (max-width: 767px) {
  2459. width: 150vw;
  2460. height: auto;
  2461. }
  2462. }
  2463. .header-img {
  2464. width: 150%;
  2465. height: auto;
  2466. position: relative;
  2467. top: -30px;
  2468. right: 30px;
  2469. z-index: -1;
  2470. @media (max-width: 767px) {
  2471. width: 100%;
  2472. top: -45px;
  2473. right: unset;
  2474. }
  2475. }
  2476. .header-title {
  2477. font-size: 2.5rem;
  2478. line-height: 65px;
  2479. font-weight: 600;
  2480. color: #000;
  2481. @media (max-width: 768px) {
  2482. font-size: 2.2rem;
  2483. }
  2484. }
  2485. .dm-description {
  2486. margin-top: -250px;
  2487. @media (max-width: 1400px) {
  2488. margin-top: -190px;
  2489. }
  2490. @media (max-width: 991px) {
  2491. margin-top: -100px;
  2492. }
  2493. p {
  2494. font-size: 20px;
  2495. line-height: 32px;
  2496. }
  2497. }
  2498. .category {
  2499. padding: 0;
  2500. position: relative;
  2501. &.dm-description {
  2502. padding: 0;
  2503. }
  2504. @media (max-width: 575px) {
  2505. padding: 0 10px;
  2506. }
  2507. h4 {
  2508. font-size: 2rem;
  2509. }
  2510. h4,
  2511. .sub-title {
  2512. margin: 0;
  2513. color: #f5ab1b;
  2514. font-weight: bold;
  2515. }
  2516. }
  2517. .category-sub-h2::after {
  2518. width: 3rem;
  2519. border-bottom: 10px solid #ea5413;
  2520. margin-top: 15px;
  2521. }
  2522. ul {
  2523. padding: 0;
  2524. list-style: none;
  2525. li {
  2526. line-height: 32px;
  2527. }
  2528. }
  2529. .img-block-img {
  2530. width: 12%;
  2531. object-fit: contain;
  2532. image-rendering: -webkit-optimize-contrast;
  2533. position: relative;
  2534. top: -30px;
  2535. @media (max-width: 1199px) {
  2536. top: -10px;
  2537. }
  2538. @media (max-width: 991px) {
  2539. width: 15%;
  2540. }
  2541. @media (max-width: 767px) {
  2542. width: 20%;
  2543. top: 5px;
  2544. }
  2545. @media (max-width: 490px) {
  2546. top: 15px;
  2547. }
  2548. @media (max-width: 414px) {
  2549. top: 22px;
  2550. }
  2551. }
  2552. .img-first {
  2553. @media (max-width: 1199px) {
  2554. top: 0;
  2555. }
  2556. @media (max-width: 767px) {
  2557. top: 15px;
  2558. }
  2559. @media (max-width: 490px) {
  2560. top: 40px;
  2561. }
  2562. }
  2563. .add-img {
  2564. width: 130px;
  2565. margin: 10px auto 0;
  2566. image-rendering: -webkit-optimize-contrast;
  2567. @media (max-width: 991px) {
  2568. margin: 0 auto;
  2569. }
  2570. @media (max-width: 767px) {
  2571. margin: 10px auto -25px;
  2572. }
  2573. }
  2574. .purple-circle {
  2575. width: 50%;
  2576. left: -250px;
  2577. bottom: 100px;
  2578. @media (max-width: 991px) {
  2579. left: -150px;
  2580. }
  2581. @media (max-width: 767px) {
  2582. left: -50px;
  2583. }
  2584. }
  2585. .orange-circle {
  2586. width: 50%;
  2587. right: -200px;
  2588. top: -200px;
  2589. @media (max-width: 767px) {
  2590. right: -100px;
  2591. top: -150px;
  2592. }
  2593. }
  2594. .data-text {
  2595. .circle {
  2596. top: -250px;
  2597. right: -5vw;
  2598. @media (max-width: 767px) {
  2599. top: 0px;
  2600. }
  2601. }
  2602. }
  2603. }
  2604. /* blog-traffic End */
  2605. /* seo Start */
  2606. #seo-dm {
  2607. overflow: hidden;
  2608. .pay-card {
  2609. box-shadow: 2px 2px 5px #ccc;
  2610. border-radius: 20px;
  2611. .card-title {
  2612. font-size: 1.5rem;
  2613. }
  2614. ul {
  2615. padding: 0;
  2616. list-style: none;
  2617. }
  2618. .price {
  2619. width: 100%;
  2620. padding: 1rem 0;
  2621. font-size: 26px;
  2622. font-weight: 600;
  2623. text-align: center;
  2624. color: #fff;
  2625. background-color: #ea5413;
  2626. letter-spacing: 2px;
  2627. }
  2628. .buy-btn {
  2629. width: 150px;
  2630. padding: 0.5rem;
  2631. display: block;
  2632. text-align: center;
  2633. border-radius: 100px;
  2634. font-size: 1rem;
  2635. font-weight: bold;
  2636. text-decoration: none;
  2637. color: #ea5413;
  2638. border: 2px solid #ea5413;
  2639. background-color: #fff;
  2640. letter-spacing: 1px;
  2641. transition: all 0.3s;
  2642. &:hover {
  2643. color: #fff;
  2644. background-color: #ea5413;
  2645. }
  2646. }
  2647. }
  2648. .header-title {
  2649. color: #f6ab1c;
  2650. @media (max-width: 767px) {
  2651. font-size: 2rem;
  2652. }
  2653. }
  2654. .bg-img {
  2655. width: 50%;
  2656. position: absolute;
  2657. right: -50px;
  2658. z-index: -1;
  2659. }
  2660. .about-list {
  2661. margin-top: 90px;
  2662. @media (max-width: 767px) {
  2663. margin-top: 60px;
  2664. }
  2665. ul {
  2666. margin: 0;
  2667. padding: 0;
  2668. list-style: none;
  2669. li {
  2670. margin-bottom: 30px;
  2671. strong {
  2672. margin-bottom: 5px;
  2673. display: block;
  2674. font-size: 22px;
  2675. }
  2676. }
  2677. }
  2678. }
  2679. .service {
  2680. margin-top: 150px;
  2681. @media (max-width: 767px) {
  2682. margin-top: 80px;
  2683. }
  2684. }
  2685. .service,
  2686. .point-list {
  2687. img {
  2688. height: 230px;
  2689. object-fit: contain;
  2690. }
  2691. }
  2692. .point-list {
  2693. h4 {
  2694. font-size: 22px;
  2695. font-weight: bold;
  2696. text-align: center;
  2697. color: #f6ab1c;
  2698. }
  2699. }
  2700. .accordion,
  2701. .news-form {
  2702. max-width: 900px;
  2703. margin: 100px auto;
  2704. }
  2705. .link-btn {
  2706. display: inline-block;
  2707. padding: 12px 35px;
  2708. margin-top: 25px;
  2709. border: none;
  2710. border-radius: 100px;
  2711. background: #ea5413;
  2712. transition: all 0.3s;
  2713. a {
  2714. font-size: 18px;
  2715. font-weight: bold;
  2716. color: #fff;
  2717. text-decoration: none;
  2718. }
  2719. &:hover {
  2720. opacity: 0.8;
  2721. }
  2722. }
  2723. .block-content {
  2724. margin-left: -35px;
  2725. @media (max-width: 767px) {
  2726. margin-left: auto;
  2727. }
  2728. h3 {
  2729. color: #f6ab1c;
  2730. font-size: 2.2rem;
  2731. font-weight: bold;
  2732. line-height: 1.3;
  2733. @media (max-width: 991px) {
  2734. font-size: 1.8rem;
  2735. }
  2736. @media (max-width: 575px) {
  2737. font-size: 1.5rem;
  2738. }
  2739. }
  2740. p {
  2741. color: #656565;
  2742. font-weight: bold;
  2743. }
  2744. .block-title {
  2745. margin-bottom: 20px;
  2746. @media (max-width: 575px) {
  2747. margin-bottom: 0;
  2748. }
  2749. }
  2750. }
  2751. }
  2752. .copywriter-content {
  2753. .header {
  2754. padding: 7rem 5rem;
  2755. background-image: url("/imgs/dm/ai-copywriter/bg.webp");
  2756. background-size: cover;
  2757. background-position: center;
  2758. background-repeat: no-repeat;
  2759. @media (max-width: 575px) {
  2760. padding: 5rem 2.5rem;
  2761. }
  2762. section {
  2763. letter-spacing: 1px;
  2764. h1 {
  2765. font-size: 3rem;
  2766. font-weight: bold;
  2767. @media (max-width: 575px) {
  2768. font-size: 2rem;
  2769. }
  2770. }
  2771. p {
  2772. font-size: 1.5rem;
  2773. font-weight: bold;
  2774. @media (max-width: 575px) {
  2775. font-size: 1.25rem;
  2776. line-height: 2;
  2777. }
  2778. span {
  2779. color: red;
  2780. }
  2781. }
  2782. a {
  2783. margin-top: 1rem;
  2784. font-weight: bold;
  2785. border-radius: 5px;
  2786. }
  2787. .btn {
  2788. position: relative;
  2789. img {
  2790. width: 140px;
  2791. margin-top: -3px;
  2792. @media (max-width: 575px) {
  2793. width: 120px;
  2794. margin-top: -8px;
  2795. }
  2796. }
  2797. p {
  2798. margin: 0;
  2799. position: absolute;
  2800. top: 10px;
  2801. left: 26%;
  2802. color: #ea5413;
  2803. @media (max-width: 575px) {
  2804. top: 5px;
  2805. left: 27%;
  2806. }
  2807. }
  2808. }
  2809. }
  2810. }
  2811. .blogtab-title {
  2812. text-align: center;
  2813. }
  2814. .info-card {
  2815. .item {
  2816. padding: 6rem 1.5rem;
  2817. background-color: #ea5413;
  2818. @media (max-width: 1200px) {
  2819. padding: 4rem 0.5rem;
  2820. }
  2821. @media (max-width: 767px) {
  2822. padding: 3rem 0.5rem;
  2823. }
  2824. @media (max-width: 575px) {
  2825. padding: 2rem 1.5rem;
  2826. margin-bottom: 2rem;
  2827. }
  2828. h3 {
  2829. margin-bottom: 0;
  2830. color: #fff;
  2831. text-align: center;
  2832. font-size: 2rem;
  2833. line-height: 1.5;
  2834. @media (max-width: 1200px) {
  2835. font-size: 1.5rem;
  2836. }
  2837. @media (max-width: 767px) {
  2838. font-size: 1.125rem;
  2839. }
  2840. @media (max-width: 575px) {
  2841. font-size: 1.25rem;
  2842. }
  2843. }
  2844. }
  2845. }
  2846. h4 {
  2847. font-size: 1.5rem;
  2848. font-weight: bold;
  2849. }
  2850. ul {
  2851. li {
  2852. font-size: 1.25rem;
  2853. line-height: 1.75;
  2854. @media (max-width: 575px) {
  2855. font-size: 1rem;
  2856. }
  2857. }
  2858. }
  2859. .plan-content {
  2860. strong {
  2861. display: block;
  2862. margin-bottom: 1rem;
  2863. font-size: 1.75rem;
  2864. font-weight: bold;
  2865. }
  2866. small {
  2867. font-size: 1rem;
  2868. }
  2869. div:first-child {
  2870. border-right: 1px solid #909090;
  2871. @media (max-width: 575px) {
  2872. border-right: none;
  2873. }
  2874. }
  2875. div:last-child {
  2876. font-weight: bold;
  2877. color: #7d7d7d;
  2878. p,
  2879. li {
  2880. font-size: 1.25rem;
  2881. @media (max-width: 767px) {
  2882. font-size: 1rem;
  2883. }
  2884. }
  2885. }
  2886. ul {
  2887. padding: 0;
  2888. margin-bottom: 0;
  2889. list-style: none;
  2890. }
  2891. }
  2892. }
  2893. /* seo End */
  2894. /* ai-video Start */
  2895. #ai-video {
  2896. margin-top: 75px;
  2897. h2 {
  2898. padding: 10px;
  2899. font-weight: 600;
  2900. text-align: center;
  2901. color: #fff;
  2902. background-color: #910782;
  2903. }
  2904. p {
  2905. font-weight: 600;
  2906. color: #474047;
  2907. line-height: 2.5;
  2908. @media (max-width: 991px) {
  2909. line-height: 2;
  2910. }
  2911. }
  2912. .ai-line {
  2913. margin-bottom: -10px;
  2914. @media (max-width: 991px) {
  2915. margin-bottom: -5px;
  2916. }
  2917. }
  2918. .main-text {
  2919. font-size: 28px;
  2920. font-weight: 600;
  2921. color: #910782;
  2922. @media (max-width: 991px) {
  2923. line-height: 2;
  2924. }
  2925. @media (max-width: 767px) {
  2926. margin-bottom: 1rem;
  2927. font-size: 22px;
  2928. }
  2929. }
  2930. .bg-img {
  2931. width: 100%;
  2932. position: absolute;
  2933. top: 30px;
  2934. z-index: -1;
  2935. opacity: 0.5;
  2936. transform: scale(1.5);
  2937. }
  2938. .process {
  2939. display: flex;
  2940. position: relative;
  2941. margin: 80px auto 160px;
  2942. @media (max-width: 991px) {
  2943. flex-direction: column;
  2944. align-items: center;
  2945. margin: 60px auto;
  2946. }
  2947. .bg-img {
  2948. top: -185px;
  2949. opacity: 0.3;
  2950. }
  2951. .main-img {
  2952. width: 25vw;
  2953. height: 205px;
  2954. max-width: 100%;
  2955. object-fit: cover;
  2956. @media (max-width: 991px) {
  2957. width: 100%;
  2958. height: auto;
  2959. max-width: 650px;
  2960. margin: 1rem auto;
  2961. }
  2962. }
  2963. .arrow-img {
  2964. width: 5vw;
  2965. margin: 0 1vw;
  2966. max-width: 100%;
  2967. object-fit: contain;
  2968. @media (max-width: 991px) {
  2969. width: 10vw;
  2970. margin: 0 5vw;
  2971. transform: rotate(90deg);
  2972. }
  2973. }
  2974. }
  2975. .contrast {
  2976. position: relative;
  2977. p {
  2978. position: absolute;
  2979. right: 13vw;
  2980. top: 3vw;
  2981. font-size: 20px;
  2982. @media (max-width: 1200px) {
  2983. right: 10vw;
  2984. top: 2vw;
  2985. }
  2986. @media (max-width: 991px) {
  2987. right: 5vw;
  2988. top: 5vw;
  2989. font-size: 16px;
  2990. }
  2991. @media (max-width: 767px) {
  2992. top: 6vw;
  2993. font-size: 14px;
  2994. }
  2995. @media (max-width: 575px) {
  2996. top: 8vw;
  2997. }
  2998. }
  2999. .ai {
  3000. right: 6vw;
  3001. @media (max-width: 1200px) {
  3002. right: 2vw;
  3003. }
  3004. @media (max-width: 991px) {
  3005. right: -2vw;
  3006. }
  3007. @media (max-width: 767px) {
  3008. right: -5vw;
  3009. }
  3010. @media (max-width: 575px) {
  3011. right: 13vw;
  3012. }
  3013. }
  3014. img {
  3015. @media (max-width: 1200px) {
  3016. margin-left: -20px;
  3017. }
  3018. @media (max-width: 991px) {
  3019. max-width: 120%;
  3020. margin-top: 20px;
  3021. }
  3022. @media (max-width: 767px) {
  3023. max-width: 40vw;
  3024. margin-top: 30px;
  3025. }
  3026. @media (max-width: 575px) {
  3027. max-width: 50vw;
  3028. }
  3029. }
  3030. }
  3031. .title {
  3032. font-size: 30px;
  3033. color: #e95513;
  3034. text-align: center;
  3035. }
  3036. .user-content {
  3037. .bg-img {
  3038. top: 130px;
  3039. transform: scaleX(-1) scale(1.5);
  3040. }
  3041. .item {
  3042. h5 {
  3043. padding: 20px;
  3044. color: #fff;
  3045. font-size: 24px;
  3046. text-align: center;
  3047. font-weight: 600;
  3048. letter-spacing: 1px;
  3049. border-radius: 20px 20px 0 0;
  3050. background-color: #e95513;
  3051. }
  3052. ul {
  3053. min-height: 250px;
  3054. padding: 20px 20px 20px 40px;
  3055. box-shadow: 3px 3px 5px #909090;
  3056. border-radius: 0 0 20px 20px;
  3057. background-color: #fff;
  3058. li {
  3059. margin-bottom: 15px;
  3060. color: #910782;
  3061. font-weight: 600;
  3062. text-align: justify;
  3063. &:last-child {
  3064. margin-bottom: 0;
  3065. }
  3066. }
  3067. }
  3068. }
  3069. }
  3070. .faq-list {
  3071. max-width: 700px;
  3072. margin: auto;
  3073. display: flex;
  3074. flex-direction: column;
  3075. position: relative;
  3076. @media (max-width: 575px) {
  3077. font-size: 14px;
  3078. }
  3079. p {
  3080. margin: 0;
  3081. line-height: 1.6;
  3082. position: absolute;
  3083. }
  3084. .circle {
  3085. width: 600px;
  3086. left: -30vw;
  3087. top: 300px;
  3088. z-index: -100;
  3089. position: absolute;
  3090. }
  3091. .q-item,
  3092. .a-item {
  3093. position: relative;
  3094. }
  3095. .q-item {
  3096. margin-right: auto;
  3097. margin-bottom: -35px;
  3098. p {
  3099. top: 45px;
  3100. color: #fff;
  3101. }
  3102. &.q-1 {
  3103. img {
  3104. width: 380px;
  3105. height: 120px;
  3106. margin-bottom: 10px;
  3107. }
  3108. p {
  3109. left: 60px;
  3110. }
  3111. }
  3112. &.q-2 {
  3113. img {
  3114. width: 255px;
  3115. height: 110px;
  3116. margin-bottom: 30px;
  3117. }
  3118. p {
  3119. left: 50px;
  3120. }
  3121. }
  3122. &.q-3 {
  3123. img {
  3124. width: 315px;
  3125. height: 120px;
  3126. margin-bottom: 25px;
  3127. }
  3128. p {
  3129. left: 50px;
  3130. }
  3131. }
  3132. &.q-4 {
  3133. img {
  3134. width: 470px;
  3135. height: 115px;
  3136. margin-bottom: 35px;
  3137. @media (max-width: 575px) {
  3138. width: 400px;
  3139. }
  3140. }
  3141. p {
  3142. left: 40px;
  3143. @media (max-width: 575px) {
  3144. left: 30px;
  3145. }
  3146. }
  3147. }
  3148. &.q-5 {
  3149. img {
  3150. width: 210px;
  3151. height: 110px;
  3152. margin-bottom: 35px;
  3153. }
  3154. p {
  3155. left: 50px;
  3156. }
  3157. }
  3158. }
  3159. .a-item {
  3160. display: flex;
  3161. justify-content: end;
  3162. p {
  3163. color: #e95513;
  3164. }
  3165. &.a-1 {
  3166. img {
  3167. width: 550px;
  3168. height: 210px;
  3169. margin-bottom: -20px;
  3170. @media (max-width: 575px) {
  3171. width: 400px;
  3172. height: 225px;
  3173. }
  3174. }
  3175. p {
  3176. width: 435px;
  3177. top: 53px;
  3178. right: 53px;
  3179. @media (max-width: 575px) {
  3180. width: 300px;
  3181. }
  3182. }
  3183. }
  3184. &.a-2 {
  3185. img {
  3186. width: 420px;
  3187. height: 140px;
  3188. }
  3189. p {
  3190. width: 330px;
  3191. top: 45px;
  3192. right: 40px;
  3193. }
  3194. }
  3195. }
  3196. }
  3197. #form {
  3198. margin: 100px auto;
  3199. max-width: 800px;
  3200. @media (max-width: 991px) {
  3201. margin: 50px auto 100px;
  3202. max-width: 100%;
  3203. }
  3204. .title {
  3205. p {
  3206. font-size: 16px;
  3207. }
  3208. }
  3209. }
  3210. }
  3211. /* ai-video End */
  3212. /* youtube-views Start */
  3213. #youtube-views,
  3214. #youtube-views-zh {
  3215. overflow-x: hidden;
  3216. h5 {
  3217. line-height: 32px;
  3218. }
  3219. .title {
  3220. color: #ea5413;
  3221. font-size: 1.3rem;
  3222. font-weight: bold;
  3223. }
  3224. .header-right {
  3225. background-position: center;
  3226. }
  3227. .card-group {
  3228. margin-top: 50px;
  3229. .card {
  3230. box-shadow: 0 0 10px #20202040;
  3231. ul {
  3232. padding: 0;
  3233. list-style: none;
  3234. img {
  3235. margin-bottom: 1px;
  3236. }
  3237. }
  3238. .price {
  3239. width: 100%;
  3240. padding: 10px 0;
  3241. font-size: 28px;
  3242. font-weight: bold;
  3243. text-align: center;
  3244. color: #fff;
  3245. background-color: #ea5413;
  3246. letter-spacing: 2px;
  3247. }
  3248. .buy-btn {
  3249. padding: 6px 18px;
  3250. color: #fff;
  3251. border: 1px solid transparent;
  3252. border-radius: 50px;
  3253. background: #ea5413;
  3254. transition: all 0.3s;
  3255. &:hover {
  3256. color: #ea5413;
  3257. border: 1px solid #ea5413;
  3258. background: #fff;
  3259. }
  3260. }
  3261. }
  3262. .paypal-content {
  3263. margin: 0 20px;
  3264. box-shadow: none;
  3265. }
  3266. }
  3267. .direction-list {
  3268. margin-top: 100px;
  3269. @media (max-width: 991px) {
  3270. margin-top: 60px;
  3271. }
  3272. img {
  3273. width: 50px;
  3274. object-fit: contain;
  3275. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  3276. }
  3277. .content > div {
  3278. margin-bottom: 40px;
  3279. padding: 0px 15px;
  3280. border-left: 1px solid rgba(0, 0, 0, 0.125);
  3281. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  3282. }
  3283. section {
  3284. h5 {
  3285. margin: 0;
  3286. font-size: 18px;
  3287. font-weight: bold;
  3288. }
  3289. p {
  3290. font-size: 14px;
  3291. }
  3292. }
  3293. }
  3294. .accordion-button {
  3295. padding: 20px;
  3296. }
  3297. .accordion-button:not(.collapsed) {
  3298. color: #ea5413 !important;
  3299. background-color: #ffebe2 !important;
  3300. }
  3301. button:focus:not(:focus-visible) {
  3302. box-shadow: none !important;
  3303. }
  3304. .accordion-button:not(.collapsed)::after {
  3305. 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");
  3306. }
  3307. @media (max-width: 767px) {
  3308. & .category.dm-description {
  3309. padding-top: 6rem;
  3310. }
  3311. }
  3312. @media (max-width: 575px) {
  3313. & .category.dm-description {
  3314. padding-top: 14rem;
  3315. }
  3316. }
  3317. }
  3318. /* youtube-views End */
  3319. /* youtube-views-zh Start */
  3320. #youtube-views-zh {
  3321. .header {
  3322. margin-top: 0;
  3323. padding: 4.8rem 0 3rem;
  3324. p {
  3325. max-width: 330px;
  3326. text-align: start;
  3327. line-height: 35px;
  3328. font-size: 18px;
  3329. font-weight: bold;
  3330. color: #656565;
  3331. @media (max-width: 991px) {
  3332. max-width: 100%;
  3333. }
  3334. @media (max-width: 414px) {
  3335. font-size: 14px;
  3336. }
  3337. }
  3338. .row {
  3339. div {
  3340. @media (max-width: 991px) {
  3341. text-align: center;
  3342. }
  3343. }
  3344. }
  3345. .bg-img {
  3346. width: 100%;
  3347. height: 100%;
  3348. position: absolute;
  3349. z-index: -1;
  3350. top: 0;
  3351. bottom: 0;
  3352. }
  3353. .header-title {
  3354. padding-top: 10rem;
  3355. margin-bottom: 30px;
  3356. font-size: 40px;
  3357. color: #ea5413;
  3358. line-height: 44px;
  3359. @media (max-width: 991px) {
  3360. padding-top: 5rem;
  3361. }
  3362. @media (max-width: 414px) {
  3363. font-size: 34px;
  3364. }
  3365. small {
  3366. font-size: 28px;
  3367. @media (max-width: 991px) {
  3368. font-size: 22px;
  3369. }
  3370. }
  3371. }
  3372. }
  3373. .qa-block {
  3374. padding-top: 30px;
  3375. background-color: #e3c1dc;
  3376. img {
  3377. width: 100%;
  3378. }
  3379. .q-text,
  3380. .a-text {
  3381. font-size: 1.3vw;
  3382. position: absolute;
  3383. font-weight: bold;
  3384. @media (max-width: 991px) {
  3385. font-size: 2.5vw;
  3386. }
  3387. }
  3388. .q-text {
  3389. width: 25vw;
  3390. top: 3.3vw;
  3391. right: 13.5vw;
  3392. @media (max-width: 991px) {
  3393. width: 100%;
  3394. top: 7vw;
  3395. right: -24%;
  3396. }
  3397. @media (max-width: 490px) {
  3398. top: 6vw;
  3399. right: -21%;
  3400. }
  3401. }
  3402. .a-text {
  3403. top: 3.7vw;
  3404. right: 5vw;
  3405. @media (max-width: 991px) {
  3406. top: 7.5vw;
  3407. right: unset;
  3408. left: 46vw;
  3409. }
  3410. @media (max-width: 490px) {
  3411. top: 6.8vw;
  3412. left: 42vw;
  3413. }
  3414. }
  3415. }
  3416. .info-content {
  3417. @media (max-width: 767px) {
  3418. text-align: center;
  3419. }
  3420. h4 {
  3421. font-weight: bold;
  3422. line-height: 40px;
  3423. margin-bottom: 30px;
  3424. strong {
  3425. font-size: 30px;
  3426. color: #ea5413;
  3427. }
  3428. }
  3429. p {
  3430. width: 320px;
  3431. line-height: 35px;
  3432. color: #656565;
  3433. @media (max-width: 767px) {
  3434. margin: auto;
  3435. }
  3436. }
  3437. img {
  3438. width: 100%;
  3439. max-width: 380px;
  3440. margin-right: 30px;
  3441. @media (max-width: 991px) {
  3442. max-width: 500px;
  3443. }
  3444. }
  3445. }
  3446. .pick-point {
  3447. display: flex;
  3448. justify-content: center;
  3449. margin: 150px auto;
  3450. position: relative;
  3451. ul {
  3452. padding: 0;
  3453. list-style: none;
  3454. li {
  3455. span {
  3456. color: #ea5413;
  3457. font-size: 20px;
  3458. font-weight: bold;
  3459. }
  3460. }
  3461. }
  3462. .bg-img {
  3463. width: 100%;
  3464. position: absolute;
  3465. top: -100px;
  3466. z-index: -1;
  3467. @media (max-width: 767px) {
  3468. width: 151%;
  3469. top: -65px;
  3470. }
  3471. }
  3472. .chat-img {
  3473. left: 65%;
  3474. top: -20px;
  3475. position: absolute;
  3476. @media (max-width: 991px) {
  3477. left: 75%;
  3478. top: 3px;
  3479. }
  3480. @media (max-width: 767px) {
  3481. left: 70%;
  3482. top: 10px;
  3483. }
  3484. @media (max-width: 575px) {
  3485. display: none;
  3486. }
  3487. img {
  3488. width: 250px;
  3489. @media (max-width: 991px) {
  3490. width: 200px;
  3491. }
  3492. @media (max-width: 767px) {
  3493. width: 170px;
  3494. }
  3495. }
  3496. p {
  3497. color: #fff;
  3498. position: absolute;
  3499. top: 32px;
  3500. right: 45px;
  3501. font-size: 24px;
  3502. @media (max-width: 991px) {
  3503. top: 26px;
  3504. right: 40px;
  3505. font-size: 18px;
  3506. }
  3507. @media (max-width: 767px) {
  3508. top: 20px;
  3509. right: 25px;
  3510. }
  3511. }
  3512. }
  3513. }
  3514. .trust-item {
  3515. padding: 5px 0;
  3516. background-color: #ea5413;
  3517. p {
  3518. color: #fff;
  3519. font-size: 24px;
  3520. font-weight: bold;
  3521. text-align: center;
  3522. margin-bottom: 0;
  3523. }
  3524. }
  3525. .price-block {
  3526. padding: 50px;
  3527. display: flex;
  3528. flex-direction: column;
  3529. align-items: center;
  3530. @media (max-width: 991px) {
  3531. padding: 50px;
  3532. }
  3533. p {
  3534. text-align: center;
  3535. font-size: 20px;
  3536. }
  3537. img {
  3538. width: 100%;
  3539. max-width: 1000px;
  3540. }
  3541. }
  3542. .card-group {
  3543. margin: 170px auto 50px;
  3544. @media (max-width: 575px) {
  3545. margin: 75px auto 50px;
  3546. }
  3547. .card {
  3548. border-radius: 20px;
  3549. ul {
  3550. padding: 10px;
  3551. }
  3552. .price {
  3553. font-size: 30px;
  3554. small {
  3555. display: block;
  3556. margin-top: -3px;
  3557. font-size: 18px;
  3558. font-weight: normal;
  3559. text-decoration: line-through;
  3560. }
  3561. }
  3562. .buy-btn {
  3563. display: block;
  3564. text-decoration: none;
  3565. }
  3566. }
  3567. }
  3568. .direction-list {
  3569. @media (max-width: 767px) {
  3570. margin-top: 50px;
  3571. }
  3572. img {
  3573. filter: unset;
  3574. position: absolute;
  3575. }
  3576. section {
  3577. margin-bottom: 40px;
  3578. padding: 0px 35px 10px;
  3579. border-left: 1px solid #656565;
  3580. border-bottom: 1px solid #656565;
  3581. border-radius: 0 0 0 10px;
  3582. h5 {
  3583. margin-bottom: 20px;
  3584. }
  3585. p {
  3586. font-size: 16px;
  3587. line-height: 30px;
  3588. color: #656565;
  3589. }
  3590. }
  3591. }
  3592. .data-content {
  3593. position: relative;
  3594. .bg-img {
  3595. position: absolute;
  3596. top: -5px;
  3597. right: 0;
  3598. left: 0;
  3599. width: 100%;
  3600. z-index: -1;
  3601. }
  3602. .row {
  3603. padding: 0 5vw;
  3604. & > div {
  3605. display: flex;
  3606. flex-direction: column;
  3607. align-items: center;
  3608. justify-content: center;
  3609. }
  3610. img {
  3611. width: 100%;
  3612. max-width: 700px;
  3613. }
  3614. }
  3615. .title {
  3616. margin-bottom: 10px;
  3617. text-align: center;
  3618. h3 {
  3619. color: #ea5413;
  3620. font-size: 20px;
  3621. font-weight: bold;
  3622. }
  3623. h4 {
  3624. color: #000;
  3625. font-size: 18px;
  3626. font-weight: bold;
  3627. }
  3628. small {
  3629. color: #000;
  3630. }
  3631. }
  3632. .info {
  3633. display: flex;
  3634. flex-direction: column;
  3635. align-items: center;
  3636. img {
  3637. width: 100%;
  3638. max-width: 900px;
  3639. }
  3640. h4 {
  3641. text-align: center;
  3642. font-weight: bold;
  3643. strong {
  3644. display: inline-block;
  3645. margin: 7px 0;
  3646. font-size: 34px;
  3647. color: #ea5413;
  3648. @media (max-width: 767px) {
  3649. font-size: 24px;
  3650. }
  3651. @media (max-width: 414px) {
  3652. font-size: 22px;
  3653. }
  3654. }
  3655. }
  3656. }
  3657. }
  3658. // .data-content {
  3659. // display: flex;
  3660. // flex-direction: column;
  3661. // align-items: center;
  3662. // margin-bottom: 150px;
  3663. // section {
  3664. // h4 {
  3665. // position: absolute;
  3666. // top: 35%;
  3667. // left: 50%;
  3668. // width: 100%;
  3669. // font-size: 28px;
  3670. // text-align: center;
  3671. // font-weight: bold;
  3672. // line-height: 40px;
  3673. // transform: translate(-50%, -50%);
  3674. // @media (max-width: 1199px) {
  3675. // top: 40%;
  3676. // }
  3677. // @media (max-width: 767px) {
  3678. // top: 36%;
  3679. // font-size: 18px;
  3680. // line-height: normal;
  3681. // }
  3682. // @media (max-width: 575px) {
  3683. // top: 40%;
  3684. // }
  3685. // strong {
  3686. // font-size: 34px;
  3687. // color: #ea5413;
  3688. // @media (max-width: 767px) {
  3689. // font-size: 24px;
  3690. // }
  3691. // @media (max-width: 414px) {
  3692. // font-size: 22px;
  3693. // }
  3694. // }
  3695. // }
  3696. // img {
  3697. // margin-top: 150px;
  3698. // @media (max-width: 991px) {
  3699. // height: 500px;
  3700. // object-fit: cover;
  3701. // }
  3702. // @media (max-width: 767px) {
  3703. // margin-top: 80px;
  3704. // height: 400px;
  3705. // }
  3706. // @media (max-width: 575px) {
  3707. // height: 280px;
  3708. // }
  3709. // }
  3710. // }
  3711. // p {
  3712. // font-weight: bold;
  3713. // line-height: 35px;
  3714. // color: #656565;
  3715. // }
  3716. // }
  3717. }
  3718. /* youtube-views-zh End */
  3719. /* seo-image Start */
  3720. .seo-image {
  3721. overflow-x: hidden;
  3722. p {
  3723. line-height: 32px;
  3724. }
  3725. .header {
  3726. padding: 0;
  3727. }
  3728. .video-box {
  3729. width: 100%;
  3730. padding-bottom: 56%;
  3731. }
  3732. .content {
  3733. margin: 150px auto;
  3734. @media (max-width: 767px) {
  3735. margin: 80px auto;
  3736. }
  3737. }
  3738. .line {
  3739. width: 820px;
  3740. position: absolute;
  3741. top: -70px;
  3742. left: 345px;
  3743. @media (max-width: 1400px) {
  3744. width: 840px;
  3745. top: -85px;
  3746. left: 210px;
  3747. }
  3748. @media (max-width: 1199px) {
  3749. width: 880px;
  3750. top: -90px;
  3751. left: 114px;
  3752. }
  3753. @media (max-width: 991px) {
  3754. display: none;
  3755. }
  3756. }
  3757. .title {
  3758. font-size: 28px;
  3759. color: #f6ab1c;
  3760. font-weight: bold;
  3761. }
  3762. .img-item {
  3763. @media (max-width: 991px) {
  3764. width: 100%;
  3765. max-width: 100% !important;
  3766. }
  3767. }
  3768. .purple-circle,
  3769. .orange-circle {
  3770. width: 100%;
  3771. @media (max-width: 991px) {
  3772. width: 60%;
  3773. }
  3774. }
  3775. .purple-circle {
  3776. top: -470px;
  3777. right: -100%;
  3778. @media (max-width: 991px) {
  3779. top: -350px;
  3780. right: -150px;
  3781. }
  3782. @media (max-width: 767px) {
  3783. top: -250px;
  3784. right: -20px;
  3785. }
  3786. }
  3787. .orange-circle {
  3788. top: -200px;
  3789. left: -100%;
  3790. @media (max-width: 991px) {
  3791. top: -30vw;
  3792. left: -20vw;
  3793. }
  3794. }
  3795. .data-text {
  3796. .circle {
  3797. top: -400px;
  3798. right: -5vw;
  3799. @media (max-width: 991px) {
  3800. top: -250px;
  3801. }
  3802. @media (max-width: 767px) {
  3803. top: -120px;
  3804. }
  3805. }
  3806. }
  3807. }
  3808. /* seo-image End */
  3809. /* 共用 className Start */
  3810. .purple-circle,
  3811. .orange-circle {
  3812. position: absolute;
  3813. z-index: -1;
  3814. }
  3815. .data-text {
  3816. position: relative;
  3817. p {
  3818. font-size: 28px;
  3819. font-weight: bold;
  3820. text-align: center;
  3821. }
  3822. .circle {
  3823. width: 500px;
  3824. z-index: -100;
  3825. position: absolute;
  3826. @media (max-width: 991px) {
  3827. width: 400px;
  3828. }
  3829. @media (max-width: 767px) {
  3830. width: 250px;
  3831. }
  3832. }
  3833. }
  3834. /* 共用 className End */
  3835. /* ai-presenter Start */
  3836. .ai-presenter,
  3837. .ai-virtual {
  3838. margin-top: 120px;
  3839. // overflow: hidden;
  3840. .main-content {
  3841. width: 90%;
  3842. margin: auto;
  3843. a {
  3844. display: inline-block;
  3845. color: #ea5413;
  3846. font-weight: bold;
  3847. }
  3848. img {
  3849. max-width: 100%;
  3850. }
  3851. p,
  3852. li,
  3853. th {
  3854. font-size: 1.125rem;
  3855. line-height: 2;
  3856. }
  3857. .video-content {
  3858. width: 100%;
  3859. height: 100%;
  3860. overflow: hidden;
  3861. display: flex;
  3862. justify-content: center;
  3863. align-items: center;
  3864. }
  3865. .video-content video {
  3866. width: 100%;
  3867. height: 100%;
  3868. object-fit: cover; /* 讓影片填滿並裁切 */
  3869. }
  3870. .title,
  3871. .accordion-header h4 {
  3872. color: #ea5413;
  3873. font-weight: bold;
  3874. text-align: center;
  3875. line-height: 1.5;
  3876. @media (max-width: 575px) {
  3877. font-size: 20px;
  3878. }
  3879. }
  3880. .accordion-item {
  3881. border: none;
  3882. .accordion-body {
  3883. padding: 0;
  3884. display: flex;
  3885. flex-direction: column;
  3886. align-items: center;
  3887. }
  3888. .accordion-header {
  3889. display: flex;
  3890. justify-content: center;
  3891. button {
  3892. p {
  3893. color: #000;
  3894. }
  3895. }
  3896. .accordion-button {
  3897. &:focus {
  3898. box-shadow: none;
  3899. }
  3900. &:not(.collapsed) {
  3901. color: #ea5413;
  3902. background-color: #fff;
  3903. box-shadow: none;
  3904. }
  3905. &::after {
  3906. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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") !important;
  3907. }
  3908. }
  3909. button {
  3910. display: flex;
  3911. justify-content: center;
  3912. align-items: center;
  3913. width: auto;
  3914. h4,
  3915. p {
  3916. margin-bottom: 0;
  3917. margin-right: 1rem;
  3918. font-size: 24px;
  3919. font-weight: bold;
  3920. @media (max-width: 575px) {
  3921. font-size: 20px;
  3922. }
  3923. }
  3924. }
  3925. }
  3926. }
  3927. #faq_accordion {
  3928. width: 100%;
  3929. .accordion-header {
  3930. display: block;
  3931. button {
  3932. width: 100%;
  3933. font-weight: bold;
  3934. }
  3935. }
  3936. .accordion-item {
  3937. margin-bottom: 20px;
  3938. border: 1px solid rgba(0, 0, 0, 0.125);
  3939. .accordion-body {
  3940. display: block;
  3941. }
  3942. }
  3943. .accordion-button {
  3944. &:not(.collapsed) {
  3945. color: #000;
  3946. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  3947. }
  3948. }
  3949. }
  3950. .link-btn {
  3951. display: inline-block;
  3952. padding: 12px 50px;
  3953. margin: 2rem auto 3rem;
  3954. font-size: 24px;
  3955. font-weight: bold;
  3956. border-radius: 100px;
  3957. text-decoration: none;
  3958. color: #fff;
  3959. background: #ea5413;
  3960. transition: all 0.3s;
  3961. @media (max-width: 575px) {
  3962. padding: 12px 40px;
  3963. font-size: 20px;
  3964. }
  3965. &:hover {
  3966. opacity: 0.8;
  3967. }
  3968. }
  3969. .demo-img {
  3970. img {
  3971. max-width: 30vw;
  3972. @media (max-width: 991px) {
  3973. max-width: 100%;
  3974. }
  3975. }
  3976. p {
  3977. margin: 0 1rem;
  3978. font-size: 2rem;
  3979. @media (max-width: 991px) {
  3980. transform: rotate(90deg);
  3981. }
  3982. }
  3983. }
  3984. table {
  3985. width: 100%;
  3986. border-collapse: collapse;
  3987. border: 1px solid #ccc;
  3988. font-size: 1rem;
  3989. letter-spacing: 1px;
  3990. tbody {
  3991. vertical-align: top;
  3992. }
  3993. th {
  3994. text-align: center;
  3995. }
  3996. th,
  3997. td {
  3998. border: 1px solid #ccc;
  3999. padding: 20px;
  4000. p,
  4001. ul {
  4002. margin-bottom: 0;
  4003. }
  4004. }
  4005. }
  4006. .iframe-box {
  4007. width: 100%;
  4008. margin-bottom: 15px;
  4009. padding-top: 5px;
  4010. overflow: hidden;
  4011. iframe {
  4012. width: 100%;
  4013. height: auto;
  4014. aspect-ratio: 16 / 9;
  4015. }
  4016. }
  4017. .terms-content {
  4018. font-weight: bold;
  4019. line-height: 32px;
  4020. color: #6c6d70;
  4021. text-align: justify;
  4022. ul {
  4023. padding: 0;
  4024. list-style: none;
  4025. li::before {
  4026. content: "";
  4027. font-weight: bold;
  4028. display: inline-block;
  4029. border: 3px solid #ea5413;
  4030. border-radius: 20px;
  4031. margin-right: 10px;
  4032. margin-bottom: 2px;
  4033. line-height: 32px;
  4034. }
  4035. }
  4036. }
  4037. }
  4038. /* 舊版 */
  4039. // .title-item {
  4040. // display: flex;
  4041. // flex-direction: column;
  4042. // justify-content: center;
  4043. // align-items: center;
  4044. // position: relative;
  4045. // img {
  4046. // width: 450px;
  4047. // @media (max-width: 575px) {
  4048. // width: 350px;
  4049. // }
  4050. // }
  4051. // h4 {
  4052. // text-align: center;
  4053. // margin-top: -41px;
  4054. // margin-left: -10px;
  4055. // font-weight: bold;
  4056. // @media (max-width: 575px) {
  4057. // margin-top: -34px;
  4058. // }
  4059. // }
  4060. // }
  4061. // .usecace-list {
  4062. // margin-bottom: 100px;
  4063. // img {
  4064. // width: 100%;
  4065. // }
  4066. // h5 {
  4067. // font-size: 18px;
  4068. // text-align: center;
  4069. // &::before {
  4070. // content: "";
  4071. // font-weight: bold;
  4072. // display: inline-block;
  4073. // border: 5px solid #e0c3dd;
  4074. // border-radius: 20px;
  4075. // margin-right: 10px;
  4076. // margin-bottom: 2px;
  4077. // }
  4078. // }
  4079. // }
  4080. // .video-left,
  4081. // .video-right {
  4082. // display: flex;
  4083. // flex-direction: column;
  4084. // align-items: center;
  4085. // justify-content: center;
  4086. // position: relative;
  4087. // padding: 20px;
  4088. // background: #d8bbd9;
  4089. // border-radius: 20px;
  4090. // a {
  4091. // display: flex;
  4092. // width: 100%;
  4093. // text-decoration: none;
  4094. // color: #000;
  4095. // &:hover .click-img {
  4096. // top: 50px;
  4097. // }
  4098. // }
  4099. // .click-img {
  4100. // position: absolute;
  4101. // width: 50px;
  4102. // top: 60px;
  4103. // right: 40px;
  4104. // }
  4105. // strong {
  4106. // width: 100%;
  4107. // padding: 20px;
  4108. // font-size: 24px;
  4109. // text-align: center;
  4110. // background: #fff;
  4111. // border-radius: 15px 15px 0 0;
  4112. // }
  4113. // .video-box {
  4114. // width: 100%;
  4115. // margin-top: 20px;
  4116. // padding-bottom: 45%;
  4117. // }
  4118. // }
  4119. // .video-left {
  4120. // background: #d8bbd9;
  4121. // }
  4122. // .video-right {
  4123. // background: #fde3d9;
  4124. // }
  4125. // .mp4-box {
  4126. // width: 70%;
  4127. // height: 0;
  4128. // margin: auto;
  4129. // padding-bottom: 45%;
  4130. // video {
  4131. // width: 100%;
  4132. // height: auto;
  4133. // }
  4134. // }
  4135. // .step-content,
  4136. // .template-content {
  4137. // margin: 100px auto;
  4138. // position: relative;
  4139. // .container {
  4140. // margin-top: -38px;
  4141. // }
  4142. // .bg-top,
  4143. // .bg-bottom {
  4144. // width: 100%;
  4145. // position: absolute;
  4146. // z-index: -10;
  4147. // left: 0;
  4148. // right: 0;
  4149. // }
  4150. // .bg-top {
  4151. // top: -10px;
  4152. // }
  4153. // .bg-bottom {
  4154. // bottom: -10px;
  4155. // }
  4156. // ul {
  4157. // padding: 0;
  4158. // list-style: none;
  4159. // display: flex;
  4160. // flex-direction: column;
  4161. // justify-content: center;
  4162. // li {
  4163. // margin: 30px auto;
  4164. // img {
  4165. // height: auto;
  4166. // width: 100%;
  4167. // max-width: 800px;
  4168. // }
  4169. // h4 {
  4170. // color: #ea5413;
  4171. // font-weight: bold;
  4172. // text-align: center;
  4173. // line-height: 34px;
  4174. // @media (max-width: 575px) {
  4175. // font-size: 20px;
  4176. // }
  4177. // }
  4178. // .point-list {
  4179. // list-style: decimal;
  4180. // li {
  4181. // margin: 5px 45px;
  4182. // @media (max-width: 575px) {
  4183. // margin: 5px 0 5px 20px;
  4184. // }
  4185. // // &::before {
  4186. // // content: "";
  4187. // // font-weight: bold;
  4188. // // display: inline-block;
  4189. // // border: 3px solid #ea5413;
  4190. // // border-radius: 20px;
  4191. // // margin-right: 10px;
  4192. // // margin-bottom: 2px;
  4193. // // }
  4194. // }
  4195. // }
  4196. // }
  4197. // }
  4198. // .excerpt {
  4199. // margin: 15px 25px 0;
  4200. // font-size: 18px;
  4201. // font-weight: bold;
  4202. // &::before {
  4203. // content: "";
  4204. // font-weight: bold;
  4205. // display: inline-block;
  4206. // border: 5px solid #ea5413;
  4207. // border-radius: 20px;
  4208. // margin-right: 10px;
  4209. // margin-bottom: 2px;
  4210. // }
  4211. // @media (max-width: 575px) {
  4212. // font-size: 16px;
  4213. // }
  4214. // }
  4215. // .caption {
  4216. // @media (max-width: 575px) {
  4217. // font-size: 15px;
  4218. // }
  4219. // }
  4220. // }
  4221. // .template-content {
  4222. // table {
  4223. // display: table;
  4224. // width: 110%;
  4225. // height: auto;
  4226. // margin-left: auto;
  4227. // margin-top: -250px;
  4228. // font-weight: bold;
  4229. // @media (max-width: 1199px) {
  4230. // margin-top: -195px;
  4231. // }
  4232. // @media (max-width: 991px) {
  4233. // margin-top: -140px;
  4234. // }
  4235. // @media (max-width: 767px) {
  4236. // width: 86%;
  4237. // margin-top: 20px;
  4238. // margin-left: 39px;
  4239. // }
  4240. // @media (max-width: 575px) {
  4241. // margin: 20px auto 0;
  4242. // margin-left: auto;
  4243. // }
  4244. // tbody {
  4245. // border: 1px solid #f08757;
  4246. // }
  4247. // td {
  4248. // text-align: center;
  4249. // }
  4250. // tr {
  4251. // border-style: none !important;
  4252. // border-bottom-width: 0px !important;
  4253. // }
  4254. // }
  4255. // .table-title {
  4256. // margin-top: -242px;
  4257. // text-align: end;
  4258. // @media (max-width: 1199px) {
  4259. // margin-top: -185px;
  4260. // }
  4261. // @media (max-width: 991px) {
  4262. // margin-top: -133px;
  4263. // }
  4264. // @media (max-width: 767px) {
  4265. // margin-top: 0;
  4266. // text-align: start;
  4267. // }
  4268. // }
  4269. // .table-striped>tbody>tr:nth-child(odd)>td,
  4270. // .table-striped>tbody>tr:nth-child(odd)>th {
  4271. // box-shadow: none;
  4272. // background-color: #fdeae1;
  4273. // border-bottom-width: 0px !important;
  4274. // }
  4275. // .table-striped>tbody>tr:nth-child(even)>td,
  4276. // .table-striped>tbody>tr:nth-child(even)>th {
  4277. // border-bottom-width: 0px !important;
  4278. // }
  4279. // .info {
  4280. // img {
  4281. // height: auto;
  4282. // width: 100%;
  4283. // max-width: 800px;
  4284. // }
  4285. // .img-left {
  4286. // @media (max-width: 767px) {
  4287. // padding: 0 15px;
  4288. // }
  4289. // }
  4290. // .img-right {
  4291. // width: 107%;
  4292. // @media (max-width: 767px) {
  4293. // width: 100%;
  4294. // }
  4295. // }
  4296. // .img-text-left,
  4297. // .img-text-right {
  4298. // position: absolute;
  4299. // top: 9%;
  4300. // color: #ea5413;
  4301. // font-size: 34px;
  4302. // font-weight: bold;
  4303. // @media (max-width: 1199px) {
  4304. // top: 8%;
  4305. // font-size: 28px;
  4306. // }
  4307. // @media (max-width: 991px) {
  4308. // font-size: 22px;
  4309. // }
  4310. // @media (max-width: 767px) {
  4311. // font-size: 30px;
  4312. // }
  4313. // @media (max-width: 575px) {
  4314. // font-size: 4.8vw;
  4315. // }
  4316. // }
  4317. // .img-text-left {
  4318. // left: 31%;
  4319. // @media (max-width: 1400px) {
  4320. // left: 28.5%;
  4321. // }
  4322. // @media (max-width: 767px) {
  4323. // left: 30%;
  4324. // }
  4325. // }
  4326. // .img-text-right {
  4327. // left: 24.5%;
  4328. // @media (max-width: 1400px) {
  4329. // left: 20.5%;
  4330. // }
  4331. // @media (max-width: 991px) {
  4332. // left: 18.5%;
  4333. // }
  4334. // @media (max-width: 767px) {
  4335. // top: 13%;
  4336. // left: 19%;
  4337. // }
  4338. // }
  4339. // .video-box {
  4340. // position: relative;
  4341. // width: 95%;
  4342. // height: 0;
  4343. // padding-bottom: 50%;
  4344. // margin: auto;
  4345. // }
  4346. // }
  4347. // .pageForm {
  4348. // margin-top: 8rem;
  4349. // background: #fff;
  4350. // h3 {
  4351. // line-height: 40px;
  4352. // }
  4353. // }
  4354. // }
  4355. // .sec-blogtab {
  4356. // padding-top: 50px;
  4357. // }
  4358. }
  4359. /* ai-presenter End */
  4360. /* sec-blogtab Start */
  4361. .sec-blogtab {
  4362. padding-top: 100px;
  4363. padding-bottom: 5rem;
  4364. margin: 0 auto 50px;
  4365. @media (max-width: 991px) {
  4366. padding-top: 0;
  4367. }
  4368. .blog-txt {
  4369. font-size: 16px;
  4370. p {
  4371. line-height: 32px;
  4372. letter-spacing: 1px;
  4373. }
  4374. }
  4375. .btn-light {
  4376. margin-top: 4rem;
  4377. padding: 1rem 2.5rem;
  4378. transition: all 0.3s;
  4379. outline: none;
  4380. font-size: 16px;
  4381. letter-spacing: 1px;
  4382. text-decoration: none;
  4383. background-color: white;
  4384. border: 1px solid #ea5413;
  4385. border-radius: 3rem;
  4386. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  4387. }
  4388. .blog-tabs {
  4389. .blog-tabs-nav {
  4390. @media (max-width: 767px) {
  4391. padding: 1rem 2rem 3rem;
  4392. }
  4393. }
  4394. }
  4395. .blog-tabs-nav {
  4396. a {
  4397. transition: all 0.3s;
  4398. text-decoration: none;
  4399. &:hover {
  4400. opacity: 0.8;
  4401. }
  4402. }
  4403. }
  4404. }
  4405. .blogtab-title {
  4406. display: inline-block;
  4407. margin-bottom: 30px;
  4408. padding-bottom: 10px;
  4409. font-size: 30px;
  4410. font-weight: bold;
  4411. text-align: center;
  4412. letter-spacing: 1px;
  4413. border-bottom: 6px solid #ea5413;
  4414. }
  4415. /* sec-blogtab End */
  4416. /* aboutus Start */
  4417. .about-header {
  4418. position: relative;
  4419. img {
  4420. width: 100%;
  4421. height: 500px;
  4422. object-fit: cover;
  4423. }
  4424. section {
  4425. width: 100%;
  4426. position: absolute;
  4427. top: 200px;
  4428. color: #fff;
  4429. @media (max-width: 767px) {
  4430. top: 170px;
  4431. }
  4432. @media (max-width: 575px) {
  4433. top: 120px;
  4434. }
  4435. h2 {
  4436. color: #fff;
  4437. font-size: 2.8rem;
  4438. @media (max-width: 575px) {
  4439. font-size: 2.2rem;
  4440. }
  4441. }
  4442. p {
  4443. margin: auto;
  4444. max-width: 900px;
  4445. font-size: 18px;
  4446. line-height: 32px;
  4447. @media (max-width: 767px) {
  4448. max-width: 515px;
  4449. }
  4450. @media (max-width: 575px) {
  4451. font-size: 16px;
  4452. max-width: 300px;
  4453. }
  4454. }
  4455. }
  4456. }
  4457. .about-content {
  4458. padding: 0;
  4459. h2 {
  4460. font-size: 26px;
  4461. font-weight: bold;
  4462. line-height: 38px;
  4463. text-align: center;
  4464. color: #6d6d6d;
  4465. @media (max-width: 1199px) {
  4466. font-size: 22px;
  4467. }
  4468. @media (max-width: 767px) {
  4469. font-size: 18px;
  4470. line-height: 30px;
  4471. }
  4472. @media (max-width: 575px) {
  4473. font-size: 16px;
  4474. }
  4475. small {
  4476. font-size: 20px;
  4477. @media (max-width: 767px) {
  4478. font-size: 16px;
  4479. }
  4480. @media (max-width: 575px) {
  4481. font-size: 14px;
  4482. line-height: 26px;
  4483. }
  4484. }
  4485. }
  4486. h5 {
  4487. font-size: 18px;
  4488. line-height: 40px;
  4489. color: #656565;
  4490. @media (max-width: 767px) {
  4491. font-size: 16px;
  4492. line-height: 32px;
  4493. }
  4494. }
  4495. .line {
  4496. height: 8px;
  4497. width: 90px;
  4498. display: block;
  4499. margin: 70px auto;
  4500. background-color: #e4562a;
  4501. }
  4502. .project-item {
  4503. h2 {
  4504. margin-top: 20px;
  4505. }
  4506. img {
  4507. width: 100%;
  4508. height: 280px;
  4509. object-fit: contain;
  4510. @media (max-width: 1199px) {
  4511. height: 220px;
  4512. }
  4513. @media (max-width: 991px) {
  4514. height: auto;
  4515. }
  4516. }
  4517. }
  4518. .ai-media {
  4519. margin: 60px auto 120px;
  4520. img {
  4521. width: 100%;
  4522. max-width: 500px;
  4523. }
  4524. .icon {
  4525. img {
  4526. width: 70px;
  4527. margin: 0 10px;
  4528. transition: all 0.3s;
  4529. &:hover {
  4530. opacity: 0.8;
  4531. }
  4532. @media (max-width: 767px) {
  4533. width: 55px;
  4534. }
  4535. }
  4536. }
  4537. }
  4538. .google-maps {
  4539. display: block;
  4540. position: relative;
  4541. overflow: hidden;
  4542. height: 0;
  4543. padding: 0;
  4544. padding-bottom: 50%;
  4545. iframe {
  4546. position: absolute;
  4547. top: 0;
  4548. left: 0;
  4549. width: 100% !important;
  4550. height: 100% !important;
  4551. }
  4552. }
  4553. .progress-item {
  4554. opacity: 0; // 動態顯示
  4555. height: 100%;
  4556. position: fixed;
  4557. z-index: 100;
  4558. top: 0;
  4559. transition: all 0.3s;
  4560. @media (max-width: 991px) {
  4561. display: none;
  4562. }
  4563. .cont {
  4564. top: 50%;
  4565. left: -235px;
  4566. position: absolute;
  4567. transform: rotate(90deg);
  4568. @media (max-width: 1199px) {
  4569. left: -240px;
  4570. }
  4571. @media (max-width: 991px) {
  4572. left: -150px;
  4573. }
  4574. #progress-bar {
  4575. appearance: none;
  4576. width: 520px;
  4577. color: #000;
  4578. height: 2px;
  4579. margin: -2px auto;
  4580. @media (max-width: 991px) {
  4581. margin: -1px auto;
  4582. }
  4583. }
  4584. span {
  4585. height: 15px;
  4586. width: 15px;
  4587. border-radius: 100%;
  4588. border: 3px solid #a5a7a9;
  4589. background: #a5a7a9;
  4590. position: absolute;
  4591. left: 0;
  4592. top: 12px;
  4593. cursor: pointer;
  4594. transition: all 0.3s ease-in-out;
  4595. @media (max-width: 991px) {
  4596. height: 12px;
  4597. width: 12px;
  4598. }
  4599. }
  4600. .progress-01 {
  4601. left: calc(520 / 7) + px;
  4602. }
  4603. .progress-02 {
  4604. left: calc(520 / 7 * 2) + px;
  4605. }
  4606. .progress-03 {
  4607. left: calc(520 / 7 * 3) + px;
  4608. }
  4609. .progress-04 {
  4610. left: calc(520 / 7 * 4) + px;
  4611. }
  4612. .progress-05 {
  4613. left: calc(520 / 7 * 5) + px;
  4614. }
  4615. .progress-06 {
  4616. left: calc(520 / 7 * 6) + px;
  4617. }
  4618. .progress-07 {
  4619. left: calc(520 / 7 * 7) + px;
  4620. }
  4621. // .progress-08 {
  4622. // left: calc(420 / 8 * 8) + px;
  4623. // }
  4624. #progress-bar::-webkit-progress-value {
  4625. /* Changes line color */
  4626. background: #ea5413;
  4627. transition: all 0.3s ease-in-out;
  4628. }
  4629. #progress-bar::-webkit-progress-bar {
  4630. /* Changes background color */
  4631. background: #a5a7a9;
  4632. }
  4633. .border-change {
  4634. background: #ea5413;
  4635. border-color: #ea5413;
  4636. transition: all 0.3s ease-in-out;
  4637. }
  4638. }
  4639. }
  4640. }
  4641. /* aboutus End */
  4642. /* carousel Start */
  4643. .carousel-wrapper {
  4644. max-width: 70vw;
  4645. margin: auto;
  4646. position: relative;
  4647. @media (max-width: 767px) {
  4648. max-width: 100vw;
  4649. }
  4650. .carousel {
  4651. position: relative;
  4652. .wrapper {
  4653. position: relative;
  4654. background-image: url("/imgs/home/banner-01.jpg");
  4655. background-size: cover;
  4656. background-repeat: no-repeat;
  4657. .video-wrapper {
  4658. position: absolute;
  4659. padding-bottom: 20%;
  4660. padding-top: 25px;
  4661. height: 0;
  4662. width: 39%;
  4663. top: 42%;
  4664. left: 13%;
  4665. iframe {
  4666. position: absolute;
  4667. top: 0;
  4668. left: 0;
  4669. width: 100%;
  4670. height: 100%;
  4671. }
  4672. &.e-win {
  4673. left: 28%;
  4674. padding-bottom: 25%;
  4675. width: 48%;
  4676. @media (max-width: 1199px) {
  4677. padding-bottom: 22%;
  4678. width: 46%;
  4679. }
  4680. @media (max-width: 575px) {
  4681. padding-bottom: 16%;
  4682. width: 40%;
  4683. top: 45%;
  4684. }
  4685. }
  4686. }
  4687. }
  4688. .lang {
  4689. position: absolute;
  4690. }
  4691. .frame-item {
  4692. position: absolute;
  4693. top: 42%;
  4694. left: 38vw;
  4695. @media (max-width: 767px) {
  4696. top: 5%;
  4697. left: unset;
  4698. right: 3vw;
  4699. }
  4700. select {
  4701. padding: 8px 20px;
  4702. border-radius: 8px;
  4703. @media (max-width: 1199px) {
  4704. padding: 2px 0px;
  4705. }
  4706. }
  4707. }
  4708. .toggle-video {
  4709. position: absolute;
  4710. top: 42%;
  4711. left: 4.5vw;
  4712. z-index: 100;
  4713. @media (max-width: 1199px) {
  4714. top: 33%;
  4715. left: 3vw;
  4716. }
  4717. @media (max-width: 575px) {
  4718. top: 31%;
  4719. }
  4720. }
  4721. .person-img {
  4722. width: 25vw;
  4723. position: absolute;
  4724. bottom: 0;
  4725. left: 43vw;
  4726. z-index: 100;
  4727. @media (max-width: 767px) {
  4728. width: 35vw;
  4729. left: 57vw;
  4730. }
  4731. }
  4732. .player-item {
  4733. top: 15vw;
  4734. left: 6vw;
  4735. &,
  4736. .poster {
  4737. width: 35vw;
  4738. height: 20vw;
  4739. @media (max-width: 767px) {
  4740. width: 45vw;
  4741. height: 25vw;
  4742. }
  4743. }
  4744. @media (max-width: 767px) {
  4745. top: 22vw;
  4746. left: 10vw;
  4747. }
  4748. .poster {
  4749. background-image: url("/imgs/home/video-img.png");
  4750. }
  4751. }
  4752. .ewin-player-item {
  4753. top: 42%;
  4754. right: 23%;
  4755. &,
  4756. .ewin {
  4757. width: 35vw;
  4758. height: 20vw;
  4759. @media (max-width: 767px) {
  4760. width: 44vw;
  4761. height: 25vw;
  4762. }
  4763. }
  4764. .ewin {
  4765. background-image: url("/imgs/home/影片封面-11.webp");
  4766. }
  4767. }
  4768. .cts-player-item {
  4769. top: 42%;
  4770. right: 23%;
  4771. &,
  4772. .cts {
  4773. width: 35vw;
  4774. height: 20vw;
  4775. @media (max-width: 767px) {
  4776. width: 44vw;
  4777. height: 25vw;
  4778. }
  4779. }
  4780. .cts {
  4781. background-image: url("/imgs/home/亞錦賽-08.webp");
  4782. }
  4783. }
  4784. .cts-player-item,
  4785. .player-item,
  4786. .ewin-player-item {
  4787. position: absolute;
  4788. opacity: 0;
  4789. iframe {
  4790. width: 100%;
  4791. height: 100%;
  4792. }
  4793. .poster,
  4794. .ewin,
  4795. .cts {
  4796. background-size: cover;
  4797. position: absolute;
  4798. top: 0;
  4799. left: 0;
  4800. z-index: 1;
  4801. cursor: pointer;
  4802. }
  4803. }
  4804. }
  4805. }
  4806. /* carousel End */
  4807. /* news-content Start */
  4808. .news-content {
  4809. margin: 150px auto;
  4810. #categories {
  4811. padding: 0;
  4812. list-style: none;
  4813. display: flex;
  4814. margin-bottom: 25px;
  4815. li {
  4816. margin-right: 15px;
  4817. }
  4818. button {
  4819. // padding: 5px 30px;
  4820. margin-right: 10px;
  4821. border: 1px solid #ea5413;
  4822. border-radius: 0.5rem;
  4823. background-color: #fff;
  4824. transition: all 0.3s;
  4825. &:hover {
  4826. opacity: 0.8;
  4827. }
  4828. a {
  4829. display: block;
  4830. padding: 5px 30px;
  4831. color: #ea5413;
  4832. font-weight: bold;
  4833. text-decoration: none;
  4834. }
  4835. }
  4836. .active {
  4837. background-color: #ea5413 !important;
  4838. a {
  4839. color: #fff !important;
  4840. }
  4841. }
  4842. }
  4843. .list {
  4844. padding: 0;
  4845. list-style: none;
  4846. a {
  4847. text-decoration: none;
  4848. transition: all 0.3s;
  4849. &:hover {
  4850. opacity: 0.8;
  4851. }
  4852. }
  4853. li {
  4854. padding: 30px 50px;
  4855. border: 1px solid #cccccc;
  4856. border-radius: 20px;
  4857. margin-bottom: 30px;
  4858. hr {
  4859. height: 2px;
  4860. margin: 10px 0;
  4861. color: #ea5413;
  4862. }
  4863. h2 {
  4864. color: #000;
  4865. font-weight: bold;
  4866. text-align: center;
  4867. margin-bottom: 20px;
  4868. }
  4869. section {
  4870. p {
  4871. font-weight: bold;
  4872. &:first-child {
  4873. color: #ea5413;
  4874. }
  4875. &:last-child {
  4876. color: #757575;
  4877. }
  4878. }
  4879. }
  4880. .content {
  4881. color: #757575;
  4882. overflow: hidden;
  4883. text-overflow: ellipsis;
  4884. display: -webkit-box;
  4885. -webkit-box-orient: vertical;
  4886. -webkit-line-clamp: 3;
  4887. box-sizing: border-box;
  4888. }
  4889. .more-btn {
  4890. display: flex;
  4891. justify-content: end;
  4892. margin-top: 30px;
  4893. a {
  4894. padding: 5px 20px;
  4895. border-radius: 10px;
  4896. color: #000;
  4897. background-color: #e1e1e1;
  4898. transition: all 0.3s;
  4899. &:hover {
  4900. opacity: 0.8;
  4901. }
  4902. }
  4903. }
  4904. }
  4905. }
  4906. }
  4907. .news-main-content {
  4908. margin: 75px auto;
  4909. line-height: 32px;
  4910. @media (max-width: 991px) {
  4911. margin: 65px auto;
  4912. }
  4913. h1 {
  4914. position: relative;
  4915. text-align: center;
  4916. font-weight: bold;
  4917. background: url(https://i.imgur.com/N7tVTSh.png);
  4918. padding: 70px;
  4919. background-position: center;
  4920. background-repeat: no-repeat;
  4921. background-size: cover;
  4922. line-height: 1.5;
  4923. font-size: 2rem;
  4924. @media (max-width: 767px) {
  4925. padding: 40px 20px 60px;
  4926. font-size: 1.125rem;
  4927. background-position: initial;
  4928. }
  4929. &::after {
  4930. position: absolute;
  4931. width: 6rem;
  4932. height: 0.3rem;
  4933. top: 80%;
  4934. left: 45%;
  4935. content: "";
  4936. background-color: #ea5413;
  4937. @media (max-width: 767px) {
  4938. height: 0.2rem;
  4939. top: 75%;
  4940. left: 40%;
  4941. }
  4942. }
  4943. }
  4944. h2 {
  4945. padding-left: 20px;
  4946. margin: 30px 0;
  4947. font-size: 1.8rem;
  4948. font-weight: bold;
  4949. border-left: 4px solid #ea5413;
  4950. letter-spacing: 2px;
  4951. @media (max-width: 767px) {
  4952. font-size: 1.4rem;
  4953. }
  4954. }
  4955. h3 {
  4956. strong {
  4957. letter-spacing: 2px;
  4958. }
  4959. }
  4960. p {
  4961. font-size: 16px;
  4962. margin-bottom: 50px;
  4963. }
  4964. img {
  4965. width: 100%;
  4966. max-width: 1050px;
  4967. margin: 10px 0;
  4968. }
  4969. .align-text-top {
  4970. width: 185px;
  4971. }
  4972. .video-box {
  4973. width: 100%;
  4974. padding-bottom: 56%;
  4975. // iframe {
  4976. // top: 10% !important;
  4977. // width: 80% !important;
  4978. // height: 80% !important;
  4979. // }
  4980. }
  4981. .list-link {
  4982. display: block;
  4983. margin-top: 50px;
  4984. text-align: center;
  4985. color: #ea5413;
  4986. font-weight: bold;
  4987. text-decoration: none;
  4988. }
  4989. .container {
  4990. max-width: 50%;
  4991. @media (max-width: 991px) {
  4992. max-width: 90%;
  4993. }
  4994. }
  4995. .link-btn {
  4996. display: block;
  4997. padding: 6px 20px;
  4998. font-size: 16px;
  4999. font-weight: bold;
  5000. border-radius: 100px;
  5001. text-decoration: none;
  5002. color: #fff;
  5003. background: #ea5413;
  5004. transition: all 0.3s;
  5005. border: none;
  5006. &:hover {
  5007. opacity: 0.8;
  5008. }
  5009. a {
  5010. color: #fff;
  5011. text-decoration: none;
  5012. }
  5013. }
  5014. }
  5015. .news-form {
  5016. padding: 50px;
  5017. margin: 50px auto;
  5018. border-radius: 10px;
  5019. box-shadow: 0 2px 10px 2px rgb(222, 220, 220);
  5020. font-size: 14px;
  5021. @media (max-width: 575px) {
  5022. padding: 50px 30px;
  5023. }
  5024. p {
  5025. font-size: 14px;
  5026. }
  5027. form {
  5028. margin: auto;
  5029. max-width: 600px;
  5030. }
  5031. .form-control,
  5032. .form-select {
  5033. font-size: 14px;
  5034. }
  5035. .title {
  5036. margin-bottom: 50px;
  5037. h4 {
  5038. margin-bottom: 10px;
  5039. font-size: 32px;
  5040. font-weight: bold;
  5041. }
  5042. p {
  5043. margin-bottom: 30px;
  5044. }
  5045. }
  5046. .submit-btn {
  5047. margin-top: 50px;
  5048. }
  5049. }
  5050. .submit-btn {
  5051. padding: 5px 40px;
  5052. display: inline-block;
  5053. color: #fff;
  5054. background-color: #ea5413;
  5055. border: 1px solid #ea5413;
  5056. border-radius: 5px;
  5057. text-decoration: none;
  5058. transition: all 0.3s;
  5059. font-size: 16px;
  5060. &:hover {
  5061. opacity: 0.8;
  5062. color: #fff;
  5063. }
  5064. }
  5065. #iframe-content {
  5066. width: 80px;
  5067. height: 80px;
  5068. // width: 375px;
  5069. // height: 650px;
  5070. position: fixed;
  5071. bottom: 5px;
  5072. right: 3px;
  5073. border: none;
  5074. z-index: 5000;
  5075. overflow: hidden;
  5076. }
  5077. /* news-content End */
  5078. .line-btn {
  5079. a {
  5080. position: fixed;
  5081. bottom: 85px;
  5082. right: 20px;
  5083. }
  5084. img {
  5085. width: 60px;
  5086. height: 60px;
  5087. transition: all 0.2s ease-in-out;
  5088. &:hover {
  5089. width: 68px;
  5090. height: 68px;
  5091. }
  5092. }
  5093. }
  5094. .embed-ai-btn {
  5095. position: fixed;
  5096. right: 16px;
  5097. bottom: 158px;
  5098. width: 100%;
  5099. height: 100%;
  5100. z-index: 1000;
  5101. }
  5102. .privacy-consent {
  5103. max-width: 500px;
  5104. padding: 25px 50px;
  5105. display: flex;
  5106. flex-direction: column;
  5107. align-items: center;
  5108. background-color: #fff;
  5109. border-radius: 5px;
  5110. box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
  5111. position: fixed;
  5112. bottom: 25px;
  5113. left: 25px;
  5114. z-index: 999;
  5115. a {
  5116. font-weight: bold;
  5117. border-bottom: 1px solid #000;
  5118. transition: all 0.2s;
  5119. &:hover {
  5120. opacity: 0.8;
  5121. }
  5122. }
  5123. button {
  5124. padding: 7px 30px;
  5125. display: inlinsolution-linke-block;
  5126. color: #fff;
  5127. border: none;
  5128. border-radius: 5px;
  5129. background-color: #ea5413;
  5130. transition: all 0.2s;
  5131. &:hover {
  5132. opacity: 0.8;
  5133. }
  5134. }
  5135. }
  5136. .solution-accordion {
  5137. h2 {
  5138. margin: 0 !important;
  5139. button {
  5140. font-weight: bold;
  5141. }
  5142. }
  5143. ul {
  5144. padding-left: 0;
  5145. list-style: none;
  5146. }
  5147. li,
  5148. p {
  5149. margin-bottom: 10px;
  5150. }
  5151. .accordion-body {
  5152. padding: 20px 40px;
  5153. line-height: 2;
  5154. }
  5155. .accordion-item {
  5156. margin-bottom: 30px;
  5157. }
  5158. .accordion-button:not(.collapsed) {
  5159. color: #000;
  5160. background-color: transparent !important;
  5161. &::after {
  5162. filter: invert(32%) sepia(100%) saturate(1158%) hue-rotate(353deg) brightness(101%) contrast(96%);
  5163. }
  5164. }
  5165. .accordion-button:focus {
  5166. box-shadow: none;
  5167. }
  5168. .accordion-item:not(:first-of-type) {
  5169. border-top: 1px solid rgba(0, 0, 0, 0.125);
  5170. }
  5171. }
  5172. .ai-kiosk {
  5173. margin: 10rem auto 5rem;
  5174. @media (max-width: 991px) {
  5175. margin: 5rem auto;
  5176. }
  5177. .news-main-content {
  5178. margin-top: 0;
  5179. padding: 0 5rem;
  5180. h3 {
  5181. font-weight: bold;
  5182. margin-bottom: 2rem;
  5183. }
  5184. }
  5185. #form {
  5186. position: sticky;
  5187. top: 80px;
  5188. @media (max-width: 991px) {
  5189. width: 90vw;
  5190. margin: auto;
  5191. }
  5192. .news-form {
  5193. padding: 25px 50px;
  5194. margin-top: 0;
  5195. .title {
  5196. margin-bottom: 0;
  5197. h4 {
  5198. font-size: 28px;
  5199. }
  5200. }
  5201. .submit-btn {
  5202. margin-top: 20px;
  5203. }
  5204. }
  5205. .form-check-input {
  5206. margin-top: 0.3rem !important;
  5207. }
  5208. }
  5209. }
  5210. #video-editing,
  5211. #ai-virtual-star {
  5212. p,
  5213. li {
  5214. font-size: 1.25rem;
  5215. line-height: 2;
  5216. @media (max-width: 767px) {
  5217. font-size: 1rem;
  5218. }
  5219. }
  5220. .header {
  5221. padding: 3rem 0;
  5222. .cover-img {
  5223. width: 100%;
  5224. padding-bottom: 2rem;
  5225. }
  5226. .main {
  5227. p {
  5228. margin-bottom: 1.5rem;
  5229. text-align: center;
  5230. // font-weight: bold;
  5231. @media (max-width: 575px) {
  5232. font-size: 1rem;
  5233. }
  5234. }
  5235. }
  5236. h2,
  5237. h3 {
  5238. font-weight: bold;
  5239. margin-bottom: 1rem;
  5240. }
  5241. }
  5242. }
  5243. #ai-virtual-star {
  5244. overflow: hidden;
  5245. color: #fff;
  5246. background-color: #172228;
  5247. p,
  5248. li {
  5249. line-height: 2.5;
  5250. }
  5251. .cover-img {
  5252. width: 100vw;
  5253. margin-top: 75px;
  5254. object-fit: cover;
  5255. }
  5256. a {
  5257. color: #3cd3b9;
  5258. }
  5259. h2 {
  5260. font-size: 2.75rem;
  5261. line-height: 1.6;
  5262. @media (max-width: 1200px) {
  5263. font-size: 2rem;
  5264. }
  5265. @media (max-width: 575px) {
  5266. font-size: 1.75rem;
  5267. }
  5268. }
  5269. h3 {
  5270. font-size: 2.5rem;
  5271. line-height: 1.8;
  5272. @media (max-width: 1200px) {
  5273. font-size: 1.75rem;
  5274. }
  5275. @media (max-width: 575px) {
  5276. font-size: 1.5rem;
  5277. }
  5278. }
  5279. h4 {
  5280. font-weight: bold;
  5281. font-size: 1.75rem;
  5282. margin-bottom: 1.5rem;
  5283. line-height: 2;
  5284. @media (max-width: 575px) {
  5285. font-size: 1.5rem;
  5286. }
  5287. }
  5288. ul {
  5289. margin: 0;
  5290. padding: 0;
  5291. list-style: none;
  5292. li {
  5293. line-height: 2.5;
  5294. }
  5295. }
  5296. small {
  5297. font-size: 1rem;
  5298. }
  5299. .bg-1,
  5300. .bg-2 {
  5301. position: absolute;
  5302. opacity: 0.7;
  5303. }
  5304. .bg-1 {
  5305. max-width: 100%;
  5306. right: 0;
  5307. top: 170%;
  5308. @media (max-width: 575px) {
  5309. max-width: 180%;
  5310. }
  5311. }
  5312. .bg-2 {
  5313. max-width: 130%;
  5314. top: -15%;
  5315. left: -20%;
  5316. @media (max-width: 575px) {
  5317. max-width: 180%;
  5318. left: -60%;
  5319. }
  5320. }
  5321. .info {
  5322. padding: 2rem 4rem;
  5323. display: inline-block;
  5324. border-radius: 20px;
  5325. border: 4px solid #3cd3b9;
  5326. @media (max-width: 575px) {
  5327. padding: 2rem;
  5328. }
  5329. h4 {
  5330. text-align: center;
  5331. }
  5332. }
  5333. .line-bottom {
  5334. padding-bottom: 1rem;
  5335. border-bottom: 2px solid #3cd3b9;
  5336. @media (max-width: 991px) {
  5337. border-bottom: none;
  5338. }
  5339. }
  5340. .line-item {
  5341. border-left: 2px solid #3cd3b9;
  5342. @media (max-width: 991px) {
  5343. border-left: none;
  5344. }
  5345. }
  5346. .title {
  5347. text-align: center;
  5348. color: #3cd3b9;
  5349. letter-spacing: 1px;
  5350. }
  5351. .sign-up-btn {
  5352. width: 365px;
  5353. text-align: center;
  5354. display: block;
  5355. margin: 3rem auto;
  5356. padding: 1rem 3rem;
  5357. border-radius: 10px;
  5358. font-size: 1.5rem;
  5359. font-weight: bold;
  5360. color: #fff;
  5361. background-color: #3cd3b9;
  5362. text-decoration: none;
  5363. transition: all 0.3s;
  5364. &:hover {
  5365. opacity: 0.8;
  5366. }
  5367. @media (max-width: 575px) {
  5368. width: 330px;
  5369. font-size: 1.25rem;
  5370. }
  5371. }
  5372. .activity-info {
  5373. height: 0;
  5374. opacity: 0;
  5375. overflow: hidden;
  5376. transition:
  5377. height 1.5s ease,
  5378. opacity 1.5s ease;
  5379. &.active {
  5380. height: auto;
  5381. opacity: 1;
  5382. }
  5383. }
  5384. .activity-btn {
  5385. width: 365px;
  5386. padding: 1rem 3rem;
  5387. background-color: transparent;
  5388. border-radius: 5px;
  5389. border: none;
  5390. box-shadow: 0px 0px 10px #3cd3b9;
  5391. text-align: center;
  5392. @media (max-width: 575px) {
  5393. width: 330px;
  5394. }
  5395. span {
  5396. color: #fff;
  5397. font-size: 1.5rem;
  5398. font-weight: bold;
  5399. @media (max-width: 575px) {
  5400. font-size: 1.25rem;
  5401. }
  5402. }
  5403. }
  5404. .arrow-wave {
  5405. span {
  5406. display: block;
  5407. position: relative;
  5408. height: 19px;
  5409. width: 30px;
  5410. /* background-color: rgba(100, 100, 100, 0.4); */
  5411. opacity: 0.2;
  5412. &::before,
  5413. &::after {
  5414. display: block;
  5415. content: "";
  5416. position: absolute;
  5417. height: 4px;
  5418. width: 23px;
  5419. background-color: #fff;
  5420. transition: transform 0.3s ease;
  5421. }
  5422. &::before {
  5423. top: -2px;
  5424. left: 0;
  5425. transform-origin: left center;
  5426. transform: rotate(45deg);
  5427. }
  5428. &::after {
  5429. top: -2px;
  5430. right: 0;
  5431. transform-origin: right center;
  5432. transform: rotate(-45deg);
  5433. }
  5434. &:nth-child(1n) {
  5435. animation: animate-arrow-wave 2s infinite;
  5436. animation-delay: 0.25s;
  5437. }
  5438. &:nth-child(2n) {
  5439. animation: animate-arrow-wave 2s infinite;
  5440. animation-delay: 0.5s;
  5441. }
  5442. &:nth-child(3n) {
  5443. animation: animate-arrow-wave 2s infinite;
  5444. animation-delay: 0.75s;
  5445. }
  5446. }
  5447. &.active {
  5448. span {
  5449. bottom: -15px;
  5450. &::before {
  5451. transform: rotate(-45deg); // 向上箭頭
  5452. }
  5453. &::after {
  5454. transform: rotate(45deg); // 向上箭頭
  5455. }
  5456. }
  5457. }
  5458. }
  5459. @keyframes animate-arrow-wave {
  5460. 0%,
  5461. 25%,
  5462. 50% {
  5463. opacity: 0.2;
  5464. }
  5465. 75% {
  5466. opacity: 1;
  5467. }
  5468. 100% {
  5469. opacity: 0.2;
  5470. }
  5471. }
  5472. #form {
  5473. margin: 0 0.5rem;
  5474. .news-form {
  5475. color: #000;
  5476. background-color: #fff;
  5477. .title {
  5478. color: #000;
  5479. }
  5480. }
  5481. }
  5482. }