style.scss 108 KB

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