@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Josefin+Sans:ital,wght@0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');


a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}

:root {
    --footer-width: 100%;
    --footer-max-width: 1280px;

    --header-h: 70px;

    --header-side: 4%;
    --header-padding-side: min(var(--header-side), 100px);
    --header-right: var(--header-padding-side);
    --header-left: var(--header-padding-side);
    

    --main-width: 100%;
    --main-max-width: 1440px;
    --main-side: 4%;
    --main-padding-side: min(var(--main-side), 120px);
    --main-right: var(--main-padding-side);
    --main-left: var(--main-padding-side);


    --main-inner-padding-side: min(var(--main-side), 50px);
    --main-max-width2: 1024px;
    --main-inner-off-padding-side: 50px;


    --color-brown: #C09568;
    --color-blue: #4584C4;
    --color-gray-hard2: rgba(130, 130, 130, 1);
    --color-gray-hard2-light: rgba(130, 130, 130, 0.5);
    --color-gray-hard: #B2B2B2;

    /* line color */
    --color-line-gray: #979797;
    --color-line-gray2: var(--color-gray-hard2-light);
    --color-line-gray3: #C8C8C8;


    /* bg color */
    --color-bg-gray2: #EBEBEB;
    --color-bg-gray: #f5f4f4;
    --color-bg-beige: #FFFAF5;

    --color-main-system: var(--color-brown);
    --color-event-pagination: #EB635D;


    /* 需要跟著模組走 但是後端輸入 所以無法預先準備 */
    /* event page inner 花季中活動色係 12種 */
    /* event 狀態顏色 測試使用 */
    --color-event-brown: var(--color-brown);
    --color-event-orange: #FAA162;
    --color-event-red-light: #EB635D;


    --color-map-status-activity: var(--color-brown);
    --color-map-status-soon: var(--color-blue);
    --color-map-status-end: var(--color-gray-hard2);


    /* crowds 狀態顏色 */
    --color-crowds-brown: var(--color-brown);
    --color-crowds-green: #5EC85D;
    --color-crowds-yellow: #F1AE5B;
    --color-crowds-red: #DF5A5A;
    --color-crowds-gray: #828282;

    --img-radius-l: 20px;
    --img-radius-m: 15px;
    --img-radius-s: 10px;
    --img-radius-ss: 5px;


    --panel-radius-l: 20px;
    --panel-radius-m: 10px;
    --panel-radius-s: 5px;
    

    --flower-status-radius: 40px;
    --crowds-status-radius: 40px;
    --btn-radius: 40px;
    --btn-radius-m2: 20px;
    --btn-radius-m: 10px;
    --btn-radius-s: 5px;


    --box-shadows: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    /* 針對手機瀏覽器下方 多留空間 */
    /* 30 || 80 */
    /* --mobile-bottom-extra: 30px; */
    --mobile-bottom-extra: 30px;
    --nav-transition-ease: cubic-bezier(0, 0.2, 0.8, 1);



    --font-barlow: 'Barlow', 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif;
    --font-noto: 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif;
}

.crowds-low .crowds-show {
    background-color: var(--color-crowds-green)!important;
    color: #fff;
}

.crowds-low .crowds-show::after {
    content: "正常";
    position: relative;
    display: flex;
}

.crowds-high .crowds-show {
    background-color: var(--color-crowds-yellow)!important;
    color: #fff;
}

.crowds-high .crowds-show::after {
    content: "眾多";
    position: relative;
    display: flex;
}

.crowds-busy .crowds-show {
    background-color: var(--color-crowds-red)!important;
    color: #fff;
}

.crowds-busy .crowds-show::after {
    content: "擁擠";
    position: relative;
    display: flex;
}

.crowds-soon .crowds-show {
    width: 100%;
    background-color: var(--color-crowds-brown)!important;
    color: #fff;
}

.crowds-soon .date__name {
    display: none;
}

.crowds-soon .status__name {
    display: none;
}

.crowds-soon .crowds-show::after {
    content: "即將開花";
    position: relative;
    display: flex;
    justify-content: center;
}


.crowds-ended .crowds-show {
    width: 100%;
    background-color: var(--color-crowds-gray)!important;
    color: #fff;
}

.crowds-ended .date__name {
    display: none;
}

.crowds-ended .status__name {
    display: none;
}

.crowds-ended .crowds-show::after {
    content: "今年已結束";
    position: relative;
    display: flex;
    justify-content: center;
}

body, html {
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: optimizelegibility;
    line-height: 1;
    background-color: #ffffff;
    /* position: absolute;
    left: 0px;
    overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: #000000;
}


* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    display:block;
    width: 100%;
    height: auto;

    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

img[src=""], img:not([src]) {
    opacity: 0;
}

canvas {
    width: 100%;
    height: 100%;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

input[type=text] {
    color: #000000;
    width: 100%;
    padding: 6px 10px 6px 30px;
    /* border: 1px solid var(--color-brown); */
    border: 1px solid var(--color-line-gray3);
    box-sizing: border-box;
    border-radius: var(--crowds-status-radius);
    text-align: left;

    -moz-user-select: none; /*火狐*//*选中文字时避免出现蓝色背景*/
    -webkit-user-select: none; /*webkit浏览器*//*选中文字时避免出现蓝色背景*/
    -ms-user-select: none; /*IE10*//*选中文字时避免出现蓝色背景*/
    user-select: none;/*选中文字时避免出现蓝色背景*/
}

button {
    position: relative;
    display: block;
    cursor: pointer;
    pointer-events: auto;
    outline: none;
    border: none;
    background-color: initial;
}
/* ---------------------------------------------------------------------------------------- */
.box__btn__download,
.box__btn__more {
    position: relative;
    display: flex;
    flex-direction: row !important;
    justify-content: center !important;
}


.box__btn__download > a,
.box__btn__more > a {
    --off-right: -25px;
    position: relative;
    width: 100%;
    
    color: #fff;
    font-size: 18px;
    background-color: var(--model-color);
    border-radius: var(--btn-radius);
    padding: 20px 0px;

    display: flex;
    justify-content: center;

    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.box__btn__download > a {
    padding: 15px 0px;
    max-width: 180px;
}

.box__btn__more > a  {
    padding: 22px 0px;
    max-width: 195px;
}

.box__btn__download > a > p,
.box__btn__more > a > p {
    position: relative;
    right: calc(-1 * var(--off-right) * 0.4);
}

.box__btn__download > a > p::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    top: 0;
    right: var(--off-right);
    background: url(../images/common/arrow-icon-down-long.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.box__btn__more > a > p::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    top: 0;
    right: var(--off-right);
    background: url(../images/common/arrow-icon-right-long.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.box__btn__download > a > p::after,
.box__btn__more > a > p::after {
    -webkit-transition: all .15s ease-out 0s;
    -o-transition: all .15s ease-out 0s;
    -moz-transition: all .15s ease-out 0s;
    transition: all .15s ease-out 0s;
}

.box__btn__more > a:hover > p::after {
    right: calc(var(--off-right) - 10px);
}

.box__btn__download > a:hover,
.box__btn__more > a:hover {
    background-color: var(--color-gray-hard);
}


.flower-status-mark {
    color: var(--flower-color);
    border: 1px solid var(--flower-color);
    border-radius: var(--flower-status-radius);
    background-color: #fff;
    position: relative;
}

.flower-status-mark > p {
    position: relative;
    display: flex;
    padding: 4px 20px;
}

.float__con {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 10;
    overflow: hidden;
}

.float__btn__circle {
    --circle-w: 100px;
    pointer-events: none;
    position: absolute;
    width: var(--circle-w);
    height: var(--circle-w);
    border-radius: 50%;
    background-color: var(--model-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;

    transform: scale(0);

    -webkit-transition: opacity .8s ease-in-out 0s;
    -o-transition: opacity .8s ease-in-out 0s;
    -moz-transition: opacity .8s ease-in-out 0s;
    transition: opacity .8s ease-in-out 0s;
}

.float__pcon {
    pointer-events: none;
    position: absolute;
    width: 100vw;
    height: 100%;
    left: calc((100vw - 100%) * -0.5);
    top: 0;
    z-index: 10;
    /* overflow: hidden; */
}

.float__photo__circle {
    --circle-w: 180px;
    pointer-events: none;
    position: absolute;
    width: var(--circle-w);
    height: var(--circle-w);
    border-radius: 50%;
    background-color: var(--model-color);
    overflow: hidden;

    transform: scale(0);

    -webkit-transition: opacity .8s ease-in-out 0s;
    -o-transition: opacity .8s ease-in-out 0s;
    -moz-transition: opacity .8s ease-in-out 0s;
    transition: opacity .8s ease-in-out 0s;
}


.splide .splide__track--nav > .splide__list > .splide__slide.is-active {
    border: none;
}

.splide .splide__track--nav > .splide__list > .splide__slide {
    border: none;
    cursor: pointer;
    opacity: 1;
}

.splide .splide__pagination {
    bottom: 0.5em;
}

.box__intro__photos__slide .splide .splide__pagination {
    position: relative;
    bottom: -1em;
}

.splide .splide__pagination__page {
    background-color: var(--color-gray-hard);
}

.splide .splide__pagination__page:hover {
    background-color: var(--color-gray-hard);
    cursor: pointer;
    opacity: .9;
}

.splide .splide__pagination__page.is-active {
    background: var( --model-color);
    transform: scale(1.4);
    z-index: 1;
}

.aspect-ratio {
    --min-width: initial;
    --pic-wh-rate: calc(350/430);
    --pic-w: 100%;
    position: relative;
    width: var(--pic-w);
    padding-top: calc(var(--pic-wh-rate) * var(--pic-w));
    overflow: initial;

    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    
}

.aspect-ratio > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-width: var(--min-width);
    min-height: calc(var(--pic-wh-rate) * var(--min-width));

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: initial;
}

.aspect-ratio > div > img {
    position: relative;
    width: 100%;
    /* height: auto; */
    height: 100%;
    object-fit: cover;
}
/* ---------------------------------------------------------------------------------------- */
section {
    --model-color: var(--color-brown);
    padding: 80px 0;

	display: block;
	position: relative;
	width: 100%;
	height: auto;

    -webkit-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

/* section .for__gsearch {
    position: absolute;
    display: none;
} */

section .box__container {
    position: relative;
    width: var(--main-width);
    max-width: var(--main-max-width);
    /* rate: 40 / (1280-1024) */
    padding: 0 var(--main-padding-side);
	margin: 0 auto;

    display: flex;
    flex-direction: column;
}

section .box__container.box__title {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}


section .box__container.box__title > h1 {
    text-align: center;
    margin-bottom: 5px;
}

section .box__container.box__title::before {
    display: none;
}

section .box__container.box__title .splide__arrows {
    position: absolute;
    right: var(--main-right);
    display: flex;
    flex-direction: row;
    align-items: center;
}

section .box__container.box__title .splide__arrows > li {
    pointer-events: auto;
    cursor: pointer;
    flex: 0 0 auto;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius:50%;
    background-color: var(--model-color);

    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}


section .box__container.box__title .splide__arrows > li.arrow__left.is-not-work,
section .box__container.box__title .splide__arrows > li.arrow__right.is-not-work {
    pointer-events: none;
    cursor: default;
    background-color: var(--color-gray-hard);
    transform: scale(1);
}

section .box__container.box__title .splide__arrows > li:first-child {
    margin-right: 15px;
}

section .box__container.box__title .splide__arrows > li > img {
    width: 15px;
}

section .box__container .box__body {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

/* ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------- */
.bg-color-gray {
    background-color: var(--color-bg-gray);
}
.bg-color-beige {
    background-color: var(--color-bg-beige);
}
.bg-color-white {
    background-color: #ffffff;
}

.font-barlow {
    /* font-family: 'Barlow', 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif; */
    font-family: var(--font-barlow);
    font-weight: 500;
}
/* ------------ */
/* tips */
.text-tips-s {
    color: #7E7E7E;
    --fsize: 12px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px);
}

/* date */
.text-date-m {
    --fsize: 16px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
}

.text-date-s {
    --fsize: 14px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
}

/* status */
.text-status-s {
    --fsize: 14px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px);
} 

/* crowds */
.text-crowds-title {
    --fsize: 16px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px);
}

.text-crowds-title-s {
    --fsize: 14px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px);
}


.text-crowds-name {
    --fsize: 13px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 6px);
}

/* sheet */
.text-sheet-s {
    --fsize: 14px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
} 
/* title__banner extra size */
.text-tbanner-date {
    font-size: 40px;
    font-weight: 200;
}

.text-tbanner-day {
    font-size: 24px;
    font-weight: 300;
}

.text-tbanner-time {
    font-size: 24px;
    font-weight: 300;
}

/* ------------------------------------------ */
/* ------------------------------------------ */
.text-title-l {
    --fsize: 44px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 8px);
}

.text-subtitle-m {
    --fsize: 30px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
    letter-spacing: 2.2px;
}

.text-subtitle-s {
    --fsize: 22px;
    font-size: var(--fsize);
    font-weight: 600;
    line-height: calc(var(--fsize) + 6px);
    letter-spacing: 2.2px;
}

.text-title-s {
    --fsize: 18px;
    font-size: var(--fsize);
    font-weight: 500;
    line-height: calc(var(--fsize) + 6px);
}

.text-text-m {
    --fsize: 16px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 12px);
}
.text-text-s {
    --fsize: 14px;
    font-size: var(--fsize);
    font-weight: 400;
    line-height: calc(var(--fsize) + 12px);
}

/* ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------- */

@media only screen and (min-width:360px) {
    :root {
        --header-side: 8%;
        --main-side: var(--header-side);
    }

    section .box__container.box__title {
        /* padding: 20px var(--main-padding-side) 50px var(--main-padding-side); */
        padding: 20px var(--main-padding-side) calc(50px + 30px) var(--main-padding-side);
    }

    section .box__container.box__title .splide__arrows {
        right: 50%;
        bottom: -0.6em;
        transform: translateX(50%);
    }

    .float__pcon,
    .float__con {
        display: none;
    }
    
    /* -------------- */
    .text-tbanner-date {
        font-size: 32px;
    }

    .text-tbanner-day {
        font-size: 18px
    }
    /* -------------- */
    /* 字級統一控制 */
    .text-title-l {
        --fsize: 34px;
    }

    .text-subtitle-m {
        --fsize: 24px;
    }

    .text-title-s {
        --fsize: 15px;
    }

    .text-text-m {
        --fsize: 15px;
    }

    .text-text-s {
        --fsize: 14px;
    }
    /* -------------- */
}

@media only screen and (min-width:768px) {
    :root {
        --header-side: 4%;
        --main-side: var(--header-side);
    }
}

@media only screen and (min-width:1024px) {
    section .box__container.box__title {
        padding: 20px var(--main-padding-side) 20px var(--main-padding-side);
    }

    section .box__container.box__title .splide__arrows {
        right: var(--main-right);
        bottom: initial;
        transform: translateX(0%);
    }

    .float__pcon,
    .float__con {
        display: flex;
    }

    /* -------------- */
    .text-tbanner-date {
        font-size: 40px;
    }

    .text-tbanner-day {
        font-size: 24px
    }
    /* -------------- */
    /* 字級統一控制 */
    .text-title-l {
        --fsize: 42px;
    }

    .text-subtitle-m {
        --fsize: 30px;
    }

    .text-title-s {
        --fsize: 18px;
    }

    .text-text-m {
        --fsize: 16px;
    }

    .text-text-s {
        --fsize: 14px;
    }
    /* -------------- */
}
@media only screen and (min-width:1200px) {
    .text-title-l {
        --fsize: 44px;
    }

    .text-subtitle-m {
        --fsize: 32px;
    }

    .text-title-s {
        --fsize: 20px;
    }

    .text-text-m {
        --fsize: 18px;
    }

    .text-text-s {
        --fsize: 16px;
    }

}
@media only screen and (min-width:1400px) {}
@media only screen and (min-width:1900px) {}

/** BEGIN CSS **/
@keyframes spin {
    0%, 100% {
    box-shadow: 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot); 
    }
    50% {
        transform: rotate(180deg);
    }
    25%, 75% {
        box-shadow: 28px 0 0 var(--color-dot), -28px 0 0 var(--color-dot), 0 28px 0 var(--color-dot), 0 -28px 0 var(--color-dot), 20px -20px 0 var(--color-dot), 20px 20px 0 var(--color-dot),  -20px -20px 0 var(--color-dot), -20px 20px 0 var(--color-dot);

    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot), 0 0 0 var(--color-dot); 
    }
}

@keyframes spin2 {
    0%, 100% {
        box-shadow: 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2); 
    }
    50% {
        transform: rotate(-180deg);
    }
    25%, 75% {
        box-shadow: 52px 0 0 var(--color-dot2), -52px 0 0 var(--color-dot2), 0 52px 0 var(--color-dot2), 0 -52px 0 var(--color-dot2), 38px -38px 0 var(--color-dot2), 38px 38px 0 var(--color-dot2),  -38px -38px 0 var(--color-dot2), -38px 38px 0 var(--color-dot2);
        background: transparent;
    }
    100% {
        transform: rotate(-360deg);
        box-shadow: 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2), 0 0 0 var(--color-dot2); 
    }
}
        
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* loading_content */
/*------------------------------------------------------*/
.loading_content {
    --color-dot: #815698;
    --color-dot2: #47B1BB;
    --animation-time: 2.5s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-box-shadow: 0 0px 5px 0px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0px 5px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0px 5px 0px rgba(0, 0, 0, .4);

    /* -webkit-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s; */
}

.loading_content .loading__container .loading__body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%) scale(.75);
}

.loading_content .loading__container .loading__body .body__dot {
    position: absolute;
    border-radius: 50%;
    left: 1px;
    top: 1px;
    width: 18px;
    height: 18px;
    background: var(--color-brown);
    animation: spin var(--animation-time) 0s infinite both;
}

.loading_content .loading__container .loading__body .body__dot2 {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: var(--color-brown);
    animation: spin2 var(--animation-time) 0s infinite both;
}

.loading_content .loading__container .loading__text {
    position: relative;
    margin-top: 130px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(90, 90, 90);
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -moz-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

/*
// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
*/
@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

body,
button,
html,
select,
textarea,
p,
h1,
span {
    font-family: 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif
}

.tab__wrapper {
    padding-top: 20px
}

.tab__wrapper .tab__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

.tab__wrapper .tab__inner .tab__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #000;
    width: 100%
}

.tab__wrapper .tab__inner .tab__list li {
    max-width: 260px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    width: 33.333333%;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    border-bottom: 0 solid #FFF;
    cursor: pointer;
    position: relative
}

.tab__wrapper .tab__inner .tab__list li a {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 600
}

.tab__wrapper .tab__inner .tab__list li a img {
    vertical-align: middle
}

.tab__wrapper .tab__inner .tab__list li .right-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -5px
}

.tab__wrapper .tab__inner .tab__list .active {
    background-color: #f1f1f1;
    border-bottom: 2px solid #cc2027
}

.tab__wrapper .tab__inner .sub_tab__list {
    display: none;
    z-index: 2;
    width: 66.66666%;
    min-width: 260px;
    max-width: 66.66666%;
    height: 450px;
    overflow: auto;
    position: absolute;
    right: 0;
    top: 62px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
    background-color: #FFF
}

.tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title {
    display: none;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: .89px;
    color: #4b4b4b;
    position: relative;
    text-align: center
}

.tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title .right-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px
}

.tab__wrapper .tab__inner .sub_tab__list ul li {
    position: relative;
    border-bottom: 2px solid #fde980
}

.tab__wrapper .tab__inner .sub_tab__list ul li a {
    font-weight: 600;
    font-size: 16px;
    display: block;
    color: #000;
    text-decoration: none
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__number {
    position: absolute;
    top: 5px;
    left: 15px
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__current,
.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status {
    text-align: center;
    line-height: 40px;
    height: 40px
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.reject {
    color: #c2c2c2
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.progress {
    color: #e76d75
}

.tab__wrapper .tab__inner .sub_tab__list ul .active .sub_tab__list__current {
    background-color: #fde980
}



.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-25by9::before {
    --rate: 36%;
    padding-top: var(--rate)
}

.embed-responsive-21by9::before {
    --rate: 42.857143%;
    padding-top: var(--rate)
}

.embed-responsive-16by9::before {
    --rate: 56.25%;
    padding-top: var(--rate)
}

.embed-responsive-4by3::before {
    --rate: 75%;
    padding-top: var(--rate)
}

.embed-responsive-1by1::before {
    --rate: 100%;
    padding-top: var(--rate)
}

.maxContent {
    position: relative;
    margin: 0 auto;
    max-width: 1200px
}







