chuz.css 73 KB

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