chuz.css 73 KB

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