style.scss 80 KB

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