style.scss 117 KB

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