style.scss 67 KB

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