style.css 89 KB

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