style.scss 116 KB

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