style.scss 105 KB

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