<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import "color_variables.css";
body {
    background-color: rgba(var(--color-rgb-black), 0.9);
    color: var(--color-white);
}

main {
    background-color: var(--color-gray-2);
}
article {
    overflow: hidden;
}
header {
    background-color: var(--color-black);
}
.overflow-hidden{
    overflow: hidden;
}
@media screen and (max-width: 768px){
    header{
        background: var(--color-black);
    }
}

footer {
    background-color: var(--color-gray-15);
}

h2, h3 {
    /*font-weight: 600;*/
}

h4 {
    font-weight: 400;
}

h1 {
    font-size: 22px;
    line-height: 31px;
}

h2 {
    font-size: 18px;
    line-height: 25px;
}

h2 .icon {
    height: 24px;
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
}

h3 {
    font-size: 15px;
    line-height: 21px;
}

h4,
body,
p,
input {
    font-size: 13px;
    line-height: 24px;
}

p,
li {
    font-weight: normal;
}
.d-flex{
    display: flex;
}
.largeText,
.largeText * {
    font-size: 15px;
    line-height: 21px;
}

.middleText,
.middleText * {
    font-size: 13px;
    line-height: 18px;
}

.smallText {
    font-size: 12px;
    line-height: 18px;
}

strong,
.strongText {
    font-weight: bold;
}

small {}

.count {
    font-size: 28px;
    line-height: 36px;
    color: var(--color-orange-1);
    vertical-align: middle;
}
.cover-fit{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-truncate{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.colorTextYellow {
    color: var(--color-yellow-1) !important;
}

.colorTextOrange {
    color: var(--color-orange-1) !important;
}

.overLine {
    text-decoration: line-through;
}

a{
    transition: all .1s ease-out;
}
a:hover,
a:hover p {
    color: var(--color-orange-2);
}

a.bottomLine {
    border-bottom: 1px solid;
}

a .linkIcon {}

p a {
    display: inline-block;
}

a.primaryOrg{
    color: var(--color-orange-1);
}
a.primaryOrg:hover{
    color: var(--color-orange-2);
}
a.secondary{
    color: var(--color-gray-7);
}
a.secondary:hover{
    color: var(--color-white);
}
a.notObvious{
    color: var(--color-gray-4);
}
a.notObvious:hover{
    color: var(--color-gray-6);
}

/* 全站按鈕 */

.btn {
    border-radius: 25px;
    display: block;
    text-align: center;
    box-sizing: border-box;
    background: none;
    color: var(--color-white);
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn.size_50_50_45 {
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    padding: 0 24px;
    /* min-width: 130px; */
}

.btn.size_50_45_36,
.btn.size_45_45_36,
.btn.size_36_36_36{
    height: 36px;
    line-height: 34px;
    font-size: 15px;
    padding: 0 20px;
    /* min-width: 100px; */
}

.btn.size_36_36_40 {
    height: 36px;
    line-height: 34px;
    font-size: 15px;
    padding: 0 20px;
    /* min-width: 100px; */
}

.btn.size_32_32_32 {
    height: 32px;
    line-height: 32px;
    font-size: 15px;
    padding: 0 16px;
    /* min-width: 100px; */
}

.btn.size_auto_auto_full{
    width: 100%;
}

.btn img.btnIcon {
    width: 20px !important;
    display: inline-block;
    vertical-align: text-bottom;
}

.btn.size_50_50_45 img.btnIcon,
.btn.size_50_45_36 img.btnIcon,
.btn.size_45_45_36 img.btnIcon,
.btn.size_36_36_40 img.btnIcon,
.btn.size_32_32_32 img.btnIcon {
    margin-right: 6px;
}

.btn.color {
    background-color: var(--color-orange-1);
    color: var(--color-white);
    border: none;
    transition: all .1s ease-out;
}

.btn.color:hover {
    background-color: var(--color-orange-2);
}

.btn.outline {
    background-color: rgba(var(--color-rgb-gray-2), 0.6);
    border: 1px solid var(--color-white);
    color: var(--color-white);
    transition: all .1s ease-out;
}


.btn.outline:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--color-black);
}

.btn.outline:hover img {
    filter: brightness(0);
}

.btn.gold{
    background-color: var(--color-white);
}

.btn.gold {
    background-color: var(--color-gold-2);
    color: var(--color-white);
    border: none;
    transition: all .1s ease-out;
}

.btn.gold:hover {
    background-color: var(--color-gold-1);
}

.btnBox .btn {
    display: inline-block;
    margin: auto 8px;
}

.btn.more {
    display: block;
    margin: 40px auto;
}

.btn.more img {
    margin: 0 6px;
}

.btn.loading img {
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

@-webkit-keyframes rotating
/* Safari and Chrome */

{
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* 全站按鈕 */


/* 全站icon */

.icon {
    width: 24px;
    padding: 8px;
}

.iconInline {
    height: 1.25em;
    width: auto !important;
    vertical-align: middle;
    margin-right: 6px;
}


/* 全站icon */


/* 表單物件 輸入框 */

input[type=text] {
    background-color: #3F3F3F;
    border: none;
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 25px;
    box-sizing: border-box;
}

.inputBox.inline input[type=text] {
    height: 36px;
    line-height: 36px;
    font-size: inherit;
    padding: 0 16px;
    width: 100%;
}

input[type=password] {
    background-color: #3F3F3F;
    border: none;
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 25px;
    box-sizing: border-box;
}

.inputBox.inline input[type=password] {
    height: 36px;
    line-height: 36px;
    font-size: inherit;
    padding: 0 16px;
    width: 100%;
}


/* 表單物件 輸入框 */


/* 表單物件 文字框 */

textarea {
    background-color: #3F3F3F;
    border: none;
    color: var(--color-white);
    padding: 16px;
    border-radius: 15px;
    box-sizing: border-box;
    width: 100%;
    height: 20em;
}


/* 表單物件 文字框 */


/* 表單物件 下拉選單 */

.select {
    background-color: var(--color-black);
    border: none;
    border-radius: 3px;
    color: var(--color-white);
    padding: 0 2em 0 1em;
    position: relative;
    display: inline-block;
    width: calc(100% - 4.5em);
    box-sizing: border-box;
}

.select.inline {
    width: 100%;
    border-radius: 25px;
    padding: 0 2em 0 1em;
    margin: 5px 0;
}

.select::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../../images/RWD/icon_arrow_down.png');
    background-size: 100% 100%;
    width: 1.5em;
    height: 1.5em;
    margin: 0.23em 0.61em 0.23em 0.3em;
}

.select.inline::after {
    right: 10px;
}

.select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    color: inherit;
    border: none;
    height: 2em;
    width: 100%;
    font-size: inherit;
}

.select.inline select {
    height: 36px;
}

.select select option {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}

select::-ms-expand {
    display: none;
}

select:focus {
    outline: none;
}

select.cusSelectRound{
    display: block;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
    background-color: var(--color-black);
    border: none;
    -webkit-border-radius: 90px;
            border-radius: 90px;
    color: var(--color-white);
    padding: 6px 25px 6px 18px;
    background-image: url(../../images/RWD/icon_arrow_down.png);
    -webkit-background-size: 10px auto;
         -o-background-size: 10px auto;
            background-size: 10px auto;
    background-repeat: no-repeat;
    background-position: 96% center;
}
select.cusSelectRound::-ms-expand {
    display: none;
}
select.cusSelectRound option {
    font-weight:normal;
}


/* 表單物件 下拉選單 */


/* 表單物件 checkbox + radio */

.checkbox input,
.radio input {
    display: none;
}

.checkbox input+label,
.radio input+label {
    cursor: pointer;
    font-size: 14px;
    color: var(--color-gray-7);
}

.checkbox input:checked+label,
.radio input:checked+label {
    color: var(--color-orange-1);
}

.checkbox label:before,
.radio label:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin: 14px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.checkbox.inline label:before,
.radio.inline label:before {
    margin: 0;
}

.radio label:before {
    border-radius: 100%;
}

.checkbox input:checked+label:before,
.radio input:checked+label:before {
    border: 1px solid var(--color-white);
    background-color: var(--color-orange-1);
    background-size: contain;
    box-shadow: inset 0 0 0 4px transparent;
    vertical-align: middle;
}

.checkbox input:checked+label:before {
    background-image: url('../../images/RWD/icon_ckeck_white.png');
}

.radio input:checked+label:before {
    background-image: url('../../images/RWD/icon_radio_white.png');
}

.radio label,
.checkbox label,
.contentArea {
    display: inline-block;
    vertical-align: middle;
}


/* 表單物件 checkbox + radio */


/* 表單物件 送出/按鈕 */

input[type=submit],
input[type=submit]:hover {
    border: none;
    margin-left: 20px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* 表單物件 送出/按鈕 */


/* 行內表單物件 */

.inputBlock {
    margin-top: 20px;
}

.inputBlock h4 {
    margin-bottom: 8px;
    padding: 0 16px;
    color: var(--color-gray-7);
    font-weight: normal;
}

.inputBlock p {
    margin: 8px 0;
}


/* 行內表單物件 */


/* @media Query */

.mobile,
.padMobi {
    display: block;
}

.padWide,
.wideSite {
    display: none;
}

.multiLine1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 1.5em;
}

.multiLine2 {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 3em;
    margin: 0 auto;
    font-size: inherit;
    line-height: 1.5em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.multiLine3 {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 4.25em;
    margin: 0 auto;
    font-size: inherit;
    line-height: 1.5em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 月租館館別物件&nbsp;*/
.categoryBox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 16px 0px 16px;
    -ms-overflow-x: auto;
        overflow-x: auto;
}

.categoryBox::-webkit-scrollbar{
    display: none;
}

.categoryBox .categorySelector{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    white-space: nowrap;
    padding-right: 16px;
}

.categoryBox .categorySelector li{
    background: var(--color-gray-1);
    border-radius: 4px;
    padding: 8px 20px;
    color: var(--color-white);
    margin-right: 12px;
    font-size: 12px;
}

.categoryBox .categorySelector li:last-child{
    margin-right: 0;
}

/* 202104 新增圖片版權說明小字&nbsp;*/
.remarkInfo &gt; span{
    font-size: 12px;
    color: var(--color-gray-4);
    background-color: rgba(var(--color-rgb-black), 0.2);
    padding: 2px 4px;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    display: inline-block;
}

/* 無內容 */
.contentEmpty{
	margin: 20px auto;
}
.contentEmpty .icon{
	width: 24px;
	height: 24px;
	margin: 0 auto;
	padding: 0;
}
.contentEmpty .icon img{
	width: 100%;
	height: 100%;
}
.contentEmpty .text{
	display: block;
	text-align: center;
	font-size: 14px;
	color: var(--color-gray-7);
	margin-top: 12px;
}
.contentEmpty .btnBox{
	text-align: center;
	margin-top: 24px;
}
.contentEmpty .btnBox .btn{
	width: 100%;
	margin: 0;
}
.paragraphEmpty{
    color: var(--color-gray-7);
}
/* 分頁 */
.paging{
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-7);
}
.paging .prev a,
.paging .next a{
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../../images/RWD/icon_arrow_right_20_w.svg);
	background-size: 20px 20px;
    opacity: 0.8;
    transition: opacity .2s ease;
}
.paging .prev a:hover,
.paging .next a:hover{
    opacity: 1;
}
.paging .prev a{
    transform: rotate(180deg);
    margin-right: 8px;
}
.paging .next{
    margin-left: 8px;
}
.paging .pagingNum{
    align-items: center;
    justify-content: center;
    display: none;
}
.paging .pagingNum.mobile{
    display: flex;
    padding: 0 8px;
}
.paging .pagingNum a{
    display: block;
    padding: 8px;
    margin: 0 8px;
}
.paging .pagingNum a.active{
    color: var(--color-orange-1);
}



/*Toast*/
.toast {
    display: none;
    font-size: 15px;
    line-height: 21px;
    position: fixed;
    z-index: 7;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 15px 12px;
    background-color: var(--color-black);
    box-shadow: 0px 0px 20px rgba(var(--color-rgb-black), 0.5);
    color: var(--color-white);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-text-size-adjust: 100%;
}

.toast.success{
	background-image: url(../../images/RWD/icon_check_green.png);
	background-repeat: no-repeat;
	-webkit-background-size: 20px 20px;
	     -o-background-size: 20px 20px;
	        background-size: 20px 20px;
	background-position: 16px 16px;
	padding-left: 48px;
}

.toast.failed{
	background-image: url(../../images/RWD/error_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 20px 20px;
	     -o-background-size: 20px 20px;
	        background-size: 20px 20px;
	background-position: 16px 16px;
	padding-left: 48px;
}

/* 黑卡tag */
.inlineBCTag{
    font-size: 12px;
    line-height: 16px;
    color: var(--color-black);
    background-color: var(--color-gold-2);
    padding: 0 4px;
    font-weight: normal;
}
.inlineBCTag.large{
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-gold-2);
    padding: 0 4px;
    font-weight: normal;
}
.inlineBCTag:hover{
    color: var(--color-black);
    background-color: var(--color-gold-1);
}
.noticeIconBlock{
    color: var(--color-gray-7);
    background-color: #3F3F3F;
    padding: 10px 16px 10px 44px;
    background-image: url('../../images/RWD/icon_notice_20.svg');
    -webkit-background-size: 20px 20px;
         -o-background-size: 20px 20px;
            background-size: 20px 20px;
    background-position: 16px center;
    background-repeat: no-repeat;
    display: block; 
    margin-bottom: 8px;
    width: 100%;
}
.noticeIconBlock a{
    color: var(--color-gray-7)!important;
    text-decoration: underline;
}
.noticeIconBlock a:hover{
    color: var(--color-white);
}


/* for CLS 內容高度 */
.height100vh{
    min-height: 100vh;
}
@media screen and (min-width: 768px){
    .checkbox input+label,
    .radio input+label{
        font-size: 15px;
    }
    /* 全站按鈕 */
    .btn.size_50_50_45 {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        padding: 0 30px;
        /* min-width: 150px; */
    }
    .btn.size_50_45_36,
    .btn.size_45_45_36 {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
        padding: 0 24px;
        /* min-width: 130px; */
    }
    .btn.size_auto_auto_full{
        width: auto;
    }
    .btn.size_50_50_45 img.btnIcon {
        margin-right: 8px;
    }
    .btnBox .btn {
        margin: auto 16px;
    }
    /* 全站按鈕 */   
    /* 無內容 */
	.contentEmpty{
		margin: 40px auto;
	}
	.contentEmpty .btnBox{
		margin-top: 32px;
	}
	.contentEmpty .btnBox .btn{
		width: auto;
	}
	.contentEmpty .text{
		font-size: 15px;
	}    
    /* 分頁 */
    .paging .pagingNum{
        display: flex;
    }
    .paging .pagingNum.mobile{
        display: none;
    }

    /*Toast*/
    .toastWrapper{
		display: flex;
		-webkit-justify-content: center;
		        justify-content: center;
	}
	.toast{
		-webkit-border-radius: 16px;
		        border-radius: 16px;
	    padding: 24px 60px;
	    width: auto;
	    left: auto;
	    right: auto;
	    /* bottom: 115px; */
        bottom: 75px;
	}
	.toast.success,
    .toast.failed{
		-webkit-background-size: 24px 24px;
		     -o-background-size: 24px 24px;
		        background-size: 24px 24px;
		background-position: 60px center;
		padding-left: 92px;	    
	}    
    /* 黑卡tag */
    .inlineBCTag.large{
        font-size: 15px;
    }
}


@media screen and (min-width: 1024px) {
    h1 {
        font-size: 34px;
        line-height: 48px;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
    h3,
    input {
        font-size: 18px;
        /*line-height: 26px;*/
    }
    h4,
    body,
    p {
        font-size: 15px;
        /*line-height: 21px;*/
    }
    h4 {
        font-weight: 600;
    }
    /* 表單物件 輸入框 */
    .inputBox.inline input[type=text] {
        height: 30px;
        line-height: 30px;
        width: 100%;
        padding: 0 24px;
    }
    /* 表單物件 輸入框 */
    /* 表單物件 下拉選單 */
    .select.inline {
        width: auto;
    }
    .select.inline select {
        height: 30px;
    }
    /* 表單物件 下拉選單 */
    /* 表單物件 checkbox + radio */
    .checkbox label:before,
    .radio label:before {
        width: 20px;
        height: 20px;
    }
    /* 表單物件 checkbox + radio */
    .largeText,
    .largeText * {
        font-size: 18px;
        line-height: 26px;
    }
    .middleText,
    .middleText * {
        font-size: 15px;
        line-height: 21px;
    }
    .smallText {
        font-size: 13px;
        line-height: 19px;
    }
    .count {
        font-size: 34px;
        line-height: 42px;
    }
    /* 行內表單物件 */
    .inputBlock h4 {
        padding: 0 24px;
    }
    /* 行內表單物件 */
    .mobile {
        display: none;
    }
    .padMobi,
    .padWide {
        display: block;
    }
    .wideSite {
        display: none;
    }

    select.cusSelectRound{
        font-size: 15px;
    }
    /* 月租館館別物件&nbsp;*/
    .categoryBox{
        padding: 0 46px;
    }
    .categoryBox .categorySelector li{
        font-size: 15px;
    }

}

@media screen and (min-width: 1024px) {
    /* 全站按鈕 */
    .btn.size_50_50_45,
    .btn.size_50_45_36 {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        padding: 0 24px;
        /* min-width: 150px; */
    }
    .btn.size_45_45_36 {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
        padding: 0 24px;
        /* min-width: 130px; */
    }
    .b
    /* 全站按鈕 */
    .mobile,
    .padMobi {
        display: none;
    }
    .padWide,
    .wideSite {
        display: block;
    }
}

@media screen and (min-width: 1440px) {
    /* 全站按鈕 */
    /*.btn {
        height: 50px;
        line-height: 50px;
        padding: 0 30px;
        min-width: 150px;
        font-size: 18px;
    }

    .btn img.btnIcon {
        vertical-align: sub;
    }

    .btn.color:hover {
        background: var(--color-orange-2);
    }*/
    /* 全站按鈕 */
/*    .multiLine3 {
        height: 4.75em;
    }*/
}</pre></body></html>