style.scss 105 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655
  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-top: 120px;
  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: 16px 60px;
  3923. margin: 2rem auto 3rem;
  3924. font-size: 26px;
  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: 30vw;
  3938. @media (max-width: 991px) {
  3939. max-width: 100%;
  3940. }
  3941. }
  3942. p {
  3943. margin: 0 1rem;
  3944. font-size: 2rem;
  3945. @media (max-width: 991px) {
  3946. transform: rotate(90deg);
  3947. }
  3948. }
  3949. }
  3950. table {
  3951. width: 100%;
  3952. border-collapse: collapse;
  3953. border: 1px solid #ccc;
  3954. font-size: 1rem;
  3955. letter-spacing: 1px;
  3956. tbody {
  3957. vertical-align: top;
  3958. }
  3959. th {
  3960. text-align: center;
  3961. }
  3962. th,
  3963. td {
  3964. border: 1px solid #ccc;
  3965. padding: 20px;
  3966. p,
  3967. ul {
  3968. margin-bottom: 0;
  3969. }
  3970. }
  3971. }
  3972. .iframe-box {
  3973. width: 100%;
  3974. margin-bottom: 15px;
  3975. padding-top: 5px;
  3976. overflow: hidden;
  3977. iframe {
  3978. width: 100%;
  3979. height: auto;
  3980. aspect-ratio: 16 / 9;
  3981. }
  3982. }
  3983. .terms-content {
  3984. font-weight: bold;
  3985. line-height: 32px;
  3986. color: #6c6d70;
  3987. text-align: justify;
  3988. ul {
  3989. padding: 0;
  3990. list-style: none;
  3991. li::before {
  3992. content: "";
  3993. font-weight: bold;
  3994. display: inline-block;
  3995. border: 3px solid #ea5413;
  3996. border-radius: 20px;
  3997. margin-right: 10px;
  3998. margin-bottom: 2px;
  3999. line-height: 32px;
  4000. }
  4001. }
  4002. }
  4003. /* 舊版 */
  4004. // .title-item {
  4005. // display: flex;
  4006. // flex-direction: column;
  4007. // justify-content: center;
  4008. // align-items: center;
  4009. // position: relative;
  4010. // img {
  4011. // width: 450px;
  4012. // @media (max-width: 575px) {
  4013. // width: 350px;
  4014. // }
  4015. // }
  4016. // h4 {
  4017. // text-align: center;
  4018. // margin-top: -41px;
  4019. // margin-left: -10px;
  4020. // font-weight: bold;
  4021. // @media (max-width: 575px) {
  4022. // margin-top: -34px;
  4023. // }
  4024. // }
  4025. // }
  4026. // .usecace-list {
  4027. // margin-bottom: 100px;
  4028. // img {
  4029. // width: 100%;
  4030. // }
  4031. // h5 {
  4032. // font-size: 18px;
  4033. // text-align: center;
  4034. // &::before {
  4035. // content: "";
  4036. // font-weight: bold;
  4037. // display: inline-block;
  4038. // border: 5px solid #e0c3dd;
  4039. // border-radius: 20px;
  4040. // margin-right: 10px;
  4041. // margin-bottom: 2px;
  4042. // }
  4043. // }
  4044. // }
  4045. // .video-left,
  4046. // .video-right {
  4047. // display: flex;
  4048. // flex-direction: column;
  4049. // align-items: center;
  4050. // justify-content: center;
  4051. // position: relative;
  4052. // padding: 20px;
  4053. // background: #d8bbd9;
  4054. // border-radius: 20px;
  4055. // a {
  4056. // display: flex;
  4057. // width: 100%;
  4058. // text-decoration: none;
  4059. // color: #000;
  4060. // &:hover .click-img {
  4061. // top: 50px;
  4062. // }
  4063. // }
  4064. // .click-img {
  4065. // position: absolute;
  4066. // width: 50px;
  4067. // top: 60px;
  4068. // right: 40px;
  4069. // }
  4070. // strong {
  4071. // width: 100%;
  4072. // padding: 20px;
  4073. // font-size: 24px;
  4074. // text-align: center;
  4075. // background: #fff;
  4076. // border-radius: 15px 15px 0 0;
  4077. // }
  4078. // .video-box {
  4079. // width: 100%;
  4080. // margin-top: 20px;
  4081. // padding-bottom: 45%;
  4082. // }
  4083. // }
  4084. // .video-left {
  4085. // background: #d8bbd9;
  4086. // }
  4087. // .video-right {
  4088. // background: #fde3d9;
  4089. // }
  4090. // .mp4-box {
  4091. // width: 70%;
  4092. // height: 0;
  4093. // margin: auto;
  4094. // padding-bottom: 45%;
  4095. // video {
  4096. // width: 100%;
  4097. // height: auto;
  4098. // }
  4099. // }
  4100. // .step-content,
  4101. // .template-content {
  4102. // margin: 100px auto;
  4103. // position: relative;
  4104. // .container {
  4105. // margin-top: -38px;
  4106. // }
  4107. // .bg-top,
  4108. // .bg-bottom {
  4109. // width: 100%;
  4110. // position: absolute;
  4111. // z-index: -10;
  4112. // left: 0;
  4113. // right: 0;
  4114. // }
  4115. // .bg-top {
  4116. // top: -10px;
  4117. // }
  4118. // .bg-bottom {
  4119. // bottom: -10px;
  4120. // }
  4121. // ul {
  4122. // padding: 0;
  4123. // list-style: none;
  4124. // display: flex;
  4125. // flex-direction: column;
  4126. // justify-content: center;
  4127. // li {
  4128. // margin: 30px auto;
  4129. // img {
  4130. // height: auto;
  4131. // width: 100%;
  4132. // max-width: 800px;
  4133. // }
  4134. // h4 {
  4135. // color: #ea5413;
  4136. // font-weight: bold;
  4137. // text-align: center;
  4138. // line-height: 34px;
  4139. // @media (max-width: 575px) {
  4140. // font-size: 20px;
  4141. // }
  4142. // }
  4143. // .point-list {
  4144. // list-style: decimal;
  4145. // li {
  4146. // margin: 5px 45px;
  4147. // @media (max-width: 575px) {
  4148. // margin: 5px 0 5px 20px;
  4149. // }
  4150. // // &::before {
  4151. // // content: "";
  4152. // // font-weight: bold;
  4153. // // display: inline-block;
  4154. // // border: 3px solid #ea5413;
  4155. // // border-radius: 20px;
  4156. // // margin-right: 10px;
  4157. // // margin-bottom: 2px;
  4158. // // }
  4159. // }
  4160. // }
  4161. // }
  4162. // }
  4163. // .excerpt {
  4164. // margin: 15px 25px 0;
  4165. // font-size: 18px;
  4166. // font-weight: bold;
  4167. // &::before {
  4168. // content: "";
  4169. // font-weight: bold;
  4170. // display: inline-block;
  4171. // border: 5px solid #ea5413;
  4172. // border-radius: 20px;
  4173. // margin-right: 10px;
  4174. // margin-bottom: 2px;
  4175. // }
  4176. // @media (max-width: 575px) {
  4177. // font-size: 16px;
  4178. // }
  4179. // }
  4180. // .caption {
  4181. // @media (max-width: 575px) {
  4182. // font-size: 15px;
  4183. // }
  4184. // }
  4185. // }
  4186. // .template-content {
  4187. // table {
  4188. // display: table;
  4189. // width: 110%;
  4190. // height: auto;
  4191. // margin-left: auto;
  4192. // margin-top: -250px;
  4193. // font-weight: bold;
  4194. // @media (max-width: 1199px) {
  4195. // margin-top: -195px;
  4196. // }
  4197. // @media (max-width: 991px) {
  4198. // margin-top: -140px;
  4199. // }
  4200. // @media (max-width: 767px) {
  4201. // width: 86%;
  4202. // margin-top: 20px;
  4203. // margin-left: 39px;
  4204. // }
  4205. // @media (max-width: 575px) {
  4206. // margin: 20px auto 0;
  4207. // margin-left: auto;
  4208. // }
  4209. // tbody {
  4210. // border: 1px solid #f08757;
  4211. // }
  4212. // td {
  4213. // text-align: center;
  4214. // }
  4215. // tr {
  4216. // border-style: none !important;
  4217. // border-bottom-width: 0px !important;
  4218. // }
  4219. // }
  4220. // .table-title {
  4221. // margin-top: -242px;
  4222. // text-align: end;
  4223. // @media (max-width: 1199px) {
  4224. // margin-top: -185px;
  4225. // }
  4226. // @media (max-width: 991px) {
  4227. // margin-top: -133px;
  4228. // }
  4229. // @media (max-width: 767px) {
  4230. // margin-top: 0;
  4231. // text-align: start;
  4232. // }
  4233. // }
  4234. // .table-striped>tbody>tr:nth-child(odd)>td,
  4235. // .table-striped>tbody>tr:nth-child(odd)>th {
  4236. // box-shadow: none;
  4237. // background-color: #fdeae1;
  4238. // border-bottom-width: 0px !important;
  4239. // }
  4240. // .table-striped>tbody>tr:nth-child(even)>td,
  4241. // .table-striped>tbody>tr:nth-child(even)>th {
  4242. // border-bottom-width: 0px !important;
  4243. // }
  4244. // .info {
  4245. // img {
  4246. // height: auto;
  4247. // width: 100%;
  4248. // max-width: 800px;
  4249. // }
  4250. // .img-left {
  4251. // @media (max-width: 767px) {
  4252. // padding: 0 15px;
  4253. // }
  4254. // }
  4255. // .img-right {
  4256. // width: 107%;
  4257. // @media (max-width: 767px) {
  4258. // width: 100%;
  4259. // }
  4260. // }
  4261. // .img-text-left,
  4262. // .img-text-right {
  4263. // position: absolute;
  4264. // top: 9%;
  4265. // color: #ea5413;
  4266. // font-size: 34px;
  4267. // font-weight: bold;
  4268. // @media (max-width: 1199px) {
  4269. // top: 8%;
  4270. // font-size: 28px;
  4271. // }
  4272. // @media (max-width: 991px) {
  4273. // font-size: 22px;
  4274. // }
  4275. // @media (max-width: 767px) {
  4276. // font-size: 30px;
  4277. // }
  4278. // @media (max-width: 575px) {
  4279. // font-size: 4.8vw;
  4280. // }
  4281. // }
  4282. // .img-text-left {
  4283. // left: 31%;
  4284. // @media (max-width: 1400px) {
  4285. // left: 28.5%;
  4286. // }
  4287. // @media (max-width: 767px) {
  4288. // left: 30%;
  4289. // }
  4290. // }
  4291. // .img-text-right {
  4292. // left: 24.5%;
  4293. // @media (max-width: 1400px) {
  4294. // left: 20.5%;
  4295. // }
  4296. // @media (max-width: 991px) {
  4297. // left: 18.5%;
  4298. // }
  4299. // @media (max-width: 767px) {
  4300. // top: 13%;
  4301. // left: 19%;
  4302. // }
  4303. // }
  4304. // .video-box {
  4305. // position: relative;
  4306. // width: 95%;
  4307. // height: 0;
  4308. // padding-bottom: 50%;
  4309. // margin: auto;
  4310. // }
  4311. // }
  4312. // .pageForm {
  4313. // margin-top: 8rem;
  4314. // background: #fff;
  4315. // h3 {
  4316. // line-height: 40px;
  4317. // }
  4318. // }
  4319. // }
  4320. // .sec-blogtab {
  4321. // padding-top: 50px;
  4322. // }
  4323. }
  4324. /* ai-presenter End */
  4325. /* sec-blogtab Start */
  4326. .sec-blogtab {
  4327. padding-top: 100px;
  4328. padding-bottom: 5rem;
  4329. margin: 0 auto 50px;
  4330. @media (max-width: 991px) {
  4331. padding-top: 0;
  4332. }
  4333. .blog-txt {
  4334. font-size: 16px;
  4335. p {
  4336. line-height: 32px;
  4337. letter-spacing: 1px;
  4338. }
  4339. }
  4340. .btn-light {
  4341. margin-top: 4rem;
  4342. padding: 1rem 2.5rem;
  4343. transition: all 0.3s;
  4344. outline: none;
  4345. font-size: 16px;
  4346. letter-spacing: 1px;
  4347. text-decoration: none;
  4348. background-color: white;
  4349. border: 1px solid #ea5413;
  4350. border-radius: 3rem;
  4351. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  4352. }
  4353. .blog-tabs {
  4354. .blog-tabs-nav {
  4355. @media (max-width: 767px) {
  4356. padding: 1rem 2rem 3rem;
  4357. }
  4358. }
  4359. }
  4360. .blog-tabs-nav {
  4361. a {
  4362. transition: all 0.3s;
  4363. text-decoration: none;
  4364. &:hover {
  4365. opacity: 0.8;
  4366. }
  4367. }
  4368. }
  4369. }
  4370. .blogtab-title {
  4371. display: inline-block;
  4372. margin-bottom: 30px;
  4373. padding-bottom: 10px;
  4374. font-size: 30px;
  4375. font-weight: bold;
  4376. text-align: center;
  4377. letter-spacing: 1px;
  4378. border-bottom: 6px solid #ea5413;
  4379. }
  4380. /* sec-blogtab End */
  4381. /* aboutus Start */
  4382. .about-header {
  4383. position: relative;
  4384. img {
  4385. width: 100%;
  4386. height: 500px;
  4387. object-fit: cover;
  4388. }
  4389. section {
  4390. width: 100%;
  4391. position: absolute;
  4392. top: 200px;
  4393. color: #fff;
  4394. @media (max-width: 767px) {
  4395. top: 170px;
  4396. }
  4397. @media (max-width: 575px) {
  4398. top: 120px;
  4399. }
  4400. h2 {
  4401. color: #fff;
  4402. font-size: 2.8rem;
  4403. @media (max-width: 575px) {
  4404. font-size: 2.2rem;
  4405. }
  4406. }
  4407. p {
  4408. margin: auto;
  4409. max-width: 900px;
  4410. font-size: 18px;
  4411. line-height: 32px;
  4412. @media (max-width: 767px) {
  4413. max-width: 515px;
  4414. }
  4415. @media (max-width: 575px) {
  4416. font-size: 16px;
  4417. max-width: 300px;
  4418. }
  4419. }
  4420. }
  4421. }
  4422. .about-content {
  4423. padding: 0;
  4424. h2 {
  4425. font-size: 26px;
  4426. font-weight: bold;
  4427. line-height: 38px;
  4428. text-align: center;
  4429. color: #6d6d6d;
  4430. @media (max-width: 1199px) {
  4431. font-size: 22px;
  4432. }
  4433. @media (max-width: 767px) {
  4434. font-size: 18px;
  4435. line-height: 30px;
  4436. }
  4437. @media (max-width: 575px) {
  4438. font-size: 16px;
  4439. }
  4440. small {
  4441. font-size: 20px;
  4442. @media (max-width: 767px) {
  4443. font-size: 16px;
  4444. }
  4445. @media (max-width: 575px) {
  4446. font-size: 14px;
  4447. line-height: 26px;
  4448. }
  4449. }
  4450. }
  4451. h5 {
  4452. font-size: 18px;
  4453. line-height: 40px;
  4454. color: #656565;
  4455. @media (max-width: 767px) {
  4456. font-size: 16px;
  4457. line-height: 32px;
  4458. }
  4459. }
  4460. .line {
  4461. height: 8px;
  4462. width: 90px;
  4463. display: block;
  4464. margin: 70px auto;
  4465. background-color: #e4562a;
  4466. }
  4467. .project-item {
  4468. h2 {
  4469. margin-top: 20px;
  4470. }
  4471. img {
  4472. width: 100%;
  4473. height: 280px;
  4474. object-fit: contain;
  4475. @media (max-width: 1199px) {
  4476. height: 220px;
  4477. }
  4478. @media (max-width: 991px) {
  4479. height: auto;
  4480. }
  4481. }
  4482. }
  4483. .ai-media {
  4484. margin: 60px auto 120px;
  4485. img {
  4486. width: 100%;
  4487. max-width: 500px;
  4488. }
  4489. .icon {
  4490. img {
  4491. width: 70px;
  4492. margin: 0 10px;
  4493. transition: all 0.3s;
  4494. &:hover {
  4495. opacity: 0.8;
  4496. }
  4497. @media (max-width: 767px) {
  4498. width: 55px;
  4499. }
  4500. }
  4501. }
  4502. }
  4503. .google-maps {
  4504. display: block;
  4505. position: relative;
  4506. overflow: hidden;
  4507. height: 0;
  4508. padding: 0;
  4509. padding-bottom: 50%;
  4510. iframe {
  4511. position: absolute;
  4512. top: 0;
  4513. left: 0;
  4514. width: 100% !important;
  4515. height: 100% !important;
  4516. }
  4517. }
  4518. .progress-item {
  4519. opacity: 0; // 動態顯示
  4520. height: 100%;
  4521. position: fixed;
  4522. z-index: 100;
  4523. top: 0;
  4524. transition: all 0.3s;
  4525. @media (max-width: 991px) {
  4526. display: none;
  4527. }
  4528. .cont {
  4529. top: 50%;
  4530. left: -235px;
  4531. position: absolute;
  4532. transform: rotate(90deg);
  4533. @media (max-width: 1199px) {
  4534. left: -240px;
  4535. }
  4536. @media (max-width: 991px) {
  4537. left: -150px;
  4538. }
  4539. #progress-bar {
  4540. appearance: none;
  4541. width: 520px;
  4542. color: #000;
  4543. height: 2px;
  4544. margin: -2px auto;
  4545. @media (max-width: 991px) {
  4546. margin: -1px auto;
  4547. }
  4548. }
  4549. span {
  4550. height: 15px;
  4551. width: 15px;
  4552. border-radius: 100%;
  4553. border: 3px solid #a5a7a9;
  4554. background: #a5a7a9;
  4555. position: absolute;
  4556. left: 0;
  4557. top: 12px;
  4558. cursor: pointer;
  4559. transition: all 0.3s ease-in-out;
  4560. @media (max-width: 991px) {
  4561. height: 12px;
  4562. width: 12px;
  4563. }
  4564. }
  4565. .progress-01 {
  4566. left: calc(520 / 7) + px;
  4567. }
  4568. .progress-02 {
  4569. left: calc(520 / 7 * 2) + px;
  4570. }
  4571. .progress-03 {
  4572. left: calc(520 / 7 * 3) + px;
  4573. }
  4574. .progress-04 {
  4575. left: calc(520 / 7 * 4) + px;
  4576. }
  4577. .progress-05 {
  4578. left: calc(520 / 7 * 5) + px;
  4579. }
  4580. .progress-06 {
  4581. left: calc(520 / 7 * 6) + px;
  4582. }
  4583. .progress-07 {
  4584. left: calc(520 / 7 * 7) + px;
  4585. }
  4586. // .progress-08 {
  4587. // left: calc(420 / 8 * 8) + px;
  4588. // }
  4589. #progress-bar::-webkit-progress-value {
  4590. /* Changes line color */
  4591. background: #ea5413;
  4592. transition: all 0.3s ease-in-out;
  4593. }
  4594. #progress-bar::-webkit-progress-bar {
  4595. /* Changes background color */
  4596. background: #a5a7a9;
  4597. }
  4598. .border-change {
  4599. background: #ea5413;
  4600. border-color: #ea5413;
  4601. transition: all 0.3s ease-in-out;
  4602. }
  4603. }
  4604. }
  4605. }
  4606. /* aboutus End */
  4607. /* carousel Start */
  4608. .carousel-wrapper {
  4609. max-width: 70vw;
  4610. margin: auto;
  4611. position: relative;
  4612. @media (max-width: 767px) {
  4613. max-width: 100vw;
  4614. }
  4615. .carousel {
  4616. position: relative;
  4617. .wrapper {
  4618. position: relative;
  4619. background-image: url("/imgs/home/banner-01.jpg");
  4620. background-size: cover;
  4621. background-repeat: no-repeat;
  4622. .video-wrapper {
  4623. position: absolute;
  4624. padding-bottom: 20%;
  4625. padding-top: 25px;
  4626. height: 0;
  4627. width: 39%;
  4628. top: 42%;
  4629. left: 13%;
  4630. iframe {
  4631. position: absolute;
  4632. top: 0;
  4633. left: 0;
  4634. width: 100%;
  4635. height: 100%;
  4636. }
  4637. &.e-win {
  4638. left: 28%;
  4639. padding-bottom: 25%;
  4640. width: 48%;
  4641. @media (max-width: 1199px) {
  4642. padding-bottom: 22%;
  4643. width: 46%;
  4644. }
  4645. @media (max-width: 575px) {
  4646. padding-bottom: 16%;
  4647. width: 40%;
  4648. top: 45%;
  4649. }
  4650. }
  4651. }
  4652. }
  4653. .lang {
  4654. position: absolute;
  4655. }
  4656. .frame-item {
  4657. position: absolute;
  4658. top: 42%;
  4659. left: 38vw;
  4660. @media (max-width: 767px) {
  4661. top: 5%;
  4662. left: unset;
  4663. right: 3vw;
  4664. }
  4665. select {
  4666. padding: 8px 20px;
  4667. border-radius: 8px;
  4668. @media (max-width: 1199px) {
  4669. padding: 2px 0px;
  4670. }
  4671. }
  4672. }
  4673. .toggle-video {
  4674. position: absolute;
  4675. top: 42%;
  4676. left: 4.5vw;
  4677. z-index: 100;
  4678. @media (max-width: 1199px) {
  4679. top: 33%;
  4680. left: 3vw;
  4681. }
  4682. @media (max-width: 575px) {
  4683. top: 31%;
  4684. }
  4685. }
  4686. .person-img {
  4687. width: 25vw;
  4688. position: absolute;
  4689. bottom: 0;
  4690. left: 43vw;
  4691. z-index: 100;
  4692. @media (max-width: 767px) {
  4693. width: 35vw;
  4694. left: 57vw;
  4695. }
  4696. }
  4697. .player-item {
  4698. top: 15vw;
  4699. left: 6vw;
  4700. &,
  4701. .poster {
  4702. width: 35vw;
  4703. height: 20vw;
  4704. @media (max-width: 767px) {
  4705. width: 45vw;
  4706. height: 25vw;
  4707. }
  4708. }
  4709. @media (max-width: 767px) {
  4710. top: 22vw;
  4711. left: 10vw;
  4712. }
  4713. .poster {
  4714. background-image: url("/imgs/home/video-img.png");
  4715. }
  4716. }
  4717. .ewin-player-item {
  4718. top: 42%;
  4719. right: 23%;
  4720. &,
  4721. .ewin {
  4722. width: 35vw;
  4723. height: 20vw;
  4724. @media (max-width: 767px) {
  4725. width: 44vw;
  4726. height: 25vw;
  4727. }
  4728. }
  4729. .ewin {
  4730. background-image: url("/imgs/home/影片封面-11.webp");
  4731. }
  4732. }
  4733. .cts-player-item {
  4734. top: 42%;
  4735. right: 23%;
  4736. &,
  4737. .cts {
  4738. width: 35vw;
  4739. height: 20vw;
  4740. @media (max-width: 767px) {
  4741. width: 44vw;
  4742. height: 25vw;
  4743. }
  4744. }
  4745. .cts {
  4746. background-image: url("/imgs/home/亞錦賽-08.webp");
  4747. }
  4748. }
  4749. .cts-player-item,
  4750. .player-item,
  4751. .ewin-player-item {
  4752. position: absolute;
  4753. opacity: 0;
  4754. iframe {
  4755. width: 100%;
  4756. height: 100%;
  4757. }
  4758. .poster,
  4759. .ewin,
  4760. .cts {
  4761. background-size: cover;
  4762. position: absolute;
  4763. top: 0;
  4764. left: 0;
  4765. z-index: 1;
  4766. cursor: pointer;
  4767. }
  4768. }
  4769. }
  4770. }
  4771. /* carousel End */
  4772. /* news-content Start */
  4773. .news-content {
  4774. margin: 150px auto;
  4775. #categories {
  4776. padding: 0;
  4777. list-style: none;
  4778. display: flex;
  4779. margin-bottom: 25px;
  4780. li {
  4781. margin-right: 15px;
  4782. }
  4783. button {
  4784. // padding: 5px 30px;
  4785. margin-right: 10px;
  4786. border: 1px solid #ea5413;
  4787. border-radius: 0.5rem;
  4788. background-color: #fff;
  4789. transition: all 0.3s;
  4790. &:hover {
  4791. opacity: 0.8;
  4792. }
  4793. a {
  4794. display: block;
  4795. padding: 5px 30px;
  4796. color: #ea5413;
  4797. font-weight: bold;
  4798. text-decoration: none;
  4799. }
  4800. }
  4801. .active {
  4802. background-color: #ea5413 !important;
  4803. a {
  4804. color: #fff !important;
  4805. }
  4806. }
  4807. }
  4808. .list {
  4809. padding: 0;
  4810. list-style: none;
  4811. a {
  4812. text-decoration: none;
  4813. transition: all 0.3s;
  4814. &:hover {
  4815. opacity: 0.8;
  4816. }
  4817. }
  4818. li {
  4819. padding: 30px 50px;
  4820. border: 1px solid #cccccc;
  4821. border-radius: 20px;
  4822. margin-bottom: 30px;
  4823. hr {
  4824. height: 2px;
  4825. margin: 10px 0;
  4826. color: #ea5413;
  4827. }
  4828. h2 {
  4829. color: #000;
  4830. font-weight: bold;
  4831. text-align: center;
  4832. margin-bottom: 20px;
  4833. }
  4834. section {
  4835. p {
  4836. font-weight: bold;
  4837. &:first-child {
  4838. color: #ea5413;
  4839. }
  4840. &:last-child {
  4841. color: #757575;
  4842. }
  4843. }
  4844. }
  4845. .content {
  4846. color: #757575;
  4847. overflow: hidden;
  4848. text-overflow: ellipsis;
  4849. display: -webkit-box;
  4850. -webkit-box-orient: vertical;
  4851. -webkit-line-clamp: 3;
  4852. box-sizing: border-box;
  4853. }
  4854. .more-btn {
  4855. display: flex;
  4856. justify-content: end;
  4857. margin-top: 30px;
  4858. a {
  4859. padding: 5px 20px;
  4860. border-radius: 10px;
  4861. color: #000;
  4862. background-color: #e1e1e1;
  4863. transition: all 0.3s;
  4864. &:hover {
  4865. opacity: 0.8;
  4866. }
  4867. }
  4868. }
  4869. }
  4870. }
  4871. }
  4872. .news-main-content {
  4873. margin: 75px auto;
  4874. line-height: 32px;
  4875. h1 {
  4876. position: relative;
  4877. text-align: center;
  4878. font-weight: bold;
  4879. background: url(https://i.imgur.com/N7tVTSh.png);
  4880. padding: 100px;
  4881. background-position: center;
  4882. background-repeat: no-repeat;
  4883. background-size: cover;
  4884. @media (max-width: 767px) {
  4885. padding: 40px 20px 60px;
  4886. font-size: 24px;
  4887. background-position: initial;
  4888. }
  4889. &::after {
  4890. position: absolute;
  4891. width: 6rem;
  4892. height: 0.3rem;
  4893. top: 75%;
  4894. left: 45%;
  4895. content: "";
  4896. background-color: #ea5413;
  4897. @media (max-width: 767px) {
  4898. height: 0.2rem;
  4899. top: 83%;
  4900. left: 40%;
  4901. }
  4902. }
  4903. }
  4904. h2 {
  4905. padding-left: 20px;
  4906. margin: 30px 0;
  4907. font-size: 1.8rem;
  4908. font-weight: bold;
  4909. border-left: 4px solid #ea5413;
  4910. letter-spacing: 2px;
  4911. @media (max-width: 767px) {
  4912. font-size: 1.4rem;
  4913. }
  4914. }
  4915. h3 {
  4916. strong {
  4917. letter-spacing: 2px;
  4918. }
  4919. }
  4920. p {
  4921. font-size: 16px;
  4922. margin-bottom: 50px;
  4923. }
  4924. img {
  4925. width: 100%;
  4926. max-width: 1050px;
  4927. margin: 10px 0;
  4928. }
  4929. .align-text-top {
  4930. width: 185px;
  4931. }
  4932. .video-box {
  4933. width: 100%;
  4934. padding-bottom: 56%;
  4935. // iframe {
  4936. // top: 10% !important;
  4937. // width: 80% !important;
  4938. // height: 80% !important;
  4939. // }
  4940. }
  4941. .list-link {
  4942. display: block;
  4943. margin-top: 50px;
  4944. text-align: center;
  4945. color: #ea5413;
  4946. font-weight: bold;
  4947. text-decoration: none;
  4948. }
  4949. .container {
  4950. max-width: 50%;
  4951. @media (max-width: 991px) {
  4952. max-width: 90%;
  4953. }
  4954. }
  4955. .link-btn {
  4956. display: block;
  4957. padding: 6px 20px;
  4958. font-size: 16px;
  4959. font-weight: bold;
  4960. border-radius: 100px;
  4961. text-decoration: none;
  4962. color: #fff;
  4963. background: #ea5413;
  4964. transition: all 0.3s;
  4965. border: none;
  4966. &:hover {
  4967. opacity: 0.8;
  4968. }
  4969. a {
  4970. color: #fff;
  4971. text-decoration: none;
  4972. }
  4973. }
  4974. }
  4975. .news-form {
  4976. padding: 50px;
  4977. margin: 50px auto;
  4978. border-radius: 10px;
  4979. box-shadow: 0 2px 10px 2px rgb(222, 220, 220);
  4980. @media (max-width: 575px) {
  4981. padding: 50px 30px;
  4982. }
  4983. form {
  4984. margin: auto;
  4985. max-width: 600px;
  4986. }
  4987. .title {
  4988. margin-bottom: 50px;
  4989. h4 {
  4990. margin-bottom: 10px;
  4991. font-size: 32px;
  4992. font-weight: bold;
  4993. }
  4994. p {
  4995. margin-bottom: 30px;
  4996. }
  4997. }
  4998. .submit-btn {
  4999. margin-top: 50px;
  5000. }
  5001. }
  5002. .submit-btn {
  5003. padding: 5px 40px;
  5004. display: inline-block;
  5005. color: #fff;
  5006. background-color: #ea5413;
  5007. border: 1px solid #ea5413;
  5008. border-radius: 5px;
  5009. text-decoration: none;
  5010. transition: all 0.3s;
  5011. font-size: 16px;
  5012. &:hover {
  5013. opacity: 0.8;
  5014. color: #fff;
  5015. }
  5016. }
  5017. #iframe-content {
  5018. width: 80px;
  5019. height: 80px;
  5020. // width: 375px;
  5021. // height: 650px;
  5022. position: fixed;
  5023. bottom: 5px;
  5024. right: 3px;
  5025. border: none;
  5026. z-index: 5000;
  5027. overflow: hidden;
  5028. }
  5029. /* news-content End */
  5030. .line-btn {
  5031. a {
  5032. position: fixed;
  5033. bottom: 85px;
  5034. right: 20px;
  5035. }
  5036. img {
  5037. width: 60px;
  5038. height: 60px;
  5039. transition: all 0.2s ease-in-out;
  5040. &:hover {
  5041. width: 68px;
  5042. height: 68px;
  5043. }
  5044. }
  5045. }
  5046. .embed-ai-btn {
  5047. position: fixed;
  5048. right: 16px;
  5049. bottom: 158px;
  5050. width: 100%;
  5051. height: 100%;
  5052. z-index: 1000;
  5053. }
  5054. .privacy-consent {
  5055. max-width: 500px;
  5056. padding: 25px 50px;
  5057. display: flex;
  5058. flex-direction: column;
  5059. align-items: center;
  5060. background-color: #fff;
  5061. border-radius: 5px;
  5062. box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
  5063. position: fixed;
  5064. bottom: 25px;
  5065. left: 25px;
  5066. z-index: 999;
  5067. a {
  5068. font-weight: bold;
  5069. border-bottom: 1px solid #000;
  5070. transition: all 0.2s;
  5071. &:hover {
  5072. opacity: 0.8;
  5073. }
  5074. }
  5075. button {
  5076. padding: 7px 30px;
  5077. display: inlinsolution-linke-block;
  5078. color: #fff;
  5079. border: none;
  5080. border-radius: 5px;
  5081. background-color: #ea5413;
  5082. transition: all 0.2s;
  5083. &:hover {
  5084. opacity: 0.8;
  5085. }
  5086. }
  5087. }
  5088. .solution-accordion {
  5089. h2 {
  5090. margin: 0 !important;
  5091. button {
  5092. font-weight: bold;
  5093. }
  5094. }
  5095. ul {
  5096. padding-left: 0;
  5097. list-style: none;
  5098. }
  5099. li,
  5100. p {
  5101. margin-bottom: 10px;
  5102. }
  5103. .accordion-body {
  5104. padding: 20px 40px;
  5105. line-height: 2;
  5106. }
  5107. .accordion-item {
  5108. margin-bottom: 30px;
  5109. }
  5110. .accordion-button:not(.collapsed) {
  5111. color: #000;
  5112. background-color: transparent !important;
  5113. &::after {
  5114. filter: invert(32%) sepia(100%) saturate(1158%) hue-rotate(353deg) brightness(101%) contrast(96%);
  5115. }
  5116. }
  5117. .accordion-button:focus {
  5118. box-shadow: none;
  5119. }
  5120. .accordion-item:not(:first-of-type) {
  5121. border-top: 1px solid rgba(0, 0, 0, 0.125);
  5122. }
  5123. }
  5124. .ai-kiosk {
  5125. margin: 10rem auto 5rem;
  5126. @media (max-width: 991px) {
  5127. margin: 5rem auto;
  5128. }
  5129. .news-main-content {
  5130. margin-top: 0;
  5131. padding: 0 5rem;
  5132. h3 {
  5133. font-weight: bold;
  5134. margin-bottom: 2rem;
  5135. }
  5136. }
  5137. #form {
  5138. position: sticky;
  5139. top: 80px;
  5140. @media (max-width: 991px) {
  5141. width: 90vw;
  5142. margin: auto;
  5143. }
  5144. .news-form {
  5145. padding: 25px 50px;
  5146. margin-top: 0;
  5147. .title {
  5148. margin-bottom: 0;
  5149. h4 {
  5150. font-size: 28px;
  5151. }
  5152. }
  5153. .submit-btn {
  5154. margin-top: 20px;
  5155. }
  5156. }
  5157. .form-check-input {
  5158. margin-top: 0.3rem !important;
  5159. }
  5160. }
  5161. }
  5162. #video-editing,
  5163. #ai-virtual-star {
  5164. p,
  5165. li {
  5166. font-size: 1.25rem;
  5167. line-height: 2;
  5168. @media (max-width: 767px) {
  5169. font-size: 1rem;
  5170. }
  5171. }
  5172. .header {
  5173. padding: 3rem 0;
  5174. .cover-img {
  5175. width: 100%;
  5176. padding-bottom: 2rem;
  5177. }
  5178. .main {
  5179. p {
  5180. margin-bottom: 1.5rem;
  5181. text-align: center;
  5182. // font-weight: bold;
  5183. @media (max-width: 575px) {
  5184. font-size: 1rem;
  5185. }
  5186. }
  5187. }
  5188. h2,
  5189. h3 {
  5190. font-weight: bold;
  5191. margin-bottom: 1rem;
  5192. }
  5193. }
  5194. }
  5195. #ai-virtual-star {
  5196. overflow: hidden;
  5197. color: #fff;
  5198. background-color: #172228;
  5199. p,
  5200. li {
  5201. line-height: 2.5;
  5202. }
  5203. .cover-img {
  5204. width: 100vw;
  5205. margin-top: 75px;
  5206. object-fit: cover;
  5207. }
  5208. a {
  5209. color: #3cd3b9;
  5210. }
  5211. h2 {
  5212. font-size: 2.75rem;
  5213. line-height: 1.6;
  5214. @media (max-width: 1200px) {
  5215. font-size: 2rem;
  5216. }
  5217. @media (max-width: 575px) {
  5218. font-size: 1.75rem;
  5219. }
  5220. }
  5221. h3 {
  5222. font-size: 2.5rem;
  5223. line-height: 1.8;
  5224. @media (max-width: 1200px) {
  5225. font-size: 1.75rem;
  5226. }
  5227. @media (max-width: 575px) {
  5228. font-size: 1.5rem;
  5229. }
  5230. }
  5231. h4 {
  5232. font-weight: bold;
  5233. font-size: 1.75rem;
  5234. margin-bottom: 1.5rem;
  5235. line-height: 2;
  5236. @media (max-width: 575px) {
  5237. font-size: 1.5rem;
  5238. }
  5239. }
  5240. ul {
  5241. margin: 0;
  5242. padding: 0;
  5243. list-style: none;
  5244. li {
  5245. line-height: 2.5;
  5246. }
  5247. }
  5248. small {
  5249. font-size: 1rem;
  5250. }
  5251. .bg-1,
  5252. .bg-2 {
  5253. position: absolute;
  5254. opacity: 0.7;
  5255. }
  5256. .bg-1 {
  5257. max-width: 100%;
  5258. right: 0;
  5259. top: 170%;
  5260. @media (max-width: 575px) {
  5261. max-width: 180%;
  5262. }
  5263. }
  5264. .bg-2 {
  5265. max-width: 130%;
  5266. top: -15%;
  5267. left: -20%;
  5268. @media (max-width: 575px) {
  5269. max-width: 180%;
  5270. left: -60%;
  5271. }
  5272. }
  5273. .info {
  5274. padding: 2rem 4rem;
  5275. display: inline-block;
  5276. border-radius: 20px;
  5277. border: 4px solid #3cd3b9;
  5278. @media (max-width: 575px) {
  5279. padding: 2rem;
  5280. }
  5281. h4 {
  5282. text-align: center;
  5283. }
  5284. }
  5285. .line-bottom {
  5286. padding-bottom: 1rem;
  5287. border-bottom: 2px solid #3cd3b9;
  5288. @media (max-width: 991px) {
  5289. border-bottom: none;
  5290. }
  5291. }
  5292. .line-item {
  5293. border-left: 2px solid #3cd3b9;
  5294. @media (max-width: 991px) {
  5295. border-left: none;
  5296. }
  5297. }
  5298. .title {
  5299. text-align: center;
  5300. color: #3cd3b9;
  5301. letter-spacing: 1px;
  5302. }
  5303. .sign-up-btn {
  5304. width: 365px;
  5305. text-align: center;
  5306. display: block;
  5307. margin: 3rem auto;
  5308. padding: 1rem 3rem;
  5309. border-radius: 10px;
  5310. font-size: 1.5rem;
  5311. font-weight: bold;
  5312. color: #fff;
  5313. background-color: #3cd3b9;
  5314. text-decoration: none;
  5315. transition: all 0.3s;
  5316. &:hover {
  5317. opacity: 0.8;
  5318. }
  5319. @media (max-width: 575px) {
  5320. width: 330px;
  5321. font-size: 1.25rem;
  5322. }
  5323. }
  5324. .activity-info {
  5325. height: 0;
  5326. opacity: 0;
  5327. overflow: hidden;
  5328. transition: height 1.5s ease, opacity 1.5s ease;
  5329. &.active {
  5330. height: auto;
  5331. opacity: 1;
  5332. }
  5333. }
  5334. .activity-btn {
  5335. width: 365px;
  5336. padding: 1rem 3rem;
  5337. background-color: transparent;
  5338. border-radius: 5px;
  5339. border: none;
  5340. box-shadow: 0px 0px 10px #3cd3b9;
  5341. text-align: center;
  5342. @media (max-width: 575px) {
  5343. width: 330px;
  5344. }
  5345. span {
  5346. color: #fff;
  5347. font-size: 1.5rem;
  5348. font-weight: bold;
  5349. @media (max-width: 575px) {
  5350. font-size: 1.25rem;
  5351. }
  5352. }
  5353. }
  5354. .arrow-wave {
  5355. span {
  5356. display: block;
  5357. position: relative;
  5358. height: 19px;
  5359. width: 30px;
  5360. /* background-color: rgba(100, 100, 100, 0.4); */
  5361. opacity: 0.2;
  5362. &::before,
  5363. &::after {
  5364. display: block;
  5365. content: "";
  5366. position: absolute;
  5367. height: 4px;
  5368. width: 23px;
  5369. background-color: #fff;
  5370. transition: transform 0.3s ease;
  5371. }
  5372. &::before {
  5373. top: -2px;
  5374. left: 0;
  5375. transform-origin: left center;
  5376. transform: rotate(45deg);
  5377. }
  5378. &::after {
  5379. top: -2px;
  5380. right: 0;
  5381. transform-origin: right center;
  5382. transform: rotate(-45deg);
  5383. }
  5384. &:nth-child(1n) {
  5385. animation: animate-arrow-wave 2s infinite;
  5386. animation-delay: 0.25s;
  5387. }
  5388. &:nth-child(2n) {
  5389. animation: animate-arrow-wave 2s infinite;
  5390. animation-delay: 0.5s;
  5391. }
  5392. &:nth-child(3n) {
  5393. animation: animate-arrow-wave 2s infinite;
  5394. animation-delay: 0.75s;
  5395. }
  5396. }
  5397. &.active {
  5398. span {
  5399. bottom: -15px;
  5400. &::before {
  5401. transform: rotate(-45deg); // 向上箭頭
  5402. }
  5403. &::after {
  5404. transform: rotate(45deg); // 向上箭頭
  5405. }
  5406. }
  5407. }
  5408. }
  5409. @keyframes animate-arrow-wave {
  5410. 0%,
  5411. 25%,
  5412. 50% {
  5413. opacity: 0.2;
  5414. }
  5415. 75% {
  5416. opacity: 1;
  5417. }
  5418. 100% {
  5419. opacity: 0.2;
  5420. }
  5421. }
  5422. #form {
  5423. margin: 0 0.5rem;
  5424. .news-form {
  5425. color: #000;
  5426. background-color: #fff;
  5427. .title {
  5428. color: #000;
  5429. }
  5430. }
  5431. }
  5432. }