style.scss 105 KB

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