style.css 80 KB

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