style.css 96 KB

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