style.scss 83 KB

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