style.scss 77 KB

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