style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432
  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. overflow: initial;
  429. }
  430. #home .swiper .swiper-pagination-bullet {
  431. width: 13px;
  432. height: 13px;
  433. margin: 0 13px;
  434. }
  435. @media (max-width: 991px) {
  436. #home .swiper .swiper-pagination-bullet {
  437. width: 10px;
  438. height: 10px;
  439. margin: 0 10px;
  440. }
  441. }
  442. #home .swiper .swiper-pagination {
  443. bottom: -10px;
  444. }
  445. @media (max-width: 991px) {
  446. #home .swiper .swiper-pagination {
  447. bottom: -15px;
  448. }
  449. }
  450. #home .swiper .swiper-pagination-bullet-active {
  451. background-color: #000 !important;
  452. }
  453. #home #main {
  454. overflow: hidden;
  455. }
  456. #home #main .content {
  457. height: 80vh;
  458. padding-left: 15vw;
  459. background-image: url("/imgs/home/首頁-01.png");
  460. background-position: center;
  461. background-repeat: no-repeat;
  462. display: flex;
  463. flex-direction: column;
  464. justify-content: center;
  465. }
  466. @media (max-width: 991px) {
  467. #home #main .content {
  468. background-position: -600px -100px;
  469. }
  470. }
  471. @media (max-width: 767px) {
  472. #home #main .content {
  473. padding-left: 0;
  474. align-items: center;
  475. }
  476. }
  477. #home #main .content h4 {
  478. color: #6c6d70;
  479. line-height: 40px;
  480. font-weight: bold;
  481. }
  482. @media (max-width: 767px) {
  483. #home #main .content h4 {
  484. text-align: center;
  485. }
  486. }
  487. #home #main .content section h3 {
  488. color: #ea5413;
  489. margin-left: 10px;
  490. font-weight: bold;
  491. font-size: 26px;
  492. line-height: 40px;
  493. }
  494. @media (max-width: 767px) {
  495. #home #main .content section h3 {
  496. font-size: 22px;
  497. }
  498. }
  499. #home #main .content .logo {
  500. width: 200px;
  501. }
  502. #home #main .content div {
  503. height: 115px;
  504. }
  505. #home #main .content .action-btn {
  506. margin-top: 60px;
  507. padding: 8px 22px;
  508. color: #fff;
  509. transition: all 0.3s;
  510. border: none;
  511. border-radius: 20px;
  512. background-color: #ea5413;
  513. }
  514. #home #main .content .action-btn:hover {
  515. background-color: #d54d13;
  516. }
  517. #home #main .journey-content {
  518. display: flex;
  519. align-items: center;
  520. background-image: url("/imgs/home/首頁-02.png");
  521. background-size: cover;
  522. background-position: top;
  523. background-repeat: no-repeat;
  524. }
  525. #home #main .journey-content h3 {
  526. line-height: 40px;
  527. text-align: center;
  528. font-weight: bold;
  529. padding: 260px 0 80px;
  530. }
  531. @media (max-width: 767px) {
  532. #home #main .journey-content h3 {
  533. padding: 80px 0;
  534. }
  535. }
  536. #home #main .journey-content h4 {
  537. color: #ea5413;
  538. text-align: center;
  539. font-weight: bold;
  540. }
  541. #home #main .journey-content .line {
  542. display: block;
  543. height: 2px;
  544. background: #ea5413;
  545. width: 100%;
  546. margin: 30px 0;
  547. }
  548. #home #main .journey-content .title {
  549. position: relative;
  550. }
  551. #home #main .journey-content .title img {
  552. top: -70px;
  553. right: -75px;
  554. width: 180px;
  555. position: absolute;
  556. }
  557. @media (max-width: 767px) {
  558. #home #main .journey-content .title img {
  559. top: -45px;
  560. right: -16vw;
  561. width: 150px;
  562. transform: rotate(90deg);
  563. }
  564. }
  565. @media (max-width: 575px) {
  566. #home #main .journey-content .title img {
  567. top: -36px;
  568. right: -21vw;
  569. width: 130px;
  570. }
  571. }
  572. #home #main .journey-content .list {
  573. padding: 0 25px;
  574. font-size: 18px;
  575. }
  576. @media (max-width: 1200px) {
  577. #home #main .journey-content .list {
  578. padding: 0;
  579. }
  580. }
  581. @media (max-width: 991px) {
  582. #home #main .journey-content .list {
  583. font-size: 16px;
  584. }
  585. }
  586. #home #main .journey-content .list h5 {
  587. font-size: 18px;
  588. }
  589. @media (max-width: 991px) {
  590. #home #main .journey-content .list h5 {
  591. font-size: 16px;
  592. }
  593. }
  594. #home #main .journey-content .list p {
  595. height: 75px;
  596. }
  597. @media (max-width: 1200px) {
  598. #home #main .journey-content .list p {
  599. height: 85px;
  600. }
  601. }
  602. @media (max-width: 767px) {
  603. #home #main .journey-content .list p {
  604. height: auto;
  605. }
  606. }
  607. #home #main .journey-content .list strong {
  608. display: block;
  609. padding: 15px;
  610. margin: 20px auto 50px;
  611. text-align: center;
  612. color: #fff;
  613. background-color: #ea5413;
  614. }
  615. @media (max-width: 991px) {
  616. #home #main .journey-content .list strong {
  617. font-size: 13px;
  618. }
  619. }
  620. @media (max-width: 767px) {
  621. #home #main .journey-content .list strong {
  622. font-size: 16px;
  623. margin: 20px auto 10px;
  624. }
  625. }
  626. #home #main .team-content {
  627. padding: 100px 0;
  628. }
  629. #home #main .team-content strong {
  630. font-size: 26px;
  631. }
  632. #home #main .team-content h4 {
  633. margin: 20px 0;
  634. color: #ea5413;
  635. font-weight: bold;
  636. line-height: 36px;
  637. }
  638. @media (max-width: 575px) {
  639. #home #main .team-content h4 {
  640. font-size: 18px;
  641. }
  642. }
  643. #home #main .team-content ul {
  644. list-style: none;
  645. padding: 0;
  646. margin: 0;
  647. }
  648. #home #main .team-content ul li {
  649. margin: 5px 0;
  650. font-size: 18px;
  651. }
  652. @media (max-width: 575px) {
  653. #home #main .team-content ul li {
  654. font-size: 16px;
  655. }
  656. }
  657. #home .ad-content {
  658. width: 90%;
  659. padding: 50px 0 0;
  660. border: 1px solid #90268f;
  661. }
  662. #home .ad-content ul {
  663. padding: 0;
  664. list-style: none;
  665. }
  666. #home .ad-content ul li {
  667. margin-bottom: 50px;
  668. }
  669. #home .ad-content ul li p {
  670. color: #90268f;
  671. font-size: 18px;
  672. font-weight: bold;
  673. }
  674. @media (max-width: 767px) {
  675. #home .ad-content ul li p {
  676. font-size: 16px;
  677. }
  678. }
  679. #home .ad-content section h4 {
  680. text-align: center;
  681. font-size: 30px;
  682. font-weight: bold;
  683. }
  684. #home .ad-content section h4 strong {
  685. display: block;
  686. margin: 20px 0 50px;
  687. font-size: 24px;
  688. color: #ea5413;
  689. }
  690. @media (max-width: 767px) {
  691. #home .ad-content section h4 strong {
  692. font-size: 18px;
  693. }
  694. }
  695. @media (max-width: 575px) {
  696. #home .ad-content section h4 strong {
  697. padding: 0 20px;
  698. line-height: 32px;
  699. }
  700. }
  701. #home .ad-content h5 {
  702. font-weight: bold;
  703. font-size: 20px;
  704. line-height: 32px;
  705. }
  706. @media (max-width: 991px) {
  707. #home .ad-content h5 {
  708. font-size: 18px;
  709. }
  710. }
  711. #home .ad-content h5 strong {
  712. margin: 30px 0;
  713. display: block;
  714. color: #90268f;
  715. }
  716. #home .ad-content .img-text {
  717. position: absolute;
  718. left: 50%;
  719. top: 50%;
  720. transform: translate(-50%, -50%);
  721. font-size: 1.6vw;
  722. font-weight: bold;
  723. }
  724. @media (max-width: 991px) {
  725. #home .ad-content .img-text {
  726. font-size: 2vw;
  727. }
  728. }
  729. @media (max-width: 575px) {
  730. #home .ad-content .img-text {
  731. font-size: 5.5vw;
  732. }
  733. }
  734. #home .tag-item {
  735. position: absolute;
  736. right: 0;
  737. }
  738. #home .tag-item img {
  739. width: 200px;
  740. }
  741. #home .tag-item h5 {
  742. position: absolute;
  743. top: 35px;
  744. right: 75px;
  745. color: #fff;
  746. font-size: 26px;
  747. }
  748. #home .seo-content {
  749. overflow: hidden;
  750. }
  751. #home .seo-content ul {
  752. list-style: none;
  753. }
  754. #home .seo-content ul li {
  755. margin: 10px 0;
  756. font-size: 18px;
  757. }
  758. @media (max-width: 575px) {
  759. #home .seo-content ul li {
  760. font-size: 16px;
  761. }
  762. }
  763. #home .seo-content section p {
  764. color: #6c6d70;
  765. font-weight: bold;
  766. font-size: 18px;
  767. line-height: 32px;
  768. }
  769. @media (max-width: 575px) {
  770. #home .seo-content section p {
  771. font-size: 16px;
  772. }
  773. }
  774. #home .seo-content .video-box {
  775. width: 55%;
  776. padding-bottom: 30%;
  777. margin: 50px auto;
  778. }
  779. @media (max-width: 991px) {
  780. #home .seo-content .video-box {
  781. width: 100%;
  782. padding-bottom: 56%;
  783. }
  784. }
  785. #home .seo-content h4,
  786. #home .ai-content h4 {
  787. padding-top: 130px;
  788. text-align: center;
  789. font-size: 30px;
  790. font-weight: bold;
  791. }
  792. #home .ai-content {
  793. margin-top: 100px;
  794. }
  795. #home .ai-content p {
  796. line-height: 32px;
  797. font-size: 18px;
  798. }
  799. @media (max-width: 575px) {
  800. #home .ai-content p {
  801. font-size: 16px;
  802. }
  803. }
  804. #home .ai-content .title {
  805. color: #ea5413;
  806. font-weight: bold;
  807. }
  808. @media (max-width: 575px) {
  809. #home .ai-content .title {
  810. font-size: 22px;
  811. }
  812. }
  813. #home .ai-content .video-title {
  814. font-size: 30px;
  815. font-weight: bold;
  816. }
  817. @media (max-width: 991px) {
  818. #home .ai-content .img-item {
  819. display: flex;
  820. justify-content: center;
  821. }
  822. }
  823. @media (max-width: 991px) {
  824. #home .ai-content .img-item img {
  825. width: 800px;
  826. max-width: initial;
  827. }
  828. }
  829. @media (max-width: 575px) {
  830. #home .ai-content .img-item img {
  831. margin-left: 50px;
  832. }
  833. }
  834. #home .ai-content .img-item p {
  835. position: absolute;
  836. top: 32%;
  837. left: 50%;
  838. font-size: 20px;
  839. font-weight: bold;
  840. line-height: 38px;
  841. color: #6c6d70;
  842. }
  843. @media (max-width: 1400px) {
  844. #home .ai-content .img-item p {
  845. top: 31%;
  846. line-height: 34px;
  847. }
  848. }
  849. @media (max-width: 1200px) {
  850. #home .ai-content .img-item p {
  851. top: 28%;
  852. line-height: 32px;
  853. font-size: 18px;
  854. }
  855. }
  856. @media (max-width: 991px) {
  857. #home .ai-content .img-item p {
  858. top: 25%;
  859. line-height: 30px;
  860. font-size: 16px;
  861. }
  862. }
  863. @media (max-width: 991px) {
  864. #home .ai-content .img-item p {
  865. left: 42%;
  866. }
  867. }
  868. @media (max-width: 575px) {
  869. #home .ai-content .img-item p {
  870. left: 32vw;
  871. top: 25%;
  872. line-height: 26px;
  873. font-size: 15px;
  874. }
  875. }
  876. #home .ai-content .sec-video {
  877. margin-top: 0;
  878. }
  879. @media (max-width: 767px) {
  880. #home .ai-content .sec-video {
  881. margin-bottom: 0;
  882. }
  883. }
  884. #home .ai-content .sec-video .video-mb-title {
  885. font-size: 26px;
  886. font-weight: bold;
  887. }
  888. @media (max-width: 767px) {
  889. #home .ai-content .sec-video .video-box {
  890. width: 100%;
  891. padding-bottom: 45%;
  892. }
  893. }
  894. #home .ai-content .sec-usecase .usecase-title {
  895. font-size: 30px;
  896. font-weight: bold;
  897. }
  898. #home .ai-content .sec-usecase .usecase-imgfr {
  899. height: auto;
  900. }
  901. #home .ai-content .sec-usecase .usecase-sub {
  902. font-size: 18px;
  903. margin-top: 20px;
  904. }
  905. #home .bg-img {
  906. margin-top: -85vw;
  907. position: relative;
  908. z-index: -1;
  909. transform: scale(1.1);
  910. -o-object-position: 3vw 0px;
  911. object-position: 3vw 0px;
  912. }
  913. #home .more-btn {
  914. padding: 13px 30px;
  915. color: #fff;
  916. background-color: #ea5413;
  917. text-decoration: none;
  918. border-radius: 100px;
  919. transition: all 0.3s;
  920. }
  921. #home .more-btn:hover {
  922. background-color: #d54d13;
  923. }
  924. #home .sec-blogtab {
  925. padding-top: 100px;
  926. margin: 0 auto 50px;
  927. }
  928. #home .sec-blogtab .blogtab-title {
  929. font-size: 30px;
  930. font-weight: bold;
  931. margin-bottom: 30px;
  932. }
  933. #home .sec-blogtab .blog-txt {
  934. font-size: 16px;
  935. }
  936. #home .sec-blogtab .btn-light {
  937. font-size: 16px;
  938. transition: all 0.3s;
  939. text-decoration: none;
  940. }
  941. @media (max-width: 767px) {
  942. #home .sec-blogtab .blog-tabs .blog-tabs-nav {
  943. padding: 1rem 2rem 3rem;
  944. }
  945. }
  946. #home .sec-blogtab .blog-tabs-nav a {
  947. transition: all 0.3s;
  948. text-decoration: none;
  949. }
  950. #home .sec-blogtab .blog-tabs-nav a:hover {
  951. opacity: 0.8;
  952. }
  953. #home .sec-action .action-btn {
  954. padding: 0.8rem 3.5rem;
  955. font-size: 20px;
  956. font-weight: bold;
  957. }
  958. #home .progress-item {
  959. opacity: 0;
  960. height: 100%;
  961. position: fixed;
  962. z-index: 100;
  963. top: 0;
  964. transition: all 0.3s;
  965. }
  966. @media (max-width: 767px) {
  967. #home .progress-item {
  968. display: none;
  969. }
  970. }
  971. #home .progress-item .cont {
  972. top: 50%;
  973. left: -135px;
  974. position: absolute;
  975. transform: rotate(90deg);
  976. }
  977. @media (max-width: 1200px) {
  978. #home .progress-item .cont {
  979. left: -145px;
  980. }
  981. }
  982. @media (max-width: 991px) {
  983. #home .progress-item .cont {
  984. left: -150px;
  985. }
  986. }
  987. #home .progress-item .cont #progress-bar {
  988. -webkit-appearance: none;
  989. -moz-appearance: none;
  990. appearance: none;
  991. width: 360px;
  992. color: #000;
  993. height: 2px;
  994. margin: -2px auto;
  995. }
  996. @media (max-width: 991px) {
  997. #home .progress-item .cont #progress-bar {
  998. margin: -1px auto;
  999. }
  1000. }
  1001. #home .progress-item .cont span {
  1002. height: 15px;
  1003. width: 15px;
  1004. border-radius: 100%;
  1005. border: 3px solid #a5a7a9;
  1006. background: #a5a7a9;
  1007. position: absolute;
  1008. left: 0;
  1009. top: 12px;
  1010. cursor: pointer;
  1011. transition: all 0.3s ease-in-out;
  1012. }
  1013. @media (max-width: 991px) {
  1014. #home .progress-item .cont span {
  1015. height: 12px;
  1016. width: 12px;
  1017. }
  1018. }
  1019. #home .progress-item .cont .journey {
  1020. left: 70px;
  1021. }
  1022. #home .progress-item .cont .team {
  1023. left: 140px;
  1024. }
  1025. #home .progress-item .cont .ai-ad {
  1026. left: 210px;
  1027. }
  1028. #home .progress-item .cont .seo {
  1029. left: 280px;
  1030. }
  1031. #home .progress-item .cont .ai-video {
  1032. left: 350px;
  1033. }
  1034. #home .progress-item .cont .blog {
  1035. left: 420px;
  1036. }
  1037. #home .progress-item .cont #progress-bar::-webkit-progress-value {
  1038. /* Changes line color */
  1039. background: #ea5413;
  1040. -webkit-transition: all 0.3s ease-in-out;
  1041. transition: all 0.3s ease-in-out;
  1042. }
  1043. #home .progress-item .cont #progress-bar::-webkit-progress-bar {
  1044. /* Changes background color */
  1045. background: #a5a7a9;
  1046. }
  1047. #home .progress-item .cont .border-change {
  1048. background: #ea5413;
  1049. border-color: #ea5413;
  1050. transition: all 0.3s ease-in-out;
  1051. }
  1052. /* content page */
  1053. .cntheader {
  1054. margin-top: 81px;
  1055. padding: 4rem 0;
  1056. position: relative;
  1057. padding-bottom: 2rem;
  1058. }
  1059. .cntheader__sub {
  1060. color: #38a7bb;
  1061. font-size: 1.5rem;
  1062. font-weight: 300;
  1063. position: relative;
  1064. }
  1065. .cntheader__sub::before,
  1066. .cntheader__sub::after {
  1067. content: " ";
  1068. position: absolute;
  1069. width: 15%;
  1070. height: 1px;
  1071. background-color: #38a7bb;
  1072. top: 50%;
  1073. }
  1074. .cntheader__sub::before {
  1075. left: 18%;
  1076. }
  1077. .cntheader__sub::after {
  1078. left: 67%;
  1079. }
  1080. .cntheader .category-btngrp {
  1081. padding: 0 4rem;
  1082. }
  1083. .card__art {
  1084. padding: 1rem;
  1085. border: 1px solid #20616d;
  1086. border-radius: 1rem;
  1087. margin-bottom: 1rem;
  1088. }
  1089. .card__title {
  1090. font-size: 1.8rem;
  1091. font-weight: 400;
  1092. }
  1093. .card__text {
  1094. color: #918f8f;
  1095. }
  1096. .card__link {
  1097. display: inline-block;
  1098. color: #38a7bb;
  1099. margin-right: 1rem;
  1100. text-decoration: none;
  1101. }
  1102. .card__link:hover {
  1103. color: #20616d;
  1104. }
  1105. .toparticle {
  1106. border: 1px solid #cecece;
  1107. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  1108. }
  1109. .toparticle__title {
  1110. color: white;
  1111. background-color: #38a7bb;
  1112. text-align: center;
  1113. font-size: 1.3rem;
  1114. padding: 0.3rem 0;
  1115. position: relative;
  1116. }
  1117. .toparticle__title img {
  1118. position: absolute;
  1119. width: 150px;
  1120. right: -4rem;
  1121. top: -3.5rem;
  1122. }
  1123. .toparticle__list {
  1124. padding: 1.5rem;
  1125. padding-top: 0;
  1126. list-style: none;
  1127. padding-bottom: 1rem;
  1128. }
  1129. .toparticle__list-item {
  1130. padding: 0.3rem;
  1131. border-bottom: 1px solid #cecece;
  1132. color: #38a7bb;
  1133. position: relative;
  1134. }
  1135. .toparticle__list-item:nth-of-type(10) {
  1136. border: none;
  1137. }
  1138. .toparticle__list-item a {
  1139. text-decoration: none;
  1140. color: #38a7bb;
  1141. }
  1142. .toparticle__num {
  1143. color: #fca25e;
  1144. font-size: 1.8rem;
  1145. font-family: "Trebuchet MS";
  1146. font-weight: 300;
  1147. margin-right: 8px;
  1148. }
  1149. .toparticle__top {
  1150. font-size: 2rem;
  1151. }
  1152. .toparticle__list-item small {
  1153. position: absolute;
  1154. right: 0;
  1155. top: 45%;
  1156. }
  1157. .cntsubscribe {
  1158. text-align: center;
  1159. }
  1160. .cntsubscribe__form {
  1161. position: relative;
  1162. }
  1163. .cntsubscribe__sub {
  1164. border-radius: 10rem;
  1165. background-color: #fca25e;
  1166. color: white;
  1167. border: none;
  1168. width: 5rem;
  1169. position: absolute;
  1170. right: 0;
  1171. top: 0;
  1172. padding: 0.45rem 0.8rem;
  1173. }
  1174. .cntsubscribe__sub:hover {
  1175. background-color: #ff892e;
  1176. color: white;
  1177. }
  1178. .cntsubscribe__input {
  1179. border-radius: 10rem;
  1180. padding: 0.4rem 0.8rem;
  1181. width: 100%;
  1182. }
  1183. .img-block .img-block-img {
  1184. width: 70%;
  1185. }
  1186. .img-block-list {
  1187. padding: 2rem 6rem;
  1188. }
  1189. .img-block-linecir {
  1190. position: absolute;
  1191. right: 10%;
  1192. bottom: 5%;
  1193. width: 30%;
  1194. z-index: -1;
  1195. }
  1196. .img-block-linecir.left {
  1197. right: -10%;
  1198. bottom: -5%;
  1199. }
  1200. .img-block-linecir.right {
  1201. left: -10%;
  1202. bottom: -5%;
  1203. }
  1204. .img-block-linecir.left {
  1205. left: -10%;
  1206. bottom: -5%;
  1207. }
  1208. .aboutus_img {
  1209. width: 100%;
  1210. }
  1211. .aboutus_prize_img {
  1212. border: 1.5rem solid rgb(231, 231, 231);
  1213. border-radius: 1rem;
  1214. }
  1215. .header__ai-training__span {
  1216. width: 6rem;
  1217. height: 6rem;
  1218. padding: 1rem;
  1219. display: inline-block;
  1220. font-size: 1.4rem;
  1221. background-color: rgb(255, 255, 159);
  1222. border-radius: 50%;
  1223. }
  1224. .ai-training__action {
  1225. border: 3px dashed #ffebe8;
  1226. }
  1227. .ai-training__card .card-img-top {
  1228. height: 35vh;
  1229. }
  1230. .ai-training__action ul {
  1231. list-style: none;
  1232. line-height: 2rem;
  1233. }
  1234. .ai-training__action__box {
  1235. flex-direction: row;
  1236. }
  1237. .ai-training__action__btn {
  1238. padding: 0.5rem 2rem;
  1239. border: none;
  1240. outline: none;
  1241. border-radius: 4rem;
  1242. background: #ea5413;
  1243. font-size: 1.3rem;
  1244. color: white;
  1245. }
  1246. .ai-training__action__img {
  1247. width: 15rem;
  1248. height: 15rem;
  1249. background-repeat: no-repeat;
  1250. background-position: center;
  1251. background-size: cover;
  1252. border-radius: 50%;
  1253. border: 3px solid #ffdbd6;
  1254. }
  1255. .hero-btn {
  1256. border: none;
  1257. outline: none;
  1258. border-radius: 3rem;
  1259. margin-top: 0.5rem;
  1260. padding: 0.6rem 1.5rem;
  1261. background: linear-gradient(20deg, #ea5413, #920783);
  1262. color: white;
  1263. font-size: 1.1rem;
  1264. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.5294117647);
  1265. }
  1266. .contact-btn {
  1267. text-decoration: none;
  1268. color: white;
  1269. border: 1px solid #ea5413;
  1270. padding: 0.6rem 1.5rem;
  1271. outline: none;
  1272. background-color: #ea5413;
  1273. margin-top: 0.5rem;
  1274. border-radius: 3rem;
  1275. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  1276. transition: all 0.3s;
  1277. }
  1278. .contact-btn:hover {
  1279. color: #ea5413;
  1280. background-color: transparent;
  1281. border: 1px solid #ea5413;
  1282. }
  1283. .loaded {
  1284. box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3019607843), 0 6px 20px 0 rgba(165, 200, 213, 0.4117647059);
  1285. margin-bottom: 4rem;
  1286. }
  1287. .pageForm-title {
  1288. padding: 0 0 0 40px;
  1289. background-image: url(/imgs/dm/accept.png);
  1290. background-position: 0 0;
  1291. background-repeat: no-repeat;
  1292. background-size: 30px auto;
  1293. }
  1294. .pageForm-txt {
  1295. padding-left: 40px;
  1296. }
  1297. .pageForm-notice {
  1298. padding-left: 40px;
  1299. color: grey;
  1300. margin-top: 50px;
  1301. }
  1302. .pageForm-p {
  1303. padding: 40px;
  1304. }
  1305. .btn-detailForm {
  1306. background-color: transparent;
  1307. border: none;
  1308. outline: none;
  1309. color: #ff892e;
  1310. padding: 0 0;
  1311. padding-bottom: 0.1rem;
  1312. margin-bottom: 0.8rem;
  1313. display: inline-block;
  1314. border-bottom: 1px dotted #ff892e;
  1315. transition: all 0.4s;
  1316. text-decoration: none;
  1317. }
  1318. .btn-detailForm:hover {
  1319. transform: translate(2px, 2px);
  1320. text-decoration: none;
  1321. color: #ff892e;
  1322. }
  1323. @media (max-width: 1300px) {
  1324. .header-right-video {
  1325. position: absolute;
  1326. width: 76%;
  1327. }
  1328. }
  1329. @media (max-width: 992px) {
  1330. .cntheader .header-title {
  1331. font-size: 2.2rem;
  1332. }
  1333. .header-right {
  1334. height: 40vh;
  1335. }
  1336. .header-right-magnifier {
  1337. right: -2.5rem;
  1338. bottom: 1rem;
  1339. }
  1340. .header__sub {
  1341. font-size: 1.3rem;
  1342. }
  1343. .header__sub::before,
  1344. .header__sub::after {
  1345. width: 8%;
  1346. }
  1347. .header__sub::before {
  1348. left: 30%;
  1349. }
  1350. .header__sub::after {
  1351. left: 62%;
  1352. }
  1353. .header__form__input {
  1354. font-size: 0.9rem;
  1355. }
  1356. .category-btngrp {
  1357. padding: 0;
  1358. }
  1359. .category-btn {
  1360. padding: 0.3rem 1.5rem;
  1361. font-size: 1.2rem;
  1362. }
  1363. .ctncategory-btn {
  1364. padding: 0.2rem 1rem;
  1365. font-size: 1rem;
  1366. }
  1367. .top3 .row {
  1368. padding: 0;
  1369. }
  1370. .card__rank {
  1371. padding: 0.8rem 1rem;
  1372. }
  1373. .top3__num {
  1374. left: 0.6rem;
  1375. top: -2.5rem;
  1376. font-size: 4rem;
  1377. }
  1378. .card__rank__word {
  1379. margin-left: 1.5rem;
  1380. font-size: 1.2rem;
  1381. }
  1382. .card__rank hr {
  1383. margin-top: 8px;
  1384. margin-bottom: 8px;
  1385. }
  1386. .top20 .row {
  1387. padding: 0;
  1388. }
  1389. .top20__num {
  1390. font-size: 2.1rem;
  1391. width: 1.6rem;
  1392. }
  1393. .container__footer {
  1394. width: 95vw;
  1395. }
  1396. .header__form {
  1397. width: 85%;
  1398. position: relative;
  1399. }
  1400. .header__form__input {
  1401. margin-left: 0;
  1402. width: 100%;
  1403. }
  1404. .header__form__sub {
  1405. transform: none;
  1406. position: absolute;
  1407. right: 0;
  1408. top: 0;
  1409. }
  1410. .header-right-linecir {
  1411. bottom: 0;
  1412. }
  1413. .cntheader__sub {
  1414. font-size: 1.2rem;
  1415. }
  1416. .cntheader__sub::before {
  1417. left: 13%;
  1418. }
  1419. .cntheader__sub::after {
  1420. left: 72%;
  1421. }
  1422. .toparticle__title img {
  1423. position: absolute;
  1424. width: 90px;
  1425. right: -2rem;
  1426. top: -2rem;
  1427. }
  1428. .toparticle__top {
  1429. font-size: 1.7rem;
  1430. }
  1431. .fb__fr {
  1432. width: 100%;
  1433. }
  1434. .cntsubscribe__form {
  1435. width: 100%;
  1436. }
  1437. .ai-training__action__box {
  1438. flex-direction: column;
  1439. }
  1440. }
  1441. @media (max-width: 767px) {
  1442. .header .col-md-5 {
  1443. margin-bottom: 3rem;
  1444. }
  1445. .header-right-bubble {
  1446. width: 15%;
  1447. }
  1448. .header-right-magnifier {
  1449. right: 4rem;
  1450. bottom: 1rem;
  1451. }
  1452. .category {
  1453. padding-top: 4rem;
  1454. }
  1455. .category.dm-description {
  1456. padding-top: 4rem;
  1457. padding-left: 0;
  1458. padding-right: 0;
  1459. margin-top: 4.5rem;
  1460. }
  1461. .category.mt-xl {
  1462. margin-top: 8.5rem;
  1463. }
  1464. .category.dm-description h5 {
  1465. padding-left: 1rem;
  1466. padding-right: 1rem;
  1467. }
  1468. .top3 {
  1469. padding-bottom: 2rem;
  1470. }
  1471. .top3 .col-md-4 {
  1472. margin-bottom: 1.5rem;
  1473. }
  1474. .top3 .col-md-4:nth-of-type(3) {
  1475. margin-bottom: 0;
  1476. }
  1477. .card__rank {
  1478. margin-bottom: 1.5rem;
  1479. }
  1480. .row-right {
  1481. margin-top: 2rem;
  1482. }
  1483. .cntheader {
  1484. padding-bottom: 0rem;
  1485. }
  1486. .header-right-video {
  1487. position: absolute;
  1488. width: 70%;
  1489. left: 2.3rem;
  1490. top: 1.5rem;
  1491. }
  1492. .img-block-list {
  1493. padding: 2rem 1.5rem;
  1494. }
  1495. .ai-training__card .card-img-top {
  1496. height: 50vh;
  1497. }
  1498. }
  1499. @media (max-width: 576px) {
  1500. .header-title {
  1501. font-size: 2.5rem;
  1502. }
  1503. .header.ai-training {
  1504. height: 80vh;
  1505. }
  1506. .header-right {
  1507. height: 30vh;
  1508. }
  1509. .header-right-magnifier {
  1510. right: 0rem;
  1511. bottom: 1.5rem;
  1512. }
  1513. .category-btn {
  1514. padding: 0.2rem 1rem;
  1515. font-size: 1rem;
  1516. }
  1517. .category {
  1518. padding: 1rem;
  1519. }
  1520. .footer-img {
  1521. height: 50px;
  1522. }
  1523. .footer {
  1524. font-size: 0.9rem;
  1525. }
  1526. .pageForm-p {
  1527. padding: 15px;
  1528. }
  1529. .pageForm {
  1530. width: 95%;
  1531. }
  1532. }
  1533. @media (max-width: 480px) {
  1534. .ctncategory-btn {
  1535. margin-top: 0.6rem;
  1536. }
  1537. .header-right-video {
  1538. position: absolute;
  1539. width: 75%;
  1540. left: 2.1rem;
  1541. top: 1.3rem;
  1542. }
  1543. }
  1544. /* ai-anchor Start */
  1545. #ai-anchor {
  1546. overflow-x: hidden;
  1547. }
  1548. #ai-anchor .stock-bg {
  1549. height: 850px;
  1550. left: -15vw;
  1551. top: -125px;
  1552. position: absolute;
  1553. z-index: -1;
  1554. }
  1555. @media (max-width: 1400px) {
  1556. #ai-anchor .stock-bg {
  1557. top: -130px;
  1558. }
  1559. }
  1560. @media (max-width: 991px) {
  1561. #ai-anchor .stock-bg {
  1562. top: -175px;
  1563. }
  1564. }
  1565. @media (max-width: 767px) {
  1566. #ai-anchor .stock-bg {
  1567. top: -155px;
  1568. }
  1569. }
  1570. @media (max-width: 490px) {
  1571. #ai-anchor .stock-bg {
  1572. top: -130px;
  1573. }
  1574. }
  1575. @media (max-width: 575px) {
  1576. #ai-anchor .header-title {
  1577. font-size: 2rem;
  1578. }
  1579. }
  1580. #ai-anchor .header-sub {
  1581. padding: 0 10px;
  1582. text-align: start;
  1583. }
  1584. #ai-anchor .header-sub span {
  1585. display: inline-block;
  1586. margin-top: 35px;
  1587. font-size: 24px;
  1588. font-weight: bold;
  1589. color: #f8a154;
  1590. }
  1591. #ai-anchor .header-sub p {
  1592. width: 450px;
  1593. margin: 20px auto;
  1594. }
  1595. @media (max-width: 991px) {
  1596. #ai-anchor .header-sub p {
  1597. width: auto;
  1598. }
  1599. }
  1600. #ai-anchor .ai-description {
  1601. padding-top: 200px;
  1602. padding-bottom: 100px;
  1603. }
  1604. @media (max-width: 991px) {
  1605. #ai-anchor .ai-description {
  1606. padding-top: 100px;
  1607. }
  1608. }
  1609. #ai-anchor .ai-description div .icon {
  1610. width: 30px;
  1611. }
  1612. #ai-anchor .ai-description h5 {
  1613. margin: 0;
  1614. font-size: 28px;
  1615. font-weight: bold;
  1616. color: #ea5413;
  1617. }
  1618. @media (max-width: 375px) {
  1619. #ai-anchor .ai-description h5 {
  1620. font-size: 20px;
  1621. }
  1622. }
  1623. #ai-anchor .ai-description .content-box {
  1624. display: flex;
  1625. justify-content: space-between;
  1626. margin-bottom: 150px;
  1627. }
  1628. @media (max-width: 991px) {
  1629. #ai-anchor .ai-description .content-box {
  1630. flex-direction: column;
  1631. }
  1632. }
  1633. #ai-anchor .ai-description .content-box section {
  1634. width: 35%;
  1635. }
  1636. @media (max-width: 991px) {
  1637. #ai-anchor .ai-description .content-box section {
  1638. width: 100%;
  1639. }
  1640. }
  1641. #ai-anchor .ai-description .triangle-item {
  1642. display: flex;
  1643. justify-content: center;
  1644. }
  1645. @media (max-width: 991px) {
  1646. #ai-anchor .ai-description .triangle-item {
  1647. margin-left: -35px;
  1648. }
  1649. }
  1650. #ai-anchor .ai-description .triangle-item img {
  1651. width: 40px;
  1652. height: 100%;
  1653. image-rendering: -webkit-optimize-contrast;
  1654. }
  1655. @media (max-width: 991px) {
  1656. #ai-anchor .ai-description .triangle-item img {
  1657. transform: rotate(90deg);
  1658. }
  1659. }
  1660. #ai-anchor .faq-content {
  1661. position: relative;
  1662. }
  1663. #ai-anchor .faq-content .img-box {
  1664. position: relative;
  1665. }
  1666. @media (max-width: 575px) {
  1667. #ai-anchor .faq-content .img-box {
  1668. width: 330px;
  1669. margin: auto;
  1670. }
  1671. }
  1672. #ai-anchor .faq-content .img-box .img-mb {
  1673. width: 500px;
  1674. margin: auto;
  1675. }
  1676. @media (max-width: 575px) {
  1677. #ai-anchor .faq-content .img-box .img-mb {
  1678. width: 100%;
  1679. }
  1680. }
  1681. #ai-anchor .faq-content .img-box .text-box {
  1682. position: absolute;
  1683. width: 330px;
  1684. right: 330px;
  1685. top: 80px;
  1686. line-height: 35px;
  1687. font-size: 18px;
  1688. font-weight: bold;
  1689. color: #656565;
  1690. }
  1691. @media (max-width: 1400px) {
  1692. #ai-anchor .faq-content .img-box .text-box {
  1693. right: 260px;
  1694. top: 55px;
  1695. }
  1696. }
  1697. @media (max-width: 1200px) {
  1698. #ai-anchor .faq-content .img-box .text-box {
  1699. font-size: 16px;
  1700. right: 185px;
  1701. top: 40px;
  1702. }
  1703. }
  1704. @media (max-width: 991px) {
  1705. #ai-anchor .faq-content .img-box .text-box {
  1706. width: 365px;
  1707. right: 160px;
  1708. top: 310px;
  1709. font-size: 18px;
  1710. }
  1711. }
  1712. @media (max-width: 767px) {
  1713. #ai-anchor .faq-content .img-box .text-box {
  1714. right: 70px;
  1715. }
  1716. }
  1717. @media (max-width: 575px) {
  1718. #ai-anchor .faq-content .img-box .text-box {
  1719. width: 285px;
  1720. right: 23px;
  1721. top: 190px;
  1722. font-size: 14px;
  1723. }
  1724. }
  1725. @media (max-width: 991px) {
  1726. #ai-anchor .faq-content .img-box .text-box p:last-child {
  1727. width: 200px;
  1728. }
  1729. }
  1730. @media (max-width: 575px) {
  1731. #ai-anchor .faq-content .img-box .text-box p:last-child {
  1732. width: 170px;
  1733. }
  1734. }
  1735. #ai-anchor ul {
  1736. list-style: none;
  1737. text-align: center;
  1738. }
  1739. @media (max-width: 767px) {
  1740. #ai-anchor ul {
  1741. padding: 0;
  1742. }
  1743. }
  1744. #ai-anchor ul li {
  1745. font-size: 18px;
  1746. margin-bottom: 10px;
  1747. font-weight: bold;
  1748. }
  1749. @media (max-width: 767px) {
  1750. #ai-anchor ul li {
  1751. font-size: 16px;
  1752. }
  1753. }
  1754. #ai-anchor video {
  1755. width: 75%;
  1756. height: auto;
  1757. }
  1758. @media (max-width: 767px) {
  1759. #ai-anchor video {
  1760. width: 90%;
  1761. }
  1762. }
  1763. #ai-anchor .content {
  1764. width: 800px;
  1765. margin: 0 auto 10rem;
  1766. padding: 2rem 8rem;
  1767. border-radius: 20px;
  1768. background-color: #fff2ec;
  1769. font-size: 20px;
  1770. }
  1771. @media (max-width: 991px) {
  1772. #ai-anchor .content {
  1773. width: 90%;
  1774. padding: 2rem 5vw;
  1775. }
  1776. }
  1777. @media (max-width: 567px) {
  1778. #ai-anchor .content {
  1779. padding-top: 130px;
  1780. }
  1781. }
  1782. #ai-anchor .content .img-01 {
  1783. position: absolute;
  1784. top: -75px;
  1785. left: -30px;
  1786. z-index: 1;
  1787. width: 45%;
  1788. image-rendering: -webkit-optimize-contrast;
  1789. }
  1790. @media (max-width: 567px) {
  1791. #ai-anchor .content .img-01 {
  1792. top: -40%;
  1793. width: 250px;
  1794. }
  1795. }
  1796. #ai-anchor .content .ai-anchor-price {
  1797. background-color: transparent;
  1798. padding: 2px 1px;
  1799. border-radius: 5px;
  1800. font-size: 48px;
  1801. color: #3190da;
  1802. background: linear-gradient(transparent 40%, rgba(255, 255, 255, 0) 50%, yellow 75%, yellow 90%, transparent 95%);
  1803. }
  1804. #ai-anchor .content,
  1805. #ai-anchor .ai-description span {
  1806. font-size: 22px;
  1807. font-weight: bold;
  1808. color: #3190da;
  1809. }
  1810. /* ai-anchor End */
  1811. /* ad-operation Start */
  1812. #ad-operation {
  1813. overflow-x: hidden;
  1814. }
  1815. #ad-operation .header {
  1816. height: auto;
  1817. margin-top: -20px;
  1818. }
  1819. #ad-operation .header p {
  1820. font-weight: bold;
  1821. line-height: 32px;
  1822. }
  1823. #ad-operation .header p span {
  1824. font-size: 20px;
  1825. color: #ea5413;
  1826. }
  1827. #ad-operation .header .banner {
  1828. position: relative;
  1829. }
  1830. #ad-operation .header .banner .img {
  1831. max-width: 100vw;
  1832. height: auto;
  1833. }
  1834. #ad-operation .header .banner .text {
  1835. width: 100%;
  1836. position: absolute;
  1837. z-index: 100;
  1838. left: -55px;
  1839. top: -60px;
  1840. }
  1841. @media (max-width: 991px) {
  1842. #ad-operation .header .banner .text {
  1843. left: -45px;
  1844. top: -35px;
  1845. }
  1846. }
  1847. @media (max-width: 767px) {
  1848. #ad-operation .header .banner .text {
  1849. left: -30px;
  1850. top: -20px;
  1851. }
  1852. }
  1853. @media (max-width: 575px) {
  1854. #ad-operation .header .banner .text {
  1855. left: -15px;
  1856. top: -15px;
  1857. }
  1858. }
  1859. #ad-operation .header .banner .slogen {
  1860. display: flex;
  1861. flex-direction: column;
  1862. align-items: center;
  1863. position: absolute;
  1864. top: 63vw;
  1865. }
  1866. #ad-operation .header .banner .slogen h3 {
  1867. margin-bottom: 0;
  1868. font-size: 40px;
  1869. font-weight: bold;
  1870. }
  1871. @media (max-width: 1200px) {
  1872. #ad-operation .header .banner .slogen h3 {
  1873. font-size: 33px;
  1874. }
  1875. }
  1876. @media (max-width: 991px) {
  1877. #ad-operation .header .banner .slogen h3 {
  1878. font-size: 28px;
  1879. }
  1880. }
  1881. @media (max-width: 767px) {
  1882. #ad-operation .header .banner .slogen h3 {
  1883. font-size: 20px;
  1884. }
  1885. }
  1886. @media (max-width: 575px) {
  1887. #ad-operation .header .banner .slogen h3 {
  1888. font-size: 16px;
  1889. }
  1890. }
  1891. #ad-operation .header .banner .slogen h3 span {
  1892. margin: 20px 0;
  1893. display: inline-block;
  1894. font-size: 70px;
  1895. color: #900381;
  1896. }
  1897. @media (max-width: 1200px) {
  1898. #ad-operation .header .banner .slogen h3 span {
  1899. font-size: 58px;
  1900. }
  1901. }
  1902. @media (max-width: 991px) {
  1903. #ad-operation .header .banner .slogen h3 span {
  1904. margin: 10px 0;
  1905. font-size: 50px;
  1906. }
  1907. }
  1908. @media (max-width: 767px) {
  1909. #ad-operation .header .banner .slogen h3 span {
  1910. font-size: 36px;
  1911. }
  1912. }
  1913. @media (max-width: 575px) {
  1914. #ad-operation .header .banner .slogen h3 span {
  1915. margin: 5px 0;
  1916. font-size: 20px;
  1917. }
  1918. }
  1919. #ad-operation .header .banner .slogen h3 .point {
  1920. color: #dd541a;
  1921. }
  1922. #ad-operation .header .banner .slogen h3 small {
  1923. margin-left: 5px;
  1924. color: #868585;
  1925. text-decoration: line-through;
  1926. }
  1927. #ad-operation .header .banner .slogen h4 {
  1928. font-size: 46px;
  1929. font-weight: bold;
  1930. }
  1931. @media (max-width: 1200px) {
  1932. #ad-operation .header .banner .slogen h4 {
  1933. font-size: 38px;
  1934. }
  1935. }
  1936. @media (max-width: 991px) {
  1937. #ad-operation .header .banner .slogen h4 {
  1938. font-size: 32px;
  1939. }
  1940. }
  1941. @media (max-width: 767px) {
  1942. #ad-operation .header .banner .slogen h4 {
  1943. font-size: 24px;
  1944. }
  1945. }
  1946. @media (max-width: 575px) {
  1947. #ad-operation .header .banner .slogen h4 {
  1948. font-size: 14px;
  1949. }
  1950. }
  1951. #ad-operation .header .banner .slogen button {
  1952. margin-top: 30px;
  1953. }
  1954. @media (max-width: 991px) {
  1955. #ad-operation .header .banner .slogen button {
  1956. margin-top: 10px;
  1957. }
  1958. }
  1959. @media (max-width: 575px) {
  1960. #ad-operation .header .banner .slogen button {
  1961. margin-top: 5px;
  1962. }
  1963. }
  1964. #ad-operation .header-title {
  1965. color: #000;
  1966. font-weight: bold;
  1967. letter-spacing: 5px;
  1968. }
  1969. #ad-operation .header-right-cir {
  1970. right: -15%;
  1971. top: 30%;
  1972. }
  1973. #ad-operation .img-content {
  1974. display: flex;
  1975. justify-content: center;
  1976. margin: -100px auto;
  1977. position: relative;
  1978. z-index: 100;
  1979. width: 1300px;
  1980. }
  1981. @media (max-width: 1200px) {
  1982. #ad-operation .img-content {
  1983. width: 1000px;
  1984. margin: -50px auto;
  1985. }
  1986. }
  1987. @media (max-width: 991px) {
  1988. #ad-operation .img-content {
  1989. width: 700px;
  1990. }
  1991. }
  1992. @media (max-width: 767px) {
  1993. #ad-operation .img-content {
  1994. width: 600px;
  1995. }
  1996. }
  1997. @media (max-width: 575px) {
  1998. #ad-operation .img-content {
  1999. left: -10px;
  2000. width: 350px;
  2001. }
  2002. }
  2003. #ad-operation .img-content img {
  2004. width: 100%;
  2005. }
  2006. @media (max-width: 575px) {
  2007. #ad-operation .img-content img {
  2008. width: 140%;
  2009. }
  2010. }
  2011. #ad-operation .img-content h4 {
  2012. position: absolute;
  2013. font-size: 30px;
  2014. line-height: 40px;
  2015. font-weight: bold;
  2016. text-align: center;
  2017. }
  2018. @media (max-width: 1200px) {
  2019. #ad-operation .img-content h4 {
  2020. font-size: 22px;
  2021. line-height: 30px;
  2022. }
  2023. }
  2024. @media (max-width: 991px) {
  2025. #ad-operation .img-content h4 {
  2026. font-size: 16px;
  2027. line-height: 24px;
  2028. }
  2029. }
  2030. @media (max-width: 767px) {
  2031. #ad-operation .img-content h4 {
  2032. font-size: 14px;
  2033. line-height: 20px;
  2034. }
  2035. }
  2036. @media (max-width: 575px) {
  2037. #ad-operation .img-content h4 {
  2038. font-size: 12px;
  2039. }
  2040. }
  2041. #ad-operation .img-content .left {
  2042. top: 320px;
  2043. left: 280px;
  2044. }
  2045. @media (max-width: 1200px) {
  2046. #ad-operation .img-content .left {
  2047. top: 245px;
  2048. left: 218px;
  2049. }
  2050. }
  2051. @media (max-width: 991px) {
  2052. #ad-operation .img-content .left {
  2053. top: 170px;
  2054. left: 150px;
  2055. }
  2056. }
  2057. @media (max-width: 767px) {
  2058. #ad-operation .img-content .left {
  2059. top: 145px;
  2060. left: 128px;
  2061. }
  2062. }
  2063. @media (max-width: 575px) {
  2064. #ad-operation .img-content .left {
  2065. top: 115px;
  2066. left: 32px;
  2067. }
  2068. }
  2069. #ad-operation .img-content .center {
  2070. top: 420px;
  2071. left: 600px;
  2072. }
  2073. @media (max-width: 1200px) {
  2074. #ad-operation .img-content .center {
  2075. top: 325px;
  2076. left: 465px;
  2077. }
  2078. }
  2079. @media (max-width: 991px) {
  2080. #ad-operation .img-content .center {
  2081. top: 225px;
  2082. left: 323px;
  2083. }
  2084. }
  2085. @media (max-width: 767px) {
  2086. #ad-operation .img-content .center {
  2087. top: 193px;
  2088. left: 278px;
  2089. }
  2090. }
  2091. @media (max-width: 575px) {
  2092. #ad-operation .img-content .center {
  2093. top: 153px;
  2094. left: 155px;
  2095. }
  2096. }
  2097. #ad-operation .img-content .right {
  2098. top: 545px;
  2099. right: 240px;
  2100. }
  2101. @media (max-width: 1200px) {
  2102. #ad-operation .img-content .right {
  2103. top: 420px;
  2104. right: 188px;
  2105. }
  2106. }
  2107. @media (max-width: 991px) {
  2108. #ad-operation .img-content .right {
  2109. top: 290px;
  2110. right: 130px;
  2111. }
  2112. }
  2113. @media (max-width: 767px) {
  2114. #ad-operation .img-content .right {
  2115. top: 250px;
  2116. right: 109px;
  2117. }
  2118. }
  2119. @media (max-width: 575px) {
  2120. #ad-operation .img-content .right {
  2121. top: 200px;
  2122. right: 17px;
  2123. }
  2124. }
  2125. #ad-operation .dm-description {
  2126. display: flex;
  2127. flex-direction: column;
  2128. justify-content: center;
  2129. align-items: center;
  2130. }
  2131. #ad-operation .dm-description h2 {
  2132. margin: 0;
  2133. padding: 8px 10px;
  2134. color: #fff;
  2135. display: inline-block;
  2136. text-align: center;
  2137. font-size: 24px;
  2138. line-height: 33px;
  2139. border-radius: 10px;
  2140. background: #ea5413;
  2141. }
  2142. #ad-operation .dm-description h5 {
  2143. font-size: 22px;
  2144. letter-spacing: 2px;
  2145. line-height: 36px;
  2146. }
  2147. @media (max-width: 767px) {
  2148. #ad-operation .dm-description h5 {
  2149. font-size: 18px;
  2150. }
  2151. }
  2152. #ad-operation .dm-description h5 strong {
  2153. padding-bottom: 3px;
  2154. }
  2155. #ad-operation .dm-description .line {
  2156. display: block;
  2157. width: 50px;
  2158. height: 7px;
  2159. margin: 80px auto 40px;
  2160. background-color: #ea5413;
  2161. }
  2162. #ad-operation .dm-description .stock-img {
  2163. position: absolute;
  2164. z-index: -10;
  2165. width: 100vw;
  2166. top: 100%;
  2167. height: 660px;
  2168. }
  2169. @media (max-width: 1200px) {
  2170. #ad-operation .dm-description .stock-img {
  2171. height: 535px;
  2172. }
  2173. }
  2174. @media (max-width: 991px) {
  2175. #ad-operation .dm-description .stock-img {
  2176. height: 360px;
  2177. }
  2178. }
  2179. @media (max-width: 767px) {
  2180. #ad-operation .dm-description .stock-img {
  2181. height: 300px;
  2182. }
  2183. }
  2184. @media (max-width: 575px) {
  2185. #ad-operation .dm-description .stock-img {
  2186. height: 235px;
  2187. }
  2188. }
  2189. #ad-operation .dm-description .purple-circle {
  2190. top: 100px;
  2191. }
  2192. #ad-operation .card-content > div {
  2193. display: flex;
  2194. flex-direction: column;
  2195. border: 2px solid #ea5413;
  2196. border-radius: 10px;
  2197. }
  2198. #ad-operation .card-content h3 {
  2199. width: 60%;
  2200. margin: -17px auto 0;
  2201. padding: 8px 5px;
  2202. display: inline-block;
  2203. color: #fff;
  2204. background: #ea5413;
  2205. text-align: center;
  2206. font-size: 18px;
  2207. font-weight: bold;
  2208. letter-spacing: 2px;
  2209. border-radius: 10px;
  2210. box-shadow: 2px 2px 5px #ccc;
  2211. }
  2212. @media (max-width: 576px) {
  2213. #ad-operation .card-content h3 {
  2214. width: auto;
  2215. padding: 7px 15px;
  2216. font-size: 16px;
  2217. }
  2218. }
  2219. #ad-operation .card-content h4,
  2220. #ad-operation .card-content .table {
  2221. margin-top: 25px;
  2222. padding: 20px;
  2223. font-size: 14px;
  2224. line-height: 32px;
  2225. background: #ffebe2;
  2226. }
  2227. #ad-operation .card-content h4 span,
  2228. #ad-operation .card-content .table span {
  2229. display: block;
  2230. border-bottom: 1px solid;
  2231. }
  2232. #ad-operation .card-content h4 strong,
  2233. #ad-operation .card-content .table strong {
  2234. font-size: 20px;
  2235. }
  2236. #ad-operation .card-content h4 p,
  2237. #ad-operation .card-content .table p {
  2238. margin: 0;
  2239. line-height: 20px;
  2240. }
  2241. #ad-operation .content-box {
  2242. width: 65%;
  2243. margin: auto;
  2244. padding: 30px 0;
  2245. display: flex;
  2246. justify-content: center;
  2247. background: #ffebe2;
  2248. border: 2px solid #ffebe2;
  2249. position: relative;
  2250. }
  2251. @media (max-width: 991px) {
  2252. #ad-operation .content-box {
  2253. width: 90%;
  2254. }
  2255. }
  2256. @media (max-width: 767px) {
  2257. #ad-operation .content-box {
  2258. width: 100%;
  2259. }
  2260. }
  2261. @media (max-width: 475px) {
  2262. #ad-operation .content-box {
  2263. padding-left: 10px;
  2264. }
  2265. }
  2266. #ad-operation .content-box p {
  2267. margin: 0;
  2268. line-height: 32px;
  2269. }
  2270. @media (max-width: 767px) {
  2271. #ad-operation .content-box p {
  2272. font-size: 14px;
  2273. }
  2274. }
  2275. @media (max-width: 475px) {
  2276. #ad-operation .content-box p {
  2277. font-size: 13px;
  2278. }
  2279. }
  2280. #ad-operation .content-box h4 {
  2281. font-size: 22px;
  2282. font-weight: bold;
  2283. margin-bottom: 20px;
  2284. }
  2285. @media (max-width: 767px) {
  2286. #ad-operation .content-box h4 {
  2287. font-size: 18px;
  2288. }
  2289. }
  2290. @media (max-width: 475px) {
  2291. #ad-operation .content-box h4 {
  2292. font-size: 14px;
  2293. white-space: nowrap;
  2294. }
  2295. }
  2296. #ad-operation .content-box .line {
  2297. height: 3px;
  2298. background: #fff;
  2299. width: 950px;
  2300. position: absolute;
  2301. left: -200px;
  2302. top: 35px;
  2303. }
  2304. @media (max-width: 767px) {
  2305. #ad-operation .content-box .line {
  2306. top: 33px;
  2307. }
  2308. }
  2309. @media (max-width: 575px) {
  2310. #ad-operation .content-box .line {
  2311. top: 30px;
  2312. }
  2313. }
  2314. #ad-operation .content-badge {
  2315. position: absolute;
  2316. left: 0;
  2317. top: -53px;
  2318. padding: 5px 10px;
  2319. background: #ea5413;
  2320. border-radius: 10px;
  2321. font-size: 22px;
  2322. font-weight: bold;
  2323. color: #fff;
  2324. }
  2325. #ad-operation .client-content {
  2326. position: relative;
  2327. display: flex;
  2328. justify-content: center;
  2329. }
  2330. #ad-operation .client-content p {
  2331. position: absolute;
  2332. top: 11vw;
  2333. z-index: 10;
  2334. font-size: 32px;
  2335. font-weight: bold;
  2336. }
  2337. @media (max-width: 991px) {
  2338. #ad-operation .client-content p {
  2339. font-size: 28px;
  2340. }
  2341. }
  2342. @media (max-width: 767px) {
  2343. #ad-operation .client-content p {
  2344. font-size: 22px;
  2345. }
  2346. }
  2347. @media (max-width: 575px) {
  2348. #ad-operation .client-content p {
  2349. top: 9vw;
  2350. font-size: 18px;
  2351. }
  2352. }
  2353. #ad-operation .pageForm {
  2354. line-height: 32px;
  2355. letter-spacing: 1px;
  2356. background: #fff;
  2357. }
  2358. #ad-operation .header-lefttop {
  2359. width: 170%;
  2360. position: absolute;
  2361. left: -22vw;
  2362. top: -225px;
  2363. z-index: -1;
  2364. opacity: 0.5;
  2365. }
  2366. @media (max-width: 991px) {
  2367. #ad-operation .header-lefttop {
  2368. width: 100%;
  2369. left: -24vw;
  2370. top: -250px;
  2371. }
  2372. }
  2373. @media (max-width: 991px) {
  2374. #ad-operation .header-lefttop {
  2375. top: -26vw;
  2376. }
  2377. }
  2378. #ad-operation .category.dm-description {
  2379. padding: 2rem 8rem;
  2380. }
  2381. @media (max-width: 991px) {
  2382. #ad-operation .category.dm-description {
  2383. padding: 2rem 3rem;
  2384. }
  2385. }
  2386. @media (max-width: 767px) {
  2387. #ad-operation .category.dm-description {
  2388. padding: 2rem 0rem;
  2389. }
  2390. }
  2391. #ad-operation .accreditation p {
  2392. font-size: 24px;
  2393. }
  2394. @media (max-width: 575px) {
  2395. #ad-operation .accreditation p {
  2396. font-size: 20px;
  2397. }
  2398. }
  2399. #ad-operation .accreditation img {
  2400. width: 150px;
  2401. position: absolute;
  2402. top: -35px;
  2403. left: -25px;
  2404. }
  2405. @media (max-width: 767px) {
  2406. #ad-operation .accreditation img {
  2407. width: 135px;
  2408. left: -50px;
  2409. }
  2410. }
  2411. @media (max-width: 575px) {
  2412. #ad-operation .accreditation img {
  2413. width: 120px;
  2414. top: -80px;
  2415. left: -20px;
  2416. }
  2417. }
  2418. #ad-operation .purple-circle {
  2419. width: 40%;
  2420. top: -400px;
  2421. right: -150px;
  2422. position: absolute;
  2423. z-index: -100;
  2424. }
  2425. @media (max-width: 991px) {
  2426. #ad-operation .purple-circle {
  2427. width: 60%;
  2428. }
  2429. }
  2430. @media (max-width: 767px) {
  2431. #ad-operation .purple-circle {
  2432. top: -300px;
  2433. }
  2434. }
  2435. #ad-operation .data-text .circle {
  2436. top: -220px;
  2437. left: -5vw;
  2438. }
  2439. @media (max-width: 767px) {
  2440. #ad-operation .data-text .circle {
  2441. top: -100px;
  2442. }
  2443. }
  2444. /* ad-operation End */
  2445. /* blog-traffic Start */
  2446. .blog-traffic {
  2447. overflow-x: hidden;
  2448. }
  2449. .blog-traffic .header {
  2450. padding: 0;
  2451. }
  2452. .blog-traffic .banner {
  2453. width: 100vw;
  2454. height: auto;
  2455. position: absolute;
  2456. z-index: -10;
  2457. }
  2458. @media (max-width: 767px) {
  2459. .blog-traffic .banner {
  2460. width: 150vw;
  2461. height: auto;
  2462. }
  2463. }
  2464. .blog-traffic .header-img {
  2465. width: 150%;
  2466. height: auto;
  2467. position: relative;
  2468. top: -30px;
  2469. right: 30px;
  2470. z-index: -1;
  2471. }
  2472. @media (max-width: 767px) {
  2473. .blog-traffic .header-img {
  2474. width: 100%;
  2475. top: -45px;
  2476. right: unset;
  2477. }
  2478. }
  2479. .blog-traffic .header-title {
  2480. font-size: 2.5rem;
  2481. line-height: 65px;
  2482. font-weight: 600;
  2483. color: #000;
  2484. }
  2485. @media (max-width: 768px) {
  2486. .blog-traffic .header-title {
  2487. font-size: 2.2rem;
  2488. }
  2489. }
  2490. .blog-traffic .dm-description {
  2491. margin-top: -250px;
  2492. }
  2493. @media (max-width: 1400px) {
  2494. .blog-traffic .dm-description {
  2495. margin-top: -190px;
  2496. }
  2497. }
  2498. @media (max-width: 991px) {
  2499. .blog-traffic .dm-description {
  2500. margin-top: -100px;
  2501. }
  2502. }
  2503. .blog-traffic .dm-description p {
  2504. font-size: 20px;
  2505. line-height: 32px;
  2506. }
  2507. .blog-traffic .category {
  2508. padding: 0;
  2509. position: relative;
  2510. }
  2511. .blog-traffic .category.dm-description {
  2512. padding: 0;
  2513. }
  2514. @media (max-width: 575px) {
  2515. .blog-traffic .category {
  2516. padding: 0 10px;
  2517. }
  2518. }
  2519. .blog-traffic .category h4 {
  2520. font-size: 2rem;
  2521. }
  2522. .blog-traffic .category h4,
  2523. .blog-traffic .category .sub-title {
  2524. margin: 0;
  2525. color: #f5ab1b;
  2526. font-weight: bold;
  2527. }
  2528. .blog-traffic .category-sub-h2::after {
  2529. width: 3rem;
  2530. border-bottom: 10px solid #ea5413;
  2531. margin-top: 15px;
  2532. }
  2533. .blog-traffic ul {
  2534. padding: 0;
  2535. list-style: none;
  2536. }
  2537. .blog-traffic ul li {
  2538. line-height: 32px;
  2539. }
  2540. .blog-traffic .img-block-img {
  2541. width: 12%;
  2542. -o-object-fit: contain;
  2543. object-fit: contain;
  2544. image-rendering: -webkit-optimize-contrast;
  2545. position: relative;
  2546. top: -30px;
  2547. }
  2548. @media (max-width: 1200px) {
  2549. .blog-traffic .img-block-img {
  2550. top: -10px;
  2551. }
  2552. }
  2553. @media (max-width: 991px) {
  2554. .blog-traffic .img-block-img {
  2555. width: 15%;
  2556. }
  2557. }
  2558. @media (max-width: 767px) {
  2559. .blog-traffic .img-block-img {
  2560. width: 20%;
  2561. top: 5px;
  2562. }
  2563. }
  2564. @media (max-width: 490px) {
  2565. .blog-traffic .img-block-img {
  2566. top: 15px;
  2567. }
  2568. }
  2569. @media (max-width: 414px) {
  2570. .blog-traffic .img-block-img {
  2571. top: 22px;
  2572. }
  2573. }
  2574. @media (max-width: 1200px) {
  2575. .blog-traffic .img-first {
  2576. top: 0;
  2577. }
  2578. }
  2579. @media (max-width: 767px) {
  2580. .blog-traffic .img-first {
  2581. top: 15px;
  2582. }
  2583. }
  2584. @media (max-width: 490px) {
  2585. .blog-traffic .img-first {
  2586. top: 40px;
  2587. }
  2588. }
  2589. .blog-traffic .add-img {
  2590. width: 130px;
  2591. margin: 10px auto 0;
  2592. image-rendering: -webkit-optimize-contrast;
  2593. }
  2594. @media (max-width: 991px) {
  2595. .blog-traffic .add-img {
  2596. margin: 0 auto;
  2597. }
  2598. }
  2599. @media (max-width: 767px) {
  2600. .blog-traffic .add-img {
  2601. margin: 10px auto -25px;
  2602. }
  2603. }
  2604. .blog-traffic .purple-circle {
  2605. width: 50%;
  2606. left: -250px;
  2607. bottom: 100px;
  2608. }
  2609. @media (max-width: 991px) {
  2610. .blog-traffic .purple-circle {
  2611. left: -150px;
  2612. }
  2613. }
  2614. @media (max-width: 767px) {
  2615. .blog-traffic .purple-circle {
  2616. left: -50px;
  2617. }
  2618. }
  2619. .blog-traffic .orange-circle {
  2620. width: 50%;
  2621. right: -200px;
  2622. top: -200px;
  2623. }
  2624. @media (max-width: 767px) {
  2625. .blog-traffic .orange-circle {
  2626. right: -100px;
  2627. top: -150px;
  2628. }
  2629. }
  2630. .blog-traffic .data-text .circle {
  2631. top: -250px;
  2632. right: -5vw;
  2633. }
  2634. @media (max-width: 767px) {
  2635. .blog-traffic .data-text .circle {
  2636. top: 0px;
  2637. }
  2638. }
  2639. /* blog-traffic End */
  2640. /* seo Start */
  2641. #seo-dm {
  2642. overflow: hidden;
  2643. }
  2644. #seo-dm .bg-img {
  2645. width: 50%;
  2646. position: absolute;
  2647. right: -50px;
  2648. z-index: -1;
  2649. }
  2650. #seo-dm .block-content {
  2651. margin-left: -35px;
  2652. }
  2653. #seo-dm .block-content h3 {
  2654. color: #f6ab1c;
  2655. font-size: 2.2rem;
  2656. font-weight: bold;
  2657. }
  2658. @media (max-width: 991px) {
  2659. #seo-dm .block-content h3 {
  2660. font-size: 1.8rem;
  2661. }
  2662. }
  2663. @media (max-width: 575px) {
  2664. #seo-dm .block-content h3 {
  2665. font-size: 1.5rem;
  2666. }
  2667. }
  2668. #seo-dm .block-content p {
  2669. color: #656565;
  2670. font-weight: bold;
  2671. }
  2672. #seo-dm .block-content .block-title {
  2673. margin-bottom: 20px;
  2674. }
  2675. @media (max-width: 575px) {
  2676. #seo-dm .block-content .block-title {
  2677. margin-bottom: 0;
  2678. }
  2679. }
  2680. /* seo End */
  2681. /* youtube-views Start */
  2682. #youtube-views,
  2683. #youtube-views-zh {
  2684. overflow-x: hidden;
  2685. }
  2686. #youtube-views h5,
  2687. #youtube-views-zh h5 {
  2688. line-height: 32px;
  2689. }
  2690. #youtube-views .title,
  2691. #youtube-views-zh .title {
  2692. color: #ea5413;
  2693. font-size: 1.3rem;
  2694. font-weight: bold;
  2695. }
  2696. #youtube-views .header-right,
  2697. #youtube-views-zh .header-right {
  2698. background-position: center;
  2699. }
  2700. #youtube-views .card-group,
  2701. #youtube-views-zh .card-group {
  2702. margin-top: 50px;
  2703. }
  2704. #youtube-views .card-group .card,
  2705. #youtube-views-zh .card-group .card {
  2706. box-shadow: 0 0 10px rgba(32, 32, 32, 0.2509803922);
  2707. }
  2708. #youtube-views .card-group .card ul,
  2709. #youtube-views-zh .card-group .card ul {
  2710. padding: 0;
  2711. list-style: none;
  2712. }
  2713. #youtube-views .card-group .card ul img,
  2714. #youtube-views-zh .card-group .card ul img {
  2715. margin-bottom: 1px;
  2716. }
  2717. #youtube-views .card-group .card .price,
  2718. #youtube-views-zh .card-group .card .price {
  2719. width: 100%;
  2720. padding: 10px 0;
  2721. font-size: 28px;
  2722. font-weight: bold;
  2723. text-align: center;
  2724. color: #fff;
  2725. background-color: #ea5413;
  2726. letter-spacing: 2px;
  2727. }
  2728. #youtube-views .card-group .card .buy-btn,
  2729. #youtube-views-zh .card-group .card .buy-btn {
  2730. padding: 6px 18px;
  2731. color: #fff;
  2732. border: 1px solid transparent;
  2733. border-radius: 50px;
  2734. background: #ea5413;
  2735. transition: all 0.3s;
  2736. }
  2737. #youtube-views .card-group .card .buy-btn:hover,
  2738. #youtube-views-zh .card-group .card .buy-btn:hover {
  2739. color: #ea5413;
  2740. border: 1px solid #ea5413;
  2741. background: #fff;
  2742. }
  2743. #youtube-views .card-group .paypal-content,
  2744. #youtube-views-zh .card-group .paypal-content {
  2745. margin: 0 20px;
  2746. box-shadow: none;
  2747. }
  2748. #youtube-views .direction-list,
  2749. #youtube-views-zh .direction-list {
  2750. margin-top: 100px;
  2751. }
  2752. @media (max-width: 991px) {
  2753. #youtube-views .direction-list,
  2754. #youtube-views-zh .direction-list {
  2755. margin-top: 60px;
  2756. }
  2757. }
  2758. #youtube-views .direction-list img,
  2759. #youtube-views-zh .direction-list img {
  2760. width: 50px;
  2761. -o-object-fit: contain;
  2762. object-fit: contain;
  2763. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  2764. }
  2765. #youtube-views .direction-list .content > div,
  2766. #youtube-views-zh .direction-list .content > div {
  2767. margin-bottom: 40px;
  2768. padding: 0px 15px;
  2769. border-left: 1px solid rgba(0, 0, 0, 0.125);
  2770. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  2771. }
  2772. #youtube-views .direction-list section h5,
  2773. #youtube-views-zh .direction-list section h5 {
  2774. margin: 0;
  2775. font-size: 18px;
  2776. font-weight: bold;
  2777. }
  2778. #youtube-views .direction-list section p,
  2779. #youtube-views-zh .direction-list section p {
  2780. font-size: 14px;
  2781. }
  2782. #youtube-views .accordion-button,
  2783. #youtube-views-zh .accordion-button {
  2784. padding: 20px;
  2785. }
  2786. #youtube-views .accordion-button:not(.collapsed),
  2787. #youtube-views-zh .accordion-button:not(.collapsed) {
  2788. color: #ea5413 !important;
  2789. background-color: #ffebe2 !important;
  2790. }
  2791. #youtube-views button:focus:not(:focus-visible),
  2792. #youtube-views-zh button:focus:not(:focus-visible) {
  2793. box-shadow: none !important;
  2794. }
  2795. #youtube-views .accordion-button:not(.collapsed)::after,
  2796. #youtube-views-zh .accordion-button:not(.collapsed)::after {
  2797. 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");
  2798. }
  2799. @media (max-width: 767px) {
  2800. #youtube-views .category.dm-description,
  2801. #youtube-views-zh .category.dm-description {
  2802. padding-top: 6rem;
  2803. }
  2804. }
  2805. @media (max-width: 575px) {
  2806. #youtube-views .category.dm-description,
  2807. #youtube-views-zh .category.dm-description {
  2808. padding-top: 14rem;
  2809. }
  2810. }
  2811. /* youtube-views End */
  2812. /* youtube-views-zh Start */
  2813. #youtube-views-zh .header {
  2814. margin-top: 0;
  2815. padding: 4.8rem 0 3rem;
  2816. }
  2817. #youtube-views-zh .header p {
  2818. line-height: 35px;
  2819. font-size: 18px;
  2820. font-weight: bold;
  2821. color: #656565;
  2822. }
  2823. @media (max-width: 414px) {
  2824. #youtube-views-zh .header p {
  2825. font-size: 14px;
  2826. }
  2827. }
  2828. #youtube-views-zh .header .row {
  2829. height: 1000px;
  2830. }
  2831. @media (max-width: 991px) {
  2832. #youtube-views-zh .header .row {
  2833. height: 700px;
  2834. }
  2835. }
  2836. @media (max-width: 767px) {
  2837. #youtube-views-zh .header .row {
  2838. height: auto;
  2839. }
  2840. }
  2841. @media (max-width: 767px) {
  2842. #youtube-views-zh .header .row div {
  2843. text-align: center;
  2844. }
  2845. }
  2846. #youtube-views-zh .header .header-title {
  2847. padding-top: 10rem;
  2848. margin-bottom: 30px;
  2849. font-size: 40px;
  2850. color: #ea5413;
  2851. line-height: 44px;
  2852. }
  2853. @media (max-width: 991px) {
  2854. #youtube-views-zh .header .header-title {
  2855. padding-top: 5rem;
  2856. }
  2857. }
  2858. @media (max-width: 414px) {
  2859. #youtube-views-zh .header .header-title {
  2860. font-size: 34px;
  2861. }
  2862. }
  2863. #youtube-views-zh .header .header-title small {
  2864. font-size: 28px;
  2865. }
  2866. @media (max-width: 991px) {
  2867. #youtube-views-zh .header .header-title small {
  2868. font-size: 22px;
  2869. }
  2870. }
  2871. #youtube-views-zh .header .banner {
  2872. width: 100vw;
  2873. height: 1360px;
  2874. position: absolute;
  2875. top: 0;
  2876. right: -16vw;
  2877. z-index: -1;
  2878. background-size: cover;
  2879. background-position: center;
  2880. background-repeat: no-repeat;
  2881. background-image: url("/imgs/dm/youtube-views-01.png");
  2882. }
  2883. @media (max-width: 1200px) {
  2884. #youtube-views-zh .header .banner {
  2885. top: -10vw;
  2886. }
  2887. }
  2888. @media (max-width: 991px) {
  2889. #youtube-views-zh .header .banner {
  2890. top: 8vw;
  2891. height: 1000px;
  2892. }
  2893. }
  2894. @media (max-width: 767px) {
  2895. #youtube-views-zh .info-content {
  2896. text-align: center;
  2897. }
  2898. }
  2899. #youtube-views-zh .info-content h4 {
  2900. font-weight: bold;
  2901. line-height: 35px;
  2902. margin-bottom: 30px;
  2903. }
  2904. #youtube-views-zh .info-content h4 strong {
  2905. font-size: 30px;
  2906. color: #ea5413;
  2907. }
  2908. #youtube-views-zh .info-content p {
  2909. width: 320px;
  2910. line-height: 35px;
  2911. color: #656565;
  2912. }
  2913. @media (max-width: 767px) {
  2914. #youtube-views-zh .info-content p {
  2915. margin: auto;
  2916. }
  2917. }
  2918. #youtube-views-zh .card-group {
  2919. margin: 170px auto 50px;
  2920. }
  2921. @media (max-width: 575px) {
  2922. #youtube-views-zh .card-group {
  2923. margin: 75px auto 50px;
  2924. }
  2925. }
  2926. #youtube-views-zh .card-group .card {
  2927. border-radius: 20px;
  2928. }
  2929. #youtube-views-zh .card-group .card ul {
  2930. padding: 10px;
  2931. }
  2932. #youtube-views-zh .card-group .card .price {
  2933. font-size: 30px;
  2934. }
  2935. #youtube-views-zh .card-group .card .price small {
  2936. display: block;
  2937. margin-top: -3px;
  2938. font-size: 18px;
  2939. font-weight: normal;
  2940. text-decoration: line-through;
  2941. }
  2942. #youtube-views-zh .card-group .card .buy-btn {
  2943. display: block;
  2944. text-decoration: none;
  2945. }
  2946. @media (max-width: 767px) {
  2947. #youtube-views-zh .direction-list {
  2948. margin-top: 50px;
  2949. }
  2950. }
  2951. #youtube-views-zh .direction-list img {
  2952. filter: unset;
  2953. position: absolute;
  2954. }
  2955. #youtube-views-zh .direction-list section {
  2956. margin-bottom: 40px;
  2957. padding: 0px 35px 10px;
  2958. border-left: 1px solid #656565;
  2959. border-bottom: 1px solid #656565;
  2960. border-radius: 0 0 0 10px;
  2961. }
  2962. #youtube-views-zh .direction-list section h5 {
  2963. margin-bottom: 20px;
  2964. }
  2965. #youtube-views-zh .direction-list section p {
  2966. font-size: 16px;
  2967. line-height: 30px;
  2968. color: #656565;
  2969. }
  2970. #youtube-views-zh .data-content {
  2971. display: flex;
  2972. flex-direction: column;
  2973. align-items: center;
  2974. margin-bottom: 150px;
  2975. }
  2976. #youtube-views-zh .data-content section h4 {
  2977. position: absolute;
  2978. top: 35%;
  2979. left: 50%;
  2980. width: 100%;
  2981. font-size: 28px;
  2982. text-align: center;
  2983. font-weight: bold;
  2984. line-height: 40px;
  2985. transform: translate(-50%, -50%);
  2986. }
  2987. @media (max-width: 1200px) {
  2988. #youtube-views-zh .data-content section h4 {
  2989. top: 40%;
  2990. }
  2991. }
  2992. @media (max-width: 767px) {
  2993. #youtube-views-zh .data-content section h4 {
  2994. top: 36%;
  2995. font-size: 18px;
  2996. line-height: normal;
  2997. }
  2998. }
  2999. @media (max-width: 575px) {
  3000. #youtube-views-zh .data-content section h4 {
  3001. top: 40%;
  3002. }
  3003. }
  3004. #youtube-views-zh .data-content section h4 strong {
  3005. font-size: 34px;
  3006. color: #ea5413;
  3007. }
  3008. @media (max-width: 767px) {
  3009. #youtube-views-zh .data-content section h4 strong {
  3010. font-size: 24px;
  3011. }
  3012. }
  3013. @media (max-width: 414px) {
  3014. #youtube-views-zh .data-content section h4 strong {
  3015. font-size: 22px;
  3016. }
  3017. }
  3018. #youtube-views-zh .data-content section img {
  3019. margin-top: 150px;
  3020. }
  3021. @media (max-width: 991px) {
  3022. #youtube-views-zh .data-content section img {
  3023. height: 500px;
  3024. -o-object-fit: cover;
  3025. object-fit: cover;
  3026. }
  3027. }
  3028. @media (max-width: 767px) {
  3029. #youtube-views-zh .data-content section img {
  3030. margin-top: 80px;
  3031. height: 400px;
  3032. }
  3033. }
  3034. @media (max-width: 575px) {
  3035. #youtube-views-zh .data-content section img {
  3036. height: 280px;
  3037. }
  3038. }
  3039. #youtube-views-zh .data-content p {
  3040. font-weight: bold;
  3041. line-height: 35px;
  3042. color: #656565;
  3043. }
  3044. /* youtube-views-zh End */
  3045. /* seo-image Start */
  3046. .seo-image {
  3047. overflow-x: hidden;
  3048. }
  3049. .seo-image p {
  3050. line-height: 32px;
  3051. }
  3052. .seo-image .header {
  3053. padding: 0;
  3054. }
  3055. .seo-image .video-box {
  3056. width: 100%;
  3057. padding-bottom: 56%;
  3058. }
  3059. .seo-image .content {
  3060. margin: 150px auto;
  3061. }
  3062. @media (max-width: 767px) {
  3063. .seo-image .content {
  3064. margin: 80px auto;
  3065. }
  3066. }
  3067. .seo-image .line {
  3068. width: 820px;
  3069. position: absolute;
  3070. top: -70px;
  3071. left: 345px;
  3072. }
  3073. @media (max-width: 1400px) {
  3074. .seo-image .line {
  3075. width: 840px;
  3076. top: -85px;
  3077. left: 210px;
  3078. }
  3079. }
  3080. @media (max-width: 1200px) {
  3081. .seo-image .line {
  3082. width: 880px;
  3083. top: -90px;
  3084. left: 114px;
  3085. }
  3086. }
  3087. @media (max-width: 991px) {
  3088. .seo-image .line {
  3089. display: none;
  3090. }
  3091. }
  3092. .seo-image .title {
  3093. font-size: 28px;
  3094. color: #f6ab1c;
  3095. font-weight: bold;
  3096. }
  3097. @media (max-width: 991px) {
  3098. .seo-image .img-item {
  3099. width: 100%;
  3100. max-width: 100% !important;
  3101. }
  3102. }
  3103. .seo-image .purple-circle,
  3104. .seo-image .orange-circle {
  3105. width: 100%;
  3106. }
  3107. @media (max-width: 991px) {
  3108. .seo-image .purple-circle,
  3109. .seo-image .orange-circle {
  3110. width: 60%;
  3111. }
  3112. }
  3113. .seo-image .purple-circle {
  3114. top: -470px;
  3115. right: -100%;
  3116. }
  3117. @media (max-width: 991px) {
  3118. .seo-image .purple-circle {
  3119. top: -350px;
  3120. right: -150px;
  3121. }
  3122. }
  3123. @media (max-width: 767px) {
  3124. .seo-image .purple-circle {
  3125. top: -250px;
  3126. right: -20px;
  3127. }
  3128. }
  3129. .seo-image .orange-circle {
  3130. top: -200px;
  3131. left: -100%;
  3132. }
  3133. @media (max-width: 991px) {
  3134. .seo-image .orange-circle {
  3135. top: -30vw;
  3136. left: -20vw;
  3137. }
  3138. }
  3139. .seo-image .data-text .circle {
  3140. top: -400px;
  3141. right: -5vw;
  3142. }
  3143. @media (max-width: 991px) {
  3144. .seo-image .data-text .circle {
  3145. top: -250px;
  3146. }
  3147. }
  3148. @media (max-width: 767px) {
  3149. .seo-image .data-text .circle {
  3150. top: -120px;
  3151. }
  3152. }
  3153. /* seo-image End */
  3154. /* 共用 className Start */
  3155. .purple-circle,
  3156. .orange-circle {
  3157. position: absolute;
  3158. z-index: -1;
  3159. }
  3160. .data-text {
  3161. position: relative;
  3162. }
  3163. .data-text p {
  3164. font-size: 28px;
  3165. font-weight: bold;
  3166. text-align: center;
  3167. }
  3168. .data-text .circle {
  3169. width: 500px;
  3170. z-index: -100;
  3171. position: absolute;
  3172. }
  3173. @media (max-width: 991px) {
  3174. .data-text .circle {
  3175. width: 400px;
  3176. }
  3177. }
  3178. @media (max-width: 767px) {
  3179. .data-text .circle {
  3180. width: 250px;
  3181. }
  3182. }
  3183. /* 共用 className End */
  3184. /* ai-presenter Start */
  3185. .ai-presenter {
  3186. margin: 100px auto;
  3187. overflow: hidden;
  3188. }
  3189. .ai-presenter .title-item {
  3190. display: flex;
  3191. flex-direction: column;
  3192. justify-content: center;
  3193. align-items: center;
  3194. position: relative;
  3195. }
  3196. .ai-presenter .title-item img {
  3197. width: 450px;
  3198. }
  3199. .ai-presenter .title-item h4 {
  3200. text-align: center;
  3201. margin-top: -41px;
  3202. margin-left: -10px;
  3203. font-weight: bold;
  3204. }
  3205. .ai-presenter .usecace-list {
  3206. margin-bottom: 100px;
  3207. }
  3208. .ai-presenter .usecace-list img {
  3209. width: 100%;
  3210. }
  3211. .ai-presenter .usecace-list h5 {
  3212. font-size: 18px;
  3213. text-align: center;
  3214. }
  3215. .ai-presenter .usecace-list h5::before {
  3216. content: "";
  3217. font-weight: bold;
  3218. display: inline-block;
  3219. border: 5px solid #e0c3dd;
  3220. border-radius: 20px;
  3221. margin-right: 10px;
  3222. margin-bottom: 2px;
  3223. }
  3224. .ai-presenter .video-left,
  3225. .ai-presenter .video-right {
  3226. display: flex;
  3227. flex-direction: column;
  3228. align-items: center;
  3229. justify-content: center;
  3230. padding: 20px;
  3231. background: #d8bbd9;
  3232. border-radius: 20px;
  3233. }
  3234. .ai-presenter .video-left strong,
  3235. .ai-presenter .video-right strong {
  3236. width: 100%;
  3237. padding: 20px;
  3238. font-size: 24px;
  3239. text-align: center;
  3240. background: #fff;
  3241. border-radius: 15px 15px 0 0;
  3242. }
  3243. .ai-presenter .video-left .video-box,
  3244. .ai-presenter .video-right .video-box {
  3245. width: 100%;
  3246. margin-top: 20px;
  3247. padding-bottom: 45%;
  3248. }
  3249. .ai-presenter .video-left {
  3250. background: #d8bbd9;
  3251. }
  3252. .ai-presenter .video-right {
  3253. background: #fde3d9;
  3254. }
  3255. .ai-presenter .step-content {
  3256. margin: 100px auto;
  3257. }
  3258. .ai-presenter .step-content .link-btn {
  3259. display: inline-block;
  3260. padding: 12px 20px;
  3261. margin-top: 25px;
  3262. border-radius: 100px;
  3263. text-decoration: none;
  3264. color: #fff;
  3265. background: #ea5413;
  3266. }
  3267. .ai-presenter .step-content ul {
  3268. padding: 0;
  3269. list-style: none;
  3270. display: flex;
  3271. flex-direction: column;
  3272. justify-content: center;
  3273. }
  3274. .ai-presenter .step-content ul li {
  3275. margin: 30px auto;
  3276. }
  3277. .ai-presenter .step-content ul li img {
  3278. height: auto;
  3279. max-width: 800px;
  3280. }
  3281. .ai-presenter .step-content ul li h4 {
  3282. color: #ea5413;
  3283. font-weight: bold;
  3284. text-align: center;
  3285. }
  3286. .ai-presenter .step-content ul li p {
  3287. margin: 15px 25px 0;
  3288. font-size: 18px;
  3289. font-weight: bold;
  3290. }
  3291. .ai-presenter .step-content ul li p::before {
  3292. content: "";
  3293. font-weight: bold;
  3294. display: inline-block;
  3295. border: 5px solid #ea5413;
  3296. border-radius: 20px;
  3297. margin-right: 10px;
  3298. margin-bottom: 2px;
  3299. }
  3300. .ai-presenter .step-content ul li .point-list {
  3301. list-style: decimal;
  3302. }
  3303. .ai-presenter .step-content ul li .point-list li {
  3304. margin: 5px 45px;
  3305. }
  3306. /* ai-presenter End *//*# sourceMappingURL=style.css.map */