style.scss 116 KB

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