style.scss 113 KB

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