style.scss 76 KB

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