123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597 |
- @charset "UTF-8";
- /* 顏色設定 */
- :root {
- --color-scheme: dark;
- --blue: #0084b4;
- --indigo: #6610f2;
- --purple: #6f42c1;
- --pink: #e83e8c;
- --red: #dc3545;
- --orange: #fd7e14;
- --yellow: beige;
- --green: #28a745;
- --teal: #20c997;
- --cyan: #17a2b8;
- --white: #fff;
- --gray: #6c757d;
- --gray-dark: #212529;
- --primary: #0084b4;
- --secondary: #6c757d;
- --success: #28a745;
- --info: #17a2b8;
- --warning: beige;
- --danger: #dc3545;
- --light: #dee2e6;
- --dark: #212529;
- --breakpoint-xs: 0;
- --breakpoint-sm: 576px;
- --breakpoint-md: 768px;
- --breakpoint-lg: 992px;
- --breakpoint-xl: 1200px;
- --font-family-sans-serif: "Roboto Condensed", sans-serif;
- --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
- ;
- }
- @media all {
- .bg-warning {
- color: #212529;
- }
- }
- @media all {
- #sidebar {
- background: #212529;
- }
- }
- .sidebar-close {
- background: transparent;
- }
- @media all {
- .sidebar-close {
- color: #f8f9fa;
- }
- }
- *,
- *::before,
- *::after {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- html {
- font-family: sans-serif;
- line-height: 1.15;
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- article,
- aside,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- main,
- nav,
- section {
- display: block;
- }
- body {
- margin: 0;
- font-family: 'Noto Sans TC', sans-serif;
- font-weight: 400;
- line-height: 1.5;
- text-align: left;
- font-size: 1rem;
- letter-spacing: 2px;
- }
- @media all {
- body {
- color: #f8f9fa;
- background-color: #212529;
- }
- }
- [tabindex="-1"]:focus:not(:focus-visible) {
- outline: 0;
- }
- hr {
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- height: 0;
- overflow: visible;
- }
- p {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- abbr[title],
- abbr[data-original-title] {
- text-decoration: underline;
- -webkit-text-decoration: underline dotted;
- text-decoration: underline dotted;
- border-bottom: 0;
- text-decoration-skip-ink: none;
- cursor: help;
- }
- address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit;
- }
- ol,
- ul,
- dl {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- ol ol,
- ul ul,
- ol ul,
- ul ol {
- margin-bottom: 0;
- }
- dt {
- font-weight: 700;
- }
- dd {
- margin-bottom: .5rem;
- margin-left: 0;
- }
- blockquote {
- margin: 0 0 1rem;
- }
- b,
- strong {
- font-weight: 700;
- }
- small {
- font-size: 80%;
- }
- sub,
- sup {
- position: relative;
- line-height: 0;
- vertical-align: baseline;
- font-size: 75%;
- }
- sub {
- bottom: -.25em;
- }
- sup {
- top: -.5em;
- }
- a {
- text-decoration: none;
- background: transparent;
- }
- @media all {
- a {
- /* color: #f8f9fa; */
- color: #2980B8;
- }
- }
- a:hover {
- text-decoration: underline;
- }
- @media all {
- a:hover {
- color: #cbd3da;
- }
- }
- a:not([href]) {
- color: inherit;
- text-decoration: none;
- }
- a:not([href]):hover {
- color: inherit;
- text-decoration: none;
- }
- pre,
- code,
- kbd,
- samp {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
- font-size: 1em;
- }
- pre {
- margin-top: 0;
- margin-bottom: 1rem;
- overflow: auto;
- }
- figure {
- margin: 0 0 1rem;
- }
- img {
- vertical-align: middle;
- border-style: none;
- }
- svg {
- overflow: hidden;
- vertical-align: middle;
- }
- table {
- border-collapse: collapse;
- }
- caption {
- padding-top: .75rem;
- padding-bottom: .75rem;
- text-align: left;
- caption-side: bottom;
- }
- @media all {
- caption {
- color: #6c757d;
- }
- }
- th {
- text-align: inherit;
- }
- label {
- display: inline-block;
- margin-bottom: .5rem;
- }
- button {
- border-radius: 0;
- }
- button:focus {
- outline: 1px dotted;
- outline: 5px auto -webkit-focus-ring-color;
- }
- input,
- button,
- select,
- optgroup,
- textarea {
- margin: 0;
- font-family: inherit;
- line-height: inherit;
- font-size: inherit;
- }
- button,
- input {
- overflow: visible;
- }
- button,
- select {
- text-transform: none;
- }
- select {
- word-wrap: normal;
- }
- button,
- [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- }
- button:not(:disabled),
- [type="button"]:not(:disabled),
- [type="reset"]:not(:disabled),
- [type="submit"]:not(:disabled) {
- cursor: pointer;
- }
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- padding: 0;
- border-style: none;
- }
- input[type="radio"],
- input[type="checkbox"] {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- padding: 0;
- }
- input[type="date"],
- input[type="time"],
- input[type="datetime-local"],
- input[type="month"] {
- -webkit-appearance: listbox;
- }
- textarea {
- overflow: auto;
- resize: vertical;
- }
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- [type="search"] {
- outline-offset: -2px;
- -webkit-appearance: none;
- }
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- ::-webkit-file-upload-button {
- font: inherit;
- -webkit-appearance: button;
- }
- output {
- display: inline-block;
- }
- summary {
- display: list-item;
- cursor: pointer;
- }
- template {
- display: none;
- }
- [hidden] {
- display: none;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin-bottom: .5rem;
- font-weight: 400;
- line-height: 1.2;
- }
- h1 {
- font-size: 2.5rem;
- }
- @media (max-width: 1200px) {
- h1 {
- font-size: calc(1.375rem + 1.5vw);
- }
- }
- h2 {
- font-size: 2rem;
- }
- @media (max-width: 1200px) {
- h2 {
- font-size: calc(1.325rem + .9vw);
- }
- }
- h3 {
- font-size: 1.25rem;
- }
- h4 {
- font-size: 1.15rem;
- }
- h5 {
- font-size: 1rem;
- }
- h6 {
- font-size: 1rem;
- }
- .lead {
- font-weight: 400;
- font-size: 1.25rem;
- }
- hr {
- margin-top: 2.5rem;
- margin-bottom: 2.5rem;
- border-top: 1px solid silver;
- }
- img,
- amp-img {
- border: 0;
- }
- amp-img[class^=i-amp],
- amp-img[class^=-amp] {
- height: auto;
- max-width: 100%;
- }
- .container,
- .container-fluid,
- .container-xxl,
- .container-xl,
- .container-lg,
- .container-md,
- .container-sm {
- width: 100%;
- padding-right: var(--bs-gutter-x, 0.75rem);
- padding-left: var(--bs-gutter-x, 0.75rem);
- margin-right: auto;
- margin-left: auto;
- }
- @media (min-width: 576px) {
- .container-sm, .container {
- max-width: 540px;
- }
- }
- @media (min-width: 768px) {
- .container-md, .container-sm, .container {
- max-width: 720px;
- }
- }
- @media (min-width: 992px) {
- .container-lg, .container-md, .container-sm, .container {
- max-width: 960px;
- }
- }
- @media (min-width: 1200px) {
- .container-xl, .container-lg, .container-md, .container-sm, .container {
- max-width: 1140px;
- }
- }
- @media (min-width: 1400px) {
- .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
- max-width: 1320px;
- }
- }
- .row {
- --bs-gutter-x: 1.5rem;
- --bs-gutter-y: 0;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-top: calc(var(--bs-gutter-y) * -1);
- margin-right: calc(var(--bs-gutter-x) / -2);
- margin-left: calc(var(--bs-gutter-x) / -2);
- }
- .row > * {
- -ms-flex-negative: 0;
- flex-shrink: 0;
- width: 100%;
- max-width: 100%;
- padding-right: calc(var(--bs-gutter-x) / 2);
- padding-left: calc(var(--bs-gutter-x) / 2);
- margin-top: var(--bs-gutter-y);
- }
- .col-1,
- .col-2,
- .col-3,
- .col-4,
- .col-5,
- .col-6,
- .col-7,
- .col-8,
- .col-9,
- .col-10,
- .col-11,
- .col-12,
- .col,
- .col-auto,
- .col-sm-1,
- .col-sm-2,
- .col-sm-3,
- .col-sm-4,
- .col-sm-5,
- .col-sm-6,
- .col-sm-7,
- .col-sm-8,
- .col-sm-9,
- .col-sm-10,
- .col-sm-11,
- .col-sm-12,
- .col-sm,
- .col-sm-auto,
- .col-md-1,
- .col-md-2,
- .col-md-3,
- .col-md-4,
- .col-md-5,
- .col-md-6,
- .col-md-7,
- .col-md-8,
- .col-md-9,
- .col-md-10,
- .col-md-11,
- .col-md-12,
- .col-md,
- .col-md-auto,
- .col-lg-1,
- .col-lg-2,
- .col-lg-3,
- .col-lg-4,
- .col-lg-5,
- .col-lg-6,
- .col-lg-7,
- .col-lg-8,
- .col-lg-9,
- .col-lg-10,
- .col-lg-11,
- .col-lg-12,
- .col-lg,
- .col-lg-auto,
- .col-xl-1,
- .col-xl-2,
- .col-xl-3,
- .col-xl-4,
- .col-xl-5,
- .col-xl-6,
- .col-xl-7,
- .col-xl-8,
- .col-xl-9,
- .col-xl-10,
- .col-xl-11,
- .col-xl-12,
- .col-xl,
- .col-xl-auto {
- position: relative;
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- }
- .col {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-1 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 8.33333%;
- flex: 0 0 8.33333%;
- max-width: 8.33333%;
- }
- .col-2 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 16.66667%;
- flex: 0 0 16.66667%;
- max-width: 16.66667%;
- }
- .col-3 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-4 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 33.33333%;
- flex: 0 0 33.33333%;
- max-width: 33.33333%;
- }
- .col-5 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 41.66667%;
- flex: 0 0 41.66667%;
- max-width: 41.66667%;
- }
- .col-6 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-7 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 58.33333%;
- flex: 0 0 58.33333%;
- max-width: 58.33333%;
- }
- .col-8 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 66.66667%;
- flex: 0 0 66.66667%;
- max-width: 66.66667%;
- }
- .col-9 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-10 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 83.33333%;
- flex: 0 0 83.33333%;
- max-width: 83.33333%;
- }
- .col-11 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 91.66667%;
- flex: 0 0 91.66667%;
- max-width: 91.66667%;
- }
- .col-12 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- @media (min-width: 576px) {
- .col-sm {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-sm-1 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 8.33333%;
- flex: 0 0 8.33333%;
- max-width: 8.33333%;
- }
- .col-sm-2 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 16.66667%;
- flex: 0 0 16.66667%;
- max-width: 16.66667%;
- }
- .col-sm-3 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-sm-4 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 33.33333%;
- flex: 0 0 33.33333%;
- max-width: 33.33333%;
- }
- .col-sm-5 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 41.66667%;
- flex: 0 0 41.66667%;
- max-width: 41.66667%;
- }
- .col-sm-6 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-sm-7 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 58.33333%;
- flex: 0 0 58.33333%;
- max-width: 58.33333%;
- }
- .col-sm-8 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 66.66667%;
- flex: 0 0 66.66667%;
- max-width: 66.66667%;
- }
- .col-sm-9 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-sm-10 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 83.33333%;
- flex: 0 0 83.33333%;
- max-width: 83.33333%;
- }
- .col-sm-11 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 91.66667%;
- flex: 0 0 91.66667%;
- max-width: 91.66667%;
- }
- .col-sm-12 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- }
- @media (min-width: 768px) {
- .col-md {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-md-1 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 8.33333%;
- flex: 0 0 8.33333%;
- max-width: 8.33333%;
- }
- .col-md-2 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 16.66667%;
- flex: 0 0 16.66667%;
- max-width: 16.66667%;
- }
- .col-md-3 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-md-4 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 33.33333%;
- flex: 0 0 33.33333%;
- max-width: 33.33333%;
- }
- .col-md-5 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 41.66667%;
- flex: 0 0 41.66667%;
- max-width: 41.66667%;
- }
- .col-md-6 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-md-7 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 58.33333%;
- flex: 0 0 58.33333%;
- max-width: 58.33333%;
- }
- .col-md-8 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 66.66667%;
- flex: 0 0 66.66667%;
- max-width: 66.66667%;
- }
- .col-md-9 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-md-10 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 83.33333%;
- flex: 0 0 83.33333%;
- max-width: 83.33333%;
- }
- .col-md-11 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 91.66667%;
- flex: 0 0 91.66667%;
- max-width: 91.66667%;
- }
- .col-md-12 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- .ms-md-1 {
- margin-left: 0.25rem !important;
- }
- .ms-md-2 {
- margin-left: 0.5rem !important;
- }
- .ms-md-3 {
- margin-left: 1rem !important;
- }
- .ms-md-4 {
- margin-left: 1.5rem !important;
- }
- .ms-md-5 {
- margin-left: 3rem !important;
- }
- .justify-content-md-center {
- -webkit-box-pack: center !important;
- -ms-flex-pack: center !important;
- justify-content: center !important;
- }
- }
- @media (min-width: 992px) {
- .col-lg {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-lg-1 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 8.33333%;
- flex: 0 0 8.33333%;
- max-width: 8.33333%;
- }
- .col-lg-2 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 16.66667%;
- flex: 0 0 16.66667%;
- max-width: 16.66667%;
- }
- .col-lg-3 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-lg-4 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 33.33333%;
- flex: 0 0 33.33333%;
- max-width: 33.33333%;
- }
- .col-lg-5 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 41.66667%;
- flex: 0 0 41.66667%;
- max-width: 41.66667%;
- }
- .col-lg-6 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-lg-7 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 58.33333%;
- flex: 0 0 58.33333%;
- max-width: 58.33333%;
- }
- .col-lg-8 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 66.66667%;
- flex: 0 0 66.66667%;
- max-width: 66.66667%;
- }
- .col-lg-9 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-lg-10 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 83.33333%;
- flex: 0 0 83.33333%;
- max-width: 83.33333%;
- }
- .col-lg-11 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 91.66667%;
- flex: 0 0 91.66667%;
- max-width: 91.66667%;
- }
- .col-lg-12 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- }
- @media (min-width: 1200px) {
- .col-xl {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-xl-1 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 8.33333%;
- flex: 0 0 8.33333%;
- max-width: 8.33333%;
- }
- .col-xl-2 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 16.66667%;
- flex: 0 0 16.66667%;
- max-width: 16.66667%;
- }
- .col-xl-3 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-xl-4 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 33.33333%;
- flex: 0 0 33.33333%;
- max-width: 33.33333%;
- }
- .col-xl-5 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 41.66667%;
- flex: 0 0 41.66667%;
- max-width: 41.66667%;
- }
- .col-xl-6 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-xl-7 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 58.33333%;
- flex: 0 0 58.33333%;
- max-width: 58.33333%;
- }
- .col-xl-8 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 66.66667%;
- flex: 0 0 66.66667%;
- max-width: 66.66667%;
- }
- .col-xl-9 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-xl-10 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 83.33333%;
- flex: 0 0 83.33333%;
- max-width: 83.33333%;
- }
- .col-xl-11 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 91.66667%;
- flex: 0 0 91.66667%;
- max-width: 91.66667%;
- }
- .col-xl-12 {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- }
- table {
- width: 100%;
- margin-bottom: 1rem;
- }
- table th,
- table td {
- padding: .3rem;
- vertical-align: top;
- }
- .form-row {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-right: -5px;
- margin-left: -5px;
- }
- @media all {
- table th,
- table td {
- border: 1px solid #343a40;
- }
- }
- table thead th {
- vertical-align: bottom;
- }
- .card {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- min-width: 0;
- word-wrap: break-word;
- background-color: #fff;
- background-clip: border-box;
- border: 1px solid rgba(0, 0, 0, 0.125);
- }
- @media all {
- table thead th {
- border-bottom: 2px solid #343a40;
- }
- }
- .card-body {
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- padding: 1rem 1rem;
- }
- @media all {
- table tbody + tbody {
- border-top: 2px solid #343a40;
- }
- }
- .form-row {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-right: -5px;
- margin-left: -5px;
- }
- .form-row > .col,
- .form-row > [class*="col-"] {
- padding-right: 5px;
- padding-left: 5px;
- }
- .btn {
- display: inline-block;
- font-weight: 400;
- color: #212529;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background: transparent;
- border: 1px solid transparent;
- padding: .375rem .75rem;
- font-size: 1rem;
- line-height: 1.5;
- border-radius: .25rem;
- }
- .btn:hover {
- color: #212529;
- text-decoration: none;
- }
- .btn:focus,
- .btn.focus {
- outline: 0;
- -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
- box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
- }
- .btn.disabled,
- .btn:disabled {
- opacity: .65;
- }
- a.btn.disabled,
- fieldset:disabled a.btn {
- pointer-events: none;
- }
- .btn-light {
- color: #212529;
- border-color: #dee2e6;
- background: #dee2e6;
- }
- .btn-light:hover {
- color: #212529;
- border-color: #c1c9d0;
- background: #c8cfd6;
- }
- .btn-light:focus,
- .btn-light.focus {
- color: #212529;
- border-color: #c1c9d0;
- background: #c8cfd6;
- -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
- box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
- }
- .btn-light.disabled,
- .btn-light:disabled {
- color: #212529;
- background: #dee2e6;
- border-color: #dee2e6;
- }
- .btn-light:not(:disabled):not(.disabled):active,
- .btn-light:not(:disabled):not(.disabled).active,
- .show > .btn-light.dropdown-toggle {
- color: #212529;
- background: #c1c9d0;
- border-color: #bac2cb;
- }
- .btn-light:not(:disabled):not(.disabled):active:focus,
- .btn-light:not(:disabled):not(.disabled).active:focus,
- .show > .btn-light.dropdown-toggle:focus {
- -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
- box-shadow: 0 0 0 0.2rem rgba(194, 198, 202, 0.5);
- }
- .nav {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
- }
- .card {
- position: relative;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- min-width: 0;
- word-wrap: break-word;
- background-color: #fff;
- background-clip: border-box;
- border: 1px solid rgba(0, 0, 0, 0.125);
- }
- .card > .list-group {
- border-top: inherit;
- border-bottom: inherit;
- }
- .card > .list-group:first-child {
- border-top-width: 0;
- border-top-left-radius: calc(0.25rem - 1px);
- border-top-right-radius: calc(0.25rem - 1px);
- }
- .card > .list-group:last-child {
- border-bottom-width: 0;
- border-bottom-right-radius: calc(0.25rem - 1px);
- border-bottom-left-radius: calc(0.25rem - 1px);
- }
- .card > .card-header + .list-group,
- .card > .list-group + .card-footer {
- border-top: 0;
- }
- .card-body {
- -webkit-box-flex: 1;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- padding: 1rem 1rem;
- }
- .card-title {
- margin-bottom: 0.5rem;
- }
- .card-subtitle {
- margin-top: -0.25rem;
- margin-bottom: 0;
- }
- .card-text:last-child {
- margin-bottom: 0;
- }
- .card-link:hover {
- text-decoration: none;
- }
- .card-link + .card-link {
- margin-left: 1rem;
- }
- .card-header {
- padding: 0.5rem 1rem;
- margin-bottom: 0;
- background-color: rgba(0, 0, 0, 0.03);
- border-bottom: 1px solid rgba(0, 0, 0, 0.125);
- }
- .card-footer {
- padding: 0.5rem 1rem;
- background-color: rgba(0, 0, 0, 0.03);
- border-top: 1px solid rgba(0, 0, 0, 0.125);
- }
- .card-header-tabs {
- margin-right: -0.5rem;
- margin-bottom: -0.5rem;
- margin-left: -0.5rem;
- border-bottom: 0;
- }
- .card-header-pills {
- margin-right: -0.5rem;
- margin-left: -0.5rem;
- }
- .card-img-overlay {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 1rem;
- }
- .card-img,
- .card-img-top,
- .card-img-bottom {
- width: 100%;
- }
- .pagination {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- padding-left: 0;
- list-style: none;
- border-radius: .25rem;
- }
- .page-link {
- position: relative;
- display: block;
- padding: .5rem .75rem;
- margin-left: -1px;
- line-height: 1.25;
- }
- @media all {
- .page-link {
- color: #f8f9fa;
- background: #212529;
- border: 1px solid #495057;
- }
- }
- .page-link:hover {
- z-index: 2;
- text-decoration: none;
- }
- @media all {
- .page-link:hover {
- color: #cbd3da;
- background: #343a40;
- border-color: #495057;
- }
- }
- .page-link:focus {
- z-index: 3;
- outline: 0;
- -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
- box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
- }
- .page-item:first-child .page-link {
- margin-left: 0;
- border-top-left-radius: .25rem;
- border-bottom-left-radius: .25rem;
- }
- .page-item:last-child .page-link {
- border-top-right-radius: .25rem;
- border-bottom-right-radius: .25rem;
- }
- .page-item.active .page-link {
- z-index: 3;
- }
- @media all {
- .page-item.active .page-link {
- color: #212529;
- background: #0084b4;
- border-color: #0084b4;
- }
- }
- .page-item.disabled .page-link {
- pointer-events: none;
- cursor: auto;
- }
- @media all {
- .page-item.disabled .page-link {
- color: #ced4da;
- background: #212529;
- border-color: #495057;
- }
- }
- header {
- width: 100%;
- z-index: 99999;
- top: 0px;
- }
- @media all {
- header.full-width {
- background: #212529;
- }
- }
- header.fixed {
- position: fixed;
- }
- .mega-menu .header {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
- box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
- }
- .clearfix::after {
- display: block;
- clear: both;
- content: "";
- }
- .blog-content {
- color: #808080;
- }
- .d-flex {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
- display: flex !important;
- }
- .d-inline-flex {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
- display: inline-flex !important;
- }
- .text-start {
- text-align: left !important;
- }
- .text-end {
- text-align: right !important;
- }
- .text-center {
- text-align: center !important;
- }
- .post-title {
- text-align: center;
- }
- .mt-1 {
- margin-top: 0.25rem !important;
- }
- .mt-2 {
- margin-top: 0.5rem !important;
- }
- .mt-3 {
- margin-top: 1rem !important;
- }
- .mt-4 {
- margin-top: 1.5rem !important;
- }
- .mt-5 {
- margin-top: 3rem !important;
- }
- .mb-1 {
- margin-bottom: 0.25rem !important;
- }
- .mb-2 {
- margin-bottom: 0.5rem !important;
- }
- .mb-3 {
- margin-bottom: 1rem !important;
- }
- .mb-4 {
- margin-bottom: 1.5rem !important;
- }
- .mb-5 {
- margin-bottom: 3rem !important;
- }
- .ms-1 {
- margin-left: 0.25rem !important;
- }
- .ms-2 {
- margin-left: 0.5rem !important;
- }
- .ms-3 {
- margin-left: 1rem !important;
- }
- .ms-4 {
- margin-left: 1.5rem !important;
- }
- .ms-5 {
- margin-left: 3rem !important;
- }
- .me-auto {
- margin-right: auto !important;
- }
- .me-1 {
- margin-right: 0.25rem !important;
- }
- .me-2 {
- margin-right: 0.5rem !important;
- }
- .me-3 {
- margin-right: 1rem !important;
- }
- .me-4 {
- margin-right: 1.5rem !important;
- }
- .me-5 {
- margin-right: 3rem !important;
- }
- .p-1 {
- padding: 0.25rem !important;
- }
- .p-2 {
- padding: 0.5rem !important;
- }
- .p-3 {
- padding: 1rem !important;
- }
- .p-4 {
- padding: 1.5rem !important;
- }
- .p-5 {
- padding: 3rem !important;
- }
- .mx-auto {
- margin-right: auto !important;
- margin-left: auto !important;
- }
- .row {
- --bs-gutter-x: 1.5rem;
- --bs-gutter-y: 1rem;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-top: calc(var(--bs-gutter-y) * -1);
- margin-right: calc(var(--bs-gutter-x) / -2);
- margin-left: calc(var(--bs-gutter-x) / -2);
- }
- .row > * {
- -ms-flex-negative: 0;
- flex-shrink: 0;
- width: 100%;
- max-width: 100%;
- padding-right: calc(var(--bs-gutter-x) / 2);
- padding-left: calc(var(--bs-gutter-x) / 2);
- margin-top: var(--bs-gutter-y);
- }
- .col {
- -webkit-box-flex: 100%;
- -ms-flex: 100%;
- flex: 100%;
- }
- .w-50 {
- width: 50% !important;
- }
- .h-100 {
- height: 100% !important;
- }
- .row-cols-auto > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- }
- .row-cols-1 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 100%;
- }
- .row-cols-2 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 50%;
- }
- .row-cols-3 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 33.3333333333%;
- }
- .row-cols-4 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 25%;
- }
- .row-cols-5 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 20%;
- }
- .row-cols-6 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 16.6666666667%;
- }
- @media (min-width: 576px) {
- .col-sm {
- -webkit-box-flex: 1;
- -ms-flex: 1 0 0%;
- flex: 1 0 0%;
- }
- .row-cols-sm-auto > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- }
- .row-cols-sm-1 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 100%;
- }
- .row-cols-sm-2 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 50%;
- }
- .row-cols-sm-3 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 33.3333333333%;
- }
- .row-cols-sm-4 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 25%;
- }
- .row-cols-sm-5 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 20%;
- }
- .row-cols-sm-6 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 16.6666666667%;
- }
- .p-sm-1 {
- padding: 0.25rem !important;
- }
- .p-sm-2 {
- padding: 0.5rem !important;
- }
- .p-sm-3 {
- padding: 1rem !important;
- }
- .p-sm-4 {
- padding: 1.5rem !important;
- }
- .p-sm-5 {
- padding: 3rem !important;
- }
- }
- @media (min-width: 992px) {
- .col-lg {
- -webkit-box-flex: 100%;
- -ms-flex: 100%;
- flex: 100%;
- }
- .row-cols-lg-auto > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- }
- .row-cols-lg-1 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 100%;
- }
- .row-cols-lg-2 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 50%;
- }
- .row-cols-lg-3 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 33.3333333333%;
- }
- .row-cols-lg-4 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 25%;
- }
- .row-cols-lg-5 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 20%;
- }
- .row-cols-lg-6 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 16.6666666667%;
- }
- }
- @media (min-width: 1400px) {
- .col-xxl {
- -webkit-box-flex: 1;
- -ms-flex: 1 0 0%;
- flex: 1 0 0%;
- }
- .row-cols-xxl-auto > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- }
- .row-cols-xxl-1 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 100%;
- }
- .row-cols-xxl-2 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 50%;
- }
- .row-cols-xxl-3 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 33.3333333333%;
- }
- .row-cols-xxl-4 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 25%;
- }
- .row-cols-xxl-5 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 20%;
- }
- .row-cols-xxl-6 > * {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: 16.6666666667%;
- }
- }
- .toggle,
- [id^=drop] {
- display: none;
- }
- /* Giving a background-color to the nav container. */
- nav {
- margin: 0;
- padding: 0;
- background-color: #FFFFFF;
- /* Since we'll have the "ul li" "float:left"
- * we need to add a clear after the container. */
- /* Removing padding, margin and "list-style" from the "ul",
- * and adding "position:reltive" */
- /* Styling the links */
- }
- nav:after {
- content: "";
- display: table;
- clear: both;
- }
- nav ul {
- float: right;
- padding: 0;
- margin: 0;
- list-style: none;
- position: relative;
- /* Hide Dropdowns by Default
- * and giving it a position of absolute */
- }
- nav ul li {
- margin: 0px;
- float: left;
- background-color: #FFFFFF;
- /* Display Dropdowns on Hover */
- }
- nav ul li:hover > ul {
- display: inherit;
- }
- nav ul ul {
- display: none;
- position: absolute;
- /* has to be the same number as the "line-height" of "nav a" */
- /* top: 60px; */
- top: 50px;
- /* Fisrt Tier Dropdown */
- /* Second, Third and more Tiers
- * We move the 2nd and 3rd etc tier dropdowns to the left
- * by the amount of the width of the first tier.
- */
- }
- nav ul ul li {
- width: 170px;
- float: none;
- display: list-item;
- position: relative;
- }
- nav ul ul ul li {
- position: relative;
- top: -60px;
- /* has to be the same number as the "width" of "nav ul ul li" */
- left: 170px;
- }
- nav a {
- display: block;
- padding: 14px 20px;
- color: #656565;
- font-size: 12pt;
- font-weight: 400;
- text-decoration: none;
- }
- nav a:hover {
- background-color: #78AD42;
- color: #fff;
- text-decoration: none;
- }
- /* Change ' +' in order to change the Dropdown symbol */
- li > a:after {
- content: ' +';
- }
- li > a:only-child:after {
- content: '';
- }
- /* Media Queries
- --------------------------------------------- */
- @media all and (max-width: 768px) {
- nav {
- margin: 0;
- }
- /* Hide the navigation menu by default */
- /* Also hide the */
- .toggle + a,
- .menu {
- display: none;
- }
- /* Stylinf the toggle lable */
- .toggle {
- display: block;
- /* background-color: #FFFFFF; */
- padding: 14px 20px;
- color: #656565;
- font-size: 17px;
- text-decoration: none;
- border: none;
- }
- .toggle:hover {
- /* background-color: #000000; */
- color: #78AD42;
- }
- /* Display Dropdown when clicked on Parent Lable */
- [id^=drop]:checked + ul {
- display: block;
- }
- /* Change menu item's width to 100% */
- nav ul li {
- display: block;
- width: 100%;
- font-weight: 600;
- }
- nav a:hover,
- nav ul ul ul a {
- background-color: #78AD42;
- }
- nav ul li ul li .toggle,
- nav ul ul a {
- background-color: #212121;
- }
- nav ul li ul li .toggle,
- nav ul ul a,
- nav ul ul ul a {
- padding: 14px 20px;
- color: #FFF;
- font-size: 17px;
- }
- /* Hide Dropdowns by Default */
- nav ul ul {
- float: none;
- position: static;
- color: #ffffff;
- /* has to be the same number as the "line-height" of "nav a" */
- }
- /* Hide menus on hover */
- nav ul ul li:hover > ul,
- nav ul li:hover > ul {
- display: none;
- }
- /* Fisrt Tier Dropdown */
- nav ul ul li {
- display: block;
- width: 100%;
- }
- nav ul ul ul li {
- position: static;
- /* has to be the same number as the "width" of "nav ul ul li" */
- }
- }
- @media all and (max-width: 330px) {
- nav ul li {
- display: block;
- width: 94%;
- }
- }
- .widget {
- margin-bottom: 30px;
- padding-bottom: 35px;
- }
- .widget-title {
- margin-bottom: 15px;
- padding-bottom: 10px;
- font-size: 16px;
- color: #333;
- font-weight: 500;
- border-bottom: 1px solid #dedede;
- }
- .widget.widget-latest-post .media .media-object {
- width: 100px;
- height: auto;
- }
- .widget.widget-latest-post .media .media-heading a {
- color: #000;
- font-size: 16px;
- }
- .widget.widget-latest-post .media p {
- font-size: 12px;
- color: #808080;
- }
- .widget.widget-category ul li {
- margin-bottom: 10px;
- }
- .widget.widget-category ul li a {
- color: #837f7e;
- -webkit-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .widget.widget-category ul li a:before {
- padding-right: 10px;
- }
- .widget.widget-category ul li a:hover {
- color: #655E7A;
- padding-left: 5px;
- }
- .widget.widget-tag ul li {
- margin-bottom: 10px;
- display: inline-block;
- margin-right: 5px;
- }
- .widget.widget-tag ul li a {
- color: #837f7e;
- display: inline-block;
- padding: 8px 15px;
- border: 1px solid #dedede;
- border-radius: 30px;
- font-size: 14px;
- -webkit-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .widget.widget-tag ul li a:hover {
- color: #fff;
- background: #655E7A;
- border: 1px solid #655E7A;
- }
- .list-group {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- padding-left: 0;
- margin-bottom: 0;
- border-radius: 0.25rem;
- }
- .list-group-item {
- position: relative;
- display: block;
- padding: 0.5rem 1rem;
- text-decoration: none;
- background-color: #fff;
- border: 1px solid rgba(0, 0, 0, 0.125);
- }
- .list-group-item.active {
- z-index: 2;
- color: #fff;
- background-color: #78AD42;
- border-color: #78AD42;
- }
- .d-none {
- display: none !important;
- }
- .d-block {
- display: block !important;
- }
- @media (min-width: 576px) {
- .d-sm-block {
- display: block !important;
- }
- }
- @media (min-width: 768px) {
- .d-md-block {
- display: block !important;
- }
- .d-md-none {
- display: none !important;
- }
- }
- @media (min-width: 992px) {
- .d-lg-none {
- display: none !important;
- }
- }
- input[type="radio"][class="style"]:checked + label {
- color: white;
- background: #6666ff;
- }
- .align-items-center {
- -webkit-box-align: center !important;
- -ms-flex-align: center !important;
- align-items: center !important;
- }
- .order-1 {
- -webkit-box-ordinal-group: 2 !important;
- -ms-flex-order: 1 !important;
- order: 1 !important;
- }
- .order-2 {
- -webkit-box-ordinal-group: 3 !important;
- -ms-flex-order: 2 !important;
- order: 2 !important;
- }
- .title {
- font-size: 1.3rem;
- }
- .footer {
- color: #656565;
- }
- .footer a {
- color: #656565;
- text-decoration: none;
- }
- .footer a:hover {
- color: #78AD42;
- }
- .footer h5 {
- color: black;
- font-weight: 600;
- padding-bottom: 15px;
- }
- .footer .link {
- padding-bottom: 20px;
- }
- @media (min-width: 992px) {
- .order-lg-1 {
- -webkit-box-ordinal-group: 2 !important;
- -ms-flex-order: 1 !important;
- order: 1 !important;
- }
- .order-lg-2 {
- -webkit-box-ordinal-group: 3 !important;
- -ms-flex-order: 2 !important;
- order: 2 !important;
- }
- }
- /* Airspace Template SCSS */
- .w-25 {
- width: 25% !important;
- }
- .w-50 {
- width: 50% !important;
- }
- .w-75 {
- width: 75% !important;
- }
- .w-100 {
- width: 100% !important;
- }
- /* 顏色設定 */
- 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 {
- padding: 80px 0;
- }
- 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 {
- line-height: 20px;
- }
- 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 {
- width: 100%;
- }
- 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 {
- padding-top: 30px;
- }
- 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 {
- padding: 0 30px;
- }
- @media (min-width: 992px) {
- 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 {
- padding: 0 50px;
- }
- }
- 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 {
- padding-bottom: 5px;
- font-size: 0.8rem;
- color: #666666;
- }
- 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 {
- color: #000;
- }
- .section1 table {
- border-collapse: collapse;
- }
- .section1 td {
- border: none;
- }
- .section2 {
- background-color: #F2F2F2;
- }
- .section5 {
- background-color: #ECECEC;
- }
- .section5 .card {
- background-color: #ECECEC;
- }
- .section6 {
- color: #666666;
- }
- .section6 h2 {
- color: #000;
- }
- .section7 {
- padding: 40px 0;
- margin-bottom: 60px;
- color: #666666;
- background-color: #F2F2F2;
- }
- .section7 a {
- color: #000;
- font-weight: 600;
- padding: 0 15px;
- }
- .section7 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section8 {
- color: #666666;
- }
- .section8 h2 {
- font-weight: 600;
- color: #000;
- }
- .section8 p {
- font-size: 0.8rem;
- color: #666666;
- }
- .section9 {
- color: #666666;
- }
- .section9 h1 {
- font-weight: 600;
- color: #000;
- }
- .section9 h2 {
- font-weight: 600;
- color: #000;
- }
- .section9 p {
- font-size: 0.8rem;
- color: #666666;
- }
- .section9 .title {
- color: #000;
- }
- .section10 {
- font-weight: 600;
- }
- .section10 .l1 {
- font-size: 0.8rem;
- margin-top: 60px;
- color: #B4B4B4;
- }
- .section10 .l2 {
- font-size: 0.8rem;
- color: #D1C7A8;
- }
- .section10 .l3 {
- font-size: 0.8rem;
- color: #A5AA91;
- }
- .section11 {
- background-color: #ECECEC;
- }
- .section12 {
- color: #666666;
- }
- .section12 h2 {
- font-weight: 600;
- color: #000;
- }
- .section12 .li {
- list-style-type: disc;
- padding-left: 0px;
- }
- .section12 a.reservation-link {
- text-decoration: underline;
- }
- .section13 {
- padding: 0;
- }
- .section14 {
- padding: 60px;
- height: 200px;
- }
- .section14 .title {
- color: #78AD42;
- }
- .section15 .title {
- color: #78AD42;
- }
- .section16 h2 {
- color: #78AD42;
- }
- .section16 .row {
- margin-bottom: 60px;
- }
- .section16 .title {
- color: #78AD42;
- }
- .section16 .img-resize {
- padding: 0 2.5rem;
- }
- .section17 {
- background-color: #F1F1F1;
- }
- .section17 h2 {
- color: #78AD42;
- }
- .section17 .row {
- margin-bottom: 60px;
- }
- .section17 .title {
- color: #78AD42;
- }
- .section17 .img-resize {
- padding: 0 2.5rem;
- }
- .section18 {
- color: #FFF;
- font-weight: 600;
- background-color: #333333;
- }
- .section18 a {
- color: #2ABFF4;
- padding: 0 15px;
- text-decoration: underline;
- }
- .section18 a:hover {
- color: #78AD42;
- }
- .section19 h2 {
- color: #78AD42;
- }
- .section19 .title {
- color: #78AD42;
- }
- .section19 .sub-title {
- color: #4D4D4D;
- }
- @media (min-width: 768px) {
- .section19 .img-padding {
- padding: 0 330px;
- }
- }
- .section22 .title {
- color: #78AD42;
- }
- @media (min-width: 768px) {
- .section22 .img-padding {
- padding: 0 100px 0 0;
- }
- }
- .section24 {
- padding: 50px 0;
- }
- .section24 .title {
- color: #78AD42;
- }
- .section25 {
- background-color: #F1F1F1;
- }
- .section25 h2 {
- color: #78AD42;
- }
- .section25 .title {
- color: #78AD42;
- }
- .section25 .sub-title {
- color: #4D4D4D;
- }
- @media (min-width: 768px) {
- .section25 .img-padding {
- padding: 0px 350px;
- }
- }
- .section26 {
- background-color: #F1F1F1;
- }
- .section26 .title {
- color: #78AD42;
- }
- @media (min-width: 768px) {
- .section26 .img-padding {
- padding: 80px 280px;
- }
- }
- .section27 h2 {
- color: #78AD42;
- }
- .section27 .row {
- margin-bottom: 60px;
- }
- .section27 .title {
- color: #78AD42;
- }
- .section28 {
- background-color: #F1F1F1;
- }
- .section28 h2 {
- color: #78AD42;
- }
- .section28 .row {
- margin-bottom: 60px;
- }
- .section28 .step {
- margin-bottom: 20px;
- }
- .section28 .title {
- color: #78AD42;
- }
- .section29 {
- background-color: #F1F1F1;
- }
- .section29 .title {
- color: #78AD42;
- }
- .section30 .title {
- color: #78AD42;
- }
- .section31 h2 {
- color: #78AD42;
- }
- .section31 .title {
- color: #78AD42;
- }
- @media (min-width: 768px) {
- .section31 .img-padding {
- padding: 0 200px;
- }
- .section31 .img-padding2 {
- padding: 0 330px;
- }
- }
- .section32 {
- padding: 0 0 80px 0;
- background-color: #F1F1F1;
- }
- .section32 h2 {
- color: #78AD42;
- }
- .section32 .title {
- color: #78AD42;
- }
- .section32 .sub-title {
- color: #4D4D4D;
- }
- .section33 {
- padding: 0 0 80px 0;
- }
- .section33 h2 {
- color: #78AD42;
- }
- .section33 .title {
- color: #78AD42;
- }
- .section33 .sub-title {
- color: #4D4D4D;
- }
- .section34 .title {
- color: #78AD42;
- }
- @media (min-width: 768px) {
- .section34 .img-padding {
- padding-right: 250px;
- padding-left: 250px;
- }
- }
- .section35 {
- padding: 0 0 80px 0;
- }
- .section35 h2 {
- color: #78AD42;
- }
- .section35 .title {
- color: #78AD42;
- }
- .section35 .sub-title {
- color: #4D4D4D;
- }
- @media (min-width: 768px) {
- .section35 .img-padding {
- padding: 0 150px;
- }
- }
- .section36 .title {
- color: #78AD42;
- }
- .section36 .img-padding2 {
- padding: 0 50px;
- }
- @media (min-width: 768px) {
- .section36 .img-padding {
- padding: 0 200px;
- }
- .section36 .img-padding2 {
- padding: 0 400px;
- }
- }
- .section37 {
- padding: 0 0 80px 0;
- background-color: #F1F1F1;
- }
- .section37 h2 {
- color: #78AD42;
- }
- .section37 .title {
- color: #78AD42;
- }
- .section37 .sub-title {
- color: #4D4D4D;
- }
- @media (min-width: 768px) {
- .section37 .img-padding {
- padding: 0 150px;
- }
- }
- .section38 {
- padding: 40px 0;
- margin-bottom: 60px;
- color: #666666;
- background-color: #F2F2F2;
- color: #777777;
- }
- .section38 .title {
- color: #000;
- font-weight: 600;
- font-size: 1.3rem;
- }
- .section38 .bar {
- font-size: 1.6rem;
- }
- .section38 a {
- color: #777777;
- padding: 0 15px;
- }
- .section38 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section_banner {
- padding-top: 20px;
- }
- .section39 {
- padding: 40px 0;
- margin-bottom: 60px;
- color: #666666;
- background-color: #333333;
- color: #fff;
- }
- .section39 .bar {
- font-size: 1.6rem;
- }
- .section39 a {
- color: #fff;
- padding: 0 15px;
- }
- .section39 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section40 {
- padding: 80px 0;
- background-color: #F1F1F1;
- }
- .section40 h2 {
- color: #333333;
- font-weight: 600;
- }
- .section40 a {
- color: #2ABCF1;
- font-weight: 600;
- }
- .section40 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- @media (min-width: 768px) {
- .section40 .card {
- padding-right: 100px;
- padding-left: 100px;
- }
- .section40 .mx-md-4 {
- margin-right: 1.5rem !important;
- margin-left: 1.5rem !important;
- }
- }
- .section41 {
- padding: 40px 0;
- }
- .section41 table {
- border-collapse: collapse;
- }
- .section41 td {
- padding: 40px;
- border: 0px;
- border-bottom: 1px dashed #B3B3B3;
- }
- .section41 a {
- color: #000;
- }
- .section41 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section42 {
- padding: 30px 0;
- }
- .section42 table {
- border-collapse: collapse;
- }
- .section42 td {
- padding: 40px 40px 40px 0;
- border: 0px;
- border-bottom: 1px dashed #B3B3B3;
- }
- .section42 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section42 .back {
- color: #666666;
- }
- .section43 {
- color: #FFF;
- background-color: #333333;
- padding: 40px;
- height: 200px;
- }
- .section44 {
- padding: 60px 0;
- color: #4D4D4D;
- }
- .section44 h3 {
- font-weight: 600;
- }
- .section44 .title {
- color: #78AD42;
- }
- .section44 .detail {
- color: #4D4D4D;
- }
- .section44 .detail div {
- line-height: 40px;
- }
- .section44 .card {
- padding: 20px;
- margin-top: 40px;
- border-color: #4D4D4D;
- }
- .section44 .description {
- font-size: 1.1rem;
- line-height: 40px;
- }
- @media (min-width: 992px) {
- .section44 .description {
- padding-bottom: 80px;
- }
- }
- .section44 .spec {
- font-size: 1.1rem;
- margin-top: 80px;
- }
- .section44 .image {
- margin-top: 80px;
- }
- .section44 a {
- color: #4D4D4D;
- }
- .section44 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section44 .amp-carousel-button-prev {
- display: none;
- }
- .section44 .amp-carousel-button-next {
- display: none;
- }
- .section44 .carousel-preview > button {
- border-width: 0px;
- }
- .section45 {
- padding: 40px 0;
- color: #666666;
- background-color: #333333;
- color: #fff;
- }
- .section45 .bar {
- font-size: 1.6rem;
- }
- .section45 a {
- color: #fff;
- padding: 0 15px;
- }
- .section45 a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .section {
- padding: 80px 0;
- }
- .section-title {
- margin-bottom: 70px;
- }
- .section-title h2 {
- text-transform: uppercase;
- font-size: 28px;
- font-weight: 600;
- }
- .section-title p {
- color: #666;
- }
- amp-accordion .question {
- padding: 15px;
- font-weight: 600;
- }
- amp-accordion .fa-angle-down {
- font-size: 24px;
- padding-right: 10px;
- }
- amp-accordion div {
- padding: 15px;
- }
- amp-accordion div .start {
- padding-top: 20px;
- }
- .title-size {
- font-size: 1.1rem;
- padding-bottom: 5px;
- }
- .brand-color {
- color: #78AD42;
- }
- .faq {
- position: fixed;
- bottom: 100px;
- right: 15px;
- }
- .reservation {
- position: fixed;
- bottom: 25px;
- right: 15px;
- }
- .reservation-href {
- cursor: pointer;
- }
- .title-link a {
- color: #4D4D4D;
- }
- .title-link a:hover {
- color: #78AD42;
- text-decoration: none;
- }
- .btn-light {
- color: #000;
- background-color: #fff;
- border-color: #f8f9fa;
- border-radius: 20px;
- }
- .btn-outline-white {
- color: #fff;
- border-color: #fff;
- border-radius: 20px;
- }
- .btn-outline-white:hover {
- color: #fff;
- background-color: #212529;
- border-color: #fff;
- }
- .background-image1 {
- background-image: url("/img/home/1.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image1 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image1 h1 {
- font-size: 35px;
- }
- }
- .background-image1 .block {
- color: #E3E3E4;
- }
- .background-image1 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image1 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image2 {
- background-image: url("/img/home/4.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image2 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image2 h1 {
- font-size: 35px;
- }
- }
- .background-image2 .block {
- color: #E3E3E4;
- }
- .background-image2 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image2 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image3 {
- background-image: url("/img/home/10.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image3 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image3 h1 {
- font-size: 35px;
- }
- }
- .background-image3 .block {
- color: #E3E3E4;
- }
- .background-image3 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image3 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image3 .card-text {
- padding-bottom: 5px;
- font-size: 0.8rem;
- }
- .background-image4 {
- background-image: url("/img/home/21.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image4 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image4 h1 {
- font-size: 35px;
- }
- }
- .background-image4 .block {
- color: #E3E3E4;
- }
- .background-image4 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image4 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image5 {
- background-image: url("/img/home/10.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image5 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image5 h1 {
- font-size: 35px;
- }
- }
- .background-image5 .block {
- color: #E3E3E4;
- }
- .background-image5 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image5 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image5 p {
- font-size: 0.8rem;
- color: #fff;
- }
- .background-image6 {
- background-image: url("/img/about/2.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image6 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image6 h1 {
- font-size: 35px;
- }
- }
- .background-image6 .block {
- color: #E3E3E4;
- }
- .background-image6 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image6 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .background-image6 p {
- font-size: 0.8rem;
- color: #fff;
- }
- .background-image7 {
- background-image: url("/img/solid_wood_furniture/17.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .background-image7 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .background-image7 h1 {
- font-size: 35px;
- }
- }
- .background-image7 .block {
- color: #E3E3E4;
- }
- .background-image7 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .background-image7 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title, .page-title1, .page-title2, .page-title3, .page-title4, .page-title5, .page-title6, .page-title7 {
- padding: 100px 0;
- }
- .page-title .block, .page-title1 .block, .page-title2 .block, .page-title3 .block, .page-title4 .block, .page-title5 .block, .page-title6 .block, .page-title7 .block {
- text-align: center;
- }
- .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 {
- color: #fff;
- font-weight: 200;
- letter-spacing: 5px;
- margin-top: 0;
- text-transform: capitalize;
- }
- .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 {
- color: #fff;
- }
- .page-title1 {
- background-image: url("/img/room_planner/1.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title1 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title1 h1 {
- font-size: 35px;
- }
- }
- .page-title1 .block {
- color: #E3E3E4;
- }
- .page-title1 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title1 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title2 {
- background-image: url("/img/store_north/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title2 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title2 h1 {
- font-size: 35px;
- }
- }
- .page-title2 .block {
- color: #E3E3E4;
- }
- .page-title2 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title2 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title3 {
- background-image: url("/img/blog/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title3 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title3 h1 {
- font-size: 35px;
- }
- }
- .page-title3 .block {
- color: #E3E3E4;
- }
- .page-title3 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title3 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title4 {
- background-image: url("/img/about/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title4 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title4 h1 {
- font-size: 35px;
- }
- }
- .page-title4 .block {
- color: #E3E3E4;
- }
- .page-title4 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title4 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title5 {
- background-image: url("/img/solid_wood_furniture2/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title5 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title5 h1 {
- font-size: 35px;
- }
- }
- .page-title5 .block {
- color: #E3E3E4;
- }
- .page-title5 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title5 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title6 {
- background-image: url("/img/contact/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title6 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title6 h1 {
- font-size: 35px;
- }
- }
- .page-title6 .block {
- color: #E3E3E4;
- }
- .page-title6 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title6 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .page-title7 {
- background-image: url("/img/news/banner.webp");
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center center;
- padding: 110px 0;
- position: relative;
- color: #fff;
- }
- @media (max-width: 768px) {
- .page-title7 {
- background-attachment: scroll;
- padding: 100px 0;
- }
- .page-title7 h1 {
- font-size: 35px;
- }
- }
- .page-title7 .block {
- color: #E3E3E4;
- }
- .page-title7 .block h1 {
- font-weight: 600;
- line-height: 60px;
- letter-spacing: 10px;
- padding-bottom: 15px;
- }
- .page-title7 .block p {
- color: #fff;
- font-size: 12pt;
- line-height: 25px;
- font-weight: 500;
- }
- .overly, .page-title, .page-title1, .page-title2, .page-title3, .page-title4, .page-title5, .page-title6, .page-title7 {
- position: relative;
- }
- .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 {
- content: '';
- background: rgba(0, 0, 0, 0.2);
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .link-collection {
- color: #444444;
- }
- /*# sourceMappingURL=chuz.css.map */
|