@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

html,
body {
    font-family: 'Noto Sans TC', sans-serif, Arial;
    /* overflow-x: hidden; */
}

* {
    /* outline: 1px solid red; */
}


#app>div {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.main {
    flex: 1;
    position: relative;
}


/* 無障礙按鈕 */
.accesskey {
    text-decoration: none;
    color: #ccc;
    padding: 5px;
    padding-top: 0px;
    position: absolute;
}

.accesskey:focus-visible {
    outline: 3px dotted #e93c3c;
}

.accesskey_go {
    clip: rect(0, 0, 0, 0);
    width: 180px;
    text-align: center;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 55;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px 10px;
    color: #000;
    font-weight: 500;
}

.accesskey_go:focus-visible {
    clip: auto;
}

#accesskey_u {
    top: 0;
}


.accesskey:hover {
    color: #fff;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
.form-check-input:focus {
    outline: 3px dotted #e93c3c;
    box-shadow: none;
}




/* 頭部 */
.navbar {
    position: relative;
    padding-bottom: 0;
}

.navbar::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #00DB7E 0%, #0292DF 100%);

    position: absolute;
    bottom: 0;
    z-index: 1;
}

.navbar .container {
    position: relative;
}

.navbar .menu_box {
    width: 100%;
}

/* 上方區塊 logo 次選單 */
.navbar .top_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 10px;
}

/* logo */
.navbar .logo_box {
    display: flex;
    align-items: center;
}

.navbar .logo_box h1 {
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar .logo_box img {
    max-width: 170px;
}

/* 次選單 */
.navbar .subMenu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;

    align-items: center;
}

.navbar .web_none {
    display: none;
}

.navbar .subMenu li {
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px solid #231915;

    display: flex;
    align-items: center;
}

.navbar .subMenu li:nth-last-child(1) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

/* 連結 */
.navbar .subMenu .link_box a {
    color: #231915;
    text-decoration: none;
    padding: 0 7px;
    border-radius: 5px;

    transition: 0.3s;
}

.navbar .subMenu .link_box a:hover {
    transform: scale(1.05);
}

.navbar .subMenu .link_box a p {
    margin: 0;
}

/* 字體大小 */
.fontSize_box {
    display: flex;
    align-items: center;
    margin: 0 7px;
}

.fontSize_box .fontSizeLabel {
    display: inline-block;
    margin: 0 5px;
}

.fontSize_box .fontSize {
    display: flex;
}

.fontSize_box .size {
    background-color: #fff;
    color: #231915;
    border: 1px solid #231915;
    border-radius: 50px;
    margin: 0 3px;
    padding: 0;
    width: 28px;
    height: 28px;
    text-align: center;

    transition: 0.3s;
}

.fontSize_box .size:hover {
    transform: scale(1.05);
}

.fontSize_box .size.active {
    background-color: #231915;
    color: #fff;
}

.fontSize_box .size p {
    margin: 0;
    transform: translateY(-1px);
}

/* 語言切換 */
.language_group {
    margin: 0 7px;
    position: relative;
}

.language_group .language_btn {
    background-color: #fff;
    border: 1px solid #231915;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 2px 10px;
    font-weight: 600;

    transition: 0.3s;
}

.language_group .language_btn:hover {
    transform: scale(1.04);
}

.language_group .language_btn.active {
    transform: scale(1.04);
}

.language_group .language_btn img {
    width: 20px;
    margin-right: 3px;
}

.language_group .language_btn p {
    margin: 0;
}

.language_group .language_box {
    position: absolute;
    z-index: 1;

    display: flex;
    flex-direction: column;
    width: 120px;
    padding: 2px 0;
}

.language_group .language_box .language {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #231915;
    padding: 3px 5px;
    margin: 2px 0;

    transition: 0.3s;
}

.language_group .language_box .language:hover {
    background-color: #231915;
    color: #fff;
}

/* 社交軟體 */
.social_box {
    display: flex;
}

.social_box .social {
    display: inline-block;
    border: 1px solid #231915;
    border-radius: 5px;
    padding: 3px;

    margin: 0 7px;

    transition: 0.3s;
}

.social_box .social:hover {
    transform: scale(1.05);
}

.social_box .social img {
    width: 20px;
    display: flex;
}

/* 主選單區塊 */
.navbar .box {
    width: 100%;
    position: relative;
    /* margin-top: 5px; */
}

.navbar .box::before {
    content: "";
    width: calc(100vw - 8px);
    height: 2px;
    background: linear-gradient(to right, #E3F2FB 0%, #C5FAE4 100%);

    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
}

/* 主選單 */
.navbar .menu {
    justify-content: center;
}

.navbar .menu .nav_item {
    position: initial;
}

.navbar .menu .nav_link {
    display: inline-block;
    padding: 15px 30px 16px 30px;
    margin: 0px 0px;
    text-decoration: none;
    color: #000;
    /* min-width: 180px; */
    text-align: center;
    font-size: 1.4rem;

    transition: 0.3s;
}

.navbar .menu .nav_link:hover {
    background: linear-gradient(45deg, #E3F2FB 0%, #C5FAE4 100%);
}

.navbar .menu .dropdown-menu {
    width: 100vw;
    padding: 0;
    margin: 0;
    margin-left: calc(50% - 50vw);
    background-color: #fffffff1;
    border: none;
}

.navbar .menu .dropdown_box {
    display: flex;
    align-items: flex-start;
}

.navbar .menu .dropdown_box .title {
    display: flex;
    align-items: center;


    position: relative;
}

.navbar .menu .dropdown_box .title::before {
    content: "";
    width: 3px;
    height: 20px;
    background-color: #231915;
    border-radius: 5px;

    position: absolute;
    top: 26px;
    right: 0;
}

.navbar .menu .dropdown_box .title img {
    width: 20px;
}

.navbar .menu .dropdown_box .title p {
    margin: 0;
    font-size: 1.4rem;
    padding: 19px 15px;
    padding-right: 30px;
    white-space: nowrap;
}

.navbar .menu .dropdown_children {
    margin: 0;
    padding: 0;
    margin-left: 15px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.navbar .menu .dropdown_item {
    display: inline-block;
    width: 100%;
    padding: 20px 35px 20px 25px;
    text-decoration: none;
    color: #000;
    font-size: 1.3rem;
    font-weight: 300;

    transition: 0.3s;

    position: relative;

    border-bottom: 1px solid #0292DF;
}

.navbar .dropdown_children li.lastInRow .dropdown_item::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #0292DF;
    border-radius: 20px;

    position: absolute;
    bottom: -5px;
    right: 0;
}

.navbar .dropdown_children li.lastInRow.lastRow .dropdown_item::after {
    content: none;
}

.navbar .dropdown_children li.lastRow .dropdown_item {
    border-bottom: none;
}

.navbar .menu .dropdown_item p {
    margin: 0;
    transition: 0.3s;
}

.navbar .menu .dropdown_item:hover {
    background-color: #C5FAE4;
}

.navbar .menu .dropdown_item:hover p {
    transform: translateX(5px);
}



@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {

    .navbar .menu .nav_link {
        padding: 15px 20px 16px 20px;
    }
}

@media (max-width: 991.98px) {

    .navbar-toggler {
        border: 1px solid #231915;
        width: 31px;
        height: 29px;

        position: absolute;
        top: 50px;
        right: 20px;
    }

    .navbar-toggler span {
        width: 20px;
        height: 1px;
        background-color: #231915;

        position: absolute;

        transition: 0.3s;
    }

    .navbar-toggler .line1 {
        top: 6px;
        left: 4px;
    }

    .navbar-toggler .line2 {
        top: 13px;
        left: 4px;
        width: 12px;
    }

    .navbar-toggler .line3 {
        bottom: 6px;
        left: 4px;
        width: 16px;
    }

    .navbar-toggler.open .line1 {
        transform: rotate(45deg) translateY(5px) translateX(6px);
    }

    .navbar-toggler.open .line2 {
        display: none;
    }

    .navbar-toggler.open .line3 {
        width: 20px;
        transform: rotate(-45deg) translateY(-4px) translateX(4px);
    }


    .navbar .container {
        padding: 0;
        max-width: 100%;
    }

    .navbar .top_box {
        padding: 0 20px;
        padding-bottom: 10px;
    }

    .navbar .web_none {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 10px;
        padding-right: 13px;
    }

    .navbar .rwd_none {
        position: absolute;
        top: 0;
        right: 20px;
    }

    .navbar .rwd_none .link_box,
    .navbar .rwd_none .social_group {
        display: none;
    }

    .navbar .subMenu li {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .fontSize_box {
        margin: 0;
        margin-right: 10px;
    }

    .language_group {
        margin: 0;
    }

    .navbar .box {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar .menu .nav_link {
        width: 100%;
        text-align: left;
    }

    .navbar .menu .dropdown_children {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        border-bottom: 1px solid #00DB7E;
    }

    .navbar .menu .dropdown_box .title {
        display: none;
    }

    .navbar .menu .dropdown_item {
        padding: 10px 35px;
        /* padding-left: 20px; */
        border-bottom: none;

        background-image: url(../img/arrow_black.svg);
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: calc(100% - 15px) center;

        border-bottom: 1px dotted #E3F2FB;
    }

    .navbar .dropdown_children li.lastInRow .dropdown_item::after {
        content: none;
    }
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {

    .navbar-toggler {
        right: 20px;
    }

    .navbar .logo_box {
        margin-top: 30px;
    }

    .navbar .logo_box img {
        max-width: 120px;
    }

    .navbar .subMenu li {
        transform: scale(0.9) translateX(15px);
        z-index: 1;
    }

    .navbar .subMenu li:nth-last-child(1) {
        z-index: 0;
    }

    .navbar .menu .nav_link {
        font-size: 1.3rem;
    }

    .navbar .menu .dropdown_item {
        font-size: 1.2rem;
    }
}


/* 尾部 */
.footer {
    padding: 0px 0;
    padding-top: 30px;
    position: relative;
}

.footer::before {
    content: "";

    width: 100%;
    height: 275px;

    background-image: url(../img/bg_footer.svg);
    background-size: 1920px;
    /* background-repeat: no-repeat; */
    background-repeat: repeat-x;
    background-position: center bottom;

    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* 頁尾內容 */
.footer .box {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.footer .box .logo_box {
    width: 120px;
    margin-right: 15px;
}

.footer .box .logo_box img {
    width: 100%;
}

.footer .box .text_box {
    margin-left: 15px;
}

.footer .box .text_box .title_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer .box .text_box .title_box h2 {
    font-size: 1.3rem;
    margin: 5px 0;
    margin-right: 10px;
}

.footer .box .text_box .title_box .social_box {
    margin: 0 -5px;
}

.footer .box .text_box .title_box .social {
    border: 1px solid #00DB7E;
    background-color: #ffffff54;
    box-shadow: 1px 1px 3px #00000013;
    margin: 5px;
}

.footer .box .text_box .title_box .social:hover {
    background-color: #fff;
}

.footer .box .text_box .text {
    padding: 10px 0;
}

.footer .box .text_box .text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8rem;
}

.footer .box .text_box .footerLink_box {
    margin: 0px -5px;
}

.footer .box .text_box .footerLink_btn {
    display: inline-block;
    border: 1px solid #00DB7E;
    border-radius: 10px;
    background-color: #fffffff1;
    color: #231915;
    text-decoration: none;
    padding: 4px 15px;
    padding-bottom: 5px;
    margin: 5px;

    transition: 0.3s;
}

.footer .box .text_box .footerLink_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}

/* 開館時間 */
.footer .time_box {
    margin: 0;
    padding: 15px 0;
    margin-right: 100px;
    list-style: none;

    position: relative;
}

.footer .time_box::before {
    content: "";

    width: 480px;
    height: 240px;
    border-radius: 500px 500px 0 0;
    background-color: #EEFFF8;

    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-53%);
    z-index: -2;
}

.footer .time_box::after {
    content: "";

    width: 220px;
    height: 70px;
    background-image: url(../img/mascot_8.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;

    bottom: -67px;
    left: -170px;
}

.footer .time_box li {
    display: flex;
    align-items: center;
}

.footer .time_box li .title {
    margin: 5px 0;
    font-size: 1.1rem;

    position: relative;
    padding-right: 30px;
}

.footer .time_box li .title::after {
    content: "";
    width: 2px;
    height: 13px;
    background-color: #231915;

    position: absolute;
    top: 8px;
    right: 14px;
}

.footer .time_box li .time {
    margin: 0;
    font-size: 1.2rem;
    color: #0292DF;
    font-weight: 500;
}

.footer .time_box li:nth-child(1) .time {
    color: #231915;
}

/* 開館時間 按鈕 */
.footer .visitInfo_btn {
    display: inline-block;
    font-size: 0.9rem;
    color: #231915;
    text-decoration: none;

    border: 1px solid #231915;
    border-radius: 20px;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: calc(100% - 10px) center;
    padding: 1px 25px 2px 10px;

    position: absolute;
    bottom: -15px;
    right: 0px;

    transition: 0.3s;
}

.footer .visitInfo_btn:hover {
    background-image: url(../img/arrow_white.svg);
    background-position: calc(100% - 15px) center;
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
    padding: 1px 30px 2px 15px;
}

/* 底 */
.footer .bottom {
    background: linear-gradient(to right, #00DB7E 0%, #0292DF 100%);
    text-align: center;
    color: #fff;
    padding: 1px 0;
    padding-bottom: 2px;
    font-size: 0.9rem;
}

.footer .bottom p {
    margin: 0;
}

/* 回頂端 */
.float_top {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.float_top.add .top_btn {
    display: inline-block;
}

.float_top .top_btn {
    border: 1px solid #0094D8;
    background-color: #fff;
    color: #0094D8;
    font-weight: 800;
    border-radius: 50px;
    padding: 10px 5px;

    transition: 0.3s;
    display: none;
}

.float_top .top_btn:hover {
    background-color: #0094D8;
    color: #fff;
}

.float_top .top_btn p {
    margin: 0;
}


@media (max-width: 1399.98px) {

    .footer .time_box {
        margin-right: 50px;
    }

    .footer .time_box::before {
        width: 390px;
        height: 220px;
        bottom: -35px;
    }
}

@media (max-width: 1199.98px) {

    .footer .box .logo_box {
        width: 100px;
    }

    .footer .time_box {
        margin-right: 0;
    }

    .footer .time_box::before {
        width: 310px;
        height: 230px;
        bottom: -45px;
        border-radius: 310px 310px 100px 100px;
    }

    .footer .visitInfo_btn {
        right: 10px;
    }
}

@media (max-width: 991.98px) {

    .footer .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .footer .box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .box .text_box {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer .time_box {
        margin-right: 30px;
        padding-top: 30px;
    }

    .footer .time_box::before {
        width: 310px;
        height: 300px;
        border-radius: 310px;

        bottom: 32%;
        left: 50%;
        transform: translateX(-53%) translateY(50%);
    }

    .footer .time_box::after {
        bottom: -117px;
        left: -50px;
    }

    .footer .visitInfo_btn {
        right: 15px;
    }
}


@media (max-width: 767.98px) {

    .footer {
        padding-top: 15px;
        background: linear-gradient(to bottom, #EBFFF7 0%, #fff 100%);
    }

    .footer::before {
        background-size: 3000px;
        height: 380px;
    }

    .footer .container {
        flex-direction: column-reverse;
        align-items: flex-end;
        padding: 0 25px;
    }

    .footer .box {
        width: 100%;
    }

    .footer .time_box {
        padding: 0;
        margin: 0;

        width: 100%;
        border-bottom: 1px solid #00DB7E;
        padding-bottom: 15px;
    }

    .footer .time_box::before {
        content: none;
    }

    .footer .time_box::after {
        width: 100px;
        height: 55px;

        bottom: -14px;
        left: initial;
        right: 10px;

        transform: scaleX(-1);
    }

    .footer .visitInfo_btn {
        font-size: 1rem;
        padding: 1px 35px 2px 20px;
        background-position: calc(100% - 20px) center;

        right: 120px;
        bottom: 15px;
    }

    .footer .visitInfo_btn:hover {
        padding: 1px 40px 2px 25px;
        background-position: calc(100% - 25px) center;
    }
}

@media (max-width: 575.98px) {

    .footer .container {
        padding: 0 15px;
    }

    .footer .box .text_box .footerLink_btn {
        padding: 4px 10px;
        padding-bottom: 5px;
    }

    .footer .time_box::after {
        content: none;
    }

    .footer .time_box li .title {
        padding-right: 25px;
    }

    .footer .time_box li .title::after {
        width: 1px;
        right: 12px;
    }

    .footer .time_box .btn_box {
        width: 100%;
        text-align: right;
    }

    .footer .visitInfo_btn {
        position: initial;
    }
}



/* 首頁 */

/* 輪播 */
.carousel_box {
    height: 550px;
}

.carousel_box a {
    display: inline-block;
    width: 100%;
}

.carousel_box a:focus-visible {
    outline-offset: -5px;
}

.carousel_box .img_box {
    overflow: hidden;
    width: 100%;
    height: 550px;
    position: relative;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.carousel_box .img_box::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffffc0;

    position: absolute;
    top: 0;
    left: 0;

    z-index: -1;
}

.carousel_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.carousel_box .slick-list {
    transition: height 0.5s ease-in-out;
}

/* 左右按鈕 */
.carousel_box button.slick-arrow {
    font-size: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;

    background-color: #ffffffc0;
    border-radius: 50px;
    border: 1px solid #fff;

    position: absolute;

    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    left: 35px;
    z-index: 1;

    transition: 0.3s;
}

.carousel_box button.slick-next {

    transform: translateY(-50%) rotate(45deg);
    left: initial;
    right: 35px;
}

.carousel_box button.slick-arrow:hover {
    background-image: url(../img/arrow_white.svg);
    background-color: #0292dfe3;
    border: 1px solid #0292DF;
    transform: translateY(-50%) rotate(-90deg);
}

.carousel_box button.slick-next:hover {
    transform: translateY(-50%) rotate(0deg);
}

/* 點點 */
.carousel_box ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;

    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex !important;
    align-items: center;
}

.carousel_box ul.slick-dots li {
    display: flex;
}

.carousel_box ul.slick-dots li button {
    font-size: 0;
    background-color: #ffffffc0;
    border: 1px solid #0292DF;
    border-radius: 20px;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0 6px;
    transition: 0.3s;
}

.carousel_box ul.slick-dots li.slick-active button {
    background-color: #00DB7E;
    width: 17px;
    height: 17px;
}

@media (max-width: 991.98px) {
    .carousel_box {
        height: 300px;
    }

    .carousel_box .img_box {
        height: 300px;
    }

    .carousel_box button.slick-arrow {
        left: 15px;
    }

    .carousel_box button.slick-next {
        left: initial;
        right: 15px;
    }
}

@media (max-width: 767.98px) {

    .carousel_box ul.slick-dots {
        bottom: 10px;
    }

    .carousel_box button.slick-arrow {
        width: 30px;
        height: 30px;
        background-size: 13px;
    }

    .carousel_box ul.slick-dots li button {
        width: 12px;
        height: 12px;
    }

    .carousel_box ul.slick-dots li.slick-active button {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 575.98px) {

    .carousel_box {
        height: 180px;
    }

    .carousel_box .img_box {
        height: 180px;
    }

    .carousel_box a {
        padding: 0 5px;
    }
}




.home .bg {
    position: relative;
    z-index: -1;
}

.home .bg::before {
    content: "";
    width: 100%;
    height: 1000px;

    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;

    position: absolute;
    top: 0;
}


/* 標題 */
.title_box {
    text-align: center;
    position: relative;
}

.title_box h2 {
    font-size: 1.8rem;
    margin: 0;
}



/* 特展活動專區 */
.activity_box {
    position: relative;
    padding: 60px 0;
}

.activity_box .title_box::before {
    content: "";

    width: 180px;
    height: 60px;

    background-image: url(../img/mascot_2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    right: 0;
    bottom: -73px;
}

.activity_box .activity_list {
    margin: 60px -15px;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.activity_box .activity_list li {
    padding: 15px 15px;
    flex-basis: calc(100% / 3);

    position: relative;
}

.activity_box .activity_list li:nth-child(1):before {
    content: "";

    width: 180px;
    height: 120px;

    background-image: url(../img/mascot_3.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    left: -120px;
    bottom: -60px;
}

.activity_box .activity_list .activity {
    text-decoration: none;
    color: #231915;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 0;

    transition: 0.3s;

    box-shadow: 2px 2px 3px #00000013;
}

.activity_box .activity_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    z-index: -1;
}

.activity_box .activity_list .text_box {
    background-color: #ffffffdb;
    padding: 15px;
    padding-bottom: 35px;
    border-radius: 30px;
    height: 100%;

    clip-path: polygon(60px 0,
            /* 左上角切掉 */
            100% 0,
            100% calc(100% - 50px),
            calc(100% - 60px) 100%,
            /* 右下角切掉 */
            0 100%,
            0 50px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.3s;
}

.activity_box .activity_list .title {
    padding-left: 30px;
    text-align: right;

    transition: 0.3s;
}

.activity_box .activity_list .title::before {
    content: attr(data-text);
    position: absolute;
    top: 0%;
    right: 0%;
    padding: 0 25px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.3s;
}

.activity_box .activity_list h3 {
    font-size: 1.5rem;
    margin: 0;

    transition: 0.3s;
}

.activity_box .activity_list .subtitle {
    font-size: 1rem;
    margin: 5px 0;

    transition: 0.3s;
}

.activity_box .activity_list .text {
    margin: 30px 0;
    font-size: 1.1rem;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;

    line-height: 1.7rem;
    min-height: calc(1.7rem * 4);

    transition: 0.3s;
}

.activity_box .activity_list .read_btn {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 5px 15px;
    padding-bottom: 6px;

    position: absolute;
    right: 15px;
    bottom: 15px;

    transition: 0.3s;
}

.activity_box .activity_list .read_btn p {
    margin: 0;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: right 8px;

    padding-right: 15px;

    transition: 0.3s;
}

.activity_box .activity_list .activity:hover h3,
.activity_box .activity_list .activity:hover .subtitle,
.activity_box .activity_list .activity:hover .text {
    opacity: 0;
}

.activity_box .activity_list .activity:hover .title::before {
    opacity: 1;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.activity_box .activity_list .activity:hover .text_box {
    background-color: #ffffffab;

    clip-path: polygon(80px 0,
            /* 左上角切掉 */
            100% 0,
            100% calc(100% - 70px),
            calc(100% - 80px) 100%,
            /* 右下角切掉 */
            0 100%,
            0 70px);
}

.activity_box .activity_list .activity:hover .read_btn {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
    right: 50%;
    bottom: 35%;
    transform: translateX(50%) translateY(50%);

    padding: 8px 25px;
    padding-bottom: 9px;
}

.activity_box .activity_list .activity:hover .read_btn p {
    background-image: url(../img/arrow_white.svg);
}

@media (max-width: 1199.98px) {

    .activity_box {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .activity_box::after {
        content: "";
        background-image: url(../img/bg_1.svg);
        background-repeat: no-repeat;
        background-size: 100%;
        transform: rotate(180deg);

        width: 100%;
        height: 1920px;
        position: absolute;
        bottom: 0;
        z-index: -1;

    }

    .activity_box .title_box::before {
        bottom: -45px;
    }

    .activity_box .activity_list {
        margin: 30px -15px;
        margin-bottom: 0;
    }

    .activity_box .activity_list li:nth-child(1):before {
        bottom: -100%;
        left: 0px;
    }

    .activity_box .activity_list li {
        flex-basis: calc(100% / 2);
    }
}

@media (max-width: 991.98px) {
    .activity_box .container {
        max-width: 100%;
    }

    .activity_box .activity_list {
        margin: 30px 0px;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {

    .activity_box {
        margin-bottom: 0;
    }

    .activity_box .activity_list li {
        flex-basis: 100%;
    }

    .activity_box .activity_list li:nth-child(1):before {
        content: none;
    }
}


@media (max-width: 575.98px) {

    .activity_box {
        padding-top: 30px;
    }

    .activity_box .title_box::before {
        width: 120px;
        height: 50px;
    }

    .activity_box .activity_list li {
        padding: 10px 0px;
    }
}


/* 最新消息 */
.news_box {
    width: 100%;
    min-height: 655px;

    background-image: url(../img/bg_2.svg);
    background-repeat: repeat-x;
    background-size: 1920px;
    background-position: center;

    display: flex;
    align-items: center;
}

.news_box .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.news_box .box {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 0;
    border: 1px solid #f5fcff;
    box-shadow: 2px 2px 3px #00000013;
    width: 60%;
    margin: 30px 0;

    position: relative;
}

.news_box .box::before {
    content: "";
    width: 350px;
    height: 350px;

    background-image: url(../img/mascot_1.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    left: -450px;
    bottom: 0px;
}

.news_box .title_box {
    text-align: left;
    margin: 10px 30px;
    position: relative;
}

.news_box .title_box::before {
    content: "";
    width: 100px;
    height: 40px;

    background-image: url(../img/mascot_4.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    top: -80px;
    left: 150px;
}

.news_box .title_box::after {
    content: "";
    width: 100px;
    height: 35px;

    background-image: url(../img/mascot_5.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    top: -30px;
    left: 80px;
}

.news_box .news_list {
    margin: 10px 0;
    padding: 0px;
    list-style: none;
}

.news_box .news_list .news {
    padding: 10px 30px;
    color: #231915;
    text-decoration: none;
    margin: 0px 0;

    display: flex;
    position: relative;

    font-size: 1.1rem;
}

.news_box .news_list .news:hover {
    background: linear-gradient(45deg, #eef6fc 0%, #d8f6e9 100%);
}

.news_box .news_list .news::before {
    content: "";
    width: 15px;
    height: 15px;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center right;

    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);

    opacity: 0;
    transition: 0.3s;
}

.news_box .news_list .news:hover:before {
    opacity: 1;
    right: 15px;
}

.news_box .news_list .time {
    margin: 0;
    margin-right: 15px;
}

.news_box .news_list .title {
    margin: 0;
    padding-right: 5px;
}

.news_box .btn_box {
    text-align: right;
    margin: 10px 30px;
}

.news_box .btn_box .more_btn {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 5px 15px;
    padding-bottom: 6px;

    transition: 0.3s;
}

.news_box .btn_box .more_btn p {
    margin: 0;
    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: right 8px;
    padding-right: 15px;
    transition: 0.3s;
}

.news_box .btn_box .more_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
    padding: 5px 25px;
    padding-bottom: 6px;
}

.news_box .btn_box .more_btn:hover p {
    background-image: url(../img/arrow_white.svg);
}



@media (max-width: 1199.98px) {

    .news_box .box {
        width: 70%;
    }

    .news_box .box::before {
        width: 280px;
        height: 280px;

        left: -290px;
        bottom: 0px;
    }
}

@media (max-width: 991.98px) {
    .news_box .container {
        max-width: 100%;
    }

    .news_box .box {
        margin: 30px 15px;
    }
}

@media (max-width: 767.98px) {

    .news_box {
        background-size: cover;
    }

    .news_box .box {
        width: 100%;
    }

    .news_box .box::before {
        content: none;
    }
}

@media (max-width: 575.98px) {

    .news_box .box {
        margin: 30px 0px;
        padding: 20px 0;
    }

    .news_box .title_box {
        margin: 10px 15px;
    }

    .news_box .title_box::before {
        top: -70px;
        left: initial;
        right: 0px;
    }

    .news_box .news_list .news {
        padding: 8px 15px;

        flex-direction: column;

        border-bottom: 1px dotted #C5FAE4;
    }

    .news_box .news_list li:nth-last-child(1) .news {
        border-bottom: none;
    }

    .news_box .news_list .news::before {
        width: 10px;
        height: 10px;
    }

    .news_box .news_list .news:hover:before {
        right: 10px;
    }
}









.calendar_box {
    padding: 60px 0;
}

.calendar_box .calendar {
    padding-top: 50px;

    position: relative;
}

.calendar_box .calendar::before {
    content: "";

    width: 60px;
    height: 52px;
    background-image: url(../img/mascot_6.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    top: -2px;
    right: 20px;
}

.calendar_box .calendar::after {
    content: "";

    width: 60px;
    height: 56px;
    background-image: url(../img/mascot_7.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    top: 0px;
    left: 20px;
}


.fc .fc-scrollgrid-section-sticky>*,
.fc .fc-scrollgrid-section,
.fc .fc-scrollgrid-section table,
.fc .fc-scrollgrid-section>td {
    position: relative;
    padding: 0;
}

.fc .fc-daygrid-day-top {
    flex-direction: column;
}

/* 行事曆標題 */
.fc .fc-header-toolbar {
    margin-bottom: 0px !important;
    background-color: #0292DF;
    color: #fff;
    border-radius: 10px;
    padding: 11px 15px;

    position: relative;
}

.fc .fc-toolbar-title {
    position: absolute;
    top: 7px;
    left: 60px;
}

.fc-header-toolbar .fc-button {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 0px;
    margin: 0 !important;
    border-radius: 8px;

    transition: 0.3s;
}

.fc-header-toolbar .fc-button:hover,
.fc .fc-header-toolbar .fc-button:active {
    background-color: #00DB7E;
    border: 1px solid #00DB7E;
}

.fc .fc-header-toolbar .fc-button:focus {
    outline: 3px dotted #e93c3c;
    box-shadow: none;
}

.fc-header-toolbar .fc-today-button {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 2px 15px;
    margin: 0px;
    border-radius: 8px;

    transition: 0.3s;
}

.fc .fc-today-button {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.fc .fc-today-button:disabled {
    opacity: 0;
}

/* 星期 標題 */
.fc .fc-col-header-cell-cushion {
    color: #004F5B;
    text-decoration: none;
}

/* 移除 FC 預設邊框 */
.fc-theme-standard .fc-scrollgrid {
    border: none;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: none;
    padding: 5px;
}

.fc-theme-standard th {
    padding: 10px 5px;
}

/* 日曆格框線 + 底色（基底樣式） */
.fc .fc-daygrid-day-frame {
    border: 1px solid #0094D8;
    border-radius: 10px;
    background-color: #f5fcff;
}

.fc-daygrid-day .fc-daygrid-day-number {
    text-decoration: none;
    height: 70px;
    cursor: pointer;
}

/* 無活動日期（基底樣式） */
.fc-daygrid-day .no-event.fc-daygrid-day-frame {
    border-color: #0094D8;
    background-color: #f5fcff;
}

.fc-daygrid-day .no-event.fc-daygrid-day-frame a {
    color: #0094D8;
    font-weight: 500;
}

/* ===== 有活動（綠色提示） ===== */
.fc-daygrid-day .has-event.fc-daygrid-day-frame {
    border: 1px solid #00DB7E;
    background-color: #EBFFF7;
    cursor: pointer;
}

.fc-daygrid-day .has-event.fc-daygrid-day-frame a {
    color: #00DB7E;
    font-weight: 600;
}


/* 點選後的日期樣式 */
.fc-daygrid-day.selected-day .fc-daygrid-day-frame {
    border: 1px solid #00DB7E !important;
    background-color: #00DB7E !important;

    background-image: url(../img/arrow_w.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.fc-daygrid-day.selected-day a {
    color: #fff !important;
}

/* 星期二休息日格子樣式 */
/* 休息日格子（本月 + 跨月皆適用）*/
.closed-off.fc-daygrid-day-frame {
    background-color: #f5f5f5 !important;
    color: #a1a1a1 !important;
    border: 1px solid #a1a1a1 !important;
}

.closed-off a {
    color: #a1a1a1 !important;
}

.closed-off span.rest-label {
    width: 100%;
    display: inline-block;
    text-align: center;
}

td.fc-daygrid-day:has(.closed-off) {
    pointer-events: none;
}

.fc-daygrid-day.selected-day .closed-off.fc-daygrid-day-frame {
    border: 1px solid #a1a1a1 !important;
    background-color: #f5f5f5 !important;

    background-image: none;
}

.fc-daygrid-day.selected-day .closed-off a {
    color: #a1a1a1 !important;
}

/* 今日日期 */
.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
    transform: scale(1.1);
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    border: 2px dotted #035E88 !important;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    background-color: #035E88;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame a {
    color: #fff;
}

/* hover */
.fc-daygrid-day .fc-daygrid-day-frame:hover {
    filter: brightness(1.05);
}

/* 行事曆的活動區塊隱藏 */
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
    display: none;
}

/* 右側顯示活動 */
.event_box {
    padding-bottom: 5px;
}

.event_box .event_list {
    border: 1px solid #00DB7E;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.event_box .event_list h3 {
    margin-bottom: 0px;
    background-color: #00DB7E;
    color: #fff;
    padding: 10px 15px;

    background-image: url(../img/calendar_icon.svg);
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: 15px 12px;
    padding-left: 60px;
}

.event_box .event_list .event_box {
    margin: 0;
    padding: 0px;
    list-style: none;
}

.event_box .event_list .event_box li {
    border-bottom: 1px solid #00DB7E;
    padding: 10px 15px;
}

.event_box .event_list .event_box li:nth-last-child(1) {
    border-bottom: none;
}

.event_box .event_list .event_box .text_box {
    padding: 5px 0px;

    border-bottom: 1px dotted #d8f6e9;
}

.event_box .event_list .event_box .text_box:nth-last-child(2) {
    border-bottom: none;
}

.event_box .event_list .event_box p {
    margin: 0;
    font-size: 1.1rem;
    padding: 3px 0;
}

.event_box .event_list .event_box p.title {
    font-weight: 500;
    font-size: 1.2rem;
}

.event_box .event_list .event_box .text_box:nth-last-child(2) p {
    padding-right: 160px;
}

.event_box .event_list .event_box .btn_box {
    text-align: right;
    position: relative;
}

.event_box .event_list .event_box .btn_box .more_btn {
    display: inline-block;
    color: #231915;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 5px 15px;
    padding-bottom: 6px;
    transition: 0.3s;

    position: absolute;
    right: 0;
    bottom: 0;
}

.event_box .event_list .event_box .btn_box .more_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
    padding: 5px 25px;
    padding-bottom: 6px;
}

.event_box .event_list .event_box .btn_box .more_btn p {
    margin: 0;
    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: right 8px;
    padding-right: 15px;
    transition: 0.3s;
}

.event_box .event_list .event_box .btn_box .more_btn:hover p {
    background-image: url(../img/arrow_white.svg);
}



.event_box .event_list .closed_box {
    height: calc(100% - 53px);

    position: relative;
    overflow: hidden;
}

.event_box .event_list .closed_box img {

    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}



@media (max-width: 1199.98px) {
    .fc-daygrid-day .fc-daygrid-day-number {
        height: 60px;
    }
}

@media (max-width: 991.98px) {

    .calendar_box .container {
        max-width: 100%;
    }

    .calendar_box .calendar {
        margin: 0 15px;
    }

    .fc-media-screen {
        padding: 0;
        padding-right: 5px;
    }

    .fc-theme-standard td,
    .fc-theme-standard th {
        padding: 3px;
    }

    .event_box {
        padding: 0;
        padding-left: 5px;
    }
}

@media (max-width: 767.98px) {

    .fc-media-screen {
        padding: 0;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
        flex-basis: calc(100% - 150px);
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
        flex-basis: 150px;
        text-align: right;
    }

    .fc-header-toolbar .fc-toolbar-title {
        font-size: 1.3rem;
        position: initial;
    }

    .fc-header-toolbar .fc-button {
        margin-left: 10px !important;
    }

    .fc-header-toolbar .fc-today-button {
        right: 92px;
    }

    .fc .fc-col-header-cell-cushion {
        font-size: 0.9rem;
    }

    .fc-dayGridWeek-view .fc-col-header,
    .fc-timeGridWeek-view .fc-col-header {
        display: none !important;
    }

    .event_box {
        height: initial !important;
        min-height: 300px;

        margin: 15px 0;
        padding: 0;
    }
}

@media (max-width: 575.98px) {

    .calendar_box {
        padding: 25px 0;
    }

    .calendar_box .calendar {
        padding-top: 20px;
        margin: 0;
    }

    .calendar_box .calendar::before {
        width: 50px;
        height: 45px;

        top: -15px;
        right: -5px;
    }

    .calendar_box .calendar::after {
        width: 50px;
        height: 36px;

        top: -7px;
        left: 0px;
    }

    .fc.fc-media-screen {
        padding-top: 10px;
    }

    .fc .fc-toolbar-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .fc-theme-standard td,
    .fc-theme-standard th {
        padding: 2px;
    }

    .fc-daygrid-day .fc-daygrid-day-number {
        height: 50px;
        font-size: 0.9rem;
    }

    .fc .fc-col-header-cell-cushion {
        font-size: 0.9rem;
    }

    .fc-daygrid-day span.rest-label {
        font-size: 0.85rem;
    }

    .fc .fc-toolbar.fc-header-toolbar {
        flex-direction: column;
        align-items: flex-end;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
        flex-basis: initial;
    }

    .fc .fc-today-button {
        bottom: 10px;
        transform: translateY(0);
        padding: 2px 15px;
    }

    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
        width: 100%;
    }

    .event_box .event_list {
        margin: 0 0;
    }
}


/* 連結區塊 */
.quickLink_box {
    padding: 30px 0;
    padding-bottom: 60px;
}

/* 連結按鈕 */
.quickLink_box .quickLink_list {
    padding: 0;
    margin: 0 -15px;
    list-style: none;

    display: flex;
    justify-content: stretch;
    flex-wrap: wrap;
}

.quickLink_box .quickLink_list li {
    padding: 15px;
    flex-basis: calc(100% / 5);
}

.quickLink_box .quickLink_list .quickLink_btn {
    text-decoration: none;
    color: #231915;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 10px;

    display: flex;
    align-items: center;

    height: 100%;

    transition: 0.3s;
}

.quickLink_box .quickLink_list .quickLink_btn:hover {
    background-color: #0094D8;
    border: 1px solid #0292DF;
    color: #fff;
}

.quickLink_box .quickLink_list .quickLink_btn p {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    padding: 8px 10px;
    font-size: 1.2rem;
}

.quickLink_box .quickLink_list .quickLink_btn .img_box {
    background-color: #fff;
    border-left: 1px solid #00DB7E;
    border-radius: 10px 9px 9px 10px;
    height: 100%;
    padding: 8px;

    transition: 0.3s;
}

.quickLink_box .quickLink_list .quickLink_btn:hover .img_box {
    border-left: 1px solid #00DB7E;
}

.quickLink_box .quickLink_list .quickLink_btn img {
    width: 40px;
}

/* 吉祥物按鈕 */
.quickLink_box .quickLink_list .mascot_btn .img_box {
    background: linear-gradient(to bottom, #00DB7E 50%, #0094D8 50%);
}

.quickLink_box .quickLink_list .mascot_btn:hover .img_box {
    background: linear-gradient(to bottom, #0094D8 50%, #00DB7E 50%);
    transform: scale(1.1);
}

@media (max-width: 1199.98px) {

    .quickLink_box .quickLink_list li {
        padding: 10px;
    }
}

@media (max-width: 991.98px) {

    .quickLink_box .container {
        max-width: 100%;
    }

    .quickLink_box .quickLink_list {
        margin: 0 0px;
    }

    .quickLink_box .quickLink_list li {
        flex-basis: calc(100% / 3);
    }
}

@media (max-width: 767.98px) {

    .quickLink_box .quickLink_list li {
        flex-basis: calc(100% / 2);
    }
}

@media (max-width: 575.98px) {

    .quickLink_box .quickLink_list {
        margin: 0 -10px;
    }

    .quickLink_box .quickLink_list li {
        flex-basis: 100%;
    }
}



/* 毛毛蟲 */
.breadcrumb_box {
    position: absolute;
    width: 100%;
}

.breadcrumb {
    margin: 5px 0;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #0292DF;
    font-weight: 400;

    transition: 0.3s;
}

.breadcrumb .breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb .breadcrumb-item {
    color: #231915;
    display: inline-block;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #231915;
}



/* 頁碼 */
.page_bg {
    position: relative;
    padding: 30px 0;
    text-align: center;
}

.page_box {
    margin: 0;
    padding: 0 0px;
    list-style: none;

    display: inline-block;
}

.page_box li {
    display: inline-block;
}

.page_box li a {
    display: inline-block;
    text-decoration: none;
    color: #231915 !important;
    border: 1px solid #e4f5fd;
    background: linear-gradient(135deg, #EEF9FF 0%, #F2FFFA 100%);
    border-radius: 10px;
    padding: 4px 12px 3px 12px;
    margin: 0 8px;
    font-size: 1.1rem;

    position: relative;
    transition: 0.3s;
}

.page_box li a:hover {
    background: linear-gradient(135deg, #ADDCF6 0%, #B3F2DA 100%);
    color: #231915 !important;
}

.page_box li.active a {
    background: linear-gradient(135deg, #bbe5fc 0%, #c1f7e2 100%);
    color: #231915 !important;
}

.page_box li.page.disabled a {
    border: none;
}

@media (max-width: 575.98px) {

    .page_box {
        margin: 0 -4px;
    }

    .page_box li a {
        border-radius: 10px;
        padding: 2px 8px 1px 8px;
        margin: 3px 4px;
        font-size: 1rem;
    }
}





/* 最新消息 列表 */
.newsList {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.newsList .news_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.newsList .news_box .container {
    display: initial;
    min-height: 510px;
}

.newsList .news_box .title_box {
    text-align: center;
    padding: 50px 0;
}

.newsList .news_box .title_box::before {
    top: 40px;
    left: initial;
    right: 20px;
}

.newsList .news_box .title_box::after {
    top: 106px;
    left: initial;
    right: 130px;
}

.newsList .news_box .box {
    width: 100%;
    margin-top: 0;
}

.newsList .news_box .box::before {
    content: none;
}

.newsList .news_box .news_list .news {
    padding: 15px 50px;
}

.newsList .news_box .news_list .news:hover:before {
    right: 25px;
}

.newsList .news_box .news_list .time {
    margin-right: 25px;
}

@media (max-width: 991.98px) {

    .newsList .news_box .box {
        margin: 0;
    }
}

@media (max-width: 767.98px) {

    .newsList .news_box .news_list .news {
        padding: 10px 25px;
    }

    .news_box .news_list .news::before {
        width: 10px;
        height: 10px;
    }

    .newsList .news_box .news_list .news:hover:before {
        right: 10px;
    }

    .newsList .news_box .news_list .time {
        margin-right: 15px;
    }
}

@media (max-width: 575.98px) {

    .newsList .news_box .title_box {
        padding: 30px 0;
    }

    .newsList .news_box .title_box::before {
        width: 70px;
        height: 30px;

        top: 0px;
        right: -15px;
    }

    .newsList .news_box .title_box::after {
        width: 80px;
        height: 30px;

        top: 70px;
        right: initial;
        left: -15px;
    }
}




/* 活動專區 圖文列表 */
.activityList {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.activityList .activityList_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.activityList .activityList_box .title_box {
    text-align: center;
    padding: 60px 0;
}

.activityList .activity_list {
    margin: 0 -15px;
    padding: 0;
    list-style: none;

    position: relative;
}

.activityList .activity_list::before {
    content: "";
    width: 150px;
    height: 100px;
    background-image: url(../img/mascot_3.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: -85px;
    right: 30px;

    transform: scaleX(-1);
}

.activityList .activity_list li {
    padding: 15px;
}

.activityList .activity_list li .activity {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;

    color: #231915;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #00000009;
    box-shadow: 2px 2px 3px #00000013;

    transition: 0.3s;
}

.activityList .activity_list li .activity:hover {
    transform: scale(1.05);
}

.activityList .activity_list .activity .img_box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.activityList .activity_list .activity .img_box::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffff77;

    position: absolute;
    top: 0;
    left: 0;

    z-index: -1;
}

.activityList .activity_list .activity .img_box img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    position: absolute;

    transition: 0.5s;
}

.activityList .activity_list li .activity:hover img {
    transform: scale(1.1);
}

.activityList .activity_list .activity .text_box {
    padding: 15px 20px;
    position: relative;
}

.activityList .activity_list .activity .text_box::before {
    content: "";
    width: 60px;
    height: 60px;
    clip-path: polygon(100% 2%, 0% 100%, 100% 100%);
    background-color: #fff;

    position: absolute;
    top: -59px;
    right: -1px;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 13px) calc(100% - 5px);

    transition: 0.3s;
}

.activityList .activity_list li .activity:hover .text_box::before {
    width: 80px;
    height: 80px;
    top: -79px;

    background-image: url(../img/arrow_blue.svg);
    background-size: 20px;
    background-position: calc(100% - 18px) calc(100% - 10px);
}

.activityList .activity_list .activity .text_box .time {
    margin: 0;
}

.activityList .activity_list .activity .text_box .title {
    display: flex;
    align-items: center;
    line-height: 1.7rem;
    min-height: calc(1.7rem * 2);
}

.activityList .activity_list .activity .text_box h3 {
    margin: 0;
    font-size: 1.5rem;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



@media (max-width: 991.98px) {
    .activityList .container {
        max-width: 100%;
    }

    .activityList .activity_list {
        margin: 0;
    }
}

@media (max-width: 767.98px) {

    .activityList .activity_list::before {
        right: 0px;
    }

    .activityList .activity_list .activity .text_box h3 {
        display: inline-block;
        font-size: 1.3em;
    }
}


@media (max-width: 575.98px) {

    .activityList .activity_list li {
        padding: 15px 0;
    }

    .activityList .activityList_box .title_box {
        padding: 30px 0;
    }

    .activityList .activity_list::before {
        width: 90px;
        height: 60px;

        top: -45px;
    }
}





/* 吉祥物 館區介紹 圖文列表2  */
.activityList_2 .activity_list li {
    padding: 50px 15px;
    border-bottom: 1px solid #00DB7E;
}

.activityList_2 .activity_list li:nth-child(1) {
    padding-top: 15px;
}

.activityList_2 .activity_list li:nth-last-child(1) {
    border-bottom: none;
    padding-bottom: 15px;
}

.activityList_2 .activity_list li .activity {
    display: flex;
    align-items: center;

    background-color: transparent;
    box-shadow: none;
    border: none;
}

.activityList_2 .activity_list li .activity:hover {
    transform: scale(1);
}

.activityList_2 .activity_list li .line {
    border-top: 1px solid #00DB7E;
    opacity: 1;
    margin: 20px 0;
}

.activityList_2 .activity_list .activity .img_box {
    flex-basis: 50%;

    padding: 0;
    height: 300px;
    border-radius: 30px;

    background-color: #eeeeee;
}

.activityList_2 .activity_list li:nth-child(even) .activity .img_box {
    order: 1;
    border-right: none;
}

.activityList_2 .activity_list .activity .img_box img {
    position: initial;
}

.activityList_2 .activity_list .activity .text_box {
    flex-basis: 50%;
}

.activityList_2 .activity_list .activity .text_box h3 {
    display: inline-block;
    margin: 10px 0;
}

.activityList_2 .activity_list .activity .text_box::before {
    content: none;
}

.activityList_2 .activity_list .activity .text_box .text {
    margin: 10px 0;
    font-size: 1.1rem;
}








@media (max-width: 991.98px) {

    .activityList_2 .activity_list li {
        padding-top: 40px;
        padding-bottom: 10px;
    }

    .activityList_2 .activity_list li .activity {
        flex-direction: column;
        align-items: flex-start;
    }

    .activityList_2 .activity_list .activity .img_box {
        /* flex-basis: 300px; */
        flex-basis: initial;

    }

    .activityList_2 .activity_list li:nth-child(even) .activity .img_box {
        order: 0;
    }

    .activityList_2 .activity_list .activity .text_box {
        flex-basis: initial;
        padding: 15px 5px;
        width: 100%;
    }
}

@media (max-width: 767.98px) {

    .activityList_2 .activity_list li {
        flex-basis: 100%;
        padding: 15px 5px;
        border-bottom: none;
    }

    .activityList_2 .activity_list .activity .img_box {
        height: initial;
        max-height: 500px;
    }

    .activityList_2 .activity_list .activity .text_box .text {
        font-size: 1rem;
    }

    .activityList_2 .activity_list .tab_box {
        margin: 0 0px;
        padding: 15px 0;
        display: flex;
        flex-wrap: wrap;
    }

    .activityList_2 .tab_box .btn_box {
        flex-basis: calc(100% / 3);
        padding: 5px;
    }

    .activityList_2 .tab_box .tab_btn {
        border: 1px solid #00DB7E;
        padding: 6px 5px;
        padding-bottom: 5px;
        border-radius: 10px;
        width: 100%;
        height: 100%;
        background-color: #fff;
        font-size: 0.95rem;

        transition: 0.3s;
    }

    .activityList_2 .tab_box .tab_btn.active {
        background-color: #0292DF;
        border: 1px solid #0292DF;
        color: #fff;
    }
}

@media (max-width: 575.98px) {

    .activityList_2 .tab_box .btn_box {
        flex-basis: calc(100% / 2);
    }
}






/* 列表內頁 */
.listMain {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.listMain .listMain_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

/* 標題區塊 */
.listMain .listMain_box .title_box {
    text-align: left;
    padding: 90px 10px 10px 10px;

    overflow: hidden;
}

.listMain .listMain_box .title_box h2 {
    display: inline-block;
    margin: 3px 0;
}

.listMain .listMain_box .title_box .time_social {
    float: right;
    margin: 3px 0;

    display: flex;
    align-items: center;
}

.listMain .listMain_box .title_box p {
    margin: 0 10px;
}

.listMain .listMain_box .social_box {
    margin: 0 -5px;
}

.listMain .listMain_box .social_box .social {
    border: 1px solid #0292DF;
    background-color: #ffffff54;
    box-shadow: 1px 1px 3px #00000013;
    margin: 3px 5px;
}

/* 內文區塊 */
.listMain .listMain_box .box {
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #00000009;
    box-shadow: 2px 2px 3px #00000013;
}

.listMain .listMain_box .carousel_box {
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    margin: 30px;
}

.listMain .listMain_box .carousel_box .img_box {
    height: 500px;
}

.listMain .listMain_box .carousel_box .img_box::before {
    background-color: #ffffff77;
}

.listMain_box .text_box {
    padding: 30px;
}

.listMain_box .text_box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.9rem;
}

.listMain_link {
    display: inline-block;
    border: 1px solid #0292DF;
    border-radius: 10px;
    background-color: #004F5B;
    width: 100%;
    padding: 5px 15px;
    margin: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;

    transition: 0.3s;
}

/* 內文文字區塊內　超連結 */
.listMain_link:hover {
    color: #fff;
    background-color: #0292DF;
    border: 1px solid #0292DF;

    transform: scale(1.01);
}

.listMain_link img {
    width: 15px;
    margin-left: 10px;
    margin-bottom: 3px;

    transition: 0.3s;
}

.listMain .listMain_box .download_box {
    padding: 30px;
    border-top: 1px solid #dadada6c;

    position: relative;
}

.listMain .listMain_box .download_box::before {
    content: "";

    width: 100px;
    height: 84px;
    background-image: url(../img/mascot_1.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    right: 20px;
    bottom: 0px;

    transform: scalex(-1);
}

.listMain .listMain_box .download_box h3 {
    font-size: 1.3rem;
    padding: 0px 30px;
    margin-bottom: 15px;

    background-image: url(../img/downloan_icon.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left center;
}

.listMain .listMain_box .download_box .download_list {
    margin: 0;
    padding: 0;
    padding-right: 100px;
    list-style: none;
}

.listMain .listMain_box .download_box .download {
    display: inline-block;
    color: #231915;
    text-decoration: none;

    border-radius: 8px;
    margin: 5px 0;

    transition: 0.3s;
}

.listMain .listMain_box .download_box .download:hover {
    color: #0292DF;
}

.listMain .listMain_box .download_box .download p {
    margin: 0;
    padding: 0px;
    padding-left: 15px;

    border: 1px solid #D7D7D7;
    border-radius: 10px;

    transition: 0.3s;

    display: flex;
    align-items: stretch;

    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 0px center;
}

.listMain .listMain_box .download_box .download:hover p {
    border: 1px solid #0292DF;

    background-image: url(../img/arrow_blue.svg);
    background-position: 12px center;

    padding-left: 30px;
}

.listMain .listMain_box .download_box .download .title {
    display: flex;
    align-items: center;
}

.listMain .listMain_box .download_box .download .file {
    border: 1px solid #D7D7D7;
    border-radius: 9px;
    padding: 3px 15px 4px 15px;
    margin-left: 15px;

    transition: 0.3s;

    display: flex;
    align-items: center;
}

.listMain .listMain_box .download_box .download:hover .file {
    color: #fff;
    background-color: #0292DF;
    border: 1px solid #0292DF;
}


@media (max-width: 991.98px) {
    .listMain .container {
        max-width: 100%;
    }

    .listMain .listMain_box .carousel_box {
        height: 300px;
    }

    .listMain .listMain_box .carousel_box .img_box {
        height: 300px;
    }
}

@media (max-width: 767.98px) {

    .listMain .listMain_box .carousel_box {
        margin: 15px;
    }

    .listMain .listMain_box .text_box {
        padding: 15px;
    }

    .listMain .listMain_box .download_box {
        padding: 15px;
    }

    .listMain .listMain_box .download_box::before {
        width: 70px;
        height: 60px;
        bottom: initial;
        top: 5px;
    }

    .listMain .listMain_box .download_box .download_list {
        padding-right: 0;
    }

    .listMain .listMain_box .download_box .download p {
        padding-left: 10px;
    }

    .listMain .listMain_box .download_box .download .file {
        margin-left: 10px;
        padding: 3px 10px 4px 10px;
    }
}

@media (max-width: 575.98px) {

    .listMain .listMain_box .carousel_box {
        height: 180px;
    }

    .listMain .listMain_box .carousel_box .img_box {
        height: 180px;
    }
}





/* 時間票價 */
.visitInfo_box h3.visitInfo_title {
    font-size: 1.4rem;
    margin: 5px 0;
    padding-bottom: 5px;

    border-bottom: 1px solid #dadada6c;
}

/* 開館時間 */
.visitInfo_box .openTime_box {
    display: flex;
    align-items: flex-end;
    margin-bottom: 50px;
}

.visitInfo_box .openTime_table {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 3px #00000010;
}

.visitInfo_box .openTime_table th {
    min-width: 200px;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: #004F5B;
    color: #fff;
    padding: 10px 15px;

    text-align: center;
}

.visitInfo_box .openTime_table .time {
    min-width: 300px;
    border-left: 1px solid #dadada6c;
}

.visitInfo_box .openTime_table td {
    font-size: 1.1rem;
    text-align: center;
    padding: 10px 15px;
    background-color: #fefefe;
}

.visitInfo_box .openTime_table tr:nth-child(even) td {
    background-color: #f5f5f5;
}

/* 備註文字 */
.visitInfo_box .openTime_box .note {
    padding-left: 20px;
    padding-bottom: 7px;
}

.visitInfo_box .note p {
    line-height: initial;
}

.visitInfo_box .note .required {
    color: #e93c3c;
    font-size: 0.95rem;
}

/* 票價 */
.visitInfo_box .admissionFee_box {
    margin-bottom: 30px;
}

.visitInfo_box .admissionFee_table {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 3px #00000010;
}

.visitInfo_box .admissionFee_table th {
    min-width: 150px;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: #004F5B;
    color: #fff;
    padding: 10px 25px;

    text-align: center;
}

.visitInfo_box .admissionFee_table .fee {
    border-right: 1px solid #dadada6c;
    border-left: 1px solid #dadada6c;
}

.visitInfo_box .admissionFee_table .target {
    min-width: 500px;
    text-align: left;
}

.visitInfo_box .admissionFee_table td {
    font-size: 1.1rem;
    text-align: center;
    padding: 10px 25px;
    background-color: #fefefe;
}

.visitInfo_box .admissionFee_table tr:nth-child(even) td {
    background-color: #f5f5f5;
}

.visitInfo_box .admissionFee_table .target p {
    margin: 0;
    background-image: url(../img/menu_icon.svg);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: left 10px;
    padding-left: 20px;
}


@media (max-width: 991.98px) {

    .visitInfo_box .openTime_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .visitInfo_box .openTime_box .note {
        padding-left: 0px;
        padding-bottom: 0px;
    }

    .visitInfo_box .admissionFee_table th {
        min-width: 100px;
    }

    .visitInfo_box .admissionFee_table .target {
        min-width: 450px;
    }
}


@media (max-width: 767.98px) {

    .visitInfo_box .openTime_table {
        width: 100%;
    }

    .visitInfo_box .openTime_table th {
        min-width: initial;
    }

    .visitInfo_box .openTime_table .time {
        min-width: initial;
    }

    .visitInfo_box .admissionFee_table {
        width: 100%;
        box-shadow: none;
        border-radius: 0px;
    }

    .visitInfo_box .admissionFee_table th {
        display: none;
    }

    .visitInfo_box .admissionFee_table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        border-right: 1px solid #dadada6c;
        border-left: 1px solid #dadada6c;

        border-radius: 10px;
        overflow: hidden;
    }

    .visitInfo_box .admissionFee_table tbody tr:nth-last-child(1) {
        margin-bottom: 0;
    }

    .visitInfo_box .admissionFee_table .target {
        min-width: initial;
        border-bottom: none;
    }

    .visitInfo_box .admissionFee_table td {
        padding: 10px 10px;
        text-align: left;
        border-bottom: 1px dotted #dadada6c;
        padding-left: 105px;
        position: relative;
    }

    .visitInfo_box .admissionFee_table td::before {
        content: attr(data-title);
        position: absolute;
        left: 15px;
        font-weight: 500;
        font-size: 1.05rem;
    }

    .visitInfo_box .admissionFee_table .fee {
        border-left: none;
        border-right: none;
    }

    .visitInfo_box .admissionFee_table tr:nth-child(even) td {
        background-color: #fff;
    }

    .visitInfo_box .admissionFee_table tr td:nth-child(odd) {
        background-color: #f5f5f5;
    }

    .visitInfo_box .admissionFee_table tr td:nth-child(1) {
        background-color: #004F5B;
        color: #fff;
    }

    .visitInfo_box .admissionFee_table .target p {
        font-size: 1rem;
        padding-left: 18px;
    }
}



@media (max-width: 575.98px) {

    .visitInfo_box .admissionFee_table .target p {
        padding-left: 14px;
        background-size: 8px;
        background-position: left 13px;
    }
}



/* 常見問題 */
.faq {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.faq .faq_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.faq .faq_box .title_box {
    text-align: center;
    padding: 60px 0;
}

.faq .faq_box .faq_list {
    margin: 0;
    padding: 0;
    list-style: none;

    position: relative;
}

.faq .faq_box .faq_list::before {
    content: "";

    width: 70px;
    height: 50px;
    background-image: url(../img/mascot_7.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    top: -50px;
    right: 20px;
    transform: scaleX(-1);
}

.faq .faq_box .faq_list::after {
    content: "";

    width: 60px;
    height: 58px;
    background-image: url(../img/mascot_6.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    position: absolute;
    bottom: -70px;
    left: 20px;
    transform: scaleX(-1);
}

.faq .faq_box .faq_list .faq_li {
    margin: 0;
    margin-bottom: 30px;
    padding: 0px 0;
    background-color: #fff;
    border-radius: 10px;
    /* overflow: hidden; */

    /* border: 1px solid #00000009; */
    /* box-shadow: 2px 2px 3px #00000013; */

    transition: 0.3s;
}

.faq .faq_box .faq_list .faq_li:nth-last-child(1) {
    margin-bottom: 0;
}

.faq .faq_box .faq_list .faq_li.active {
    /* border: 1px solid #9BFFD5; */
    /* transform: scale(1.02); */
    /* box-shadow: 2px 2px 3px #00000016; */
}

.faq .faq_box .faq_list .faq_question {
    width: 100%;
    border: none;
    background-color: #fff;
    padding: 20px 20px;
    text-align: left;

    display: flex;
    align-items: center;

    font-size: 1.2rem;

    border: 1px solid #00000009;
    box-shadow: 2px 2px 3px #00000013;
    border-radius: 10px;
}

.faq .faq_box .faq_list .faq_li.active .faq_question {
    border-radius: 10px 10px 0 0;
    box-shadow: 1px 1px 3px #00000013;
    border: 1px solid #9BFFD5;
}

.faq .faq_box .faq_list .add_icon {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    position: relative;
}

.faq .faq_box .faq_list .line {
    width: 16px;
    height: 3px;
    border-radius: 10px;
    background-color: #0292DF;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    transition: 0.3s;
}

.faq .faq_box .faq_list .line.add {
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.faq .faq_box .faq_list .faq_li.active .line.add {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
}



.faq .faq_box .faq_list .faq_answer_wrapper {
    transform: translateY(-50px);
    transition: 0.3s;
    opacity: 0;
}

.faq .faq_box .faq_list .faq_answer_wrapper.open {
    transform: translateY(0);
    opacity: 1;
}


.faq .faq_box .faq_list .faq_answer {
    padding: 20px 20px;
    padding-left: 51px;
    border-top: 1px solid #9BFFD5;
    font-size: 1.1rem;

    transition: 0.3s;

    border: 1px solid #00000009;
    box-shadow: 2px 2px 3px #00000013;
    border-radius: 0 0 10px 10px;

    overflow: hidden;
}

.faq .faq_box .faq_list .faq_li.active .faq_answer {
    border: 1px solid #9BFFD5;
    border-top: none;
}

.faq .faq_box .faq_list p {
    margin: 0;
}

.faq .faq_box .faq_list .answer {
    line-height: 1.8rem;
}

.faq .faq_box .faq_list .answer a {
    display: inline-block;
    text-decoration: none;
    color: #0292DF;
    border: 1px solid #0292DF;
    border-radius: 5px;
    padding: 0 5px;
    margin: 0 5px;

    transition: 0.3s;
}

.faq .faq_box .faq_list .answer a:hover {
    background-color: #0292DF;
    color: #fff;
}








@media (max-width: 991.98px) {

    .faq_box .container {
        max-width: 100%;
    }
}


@media (max-width: 575.98px) {

    .faq .faq_box .title_box {
        padding: 30px 0;
    }

    .faq .faq_box .faq_list::before {
        width: 60px;
        height: 45px;
        top: -45px;
        right: 0;
    }

    .faq .faq_box .faq_list::after {
        bottom: -158px;
        left: 0px;
    }

    .faq .faq_box .faq_list .faq_answer {
        padding: 20px 20px;
    }
}

/* 表單 */
.form .form_box {
    padding: 30px;
    border-top: 1px solid #dadada6c;
}

.group {
    padding: 15px 0;
}

.group .form-label {
    font-size: 1.1rem;
    margin: 0;
    color: #231915;
}

.group .form-label .required {
    color: #e93c3c;
    font-size: 0.85rem;
}

.group .form-label .small {
    font-size: 0.9rem;
}

.group .notes {
    margin: 0;
    color: #e93c3c;
    font-size: 0.9rem;
}

.group .form-control {
    border: 1px solid #0094D8;
    transition: 0.3s;
    margin: 5px 0;
}

.group .form-control:focus-visible {
    box-shadow: none;
    outline: 3px dotted #e93c3c;
    border: 1px solid #e93c3c;
}

.group .form-control::placeholder {
    color: #a1a1a1;
    font-weight: 300;
}

/* 下拉選單 */
.group .form-select {
    border: 1px solid #0094D8;
    transition: 0.3s;
    margin: 5px 0;
}

.group .form-select:focus-visible {
    box-shadow: none;
    outline: 3px dotted #e93c3c;
    border: 1px solid #e93c3c;
}

/* 多選 單選 */
.group .check_box {
    display: flex;
    flex-wrap: wrap;

    margin: 0 -10px;
}

.group .form-check {
    margin: 5px 10px;
    padding: 0;

    display: flex;
    align-items: flex-start;
}

.group .form-check-input {
    margin: 0;
    padding: 0;
    flex-basis: 1em;
    margin-top: 5px;
}

.group .form-check-input:checked {
    background-color: #0292DF;
    border-color: #0292DF;
}

.group .form-check-label {
    margin: 0 5px;
}

.group .form-check-input[type=checkbox]+label {
    flex-basis: calc(100% - 1em);
}

.group .other {
    padding-top: 10px;
}

/* 文字框 */
.vendorIntroduction_box textarea {
    line-height: 1.5rem;
}

.group .word_limit {
    color: #e93c3c;
    font-size: 0.9rem;
    margin: 0;
    text-align: right;
    padding: 0 3px;
    transform: translateY(-5px);
}

/* 按鈕 */
.form_box .btn_box {
    text-align: center;
    padding: 20px 0;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid #dadada6c;
}

.form_box .send_btn {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 5px 15px;
    padding-bottom: 6px;
    min-width: 100px;
    transition: 0.3s;
}

.form_box .send_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}


@media (max-width: 767.98px) {

    .vendorIntroduction_box textarea {
        min-height: calc(1.5rem * 4);
    }
}

@media (max-width: 575.98px) {

    .vendorIntroduction_box textarea {
        min-height: calc(1.5rem * 6);
    }
}







/* 網站導覽 */
/* 選單 */
.siteMap_menu {
    margin: 0 -10px;
    padding: 10px 30px;
    list-style: none;

    border-top: 1px solid #dadada6c;

    display: flex;
    flex-wrap: wrap;
}

.siteMap_menu .menu_li {
    flex-basis: calc(100% / 4);
    padding: 20px 10px;
}

/* 第一層選單 */
.siteMap_menu .menu_link {
    display: inline-block;
    text-decoration: none;
    color: #231915;
    border: 1px solid #0292DF;
    background-color: #0292DF;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 10px;
    transition: 0.3s;
    font-size: 1.2rem;
}

.siteMap_menu .menu_link:hover {
    background-color: #00DB7E;
    border: 1px solid #00DB7E;
    color: #fff;
}

.siteMap_menu .menu_link.none {
    pointer-events: none;
}

/* 第二層選單 */
.siteMap_menu .children_box .children_ul {
    margin: 0 0px;
    padding: 0px;
    list-style: none;
}

.siteMap_menu .children_box .children_li {
    padding: 10px 0;
}

.siteMap_menu .children_link {
    display: inline-block;
    text-decoration: none;
    color: #231915;
    border: 1px solid #0292DF;
    border-radius: 10px;
    padding: 10px 15px;
    width: 100%;
    transition: 0.3s;
    font-size: 1.1rem;
}

.siteMap_menu .children_link:hover {
    background-color: #00DB7E;
    border: 1px solid #00DB7E;
    color: #fff;
}

.siteMap_menu .children_link p {
    margin: 0;
}


@media (max-width: 1199.98px) {

    .siteMap_menu .menu_li {
        flex-basis: calc(100% / 3);
    }
}

@media (max-width: 767.98px) {

    .siteMap_menu .menu_li {
        flex-basis: calc(100% / 2);
    }
}

@media (max-width: 575.98px) {

    .siteMap_menu .menu_li {
        flex-basis: 100%;
    }
}



/* 教案專區 */
.lessonPlans {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.lessonPlans .lessonPlans_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.lessonPlans .lessonPlans_box .title_box {
    text-align: center;
    padding: 60px 0;
}

.lessonPlans_box .box {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 2px 2px 3px #00000013;

    position: relative;
}

.lessonPlans_box .box::before {
    content: "";
    width: 120px;
    height: 40px;
    background-image: url(../img/mascot_2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: -40px;
    right: 0px;
}

/* 登入區塊 */
.lessonPlans_box .login_box {
    max-width: 500px;
    margin: 0 auto;
}

.lessonPlans_box .title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.lessonPlans_box .title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dadada6c;
}

.lessonPlans_box .group {
    padding: 10px 0;
}

.password_box .password {
    position: relative;
}

.password_box .password_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border: none;
    background-color: #0292DF;
    padding: 5px 10px;
    border-radius: .25rem;

    transition: 0.3s;
}

.password_box .password_btn.active {
    background-color: #00DB7E;
}

.lessonPlans_box .btn_box {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #dadada6c;
}

.lessonPlans_box .btn_box .login_btn {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 5px 15px;
    padding-bottom: 6px;
    min-width: 100px;
    transition: 0.3s;
}

.lessonPlans_box .btn_box .login_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}

/* 教案下載專區 */
.lessonPlans_box .lessonPlans_table {
    width: 100%;
    margin-top: 10px;
}

/* 表格標題 */
.lessonPlans_table th {
    width: 120px;

    background-color: #004F5B;
    padding: 15px 10px;
    color: #fff;

    border-left: 1px solid #dadada6c;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.lessonPlans_table th.title {
    width: calc(100% - 120px);
    border-left: none;
    text-align: left;
    padding: 15px 15px;
}

.lessonPlans_table th.file {
    width: 300px;
    text-align: left;
    padding: 15px 15px;

    transition: 0.3s;
}

/* 表格內文 */
.lessonPlans_table tr {
    border-bottom: 1px solid #dadada6c;
    transition: 0.3s;
}

.lessonPlans_table .lessonPlans_tr:nth-last-child(1) {
    border-bottom: none;
}

.lessonPlans_table tr:hover {
    background-color: #F2FFFA;
}

.lessonPlans_table td {
    padding: 10px 10px;
    text-align: center;
}

.lessonPlans_table td.title {
    font-size: 1.1rem;
    text-align: left;
    padding: 10px 15px;
    margin: 0;
}

.lessonPlans_table td.file {
    text-align: left;
    padding: 10px 15px;
}

/* 檔案區塊 */
/* 切換按鈕 */
.toggle_box {
    float: right;
}

.toggle_box .toggle_btn {
    display: flex;
    background-color: transparent;
    color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 20px;
    padding: 1px 15px;
    padding-bottom: 2px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.toggle_box .toggle_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}

.toggle_box.rwd .toggle_btn {
    display: none;
}

/* 圖示 */
.lessonPlans_table .file_box .file_link {
    display: inline-block;
    color: #231915;
    text-decoration: none;
    margin: 7px 12px;
    margin-right: 2px;

    transition: 0.3s;
}

.lessonPlans_table .file_link .file_icon {
    position: relative;
}

.lessonPlans_table .file_link .file_img {
    width: 40px;
}

.lessonPlans_table .file_link .fileExtension {
    margin: 0;

    position: absolute;
    top: 25px;
    right: 5px;

    background-color: #e93c3c;
    color: #fff;
    padding: 1px 1px;
    border-radius: 5px;
    width: 42px;
    text-align: center;
    font-size: 0.8rem;

    transition: 0.3s;
}

.lessonPlans_table .file_link:hover .fileExtension {
    background-color: #004F5B;
}

.lessonPlans_table .file_link .fileName {
    display: none;
}

/* 清單 */
.lessonPlans_table th.file.file_list {
    width: 400px;
}

.lessonPlans_table .file_list.file_box .file_link {
    display: flex;
    align-items: center;
}

.lessonPlans_table .file_list .file_link .file_img {
    width: 25px;
}

.lessonPlans_table .file_list .file_link .fileExtension {
    top: 14px;
    right: 3px;
    width: 32px;
    font-size: 0.6rem;
}

.lessonPlans_table .file_list .file_link .fileName {
    display: inline-block;
    margin: 0;
    font-size: 1.1rem;
    margin-left: 10px;
    border-bottom: 1px dotted #e93c3c;

    transition: 0.3s;
}

.lessonPlans_table .file_link:hover .fileName {
    color: #004F5B;
    border-bottom: 1px dotted #004F5B;
}



@media (max-width: 991.98px) {

    .lessonPlans .container {
        max-width: 100%;
    }

    .lessonPlans_table th {
        width: 100px;
    }

    .lessonPlans_table th.file {
        width: 250px;
    }

    .lessonPlans_table th.file.file_list {
        width: 300px;
    }
}

@media (max-width: 767.98px) {

    .lessonPlans_box .box {
        padding: 15px;
    }

    .toggle_box.rwd .toggle_btn {
        display: flex;
        color: #231915;
        margin: 10px 0;
        margin-right: 1px;
        padding-bottom: 3px;
    }

    .toggle_box.rwd .toggle_btn:hover {
        color: #fff;
    }

    .lessonPlans_table th {
        display: none;
    }

    .lessonPlans_table .lessonPlans_tr {
        display: flex;
        flex-direction: column;

        margin-bottom: 30px;
        border: none;
        border-left: 1px solid #dadada6c;
        border-right: 1px solid #dadada6c;
        border-radius: 5px;
        overflow: hidden;
    }

    .lessonPlans_table tr:hover {
        background-color: transparent;
    }

    .lessonPlans_table .lessonPlans_tr td {
        text-align: left;
        position: relative;
        padding-left: 110px;

        border-bottom: 1px solid #dadada6c;
        font-size: 1.1rem;
    }

    .lessonPlans_table .lessonPlans_tr td:nth-last-child(1) {
        border-bottom: none;
    }

    .lessonPlans_table .lessonPlans_tr td:nth-child(even) {
        background-color: #f5f5f5;
    }

    .lessonPlans_table td.title {
        background-color: #004F5B;
        color: #fff;
    }

    .lessonPlans_table td::before {
        content: attr(data-title);
        font-weight: 500;

        position: absolute;
        left: 15px;
    }
}


@media (max-width: 575.98px) {

    .lessonPlans_box .box::before {
        width: 90px;
        height: 35px;

        top: -35px;
    }

    .lessonPlans .lessonPlans_box .title_box {
        padding: 30px 0;
    }

    .lessonPlans_box .login_box {
        padding: 15px 20px;
    }

    .lessonPlans_box .title {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .lessonPlans_box .btn_box {
        padding-top: 20px;
        margin-top: 10px;
    }

    .lessonPlans_table .lessonPlans_tr td {
        padding-left: 100px;
    }

    .lessonPlans_table td::before {
        left: 10px;
    }

    .lessonPlans_table .file_list.file_box .file_link {
        margin: 7px 0;
    }

    .lessonPlans_table .file_list .file_link .file_icon {
        display: none;
    }

    .lessonPlans_table .file_list .file_link .fileName {
        margin-left: 0;
    }
}




/* 參觀預約 */
.reservation {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.reservation .reservation_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.reservation .reservation_box .title_box {
    text-align: center;
    padding: 60px 0;
    padding-bottom: 30px;
}

.reservation .text_box {
    padding: 15px;
    font-size: 1.1rem;
}

.reservation .text_box p {
    margin: 0;
}

/* 星期 */
.reservation .fc-theme-standard th {
    padding-bottom: 2px;
    font-size: 1.2rem;
}

/* 全部日期格 */
.reservation .fc .fc-daygrid-day-frame {
    border: 1px solid #daf4ff;
    background-color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
}

.reservation .fc .fc-daygrid-day-top {
    flex-basis: 100%;
}

.reservation .fc-daygrid-day .fc-daygrid-day-number {
    height: initial;
    padding: 0px;
}

.reservation .fc-daygrid-day a.fc-daygrid-day-number {
    padding: 8px;
    height: 100%;
}

/* 今天以後報名格 */
.reservation .reservation_bate a.fc-daygrid-day-number {
    color: #231915;
}

/* 截止報名格 */
.reservation .closingDate a.fc-daygrid-day-number {
    color: #a1a1a1;
    font-size: 1rem;
    font-weight: 400;
}

.reservation .closed-off .rest-label,
.reservation .closingDate .closed-label {
    display: flex;
    justify-content: center;
    align-items: center;

    height: calc(100% - 26px);
}

.reservation .closed-off.fc-daygrid-day-frame {
    background-color: #f5f5f5 !important;
    color: #a1a1a1 !important;
    border: 1px solid #e6e6e6 !important;

    font-weight: 400;
}

/* 當天日期格 */
.reservation .fc .fc-daygrid-day.fc-day-today {
    transform: scale(1);
}

.reservation .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    background-color: #fff;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame a {
    color: #231915;
}

/* 按鈕 */
.reservation .fc .fc-daygrid-day-number .btn_box {
    height: calc(100% - 26px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation .fc .fc-daygrid-day-number .btn_box .reservation_btn {
    border: 1px solid #00DB7E;
    background-color: transparent;
    color: #231915;
    border-radius: 10px;
    padding: 8px 5px;
    margin: 5px 0;
    font-size: 1rem;
    transition: 0.3s;
}

.reservation .fc .fc-daygrid-day-number .btn_box .reservation_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}

.reservation .fc .fc-daygrid-day-number .btn_box .reservation_full {
    pointer-events: none;
    background-color: #a1a1a1;
    color: #FFF;
    border: 1PX solid #a1a1a1;
}



@media (max-width: 991.98px) {

    .reservation .fc-daygrid-day a.fc-daygrid-day-number {
        padding: 5px;
    }
}

@media (max-width: 767.98px) {

    .reservation .fc-daygrid-day a .fc-daygrid-day-number {
        display: none;
    }

    .reservation .fc .fc-daygrid-day-number .btn_box,
    .reservation .closed-off .rest-label,
    .reservation .closingDate .closed-label {
        height: 100%;
        font-size: 1rem;
    }

    .reservation .fc .fc-daygrid-day-number .btn_box .reservation_btn {
        padding: 8px 3px;
    }
}




/* 預約表單 */
.reservation .reservation_date p {
    margin: 0;
    font-size: 1.1rem;

    display: inline-block;

    background-color: #0292DF;
    border-radius: 10px;
    color: #fff;
    padding: 5px 15px;
}

.reservation .reservation_date p span {
    font-size: 1.5rem;
    font-weight: 600;

    padding: 0px 5px;
    margin: 0px 5px;
    margin-bottom: 5px;
    transform: translateY(2px);

    display: inline-block;
}

/* 預約時間 */
.reservationTime_box {
    border-bottom: 1px dotted #0292DF;
    padding-bottom: 20px;
    margin-bottom: 5px;
}

.reservationTime_box .form-check-input {
    position: absolute;
    opacity: 0;
}

.reservationTime_box .form-check-label {
    margin: 0;
    font-size: 1.4rem;
    border: 1px solid #00DB7E;
    padding: 3px 22px;
    font-weight: 600;
    color: #231915;
    border-radius: 10px;

    background-image: url(../img/arrow_black.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: 20px center;
    padding-left: 40px;

    transition: 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.reservationTime_box .form-check-label:hover {
    transform: scale(1.05);
}

.reservationTime_box .form-check-input:checked+label {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;

    background-image: url(../img/arrow_white.svg);
    background-position: calc(100% + 20px) center;
    padding: 3px 31px 3px 31px;
    transform: scale(1.05);
}

.reservationTime_box .form-check-label.full {
    background-color: #D7D7D7;
    border: 1px solid #a1a1a1;
    cursor: no-drop;
}

.reservationTime_box .form-check-label.full:hover {
    transform: scale(1);
}

/* 打勾區塊 */
.reservation .requirement_box {
    border-top: 1px solid #dadada6c;
    margin-top: 10px;
    padding-top: 20px;
}

/* 連結按鈕 */
.reservation .rule_link {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #0292DF;
    background-color: #0292DF;
    color: #fff;
    padding: 0px 10px;
    padding-bottom: 2px;
    margin: 0 2px;
    border-radius: 5px;

    transition: 0.3s;
}

.reservation .rule_link:hover {
    background-color: #00DB7E;
    border: 1px solid #00DB7E;
}

.reservation .btn_box .send_btn {
    margin: 5px 10px;
    min-width: 120px;
}

@media (max-width: 575.98px) {

    .reservation .reservation_date p {
        flex-direction: column;
        align-items: flex-start;
    }

    .reservation .reservation_date p span {
        padding-left: 0;
    }
}



/* 預約查詢 */
.reservation .reservation_box .box {
    max-width: 550px;
    margin: 0 auto;

    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px;
    padding-bottom: 10px;
    border-radius: 30px;
    box-shadow: 2px 2px 3px #00000013;
}

.reservation .reservation_box .captcha_box {
    display: flex;
    align-items: center;

    margin: 5px 0;
}

.reservation .reservation_box .captcha_box .form-control {
    margin: 0;
    width: calc(100% - 100px);
}

.reservation .reservation_box .captcha_box .captcha {
    margin-left: 15px;
}

.reservation .reservation_box .captcha_box .captcha img {
    width: 100%;
}

@media (max-width: 767.98px) {
    .reservation .reservation_box .box {
        padding: 15px;
        padding-bottom: 0;
    }
}


/* 員工排班表 */
.shiftSchedule {
    background-image: url(../img/bg_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
}

.shiftSchedule .shiftSchedule_box {
    background-image: none;
    min-height: initial;

    padding: 30px 0;
    padding-bottom: 60px;
}

.shiftSchedule .shiftSchedule_box .container {
    max-width: 100%;
}

.shiftSchedule .shiftSchedule_box .title_box {
    text-align: center;
    padding: 60px 0;
    padding-bottom: 30px;
}


/* 排班表區塊 */
.shiftSchedule .schedule {
    margin: 30px 0;
}

/* 圖示說明 */
.shiftSchedule .iconItems_box {
    margin: 5px -10px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.shiftSchedule .iconItems_box li {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.shiftSchedule .iconItems_box li img {
    width: 28px;
    margin-right: 3px;
}

.shiftSchedule .iconItems_box li p {
    margin: 0;
    font-size: 1.1rem;
}


/* 排班表左右區塊 */
.shiftSchedule .schedule .schedule_fixed {
    display: flex;
    justify-content: center;
    border-radius: 3px;
}

/* 通用 table 样式 */
.shiftSchedule .schedule .name_table {
    width: 100%;
}

.shiftSchedule .schedule .name_table th,
.shiftSchedule .schedule .name_table td {
    width: 50px;
    padding: 8px 0px;
    padding-right: 3px;
}

.shiftSchedule .schedule .schedule_table th,
.shiftSchedule .schedule .schedule_table td {
    text-align: center;
    width: 50px;
    padding: 0;
}

/* 左側姓名欄固定 */
.shiftSchedule .schedule .name_wrapper {
    flex: 0 0 150px;
}

.shiftSchedule .schedule .name_table .name {
    font-size: 1.1rem;
    font-weight: 500;
}

.shiftSchedule .schedule .name_table .group {
    display: flex;
    align-items: center;
    padding: 0;
}

.shiftSchedule .schedule .name_table .userNum {
    border: none;
    background-color: #cce1e2;
    color: #000;
    border-radius: 3px;
    display: inline-block;
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    margin-right: 5px;
    font-size: 1rem;

    transition: 0.3s;
    box-shadow: 2px 2px 2px #00000020;
}

.shiftSchedule .schedule .name_table p {
    border: 1px solid #5e9e9e;
    border-radius: 3px;
    background-color: #eef9fb;
    width: 100%;
    padding: 0 5px;
    margin: 5px 0;
    padding-bottom: 1px;
    font-weight: 400;

    box-shadow: 2px 2px 2px #00000020;
}


/* 右側表格可滑動 */
.shiftSchedule .schedule .date_wrapper {
    overflow-x: auto;
}

/* hover一整列 */
.schedule_table tr {
    display: flex;

    transition: 0.3s;
    border: 1px solid transparent;
}

.shiftSchedule .schedule .schedule_table tbody tr:hover {
    background-color: #ddeaf3;
    border: 1px solid #5e9e9e;
    border-radius: 5px;
}

.shiftSchedule .schedule .schedule_table tbody tr:hover td .date_box {
    background-color: #ddeaf3;
}

/* 日期 */
.shiftSchedule .schedule .schedule_table .day_box {
    padding: 7px 0;
    margin: 0 1px;
    line-height: 1.2rem;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;

    transition: 0.3s;
}

.shiftSchedule .schedule .schedule_table th.holiday .day_box {
    background-color: #dd7478;
}

.shiftSchedule .schedule .schedule_table .weekday .day_box {
    background-color: #3c3b39;
}

.shiftSchedule .schedule .schedule_table .day_box .week {
    font-size: 0.8rem;
}

/* 格子 */
.shiftSchedule .schedule .schedule_table .date .date_box {
    height: 100%;
    padding: 5px 3px;
    margin: 0 3px;
}

.shiftSchedule .schedule .schedule_table .holiday .date_box {
    background-color: #f9edef;
}

.shiftSchedule .schedule .schedule_table .weekday .date_box {
    background-color: #efefef;
}

/* 格子按鈕 */
.shiftSchedule .schedule .schedule_table .date .date_btn {
    border: none;
    border: 1px solid transparent;
    background-color: transparent;
    padding: 0px;
    font-weight: 600;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
}

.shiftSchedule .schedule .schedule_table tbody .date_btn.active {
    background-color: #fff;
    border: 1px solid #5e9e9e;
}

.shiftSchedule .schedule .schedule_table tbody .date_btn:hover {
    background-color: #fff;
}

.shiftSchedule .schedule .schedule_table .date_btn img {
    width: 25px;
}

/* 格子不能選 */
.shiftSchedule .schedule .schedule_table tbody .disabled {
    pointer-events: none;
}

/* 班別選擇 */
.shiftSchedule .schedule .shift_picker {
    position: fixed;
    background: #fff;
    border: 1px solid #00000020;
    box-shadow: 2px 2px 2px #00000020;
    z-index: 1000;

    padding: 5px 10px;
    border-radius: 5px;
}

.shiftSchedule .schedule .shift_picker .option {
    display: flex;
    align-items: center;

    border: 1px solid #5e9e9e;
    padding: 3px 10px;
    border-radius: 5px;
    margin: 5px 0;

    cursor: pointer;

    transition: 0.3s;
}

.shiftSchedule .schedule .shift_picker .option:hover {
    background-color: #eef9fb;
}

.shiftSchedule .schedule .shift_picker .option img {
    width: 20px;
    margin-right: 3px;
}

/* 注意事項 文字區塊 */
.shiftSchedule .shiftSchedule_box .text_box {
    font-size: 1rem;
    margin: 20px 0;
}

.shiftSchedule .shiftSchedule_box .text_box p {
    margin: 0;
}

/* 按鈕 */
.shiftSchedule .schedule .btn_box {
    margin: 10px 0;
    text-align: center;
}

.shiftSchedule .schedule .btn_box .send_btn {
    background-color: #fff;
    border: 1px solid #00DB7E;
    border-radius: 5px;
    padding: 5px 15px;
    padding-bottom: 6px;

    margin: 5px 5px;
    min-width: 120px;

    transition: 0.3s;
}

.shiftSchedule .schedule .btn_box .send_btn:hover {
    background-color: #0292DF;
    border: 1px solid #0292DF;
    color: #fff;
}

@media (max-width: 575.98px) {

    .shiftSchedule .iconItems_box {
        flex-wrap: wrap;
        margin: 0 -5px;
    }

    .shiftSchedule .iconItems_box li {
        padding: 0 5px;
    }

    .shiftSchedule .iconItems_box li img {
        width: 22px;
    }

    .shiftSchedule .iconItems_box li p {
        font-size: 0.9rem;
    }
}

/* 志工排班表 */
.shiftSchedule .volunteerName_box h3 {
    font-size: 1.5rem;
    margin: 0;
}