style.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753
  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-action .action-btn {
  925. padding: 0.8rem 3.5rem;
  926. font-size: 20px;
  927. font-weight: bold;
  928. }
  929. #home .progress-item {
  930. opacity: 0;
  931. height: 100%;
  932. position: fixed;
  933. z-index: 100;
  934. top: 0;
  935. transition: all 0.3s;
  936. }
  937. @media (max-width: 767px) {
  938. #home .progress-item {
  939. display: none;
  940. }
  941. }
  942. #home .progress-item .cont {
  943. top: 50%;
  944. left: -135px;
  945. position: absolute;
  946. transform: rotate(90deg);
  947. }
  948. @media (max-width: 1200px) {
  949. #home .progress-item .cont {
  950. left: -145px;
  951. }
  952. }
  953. @media (max-width: 991px) {
  954. #home .progress-item .cont {
  955. left: -150px;
  956. }
  957. }
  958. #home .progress-item .cont #progress-bar {
  959. -webkit-appearance: none;
  960. -moz-appearance: none;
  961. appearance: none;
  962. width: 360px;
  963. color: #000;
  964. height: 2px;
  965. margin: -2px auto;
  966. }
  967. @media (max-width: 991px) {
  968. #home .progress-item .cont #progress-bar {
  969. margin: -1px auto;
  970. }
  971. }
  972. #home .progress-item .cont span {
  973. height: 15px;
  974. width: 15px;
  975. border-radius: 100%;
  976. border: 3px solid #a5a7a9;
  977. background: #a5a7a9;
  978. position: absolute;
  979. left: 0;
  980. top: 12px;
  981. cursor: pointer;
  982. transition: all 0.3s ease-in-out;
  983. }
  984. @media (max-width: 991px) {
  985. #home .progress-item .cont span {
  986. height: 12px;
  987. width: 12px;
  988. }
  989. }
  990. #home .progress-item .cont .journey {
  991. left: 70px;
  992. }
  993. #home .progress-item .cont .team {
  994. left: 140px;
  995. }
  996. #home .progress-item .cont .ai-ad {
  997. left: 210px;
  998. }
  999. #home .progress-item .cont .seo {
  1000. left: 280px;
  1001. }
  1002. #home .progress-item .cont .ai-video {
  1003. left: 350px;
  1004. }
  1005. #home .progress-item .cont .blog {
  1006. left: 420px;
  1007. }
  1008. #home .progress-item .cont #progress-bar::-webkit-progress-value {
  1009. /* Changes line color */
  1010. background: #ea5413;
  1011. -webkit-transition: all 0.3s ease-in-out;
  1012. transition: all 0.3s ease-in-out;
  1013. }
  1014. #home .progress-item .cont #progress-bar::-webkit-progress-bar {
  1015. /* Changes background color */
  1016. background: #a5a7a9;
  1017. }
  1018. #home .progress-item .cont .border-change {
  1019. background: #ea5413;
  1020. border-color: #ea5413;
  1021. transition: all 0.3s ease-in-out;
  1022. }
  1023. /* content page */
  1024. .cntheader {
  1025. margin-top: 81px;
  1026. padding: 4rem 0;
  1027. position: relative;
  1028. padding-bottom: 2rem;
  1029. }
  1030. .cntheader__sub {
  1031. color: #38a7bb;
  1032. font-size: 1.5rem;
  1033. font-weight: 300;
  1034. position: relative;
  1035. }
  1036. .cntheader__sub::before,
  1037. .cntheader__sub::after {
  1038. content: " ";
  1039. position: absolute;
  1040. width: 15%;
  1041. height: 1px;
  1042. background-color: #38a7bb;
  1043. top: 50%;
  1044. }
  1045. .cntheader__sub::before {
  1046. left: 18%;
  1047. }
  1048. .cntheader__sub::after {
  1049. left: 67%;
  1050. }
  1051. .cntheader .category-btngrp {
  1052. padding: 0 4rem;
  1053. }
  1054. .card__art {
  1055. padding: 1rem;
  1056. border: 1px solid #20616d;
  1057. border-radius: 1rem;
  1058. margin-bottom: 1rem;
  1059. }
  1060. .card__title {
  1061. font-size: 1.8rem;
  1062. font-weight: 400;
  1063. }
  1064. .card__text {
  1065. color: #918f8f;
  1066. }
  1067. .card__link {
  1068. display: inline-block;
  1069. color: #38a7bb;
  1070. margin-right: 1rem;
  1071. text-decoration: none;
  1072. }
  1073. .card__link:hover {
  1074. color: #20616d;
  1075. }
  1076. .toparticle {
  1077. border: 1px solid #cecece;
  1078. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  1079. }
  1080. .toparticle__title {
  1081. color: white;
  1082. background-color: #38a7bb;
  1083. text-align: center;
  1084. font-size: 1.3rem;
  1085. padding: 0.3rem 0;
  1086. position: relative;
  1087. }
  1088. .toparticle__title img {
  1089. position: absolute;
  1090. width: 150px;
  1091. right: -4rem;
  1092. top: -3.5rem;
  1093. }
  1094. .toparticle__list {
  1095. padding: 1.5rem;
  1096. padding-top: 0;
  1097. list-style: none;
  1098. padding-bottom: 1rem;
  1099. }
  1100. .toparticle__list-item {
  1101. padding: 0.3rem;
  1102. border-bottom: 1px solid #cecece;
  1103. color: #38a7bb;
  1104. position: relative;
  1105. }
  1106. .toparticle__list-item:nth-of-type(10) {
  1107. border: none;
  1108. }
  1109. .toparticle__list-item a {
  1110. text-decoration: none;
  1111. color: #38a7bb;
  1112. }
  1113. .toparticle__num {
  1114. color: #fca25e;
  1115. font-size: 1.8rem;
  1116. font-family: "Trebuchet MS";
  1117. font-weight: 300;
  1118. margin-right: 8px;
  1119. }
  1120. .toparticle__top {
  1121. font-size: 2rem;
  1122. }
  1123. .toparticle__list-item small {
  1124. position: absolute;
  1125. right: 0;
  1126. top: 45%;
  1127. }
  1128. .cntsubscribe {
  1129. text-align: center;
  1130. }
  1131. .cntsubscribe__form {
  1132. position: relative;
  1133. }
  1134. .cntsubscribe__sub {
  1135. border-radius: 10rem;
  1136. background-color: #fca25e;
  1137. color: white;
  1138. border: none;
  1139. width: 5rem;
  1140. position: absolute;
  1141. right: 0;
  1142. top: 0;
  1143. padding: 0.45rem 0.8rem;
  1144. }
  1145. .cntsubscribe__sub:hover {
  1146. background-color: #ff892e;
  1147. color: white;
  1148. }
  1149. .cntsubscribe__input {
  1150. border-radius: 10rem;
  1151. padding: 0.4rem 0.8rem;
  1152. width: 100%;
  1153. }
  1154. .img-block .img-block-img {
  1155. width: 70%;
  1156. }
  1157. .img-block-list {
  1158. padding: 2rem 6rem;
  1159. }
  1160. .img-block-linecir {
  1161. position: absolute;
  1162. right: 10%;
  1163. bottom: 5%;
  1164. width: 30%;
  1165. z-index: -1;
  1166. }
  1167. .img-block-linecir.left {
  1168. right: -10%;
  1169. bottom: -5%;
  1170. }
  1171. .img-block-linecir.right {
  1172. left: -10%;
  1173. bottom: -5%;
  1174. }
  1175. .img-block-linecir.left {
  1176. left: -10%;
  1177. bottom: -5%;
  1178. }
  1179. .aboutus_img {
  1180. width: 100%;
  1181. }
  1182. .aboutus_prize_img {
  1183. border: 1.5rem solid rgb(231, 231, 231);
  1184. border-radius: 1rem;
  1185. }
  1186. .header__ai-training__span {
  1187. width: 6rem;
  1188. height: 6rem;
  1189. padding: 1rem;
  1190. display: inline-block;
  1191. font-size: 1.4rem;
  1192. background-color: rgb(255, 255, 159);
  1193. border-radius: 50%;
  1194. }
  1195. .ai-training__action {
  1196. border: 3px dashed #ffebe8;
  1197. }
  1198. .ai-training__card .card-img-top {
  1199. height: 35vh;
  1200. }
  1201. .ai-training__action ul {
  1202. list-style: none;
  1203. line-height: 2rem;
  1204. }
  1205. .ai-training__action__box {
  1206. flex-direction: row;
  1207. }
  1208. .ai-training__action__btn {
  1209. padding: 0.5rem 2rem;
  1210. border: none;
  1211. outline: none;
  1212. border-radius: 4rem;
  1213. background: #ea5413;
  1214. font-size: 1.3rem;
  1215. color: white;
  1216. }
  1217. .ai-training__action__img {
  1218. width: 15rem;
  1219. height: 15rem;
  1220. background-repeat: no-repeat;
  1221. background-position: center;
  1222. background-size: cover;
  1223. border-radius: 50%;
  1224. border: 3px solid #ffdbd6;
  1225. }
  1226. .hero-btn {
  1227. border: none;
  1228. outline: none;
  1229. border-radius: 3rem;
  1230. margin-top: 0.5rem;
  1231. padding: 0.6rem 1.5rem;
  1232. background: linear-gradient(20deg, #ea5413, #920783);
  1233. color: white;
  1234. font-size: 1.1rem;
  1235. box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.5294117647);
  1236. }
  1237. .contact-btn {
  1238. text-decoration: none;
  1239. color: white;
  1240. border: 1px solid #ea5413;
  1241. padding: 0.6rem 1.5rem;
  1242. outline: none;
  1243. background-color: #ea5413;
  1244. margin-top: 0.5rem;
  1245. border-radius: 3rem;
  1246. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  1247. transition: all 0.3s;
  1248. }
  1249. .contact-btn:hover {
  1250. color: #ea5413;
  1251. background-color: transparent;
  1252. border: 1px solid #ea5413;
  1253. }
  1254. .loaded {
  1255. box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3019607843), 0 6px 20px 0 rgba(165, 200, 213, 0.4117647059);
  1256. margin-bottom: 4rem;
  1257. }
  1258. .pageForm-title {
  1259. padding: 0 0 0 40px;
  1260. background-image: url(/imgs/dm/accept.png);
  1261. background-position: 0 0;
  1262. background-repeat: no-repeat;
  1263. background-size: 30px auto;
  1264. }
  1265. .pageForm-txt {
  1266. padding-left: 40px;
  1267. }
  1268. .pageForm-notice {
  1269. padding-left: 40px;
  1270. color: grey;
  1271. margin-top: 50px;
  1272. }
  1273. .pageForm-p {
  1274. padding: 40px;
  1275. }
  1276. .btn-detailForm {
  1277. background-color: transparent;
  1278. border: none;
  1279. outline: none;
  1280. color: #ff892e;
  1281. padding: 0 0;
  1282. padding-bottom: 0.1rem;
  1283. margin-bottom: 0.8rem;
  1284. display: inline-block;
  1285. border-bottom: 1px dotted #ff892e;
  1286. transition: all 0.4s;
  1287. text-decoration: none;
  1288. }
  1289. .btn-detailForm:hover {
  1290. transform: translate(2px, 2px);
  1291. text-decoration: none;
  1292. color: #ff892e;
  1293. }
  1294. @media (max-width: 1300px) {
  1295. .header-right-video {
  1296. position: absolute;
  1297. width: 76%;
  1298. }
  1299. }
  1300. @media (max-width: 992px) {
  1301. .cntheader .header-title {
  1302. font-size: 2.2rem;
  1303. }
  1304. .header-right {
  1305. height: 40vh;
  1306. }
  1307. .header-right-magnifier {
  1308. right: -2.5rem;
  1309. bottom: 1rem;
  1310. }
  1311. .header__sub {
  1312. font-size: 1.3rem;
  1313. }
  1314. .header__sub::before,
  1315. .header__sub::after {
  1316. width: 8%;
  1317. }
  1318. .header__sub::before {
  1319. left: 30%;
  1320. }
  1321. .header__sub::after {
  1322. left: 62%;
  1323. }
  1324. .header__form__input {
  1325. font-size: 0.9rem;
  1326. }
  1327. .category-btngrp {
  1328. padding: 0;
  1329. }
  1330. .category-btn {
  1331. padding: 0.3rem 1.5rem;
  1332. font-size: 1.2rem;
  1333. }
  1334. .ctncategory-btn {
  1335. padding: 0.2rem 1rem;
  1336. font-size: 1rem;
  1337. }
  1338. .top3 .row {
  1339. padding: 0;
  1340. }
  1341. .card__rank {
  1342. padding: 0.8rem 1rem;
  1343. }
  1344. .top3__num {
  1345. left: 0.6rem;
  1346. top: -2.5rem;
  1347. font-size: 4rem;
  1348. }
  1349. .card__rank__word {
  1350. margin-left: 1.5rem;
  1351. font-size: 1.2rem;
  1352. }
  1353. .card__rank hr {
  1354. margin-top: 8px;
  1355. margin-bottom: 8px;
  1356. }
  1357. .top20 .row {
  1358. padding: 0;
  1359. }
  1360. .top20__num {
  1361. font-size: 2.1rem;
  1362. width: 1.6rem;
  1363. }
  1364. .container__footer {
  1365. width: 95vw;
  1366. }
  1367. .header__form {
  1368. width: 85%;
  1369. position: relative;
  1370. }
  1371. .header__form__input {
  1372. margin-left: 0;
  1373. width: 100%;
  1374. }
  1375. .header__form__sub {
  1376. transform: none;
  1377. position: absolute;
  1378. right: 0;
  1379. top: 0;
  1380. }
  1381. .header-right-linecir {
  1382. bottom: 0;
  1383. }
  1384. .cntheader__sub {
  1385. font-size: 1.2rem;
  1386. }
  1387. .cntheader__sub::before {
  1388. left: 13%;
  1389. }
  1390. .cntheader__sub::after {
  1391. left: 72%;
  1392. }
  1393. .toparticle__title img {
  1394. position: absolute;
  1395. width: 90px;
  1396. right: -2rem;
  1397. top: -2rem;
  1398. }
  1399. .toparticle__top {
  1400. font-size: 1.7rem;
  1401. }
  1402. .fb__fr {
  1403. width: 100%;
  1404. }
  1405. .cntsubscribe__form {
  1406. width: 100%;
  1407. }
  1408. .ai-training__action__box {
  1409. flex-direction: column;
  1410. }
  1411. }
  1412. @media (max-width: 767px) {
  1413. .header .col-md-5 {
  1414. margin-bottom: 3rem;
  1415. }
  1416. .header-right-bubble {
  1417. width: 15%;
  1418. }
  1419. .header-right-magnifier {
  1420. right: 4rem;
  1421. bottom: 1rem;
  1422. }
  1423. .category {
  1424. padding-top: 4rem;
  1425. }
  1426. .category.dm-description {
  1427. padding-top: 4rem;
  1428. padding-left: 0;
  1429. padding-right: 0;
  1430. margin-top: 4.5rem;
  1431. }
  1432. .category.mt-xl {
  1433. margin-top: 8.5rem;
  1434. }
  1435. .category.dm-description h5 {
  1436. padding-left: 1rem;
  1437. padding-right: 1rem;
  1438. }
  1439. .top3 {
  1440. padding-bottom: 2rem;
  1441. }
  1442. .top3 .col-md-4 {
  1443. margin-bottom: 1.5rem;
  1444. }
  1445. .top3 .col-md-4:nth-of-type(3) {
  1446. margin-bottom: 0;
  1447. }
  1448. .card__rank {
  1449. margin-bottom: 1.5rem;
  1450. }
  1451. .row-right {
  1452. margin-top: 2rem;
  1453. }
  1454. .cntheader {
  1455. padding-bottom: 0rem;
  1456. }
  1457. .header-right-video {
  1458. position: absolute;
  1459. width: 70%;
  1460. left: 2.3rem;
  1461. top: 1.5rem;
  1462. }
  1463. .img-block-list {
  1464. padding: 2rem 1.5rem;
  1465. }
  1466. .ai-training__card .card-img-top {
  1467. height: 50vh;
  1468. }
  1469. }
  1470. @media (max-width: 576px) {
  1471. .header-title {
  1472. font-size: 2.5rem;
  1473. }
  1474. .header.ai-training {
  1475. height: 80vh;
  1476. }
  1477. .header-right {
  1478. height: 30vh;
  1479. }
  1480. .header-right-magnifier {
  1481. right: 0rem;
  1482. bottom: 1.5rem;
  1483. }
  1484. .category-btn {
  1485. padding: 0.2rem 1rem;
  1486. font-size: 1rem;
  1487. }
  1488. .category {
  1489. padding: 1rem;
  1490. }
  1491. .footer-img {
  1492. height: 50px;
  1493. }
  1494. .footer {
  1495. font-size: 0.9rem;
  1496. }
  1497. .pageForm-p {
  1498. padding: 15px;
  1499. }
  1500. .pageForm {
  1501. width: 95%;
  1502. }
  1503. }
  1504. @media (max-width: 480px) {
  1505. .ctncategory-btn {
  1506. margin-top: 0.6rem;
  1507. }
  1508. .header-right-video {
  1509. position: absolute;
  1510. width: 75%;
  1511. left: 2.1rem;
  1512. top: 1.3rem;
  1513. }
  1514. }
  1515. /* ai-anchor Start */
  1516. #ai-anchor {
  1517. overflow-x: hidden;
  1518. }
  1519. #ai-anchor .stock-bg {
  1520. height: 850px;
  1521. left: -15vw;
  1522. top: -125px;
  1523. position: absolute;
  1524. z-index: -1;
  1525. }
  1526. @media (max-width: 1400px) {
  1527. #ai-anchor .stock-bg {
  1528. top: -130px;
  1529. }
  1530. }
  1531. @media (max-width: 991px) {
  1532. #ai-anchor .stock-bg {
  1533. top: -175px;
  1534. }
  1535. }
  1536. @media (max-width: 767px) {
  1537. #ai-anchor .stock-bg {
  1538. top: -155px;
  1539. }
  1540. }
  1541. @media (max-width: 490px) {
  1542. #ai-anchor .stock-bg {
  1543. top: -130px;
  1544. }
  1545. }
  1546. @media (max-width: 575px) {
  1547. #ai-anchor .header-title {
  1548. font-size: 2rem;
  1549. }
  1550. }
  1551. #ai-anchor .header-sub {
  1552. padding: 0 10px;
  1553. text-align: start;
  1554. }
  1555. #ai-anchor .header-sub span {
  1556. display: inline-block;
  1557. margin-top: 35px;
  1558. font-size: 24px;
  1559. font-weight: bold;
  1560. color: #f8a154;
  1561. }
  1562. #ai-anchor .header-sub p {
  1563. width: 450px;
  1564. margin: 20px auto;
  1565. }
  1566. @media (max-width: 991px) {
  1567. #ai-anchor .header-sub p {
  1568. width: auto;
  1569. }
  1570. }
  1571. #ai-anchor .ai-description {
  1572. padding-top: 200px;
  1573. padding-bottom: 100px;
  1574. }
  1575. @media (max-width: 991px) {
  1576. #ai-anchor .ai-description {
  1577. padding-top: 100px;
  1578. }
  1579. }
  1580. #ai-anchor .ai-description div .icon {
  1581. width: 30px;
  1582. }
  1583. #ai-anchor .ai-description h5 {
  1584. margin: 0;
  1585. font-size: 28px;
  1586. font-weight: bold;
  1587. color: #ea5413;
  1588. }
  1589. @media (max-width: 375px) {
  1590. #ai-anchor .ai-description h5 {
  1591. font-size: 20px;
  1592. }
  1593. }
  1594. #ai-anchor .ai-description .content-box {
  1595. display: flex;
  1596. justify-content: space-between;
  1597. margin-bottom: 150px;
  1598. }
  1599. @media (max-width: 991px) {
  1600. #ai-anchor .ai-description .content-box {
  1601. flex-direction: column;
  1602. }
  1603. }
  1604. #ai-anchor .ai-description .content-box section {
  1605. width: 35%;
  1606. }
  1607. @media (max-width: 991px) {
  1608. #ai-anchor .ai-description .content-box section {
  1609. width: 100%;
  1610. }
  1611. }
  1612. #ai-anchor .ai-description .triangle-item {
  1613. display: flex;
  1614. justify-content: center;
  1615. }
  1616. @media (max-width: 991px) {
  1617. #ai-anchor .ai-description .triangle-item {
  1618. margin-left: -35px;
  1619. }
  1620. }
  1621. #ai-anchor .ai-description .triangle-item img {
  1622. width: 40px;
  1623. height: 100%;
  1624. image-rendering: -webkit-optimize-contrast;
  1625. }
  1626. @media (max-width: 991px) {
  1627. #ai-anchor .ai-description .triangle-item img {
  1628. transform: rotate(90deg);
  1629. }
  1630. }
  1631. #ai-anchor .faq-content {
  1632. position: relative;
  1633. }
  1634. #ai-anchor .faq-content .img-box {
  1635. position: relative;
  1636. }
  1637. @media (max-width: 575px) {
  1638. #ai-anchor .faq-content .img-box {
  1639. width: 330px;
  1640. margin: auto;
  1641. }
  1642. }
  1643. #ai-anchor .faq-content .img-box .img-mb {
  1644. width: 500px;
  1645. margin: auto;
  1646. }
  1647. @media (max-width: 575px) {
  1648. #ai-anchor .faq-content .img-box .img-mb {
  1649. width: 100%;
  1650. }
  1651. }
  1652. #ai-anchor .faq-content .img-box .text-box {
  1653. position: absolute;
  1654. width: 330px;
  1655. right: 330px;
  1656. top: 80px;
  1657. line-height: 35px;
  1658. font-size: 18px;
  1659. font-weight: bold;
  1660. color: #656565;
  1661. }
  1662. @media (max-width: 1400px) {
  1663. #ai-anchor .faq-content .img-box .text-box {
  1664. right: 260px;
  1665. top: 55px;
  1666. }
  1667. }
  1668. @media (max-width: 1200px) {
  1669. #ai-anchor .faq-content .img-box .text-box {
  1670. font-size: 16px;
  1671. right: 185px;
  1672. top: 40px;
  1673. }
  1674. }
  1675. @media (max-width: 991px) {
  1676. #ai-anchor .faq-content .img-box .text-box {
  1677. width: 365px;
  1678. right: 160px;
  1679. top: 310px;
  1680. font-size: 18px;
  1681. }
  1682. }
  1683. @media (max-width: 767px) {
  1684. #ai-anchor .faq-content .img-box .text-box {
  1685. right: 70px;
  1686. }
  1687. }
  1688. @media (max-width: 575px) {
  1689. #ai-anchor .faq-content .img-box .text-box {
  1690. width: 285px;
  1691. right: 23px;
  1692. top: 190px;
  1693. font-size: 14px;
  1694. }
  1695. }
  1696. @media (max-width: 991px) {
  1697. #ai-anchor .faq-content .img-box .text-box p:last-child {
  1698. width: 200px;
  1699. }
  1700. }
  1701. @media (max-width: 575px) {
  1702. #ai-anchor .faq-content .img-box .text-box p:last-child {
  1703. width: 170px;
  1704. }
  1705. }
  1706. #ai-anchor ul {
  1707. list-style: none;
  1708. text-align: center;
  1709. }
  1710. @media (max-width: 767px) {
  1711. #ai-anchor ul {
  1712. padding: 0;
  1713. }
  1714. }
  1715. #ai-anchor ul li {
  1716. font-size: 18px;
  1717. margin-bottom: 10px;
  1718. font-weight: bold;
  1719. }
  1720. @media (max-width: 767px) {
  1721. #ai-anchor ul li {
  1722. font-size: 16px;
  1723. }
  1724. }
  1725. #ai-anchor video {
  1726. width: 75%;
  1727. height: auto;
  1728. }
  1729. @media (max-width: 767px) {
  1730. #ai-anchor video {
  1731. width: 90%;
  1732. }
  1733. }
  1734. #ai-anchor .content {
  1735. width: 800px;
  1736. margin: 0 auto 10rem;
  1737. padding: 2rem 8rem;
  1738. border-radius: 20px;
  1739. background-color: #fff2ec;
  1740. font-size: 20px;
  1741. }
  1742. @media (max-width: 991px) {
  1743. #ai-anchor .content {
  1744. width: 90%;
  1745. padding: 2rem 5vw;
  1746. }
  1747. }
  1748. @media (max-width: 567px) {
  1749. #ai-anchor .content {
  1750. padding-top: 130px;
  1751. }
  1752. }
  1753. #ai-anchor .content .img-01 {
  1754. position: absolute;
  1755. top: -75px;
  1756. left: -30px;
  1757. z-index: 1;
  1758. width: 45%;
  1759. image-rendering: -webkit-optimize-contrast;
  1760. }
  1761. @media (max-width: 567px) {
  1762. #ai-anchor .content .img-01 {
  1763. top: -40%;
  1764. width: 250px;
  1765. }
  1766. }
  1767. #ai-anchor .content .ai-anchor-price {
  1768. background-color: transparent;
  1769. padding: 2px 1px;
  1770. border-radius: 5px;
  1771. font-size: 48px;
  1772. color: #3190da;
  1773. background: linear-gradient(transparent 40%, rgba(255, 255, 255, 0) 50%, yellow 75%, yellow 90%, transparent 95%);
  1774. }
  1775. #ai-anchor .content,
  1776. #ai-anchor .ai-description span {
  1777. font-size: 22px;
  1778. font-weight: bold;
  1779. color: #3190da;
  1780. }
  1781. /* ai-anchor End */
  1782. /* ad-operation Start */
  1783. #ad-operation {
  1784. overflow-x: hidden;
  1785. }
  1786. #ad-operation .header {
  1787. height: auto;
  1788. margin-top: -20px;
  1789. }
  1790. #ad-operation .header p {
  1791. font-weight: bold;
  1792. line-height: 32px;
  1793. }
  1794. #ad-operation .header p span {
  1795. font-size: 20px;
  1796. color: #ea5413;
  1797. }
  1798. #ad-operation .header .banner {
  1799. position: relative;
  1800. }
  1801. #ad-operation .header .banner .img {
  1802. max-width: 100vw;
  1803. height: auto;
  1804. }
  1805. #ad-operation .header .banner .text {
  1806. width: 100%;
  1807. position: absolute;
  1808. z-index: 100;
  1809. left: -55px;
  1810. top: -60px;
  1811. }
  1812. @media (max-width: 991px) {
  1813. #ad-operation .header .banner .text {
  1814. left: -45px;
  1815. top: -35px;
  1816. }
  1817. }
  1818. @media (max-width: 767px) {
  1819. #ad-operation .header .banner .text {
  1820. left: -30px;
  1821. top: -20px;
  1822. }
  1823. }
  1824. @media (max-width: 575px) {
  1825. #ad-operation .header .banner .text {
  1826. left: -15px;
  1827. top: -15px;
  1828. }
  1829. }
  1830. #ad-operation .header .banner .slogen {
  1831. display: flex;
  1832. flex-direction: column;
  1833. align-items: center;
  1834. position: absolute;
  1835. top: 63vw;
  1836. }
  1837. #ad-operation .header .banner .slogen h3 {
  1838. margin-bottom: 0;
  1839. font-size: 40px;
  1840. font-weight: bold;
  1841. }
  1842. @media (max-width: 1200px) {
  1843. #ad-operation .header .banner .slogen h3 {
  1844. font-size: 33px;
  1845. }
  1846. }
  1847. @media (max-width: 991px) {
  1848. #ad-operation .header .banner .slogen h3 {
  1849. font-size: 28px;
  1850. }
  1851. }
  1852. @media (max-width: 767px) {
  1853. #ad-operation .header .banner .slogen h3 {
  1854. font-size: 20px;
  1855. }
  1856. }
  1857. @media (max-width: 575px) {
  1858. #ad-operation .header .banner .slogen h3 {
  1859. font-size: 16px;
  1860. }
  1861. }
  1862. #ad-operation .header .banner .slogen h3 span {
  1863. margin: 20px 0;
  1864. display: inline-block;
  1865. font-size: 70px;
  1866. color: #900381;
  1867. }
  1868. @media (max-width: 1200px) {
  1869. #ad-operation .header .banner .slogen h3 span {
  1870. font-size: 58px;
  1871. }
  1872. }
  1873. @media (max-width: 991px) {
  1874. #ad-operation .header .banner .slogen h3 span {
  1875. margin: 10px 0;
  1876. font-size: 50px;
  1877. }
  1878. }
  1879. @media (max-width: 767px) {
  1880. #ad-operation .header .banner .slogen h3 span {
  1881. font-size: 36px;
  1882. }
  1883. }
  1884. @media (max-width: 575px) {
  1885. #ad-operation .header .banner .slogen h3 span {
  1886. margin: 5px 0;
  1887. font-size: 20px;
  1888. }
  1889. }
  1890. #ad-operation .header .banner .slogen h3 .point {
  1891. color: #dd541a;
  1892. }
  1893. #ad-operation .header .banner .slogen h3 small {
  1894. margin-left: 5px;
  1895. color: #868585;
  1896. text-decoration: line-through;
  1897. }
  1898. #ad-operation .header .banner .slogen h4 {
  1899. font-size: 46px;
  1900. font-weight: bold;
  1901. }
  1902. @media (max-width: 1200px) {
  1903. #ad-operation .header .banner .slogen h4 {
  1904. font-size: 38px;
  1905. }
  1906. }
  1907. @media (max-width: 991px) {
  1908. #ad-operation .header .banner .slogen h4 {
  1909. font-size: 32px;
  1910. }
  1911. }
  1912. @media (max-width: 767px) {
  1913. #ad-operation .header .banner .slogen h4 {
  1914. font-size: 24px;
  1915. }
  1916. }
  1917. @media (max-width: 575px) {
  1918. #ad-operation .header .banner .slogen h4 {
  1919. font-size: 14px;
  1920. }
  1921. }
  1922. #ad-operation .header .banner .slogen button {
  1923. margin-top: 30px;
  1924. }
  1925. @media (max-width: 991px) {
  1926. #ad-operation .header .banner .slogen button {
  1927. margin-top: 10px;
  1928. }
  1929. }
  1930. @media (max-width: 575px) {
  1931. #ad-operation .header .banner .slogen button {
  1932. margin-top: 5px;
  1933. }
  1934. }
  1935. #ad-operation .header-title {
  1936. color: #000;
  1937. font-weight: bold;
  1938. letter-spacing: 5px;
  1939. }
  1940. #ad-operation .header-right-cir {
  1941. right: -15%;
  1942. top: 30%;
  1943. }
  1944. #ad-operation .img-content {
  1945. display: flex;
  1946. justify-content: center;
  1947. margin: -100px auto;
  1948. position: relative;
  1949. z-index: 100;
  1950. width: 1300px;
  1951. }
  1952. @media (max-width: 1200px) {
  1953. #ad-operation .img-content {
  1954. width: 1000px;
  1955. margin: -50px auto;
  1956. }
  1957. }
  1958. @media (max-width: 991px) {
  1959. #ad-operation .img-content {
  1960. width: 700px;
  1961. }
  1962. }
  1963. @media (max-width: 767px) {
  1964. #ad-operation .img-content {
  1965. width: 600px;
  1966. }
  1967. }
  1968. @media (max-width: 575px) {
  1969. #ad-operation .img-content {
  1970. left: -10px;
  1971. width: 350px;
  1972. }
  1973. }
  1974. #ad-operation .img-content img {
  1975. width: 100%;
  1976. }
  1977. @media (max-width: 575px) {
  1978. #ad-operation .img-content img {
  1979. width: 140%;
  1980. }
  1981. }
  1982. #ad-operation .img-content h4 {
  1983. position: absolute;
  1984. font-size: 30px;
  1985. line-height: 40px;
  1986. font-weight: bold;
  1987. text-align: center;
  1988. }
  1989. @media (max-width: 1200px) {
  1990. #ad-operation .img-content h4 {
  1991. font-size: 22px;
  1992. line-height: 30px;
  1993. }
  1994. }
  1995. @media (max-width: 991px) {
  1996. #ad-operation .img-content h4 {
  1997. font-size: 16px;
  1998. line-height: 24px;
  1999. }
  2000. }
  2001. @media (max-width: 767px) {
  2002. #ad-operation .img-content h4 {
  2003. font-size: 14px;
  2004. line-height: 20px;
  2005. }
  2006. }
  2007. @media (max-width: 575px) {
  2008. #ad-operation .img-content h4 {
  2009. font-size: 12px;
  2010. }
  2011. }
  2012. #ad-operation .img-content .left {
  2013. top: 320px;
  2014. left: 280px;
  2015. }
  2016. @media (max-width: 1200px) {
  2017. #ad-operation .img-content .left {
  2018. top: 245px;
  2019. left: 218px;
  2020. }
  2021. }
  2022. @media (max-width: 991px) {
  2023. #ad-operation .img-content .left {
  2024. top: 170px;
  2025. left: 150px;
  2026. }
  2027. }
  2028. @media (max-width: 767px) {
  2029. #ad-operation .img-content .left {
  2030. top: 145px;
  2031. left: 128px;
  2032. }
  2033. }
  2034. @media (max-width: 575px) {
  2035. #ad-operation .img-content .left {
  2036. top: 115px;
  2037. left: 32px;
  2038. }
  2039. }
  2040. #ad-operation .img-content .center {
  2041. top: 420px;
  2042. left: 600px;
  2043. }
  2044. @media (max-width: 1200px) {
  2045. #ad-operation .img-content .center {
  2046. top: 325px;
  2047. left: 465px;
  2048. }
  2049. }
  2050. @media (max-width: 991px) {
  2051. #ad-operation .img-content .center {
  2052. top: 225px;
  2053. left: 323px;
  2054. }
  2055. }
  2056. @media (max-width: 767px) {
  2057. #ad-operation .img-content .center {
  2058. top: 193px;
  2059. left: 278px;
  2060. }
  2061. }
  2062. @media (max-width: 575px) {
  2063. #ad-operation .img-content .center {
  2064. top: 153px;
  2065. left: 155px;
  2066. }
  2067. }
  2068. #ad-operation .img-content .right {
  2069. top: 545px;
  2070. right: 240px;
  2071. }
  2072. @media (max-width: 1200px) {
  2073. #ad-operation .img-content .right {
  2074. top: 420px;
  2075. right: 188px;
  2076. }
  2077. }
  2078. @media (max-width: 991px) {
  2079. #ad-operation .img-content .right {
  2080. top: 290px;
  2081. right: 130px;
  2082. }
  2083. }
  2084. @media (max-width: 767px) {
  2085. #ad-operation .img-content .right {
  2086. top: 250px;
  2087. right: 109px;
  2088. }
  2089. }
  2090. @media (max-width: 575px) {
  2091. #ad-operation .img-content .right {
  2092. top: 200px;
  2093. right: 17px;
  2094. }
  2095. }
  2096. #ad-operation .dm-description {
  2097. display: flex;
  2098. flex-direction: column;
  2099. justify-content: center;
  2100. align-items: center;
  2101. }
  2102. #ad-operation .dm-description h2 {
  2103. margin: 0;
  2104. padding: 8px 10px;
  2105. color: #fff;
  2106. display: inline-block;
  2107. text-align: center;
  2108. font-size: 24px;
  2109. line-height: 33px;
  2110. border-radius: 10px;
  2111. background: #ea5413;
  2112. }
  2113. #ad-operation .dm-description h5 {
  2114. font-size: 22px;
  2115. letter-spacing: 2px;
  2116. line-height: 36px;
  2117. }
  2118. @media (max-width: 767px) {
  2119. #ad-operation .dm-description h5 {
  2120. font-size: 18px;
  2121. }
  2122. }
  2123. #ad-operation .dm-description h5 strong {
  2124. padding-bottom: 3px;
  2125. }
  2126. #ad-operation .dm-description .line {
  2127. display: block;
  2128. width: 50px;
  2129. height: 7px;
  2130. margin: 80px auto 40px;
  2131. background-color: #ea5413;
  2132. }
  2133. #ad-operation .dm-description .stock-img {
  2134. position: absolute;
  2135. z-index: -10;
  2136. width: 100vw;
  2137. top: 100%;
  2138. height: 660px;
  2139. }
  2140. @media (max-width: 1200px) {
  2141. #ad-operation .dm-description .stock-img {
  2142. height: 535px;
  2143. }
  2144. }
  2145. @media (max-width: 991px) {
  2146. #ad-operation .dm-description .stock-img {
  2147. height: 360px;
  2148. }
  2149. }
  2150. @media (max-width: 767px) {
  2151. #ad-operation .dm-description .stock-img {
  2152. height: 300px;
  2153. }
  2154. }
  2155. @media (max-width: 575px) {
  2156. #ad-operation .dm-description .stock-img {
  2157. height: 235px;
  2158. }
  2159. }
  2160. #ad-operation .dm-description .purple-circle {
  2161. top: 100px;
  2162. }
  2163. #ad-operation .card-content > div {
  2164. display: flex;
  2165. flex-direction: column;
  2166. border: 2px solid #ea5413;
  2167. border-radius: 10px;
  2168. }
  2169. #ad-operation .card-content h3 {
  2170. width: 60%;
  2171. margin: -17px auto 0;
  2172. padding: 8px 5px;
  2173. display: inline-block;
  2174. color: #fff;
  2175. background: #ea5413;
  2176. text-align: center;
  2177. font-size: 18px;
  2178. font-weight: bold;
  2179. letter-spacing: 2px;
  2180. border-radius: 10px;
  2181. box-shadow: 2px 2px 5px #ccc;
  2182. }
  2183. @media (max-width: 576px) {
  2184. #ad-operation .card-content h3 {
  2185. width: auto;
  2186. padding: 7px 15px;
  2187. font-size: 16px;
  2188. }
  2189. }
  2190. #ad-operation .card-content h4,
  2191. #ad-operation .card-content .table {
  2192. margin-top: 25px;
  2193. padding: 20px;
  2194. font-size: 14px;
  2195. line-height: 32px;
  2196. background: #ffebe2;
  2197. }
  2198. #ad-operation .card-content h4 span,
  2199. #ad-operation .card-content .table span {
  2200. display: block;
  2201. border-bottom: 1px solid;
  2202. }
  2203. #ad-operation .card-content h4 strong,
  2204. #ad-operation .card-content .table strong {
  2205. font-size: 20px;
  2206. }
  2207. #ad-operation .card-content h4 p,
  2208. #ad-operation .card-content .table p {
  2209. margin: 0;
  2210. line-height: 20px;
  2211. }
  2212. #ad-operation .content-box {
  2213. width: 65%;
  2214. margin: auto;
  2215. padding: 30px 0;
  2216. display: flex;
  2217. justify-content: center;
  2218. background: #ffebe2;
  2219. border: 2px solid #ffebe2;
  2220. position: relative;
  2221. }
  2222. @media (max-width: 991px) {
  2223. #ad-operation .content-box {
  2224. width: 90%;
  2225. }
  2226. }
  2227. @media (max-width: 767px) {
  2228. #ad-operation .content-box {
  2229. width: 100%;
  2230. }
  2231. }
  2232. @media (max-width: 475px) {
  2233. #ad-operation .content-box {
  2234. padding-left: 10px;
  2235. }
  2236. }
  2237. #ad-operation .content-box p {
  2238. margin: 0;
  2239. line-height: 32px;
  2240. }
  2241. @media (max-width: 767px) {
  2242. #ad-operation .content-box p {
  2243. font-size: 14px;
  2244. }
  2245. }
  2246. @media (max-width: 475px) {
  2247. #ad-operation .content-box p {
  2248. font-size: 13px;
  2249. }
  2250. }
  2251. #ad-operation .content-box h4 {
  2252. font-size: 22px;
  2253. font-weight: bold;
  2254. margin-bottom: 20px;
  2255. }
  2256. @media (max-width: 767px) {
  2257. #ad-operation .content-box h4 {
  2258. font-size: 18px;
  2259. }
  2260. }
  2261. @media (max-width: 475px) {
  2262. #ad-operation .content-box h4 {
  2263. font-size: 14px;
  2264. white-space: nowrap;
  2265. }
  2266. }
  2267. #ad-operation .content-box .line {
  2268. height: 3px;
  2269. background: #fff;
  2270. width: 950px;
  2271. position: absolute;
  2272. left: -200px;
  2273. top: 35px;
  2274. }
  2275. @media (max-width: 767px) {
  2276. #ad-operation .content-box .line {
  2277. top: 33px;
  2278. }
  2279. }
  2280. @media (max-width: 575px) {
  2281. #ad-operation .content-box .line {
  2282. top: 30px;
  2283. }
  2284. }
  2285. #ad-operation .content-badge {
  2286. position: absolute;
  2287. left: 0;
  2288. top: -53px;
  2289. padding: 5px 10px;
  2290. background: #ea5413;
  2291. border-radius: 10px;
  2292. font-size: 22px;
  2293. font-weight: bold;
  2294. color: #fff;
  2295. }
  2296. #ad-operation .client-content {
  2297. position: relative;
  2298. display: flex;
  2299. justify-content: center;
  2300. }
  2301. #ad-operation .client-content p {
  2302. position: absolute;
  2303. top: 11vw;
  2304. z-index: 10;
  2305. font-size: 32px;
  2306. font-weight: bold;
  2307. }
  2308. @media (max-width: 991px) {
  2309. #ad-operation .client-content p {
  2310. font-size: 28px;
  2311. }
  2312. }
  2313. @media (max-width: 767px) {
  2314. #ad-operation .client-content p {
  2315. font-size: 22px;
  2316. }
  2317. }
  2318. @media (max-width: 575px) {
  2319. #ad-operation .client-content p {
  2320. top: 9vw;
  2321. font-size: 18px;
  2322. }
  2323. }
  2324. #ad-operation .pageForm {
  2325. line-height: 32px;
  2326. letter-spacing: 1px;
  2327. background: #fff;
  2328. }
  2329. #ad-operation .header-lefttop {
  2330. width: 170%;
  2331. position: absolute;
  2332. left: -22vw;
  2333. top: -225px;
  2334. z-index: -1;
  2335. opacity: 0.5;
  2336. }
  2337. @media (max-width: 991px) {
  2338. #ad-operation .header-lefttop {
  2339. width: 100%;
  2340. left: -24vw;
  2341. top: -250px;
  2342. }
  2343. }
  2344. @media (max-width: 991px) {
  2345. #ad-operation .header-lefttop {
  2346. top: -26vw;
  2347. }
  2348. }
  2349. #ad-operation .category.dm-description {
  2350. padding: 2rem 8rem;
  2351. }
  2352. @media (max-width: 991px) {
  2353. #ad-operation .category.dm-description {
  2354. padding: 2rem 3rem;
  2355. }
  2356. }
  2357. @media (max-width: 767px) {
  2358. #ad-operation .category.dm-description {
  2359. padding: 2rem 0rem;
  2360. }
  2361. }
  2362. #ad-operation .accreditation p {
  2363. font-size: 24px;
  2364. }
  2365. @media (max-width: 575px) {
  2366. #ad-operation .accreditation p {
  2367. font-size: 20px;
  2368. }
  2369. }
  2370. #ad-operation .accreditation img {
  2371. width: 150px;
  2372. position: absolute;
  2373. top: -35px;
  2374. left: -25px;
  2375. }
  2376. @media (max-width: 767px) {
  2377. #ad-operation .accreditation img {
  2378. width: 135px;
  2379. left: -50px;
  2380. }
  2381. }
  2382. @media (max-width: 575px) {
  2383. #ad-operation .accreditation img {
  2384. width: 120px;
  2385. top: -80px;
  2386. left: -20px;
  2387. }
  2388. }
  2389. #ad-operation .purple-circle {
  2390. width: 40%;
  2391. top: -400px;
  2392. right: -150px;
  2393. position: absolute;
  2394. z-index: -100;
  2395. }
  2396. @media (max-width: 991px) {
  2397. #ad-operation .purple-circle {
  2398. width: 60%;
  2399. }
  2400. }
  2401. @media (max-width: 767px) {
  2402. #ad-operation .purple-circle {
  2403. top: -300px;
  2404. }
  2405. }
  2406. #ad-operation .data-text .circle {
  2407. top: -220px;
  2408. left: -5vw;
  2409. }
  2410. @media (max-width: 767px) {
  2411. #ad-operation .data-text .circle {
  2412. top: -100px;
  2413. }
  2414. }
  2415. /* ad-operation End */
  2416. /* blog-traffic Start */
  2417. .blog-traffic {
  2418. overflow-x: hidden;
  2419. }
  2420. .blog-traffic .header {
  2421. padding: 0;
  2422. }
  2423. .blog-traffic .banner {
  2424. width: 100vw;
  2425. height: auto;
  2426. position: absolute;
  2427. z-index: -10;
  2428. }
  2429. @media (max-width: 767px) {
  2430. .blog-traffic .banner {
  2431. width: 150vw;
  2432. height: auto;
  2433. }
  2434. }
  2435. .blog-traffic .header-img {
  2436. width: 150%;
  2437. height: auto;
  2438. position: relative;
  2439. top: -30px;
  2440. right: 30px;
  2441. z-index: -1;
  2442. }
  2443. @media (max-width: 767px) {
  2444. .blog-traffic .header-img {
  2445. width: 100%;
  2446. top: -45px;
  2447. right: unset;
  2448. }
  2449. }
  2450. .blog-traffic .header-title {
  2451. font-size: 2.5rem;
  2452. line-height: 65px;
  2453. font-weight: 600;
  2454. color: #000;
  2455. }
  2456. @media (max-width: 768px) {
  2457. .blog-traffic .header-title {
  2458. font-size: 2.2rem;
  2459. }
  2460. }
  2461. .blog-traffic .dm-description {
  2462. margin-top: -250px;
  2463. }
  2464. @media (max-width: 1400px) {
  2465. .blog-traffic .dm-description {
  2466. margin-top: -190px;
  2467. }
  2468. }
  2469. @media (max-width: 991px) {
  2470. .blog-traffic .dm-description {
  2471. margin-top: -100px;
  2472. }
  2473. }
  2474. .blog-traffic .dm-description p {
  2475. font-size: 20px;
  2476. line-height: 32px;
  2477. }
  2478. .blog-traffic .category {
  2479. padding: 0;
  2480. position: relative;
  2481. }
  2482. .blog-traffic .category.dm-description {
  2483. padding: 0;
  2484. }
  2485. @media (max-width: 575px) {
  2486. .blog-traffic .category {
  2487. padding: 0 10px;
  2488. }
  2489. }
  2490. .blog-traffic .category h4 {
  2491. font-size: 2rem;
  2492. }
  2493. .blog-traffic .category h4,
  2494. .blog-traffic .category .sub-title {
  2495. margin: 0;
  2496. color: #f5ab1b;
  2497. font-weight: bold;
  2498. }
  2499. .blog-traffic .category-sub-h2::after {
  2500. width: 3rem;
  2501. border-bottom: 10px solid #ea5413;
  2502. margin-top: 15px;
  2503. }
  2504. .blog-traffic ul {
  2505. padding: 0;
  2506. list-style: none;
  2507. }
  2508. .blog-traffic ul li {
  2509. line-height: 32px;
  2510. }
  2511. .blog-traffic .img-block-img {
  2512. width: 12%;
  2513. -o-object-fit: contain;
  2514. object-fit: contain;
  2515. image-rendering: -webkit-optimize-contrast;
  2516. position: relative;
  2517. top: -30px;
  2518. }
  2519. @media (max-width: 1200px) {
  2520. .blog-traffic .img-block-img {
  2521. top: -10px;
  2522. }
  2523. }
  2524. @media (max-width: 991px) {
  2525. .blog-traffic .img-block-img {
  2526. width: 15%;
  2527. }
  2528. }
  2529. @media (max-width: 767px) {
  2530. .blog-traffic .img-block-img {
  2531. width: 20%;
  2532. top: 5px;
  2533. }
  2534. }
  2535. @media (max-width: 490px) {
  2536. .blog-traffic .img-block-img {
  2537. top: 15px;
  2538. }
  2539. }
  2540. @media (max-width: 414px) {
  2541. .blog-traffic .img-block-img {
  2542. top: 22px;
  2543. }
  2544. }
  2545. @media (max-width: 1200px) {
  2546. .blog-traffic .img-first {
  2547. top: 0;
  2548. }
  2549. }
  2550. @media (max-width: 767px) {
  2551. .blog-traffic .img-first {
  2552. top: 15px;
  2553. }
  2554. }
  2555. @media (max-width: 490px) {
  2556. .blog-traffic .img-first {
  2557. top: 40px;
  2558. }
  2559. }
  2560. .blog-traffic .add-img {
  2561. width: 130px;
  2562. margin: 10px auto 0;
  2563. image-rendering: -webkit-optimize-contrast;
  2564. }
  2565. @media (max-width: 991px) {
  2566. .blog-traffic .add-img {
  2567. margin: 0 auto;
  2568. }
  2569. }
  2570. @media (max-width: 767px) {
  2571. .blog-traffic .add-img {
  2572. margin: 10px auto -25px;
  2573. }
  2574. }
  2575. .blog-traffic .purple-circle {
  2576. width: 50%;
  2577. left: -250px;
  2578. bottom: 100px;
  2579. }
  2580. @media (max-width: 991px) {
  2581. .blog-traffic .purple-circle {
  2582. left: -150px;
  2583. }
  2584. }
  2585. @media (max-width: 767px) {
  2586. .blog-traffic .purple-circle {
  2587. left: -50px;
  2588. }
  2589. }
  2590. .blog-traffic .orange-circle {
  2591. width: 50%;
  2592. right: -200px;
  2593. top: -200px;
  2594. }
  2595. @media (max-width: 767px) {
  2596. .blog-traffic .orange-circle {
  2597. right: -100px;
  2598. top: -150px;
  2599. }
  2600. }
  2601. .blog-traffic .data-text .circle {
  2602. top: -250px;
  2603. right: -5vw;
  2604. }
  2605. @media (max-width: 767px) {
  2606. .blog-traffic .data-text .circle {
  2607. top: 0px;
  2608. }
  2609. }
  2610. /* blog-traffic End */
  2611. /* seo Start */
  2612. #seo-dm {
  2613. overflow: hidden;
  2614. }
  2615. #seo-dm .bg-img {
  2616. width: 50%;
  2617. position: absolute;
  2618. right: -50px;
  2619. z-index: -1;
  2620. }
  2621. #seo-dm .block-content {
  2622. margin-left: -35px;
  2623. }
  2624. #seo-dm .block-content h3 {
  2625. color: #f6ab1c;
  2626. font-size: 2.2rem;
  2627. font-weight: bold;
  2628. }
  2629. @media (max-width: 991px) {
  2630. #seo-dm .block-content h3 {
  2631. font-size: 1.8rem;
  2632. }
  2633. }
  2634. @media (max-width: 575px) {
  2635. #seo-dm .block-content h3 {
  2636. font-size: 1.5rem;
  2637. }
  2638. }
  2639. #seo-dm .block-content p {
  2640. color: #656565;
  2641. font-weight: bold;
  2642. }
  2643. #seo-dm .block-content .block-title {
  2644. margin-bottom: 20px;
  2645. }
  2646. @media (max-width: 575px) {
  2647. #seo-dm .block-content .block-title {
  2648. margin-bottom: 0;
  2649. }
  2650. }
  2651. /* seo End */
  2652. /* youtube-views Start */
  2653. #youtube-views,
  2654. #youtube-views-zh {
  2655. overflow-x: hidden;
  2656. }
  2657. #youtube-views h5,
  2658. #youtube-views-zh h5 {
  2659. line-height: 32px;
  2660. }
  2661. #youtube-views .title,
  2662. #youtube-views-zh .title {
  2663. color: #ea5413;
  2664. font-size: 1.3rem;
  2665. font-weight: bold;
  2666. }
  2667. #youtube-views .header-right,
  2668. #youtube-views-zh .header-right {
  2669. background-position: center;
  2670. }
  2671. #youtube-views .card-group,
  2672. #youtube-views-zh .card-group {
  2673. margin-top: 50px;
  2674. }
  2675. #youtube-views .card-group .card,
  2676. #youtube-views-zh .card-group .card {
  2677. box-shadow: 0 0 10px rgba(32, 32, 32, 0.2509803922);
  2678. }
  2679. #youtube-views .card-group .card ul,
  2680. #youtube-views-zh .card-group .card ul {
  2681. padding: 0;
  2682. list-style: none;
  2683. }
  2684. #youtube-views .card-group .card ul img,
  2685. #youtube-views-zh .card-group .card ul img {
  2686. margin-bottom: 1px;
  2687. }
  2688. #youtube-views .card-group .card .price,
  2689. #youtube-views-zh .card-group .card .price {
  2690. width: 100%;
  2691. padding: 10px 0;
  2692. font-size: 28px;
  2693. font-weight: bold;
  2694. text-align: center;
  2695. color: #fff;
  2696. background-color: #ea5413;
  2697. letter-spacing: 2px;
  2698. }
  2699. #youtube-views .card-group .card .buy-btn,
  2700. #youtube-views-zh .card-group .card .buy-btn {
  2701. padding: 6px 18px;
  2702. color: #fff;
  2703. border: 1px solid transparent;
  2704. border-radius: 50px;
  2705. background: #ea5413;
  2706. transition: all 0.3s;
  2707. }
  2708. #youtube-views .card-group .card .buy-btn:hover,
  2709. #youtube-views-zh .card-group .card .buy-btn:hover {
  2710. color: #ea5413;
  2711. border: 1px solid #ea5413;
  2712. background: #fff;
  2713. }
  2714. #youtube-views .card-group .paypal-content,
  2715. #youtube-views-zh .card-group .paypal-content {
  2716. margin: 0 20px;
  2717. box-shadow: none;
  2718. }
  2719. #youtube-views .direction-list,
  2720. #youtube-views-zh .direction-list {
  2721. margin-top: 100px;
  2722. }
  2723. @media (max-width: 991px) {
  2724. #youtube-views .direction-list,
  2725. #youtube-views-zh .direction-list {
  2726. margin-top: 60px;
  2727. }
  2728. }
  2729. #youtube-views .direction-list img,
  2730. #youtube-views-zh .direction-list img {
  2731. width: 50px;
  2732. -o-object-fit: contain;
  2733. object-fit: contain;
  2734. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  2735. }
  2736. #youtube-views .direction-list .content > div,
  2737. #youtube-views-zh .direction-list .content > div {
  2738. margin-bottom: 40px;
  2739. padding: 0px 15px;
  2740. border-left: 1px solid rgba(0, 0, 0, 0.125);
  2741. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  2742. }
  2743. #youtube-views .direction-list section h5,
  2744. #youtube-views-zh .direction-list section h5 {
  2745. margin: 0;
  2746. font-size: 18px;
  2747. font-weight: bold;
  2748. }
  2749. #youtube-views .direction-list section p,
  2750. #youtube-views-zh .direction-list section p {
  2751. font-size: 14px;
  2752. }
  2753. #youtube-views .accordion-button,
  2754. #youtube-views-zh .accordion-button {
  2755. padding: 20px;
  2756. }
  2757. #youtube-views .accordion-button:not(.collapsed),
  2758. #youtube-views-zh .accordion-button:not(.collapsed) {
  2759. color: #ea5413 !important;
  2760. background-color: #ffebe2 !important;
  2761. }
  2762. #youtube-views button:focus:not(:focus-visible),
  2763. #youtube-views-zh button:focus:not(:focus-visible) {
  2764. box-shadow: none !important;
  2765. }
  2766. #youtube-views .accordion-button:not(.collapsed)::after,
  2767. #youtube-views-zh .accordion-button:not(.collapsed)::after {
  2768. 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");
  2769. }
  2770. @media (max-width: 767px) {
  2771. #youtube-views .category.dm-description,
  2772. #youtube-views-zh .category.dm-description {
  2773. padding-top: 6rem;
  2774. }
  2775. }
  2776. @media (max-width: 575px) {
  2777. #youtube-views .category.dm-description,
  2778. #youtube-views-zh .category.dm-description {
  2779. padding-top: 14rem;
  2780. }
  2781. }
  2782. /* youtube-views End */
  2783. /* youtube-views-zh Start */
  2784. #youtube-views-zh .header {
  2785. margin-top: 0;
  2786. padding: 4.8rem 0 3rem;
  2787. }
  2788. #youtube-views-zh .header p {
  2789. line-height: 35px;
  2790. font-size: 18px;
  2791. font-weight: bold;
  2792. color: #656565;
  2793. }
  2794. @media (max-width: 414px) {
  2795. #youtube-views-zh .header p {
  2796. font-size: 14px;
  2797. }
  2798. }
  2799. #youtube-views-zh .header .row {
  2800. height: 1000px;
  2801. }
  2802. @media (max-width: 991px) {
  2803. #youtube-views-zh .header .row {
  2804. height: 700px;
  2805. }
  2806. }
  2807. @media (max-width: 767px) {
  2808. #youtube-views-zh .header .row {
  2809. height: auto;
  2810. }
  2811. }
  2812. @media (max-width: 767px) {
  2813. #youtube-views-zh .header .row div {
  2814. text-align: center;
  2815. }
  2816. }
  2817. #youtube-views-zh .header .header-title {
  2818. padding-top: 10rem;
  2819. margin-bottom: 30px;
  2820. font-size: 40px;
  2821. color: #ea5413;
  2822. line-height: 44px;
  2823. }
  2824. @media (max-width: 991px) {
  2825. #youtube-views-zh .header .header-title {
  2826. padding-top: 5rem;
  2827. }
  2828. }
  2829. @media (max-width: 414px) {
  2830. #youtube-views-zh .header .header-title {
  2831. font-size: 34px;
  2832. }
  2833. }
  2834. #youtube-views-zh .header .header-title small {
  2835. font-size: 28px;
  2836. }
  2837. @media (max-width: 991px) {
  2838. #youtube-views-zh .header .header-title small {
  2839. font-size: 22px;
  2840. }
  2841. }
  2842. #youtube-views-zh .header .banner {
  2843. width: 100vw;
  2844. height: 1360px;
  2845. position: absolute;
  2846. top: 0;
  2847. right: -16vw;
  2848. z-index: -1;
  2849. background-size: cover;
  2850. background-position: center;
  2851. background-repeat: no-repeat;
  2852. background-image: url("/imgs/dm/youtube-views-01.png");
  2853. }
  2854. @media (max-width: 1200px) {
  2855. #youtube-views-zh .header .banner {
  2856. top: -10vw;
  2857. }
  2858. }
  2859. @media (max-width: 991px) {
  2860. #youtube-views-zh .header .banner {
  2861. top: 8vw;
  2862. height: 1000px;
  2863. }
  2864. }
  2865. @media (max-width: 767px) {
  2866. #youtube-views-zh .info-content {
  2867. text-align: center;
  2868. }
  2869. }
  2870. #youtube-views-zh .info-content h4 {
  2871. font-weight: bold;
  2872. line-height: 35px;
  2873. margin-bottom: 30px;
  2874. }
  2875. #youtube-views-zh .info-content h4 strong {
  2876. font-size: 30px;
  2877. color: #ea5413;
  2878. }
  2879. #youtube-views-zh .info-content p {
  2880. width: 320px;
  2881. line-height: 35px;
  2882. color: #656565;
  2883. }
  2884. @media (max-width: 767px) {
  2885. #youtube-views-zh .info-content p {
  2886. margin: auto;
  2887. }
  2888. }
  2889. #youtube-views-zh .card-group {
  2890. margin: 170px auto 50px;
  2891. }
  2892. @media (max-width: 575px) {
  2893. #youtube-views-zh .card-group {
  2894. margin: 75px auto 50px;
  2895. }
  2896. }
  2897. #youtube-views-zh .card-group .card {
  2898. border-radius: 20px;
  2899. }
  2900. #youtube-views-zh .card-group .card ul {
  2901. padding: 10px;
  2902. }
  2903. #youtube-views-zh .card-group .card .price {
  2904. font-size: 30px;
  2905. }
  2906. #youtube-views-zh .card-group .card .price small {
  2907. display: block;
  2908. margin-top: -3px;
  2909. font-size: 18px;
  2910. font-weight: normal;
  2911. text-decoration: line-through;
  2912. }
  2913. #youtube-views-zh .card-group .card .buy-btn {
  2914. display: block;
  2915. text-decoration: none;
  2916. }
  2917. @media (max-width: 767px) {
  2918. #youtube-views-zh .direction-list {
  2919. margin-top: 50px;
  2920. }
  2921. }
  2922. #youtube-views-zh .direction-list img {
  2923. filter: unset;
  2924. position: absolute;
  2925. }
  2926. #youtube-views-zh .direction-list section {
  2927. margin-bottom: 40px;
  2928. padding: 0px 35px 10px;
  2929. border-left: 1px solid #656565;
  2930. border-bottom: 1px solid #656565;
  2931. border-radius: 0 0 0 10px;
  2932. }
  2933. #youtube-views-zh .direction-list section h5 {
  2934. margin-bottom: 20px;
  2935. }
  2936. #youtube-views-zh .direction-list section p {
  2937. font-size: 16px;
  2938. line-height: 30px;
  2939. color: #656565;
  2940. }
  2941. #youtube-views-zh .data-content {
  2942. display: flex;
  2943. flex-direction: column;
  2944. align-items: center;
  2945. margin-bottom: 150px;
  2946. }
  2947. #youtube-views-zh .data-content section h4 {
  2948. position: absolute;
  2949. top: 35%;
  2950. left: 50%;
  2951. width: 100%;
  2952. font-size: 28px;
  2953. text-align: center;
  2954. font-weight: bold;
  2955. line-height: 40px;
  2956. transform: translate(-50%, -50%);
  2957. }
  2958. @media (max-width: 1200px) {
  2959. #youtube-views-zh .data-content section h4 {
  2960. top: 40%;
  2961. }
  2962. }
  2963. @media (max-width: 767px) {
  2964. #youtube-views-zh .data-content section h4 {
  2965. top: 36%;
  2966. font-size: 18px;
  2967. line-height: normal;
  2968. }
  2969. }
  2970. @media (max-width: 575px) {
  2971. #youtube-views-zh .data-content section h4 {
  2972. top: 40%;
  2973. }
  2974. }
  2975. #youtube-views-zh .data-content section h4 strong {
  2976. font-size: 34px;
  2977. color: #ea5413;
  2978. }
  2979. @media (max-width: 767px) {
  2980. #youtube-views-zh .data-content section h4 strong {
  2981. font-size: 24px;
  2982. }
  2983. }
  2984. @media (max-width: 414px) {
  2985. #youtube-views-zh .data-content section h4 strong {
  2986. font-size: 22px;
  2987. }
  2988. }
  2989. #youtube-views-zh .data-content section img {
  2990. margin-top: 150px;
  2991. }
  2992. @media (max-width: 991px) {
  2993. #youtube-views-zh .data-content section img {
  2994. height: 500px;
  2995. -o-object-fit: cover;
  2996. object-fit: cover;
  2997. }
  2998. }
  2999. @media (max-width: 767px) {
  3000. #youtube-views-zh .data-content section img {
  3001. margin-top: 80px;
  3002. height: 400px;
  3003. }
  3004. }
  3005. @media (max-width: 575px) {
  3006. #youtube-views-zh .data-content section img {
  3007. height: 280px;
  3008. }
  3009. }
  3010. #youtube-views-zh .data-content p {
  3011. font-weight: bold;
  3012. line-height: 35px;
  3013. color: #656565;
  3014. }
  3015. /* youtube-views-zh End */
  3016. /* seo-image Start */
  3017. .seo-image {
  3018. overflow-x: hidden;
  3019. }
  3020. .seo-image p {
  3021. line-height: 32px;
  3022. }
  3023. .seo-image .header {
  3024. padding: 0;
  3025. }
  3026. .seo-image .video-box {
  3027. width: 100%;
  3028. padding-bottom: 56%;
  3029. }
  3030. .seo-image .content {
  3031. margin: 150px auto;
  3032. }
  3033. @media (max-width: 767px) {
  3034. .seo-image .content {
  3035. margin: 80px auto;
  3036. }
  3037. }
  3038. .seo-image .line {
  3039. width: 820px;
  3040. position: absolute;
  3041. top: -70px;
  3042. left: 345px;
  3043. }
  3044. @media (max-width: 1400px) {
  3045. .seo-image .line {
  3046. width: 840px;
  3047. top: -85px;
  3048. left: 210px;
  3049. }
  3050. }
  3051. @media (max-width: 1200px) {
  3052. .seo-image .line {
  3053. width: 880px;
  3054. top: -90px;
  3055. left: 114px;
  3056. }
  3057. }
  3058. @media (max-width: 991px) {
  3059. .seo-image .line {
  3060. display: none;
  3061. }
  3062. }
  3063. .seo-image .title {
  3064. font-size: 28px;
  3065. color: #f6ab1c;
  3066. font-weight: bold;
  3067. }
  3068. @media (max-width: 991px) {
  3069. .seo-image .img-item {
  3070. width: 100%;
  3071. max-width: 100% !important;
  3072. }
  3073. }
  3074. .seo-image .purple-circle,
  3075. .seo-image .orange-circle {
  3076. width: 100%;
  3077. }
  3078. @media (max-width: 991px) {
  3079. .seo-image .purple-circle,
  3080. .seo-image .orange-circle {
  3081. width: 60%;
  3082. }
  3083. }
  3084. .seo-image .purple-circle {
  3085. top: -470px;
  3086. right: -100%;
  3087. }
  3088. @media (max-width: 991px) {
  3089. .seo-image .purple-circle {
  3090. top: -350px;
  3091. right: -150px;
  3092. }
  3093. }
  3094. @media (max-width: 767px) {
  3095. .seo-image .purple-circle {
  3096. top: -250px;
  3097. right: -20px;
  3098. }
  3099. }
  3100. .seo-image .orange-circle {
  3101. top: -200px;
  3102. left: -100%;
  3103. }
  3104. @media (max-width: 991px) {
  3105. .seo-image .orange-circle {
  3106. top: -30vw;
  3107. left: -20vw;
  3108. }
  3109. }
  3110. .seo-image .data-text .circle {
  3111. top: -400px;
  3112. right: -5vw;
  3113. }
  3114. @media (max-width: 991px) {
  3115. .seo-image .data-text .circle {
  3116. top: -250px;
  3117. }
  3118. }
  3119. @media (max-width: 767px) {
  3120. .seo-image .data-text .circle {
  3121. top: -120px;
  3122. }
  3123. }
  3124. /* seo-image End */
  3125. /* 共用 className Start */
  3126. .purple-circle,
  3127. .orange-circle {
  3128. position: absolute;
  3129. z-index: -1;
  3130. }
  3131. .data-text {
  3132. position: relative;
  3133. }
  3134. .data-text p {
  3135. font-size: 28px;
  3136. font-weight: bold;
  3137. text-align: center;
  3138. }
  3139. .data-text .circle {
  3140. width: 500px;
  3141. z-index: -100;
  3142. position: absolute;
  3143. }
  3144. @media (max-width: 991px) {
  3145. .data-text .circle {
  3146. width: 400px;
  3147. }
  3148. }
  3149. @media (max-width: 767px) {
  3150. .data-text .circle {
  3151. width: 250px;
  3152. }
  3153. }
  3154. /* 共用 className End */
  3155. /* ai-presenter Start */
  3156. .ai-presenter {
  3157. margin: 100px auto;
  3158. overflow: hidden;
  3159. }
  3160. .ai-presenter .title-item {
  3161. display: flex;
  3162. flex-direction: column;
  3163. justify-content: center;
  3164. align-items: center;
  3165. position: relative;
  3166. }
  3167. .ai-presenter .title-item img {
  3168. width: 450px;
  3169. }
  3170. @media (max-width: 575px) {
  3171. .ai-presenter .title-item img {
  3172. width: 350px;
  3173. }
  3174. }
  3175. .ai-presenter .title-item h4 {
  3176. text-align: center;
  3177. margin-top: -41px;
  3178. margin-left: -10px;
  3179. font-weight: bold;
  3180. }
  3181. @media (max-width: 575px) {
  3182. .ai-presenter .title-item h4 {
  3183. margin-top: -34px;
  3184. }
  3185. }
  3186. .ai-presenter .usecace-list {
  3187. margin-bottom: 100px;
  3188. }
  3189. .ai-presenter .usecace-list img {
  3190. width: 100%;
  3191. }
  3192. .ai-presenter .usecace-list h5 {
  3193. font-size: 18px;
  3194. text-align: center;
  3195. }
  3196. .ai-presenter .usecace-list h5::before {
  3197. content: "";
  3198. font-weight: bold;
  3199. display: inline-block;
  3200. border: 5px solid #e0c3dd;
  3201. border-radius: 20px;
  3202. margin-right: 10px;
  3203. margin-bottom: 2px;
  3204. }
  3205. .ai-presenter .video-left,
  3206. .ai-presenter .video-right {
  3207. display: flex;
  3208. flex-direction: column;
  3209. align-items: center;
  3210. justify-content: center;
  3211. position: relative;
  3212. padding: 20px;
  3213. background: #d8bbd9;
  3214. border-radius: 20px;
  3215. }
  3216. .ai-presenter .video-left a,
  3217. .ai-presenter .video-right a {
  3218. display: flex;
  3219. width: 100%;
  3220. text-decoration: none;
  3221. color: #000;
  3222. }
  3223. .ai-presenter .video-left a:hover .click-img,
  3224. .ai-presenter .video-right a:hover .click-img {
  3225. top: 50px;
  3226. }
  3227. .ai-presenter .video-left .click-img,
  3228. .ai-presenter .video-right .click-img {
  3229. position: absolute;
  3230. width: 50px;
  3231. top: 60px;
  3232. right: 40px;
  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 .mp4-box {
  3256. width: 70%;
  3257. height: 0;
  3258. margin: auto;
  3259. padding-bottom: 45%;
  3260. }
  3261. .ai-presenter .mp4-box video {
  3262. width: 100%;
  3263. height: auto;
  3264. }
  3265. .ai-presenter .step-content,
  3266. .ai-presenter .template-content {
  3267. margin: 100px auto;
  3268. position: relative;
  3269. }
  3270. .ai-presenter .step-content .container,
  3271. .ai-presenter .template-content .container {
  3272. margin-top: -38px;
  3273. }
  3274. .ai-presenter .step-content .bg-top,
  3275. .ai-presenter .step-content .bg-bottom,
  3276. .ai-presenter .template-content .bg-top,
  3277. .ai-presenter .template-content .bg-bottom {
  3278. width: 100%;
  3279. position: absolute;
  3280. z-index: -10;
  3281. left: 0;
  3282. right: 0;
  3283. }
  3284. .ai-presenter .step-content .bg-top,
  3285. .ai-presenter .template-content .bg-top {
  3286. top: -10px;
  3287. }
  3288. .ai-presenter .step-content .bg-bottom,
  3289. .ai-presenter .template-content .bg-bottom {
  3290. bottom: -10px;
  3291. }
  3292. .ai-presenter .step-content .link-btn,
  3293. .ai-presenter .template-content .link-btn {
  3294. display: inline-block;
  3295. padding: 12px 20px;
  3296. margin-top: 25px;
  3297. border-radius: 100px;
  3298. text-decoration: none;
  3299. color: #fff;
  3300. background: #ea5413;
  3301. transition: all 0.3s;
  3302. }
  3303. .ai-presenter .step-content .link-btn:hover,
  3304. .ai-presenter .template-content .link-btn:hover {
  3305. opacity: 0.8;
  3306. }
  3307. .ai-presenter .step-content ul,
  3308. .ai-presenter .template-content ul {
  3309. padding: 0;
  3310. list-style: none;
  3311. display: flex;
  3312. flex-direction: column;
  3313. justify-content: center;
  3314. }
  3315. .ai-presenter .step-content ul li,
  3316. .ai-presenter .template-content ul li {
  3317. margin: 30px auto;
  3318. }
  3319. .ai-presenter .step-content ul li img,
  3320. .ai-presenter .template-content ul li img {
  3321. height: auto;
  3322. width: 100%;
  3323. max-width: 800px;
  3324. }
  3325. .ai-presenter .step-content ul li h4,
  3326. .ai-presenter .template-content ul li h4 {
  3327. color: #ea5413;
  3328. font-weight: bold;
  3329. text-align: center;
  3330. line-height: 34px;
  3331. }
  3332. @media (max-width: 575px) {
  3333. .ai-presenter .step-content ul li h4,
  3334. .ai-presenter .template-content ul li h4 {
  3335. font-size: 20px;
  3336. }
  3337. }
  3338. .ai-presenter .step-content ul li .point-list,
  3339. .ai-presenter .template-content ul li .point-list {
  3340. list-style: decimal;
  3341. }
  3342. .ai-presenter .step-content ul li .point-list li,
  3343. .ai-presenter .template-content ul li .point-list li {
  3344. margin: 5px 45px;
  3345. }
  3346. @media (max-width: 575px) {
  3347. .ai-presenter .step-content ul li .point-list li,
  3348. .ai-presenter .template-content ul li .point-list li {
  3349. margin: 5px 0 5px 20px;
  3350. }
  3351. }
  3352. .ai-presenter .step-content .excerpt,
  3353. .ai-presenter .template-content .excerpt {
  3354. margin: 15px 25px 0;
  3355. font-size: 18px;
  3356. font-weight: bold;
  3357. }
  3358. .ai-presenter .step-content .excerpt::before,
  3359. .ai-presenter .template-content .excerpt::before {
  3360. content: "";
  3361. font-weight: bold;
  3362. display: inline-block;
  3363. border: 5px solid #ea5413;
  3364. border-radius: 20px;
  3365. margin-right: 10px;
  3366. margin-bottom: 2px;
  3367. }
  3368. @media (max-width: 575px) {
  3369. .ai-presenter .step-content .excerpt,
  3370. .ai-presenter .template-content .excerpt {
  3371. font-size: 16px;
  3372. }
  3373. }
  3374. @media (max-width: 575px) {
  3375. .ai-presenter .step-content .caption,
  3376. .ai-presenter .template-content .caption {
  3377. font-size: 15px;
  3378. }
  3379. }
  3380. .ai-presenter .template-content table {
  3381. display: table;
  3382. width: 110%;
  3383. height: auto;
  3384. margin-left: auto;
  3385. margin-top: -250px;
  3386. font-weight: bold;
  3387. }
  3388. @media (max-width: 1200px) {
  3389. .ai-presenter .template-content table {
  3390. margin-top: -195px;
  3391. }
  3392. }
  3393. @media (max-width: 991px) {
  3394. .ai-presenter .template-content table {
  3395. margin-top: -140px;
  3396. }
  3397. }
  3398. @media (max-width: 767px) {
  3399. .ai-presenter .template-content table {
  3400. width: 86%;
  3401. margin-top: 20px;
  3402. margin-left: 39px;
  3403. }
  3404. }
  3405. @media (max-width: 575px) {
  3406. .ai-presenter .template-content table {
  3407. margin: 20px auto 0;
  3408. margin-left: auto;
  3409. }
  3410. }
  3411. .ai-presenter .template-content table tbody {
  3412. border: 1px solid #f08757;
  3413. }
  3414. .ai-presenter .template-content table td {
  3415. text-align: center;
  3416. }
  3417. .ai-presenter .template-content table tr {
  3418. border-style: none !important;
  3419. border-bottom-width: 0px !important;
  3420. }
  3421. .ai-presenter .template-content .table-title {
  3422. margin-top: -242px;
  3423. text-align: end;
  3424. }
  3425. @media (max-width: 1200px) {
  3426. .ai-presenter .template-content .table-title {
  3427. margin-top: -185px;
  3428. }
  3429. }
  3430. @media (max-width: 991px) {
  3431. .ai-presenter .template-content .table-title {
  3432. margin-top: -133px;
  3433. }
  3434. }
  3435. @media (max-width: 767px) {
  3436. .ai-presenter .template-content .table-title {
  3437. margin-top: 0;
  3438. text-align: start;
  3439. }
  3440. }
  3441. .ai-presenter .template-content .table-striped > tbody > tr:nth-child(odd) > td,
  3442. .ai-presenter .template-content .table-striped > tbody > tr:nth-child(odd) > th {
  3443. box-shadow: none;
  3444. background-color: #fdeae1;
  3445. border-bottom-width: 0px !important;
  3446. }
  3447. .ai-presenter .template-content .table-striped > tbody > tr:nth-child(even) > td,
  3448. .ai-presenter .template-content .table-striped > tbody > tr:nth-child(even) > th {
  3449. border-bottom-width: 0px !important;
  3450. }
  3451. .ai-presenter .template-content .info img {
  3452. height: auto;
  3453. width: 100%;
  3454. max-width: 800px;
  3455. }
  3456. @media (max-width: 767px) {
  3457. .ai-presenter .template-content .info .img-left {
  3458. padding: 0 15px;
  3459. }
  3460. }
  3461. .ai-presenter .template-content .info .img-right {
  3462. width: 107%;
  3463. }
  3464. @media (max-width: 767px) {
  3465. .ai-presenter .template-content .info .img-right {
  3466. width: 100%;
  3467. }
  3468. }
  3469. .ai-presenter .template-content .info .img-text-left,
  3470. .ai-presenter .template-content .info .img-text-right {
  3471. position: absolute;
  3472. top: 9%;
  3473. color: #ea5413;
  3474. font-size: 34px;
  3475. font-weight: bold;
  3476. }
  3477. @media (max-width: 1200px) {
  3478. .ai-presenter .template-content .info .img-text-left,
  3479. .ai-presenter .template-content .info .img-text-right {
  3480. top: 8%;
  3481. font-size: 28px;
  3482. }
  3483. }
  3484. @media (max-width: 991px) {
  3485. .ai-presenter .template-content .info .img-text-left,
  3486. .ai-presenter .template-content .info .img-text-right {
  3487. font-size: 22px;
  3488. }
  3489. }
  3490. @media (max-width: 767px) {
  3491. .ai-presenter .template-content .info .img-text-left,
  3492. .ai-presenter .template-content .info .img-text-right {
  3493. font-size: 30px;
  3494. }
  3495. }
  3496. @media (max-width: 575px) {
  3497. .ai-presenter .template-content .info .img-text-left,
  3498. .ai-presenter .template-content .info .img-text-right {
  3499. font-size: 4.8vw;
  3500. }
  3501. }
  3502. .ai-presenter .template-content .info .img-text-left {
  3503. left: 31%;
  3504. }
  3505. @media (max-width: 1400px) {
  3506. .ai-presenter .template-content .info .img-text-left {
  3507. left: 28.5%;
  3508. }
  3509. }
  3510. @media (max-width: 767px) {
  3511. .ai-presenter .template-content .info .img-text-left {
  3512. left: 30%;
  3513. }
  3514. }
  3515. .ai-presenter .template-content .info .img-text-right {
  3516. left: 24.5%;
  3517. }
  3518. @media (max-width: 1400px) {
  3519. .ai-presenter .template-content .info .img-text-right {
  3520. left: 20.5%;
  3521. }
  3522. }
  3523. @media (max-width: 991px) {
  3524. .ai-presenter .template-content .info .img-text-right {
  3525. left: 18.5%;
  3526. }
  3527. }
  3528. @media (max-width: 767px) {
  3529. .ai-presenter .template-content .info .img-text-right {
  3530. top: 13%;
  3531. left: 19%;
  3532. }
  3533. }
  3534. .ai-presenter .template-content .info .video-box {
  3535. position: relative;
  3536. width: 95%;
  3537. height: 0;
  3538. padding-bottom: 50%;
  3539. margin: auto;
  3540. }
  3541. .ai-presenter .template-content .pageForm {
  3542. margin-top: 8rem;
  3543. background: #fff;
  3544. }
  3545. .ai-presenter .template-content .pageForm h3 {
  3546. line-height: 40px;
  3547. }
  3548. .ai-presenter .sec-blogtab {
  3549. padding-top: 50px;
  3550. }
  3551. .ai-presenter .terms-content {
  3552. font-size: 18px;
  3553. font-weight: bold;
  3554. line-height: 32px;
  3555. color: #6c6d70;
  3556. text-align: justify;
  3557. }
  3558. @media (max-width: 575px) {
  3559. .ai-presenter .terms-content {
  3560. padding: 0 20px;
  3561. }
  3562. }
  3563. .ai-presenter .terms-content ul {
  3564. padding: 0;
  3565. list-style: none;
  3566. }
  3567. .ai-presenter .terms-content ul li::before {
  3568. content: "";
  3569. font-weight: bold;
  3570. display: inline-block;
  3571. border: 3px solid #ea5413;
  3572. border-radius: 20px;
  3573. margin-right: 10px;
  3574. margin-bottom: 2px;
  3575. line-height: 32px;
  3576. }
  3577. /* ai-presenter End */
  3578. /* sec-blogtab Start*/
  3579. .sec-blogtab {
  3580. padding-top: 100px;
  3581. padding-bottom: 5rem;
  3582. margin: 0 auto 50px;
  3583. }
  3584. .sec-blogtab .blogtab-title {
  3585. display: inline-block;
  3586. margin-bottom: 30px;
  3587. padding-bottom: 7px;
  3588. font-size: 30px;
  3589. font-weight: bold;
  3590. text-align: center;
  3591. letter-spacing: 1px;
  3592. border-bottom: 7px solid #ea5413;
  3593. }
  3594. .sec-blogtab .blog-txt {
  3595. font-size: 16px;
  3596. }
  3597. .sec-blogtab .blog-txt p {
  3598. line-height: 32px;
  3599. letter-spacing: 1px;
  3600. }
  3601. .sec-blogtab .btn-light {
  3602. margin-top: 4rem;
  3603. padding: 1rem 2.5rem;
  3604. transition: all 0.3s;
  3605. outline: none;
  3606. font-size: 16px;
  3607. letter-spacing: 1px;
  3608. text-decoration: none;
  3609. background-color: white;
  3610. border: 1px solid #ea5413;
  3611. border-radius: 3rem;
  3612. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  3613. }
  3614. @media (max-width: 767px) {
  3615. .sec-blogtab .blog-tabs .blog-tabs-nav {
  3616. padding: 1rem 2rem 3rem;
  3617. }
  3618. }
  3619. .sec-blogtab .blog-tabs-nav a {
  3620. transition: all 0.3s;
  3621. text-decoration: none;
  3622. }
  3623. .sec-blogtab .blog-tabs-nav a:hover {
  3624. opacity: 0.8;
  3625. }
  3626. /* sec-blogtab End*//*# sourceMappingURL=style.css.map */