style.css 84 KB

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