:root {
    /*主色輔色 改色*/
    --main-color: #00FF00;

    --sd-orange: #FF8441;
    --sd-blue: #009FE8;
    --sd-green: #00FF00;
    --sd-yellow: #FFDE6C;
    --sd-green-sub: #00c32e;
    --sd-blue-sub: #C8CBFF;

    /*勿動*/
    --white-color: #fff;
    --black-color: #1e1e1e;
}

.mbr-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

* {
    font-family: 'Oxygen', 'Noto Sans TC', sans-serif;
    /* cursor: url('../img/icon-arrow.svg'), auto; */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

.funnel-display {
    font-family: "Funnel Display", sans-serif;
}

.cormorant-garamond {
    font-family: "Cormorant Garamond", serif;
}

.times-serif {
    font-family: 'Times New Roman', Times, serif;
}

.icon-img {
    width: 80px;
}

/* nav ---------- */
.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #D0D0D0;
}

.nav-item a {
    color: var(--black-color);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.nav-link.disabled,
.nav-link:disabled {
    color: #D9D9D9;
}

.nav-item a:hover {
    color: var(--sd-green-sub);
    border: 2px solid var(--sd-green-sub);
}

.btn-ticket.green {
    background-color: var(--sd-green);
    color: var(--black-color);
    border: solid 2px var(--sd-green);
    border-radius: 0;
    padding: 0.75rem 1rem !important;
}

.btn-ticket.blue {
    background-color: var(--sd-blue);
    color: var(--black-color);
    border: solid 2px var(--sd-blue);
    border-radius: 0;
    padding: 0.75rem 1rem !important;
}

.btn-ticket.green:hover,
nav .btn-ticket.green:focus {
    background-color: #00c32e;
    color: var(--white-color);
    border: solid 2px #00c32e;
}

nav .btn-ticket.blue:hover,
nav .btn-ticket.blue:focus {
    background-color: #0085c3 !important;
    color: var(--white-color);
    border: solid 2px #0085c3 !important;
}


nav .nav-link {
    margin-top: 0;
    margin-bottom: 0;
}

nav .mainlogo {
    display: flex;
    align-items: center;
}

nav .mainlogo img {
    max-width: 160px;
    text-align: left;
    padding-right: 5px;
}

nav .mainlogo img.school {
    max-width: 180px;
}

@media (max-width: 768px) {
    nav .navbar-collapse {
        display: flex;
    }

    nav .navbar-collapse .navbar-nav {
        width: 100%;
    }

    nav .nav-item {
        justify-content: center;
    }

    .nav-item a {
        font-size: 1rem;
        line-height: 1rem;
        padding: 1.25rem 0;
    }

    .nav-item a .sm-txt,
    .nav-item p .sm-txt {
        font-size: 13px;
    }

    .navbar-toggler,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        padding: 2px;
        border: 0px;
    }

    .navbar img {
        width: 130px;
    }

    nav .mainlogo img.school {
        max-width: 130px;
    }

    nav .mainlogo img {
        max-width: 90px;
        height: auto;
    }

}

/* countdown ---------- */

#countdown {
    background: linear-gradient(to right, #0DFF16, #E6FE14, #EE87B4);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.25rem;
    background-blend-mode: hard-light;
    -webkit-animation: hue-rotate 3s linear infinite;
    animation: hue-rotate 3s linear infinite;
    z-index: 999;
}

@-webkit-keyframes hue-rotate {
    from {
        -webkit-filter: hue-rotate(0);
        -moz-filter: hue-rotate(0);
        -ms-filter: hue-rotate(0);
        filter: hue-rotate(0);
    }

    to {
        -webkit-filter: hue-rotate(360deg);
        -moz-filter: hue-rotate(360deg);
        -ms-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

@keyframes hue-rotate {
    from {
        -webkit-filter: hue-rotate(0);
        -moz-filter: hue-rotate(0);
        -ms-filter: hue-rotate(0);
        filter: hue-rotate(0);
    }

    to {
        -webkit-filter: hue-rotate(360deg);
        -moz-filter: hue-rotate(360deg);
        -ms-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

#countdown .dash {
    /* margin-left: 20px; */
    padding: 10px;
    width: fit-content;
}

#countdown .dash .digit,
.dash_title {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #555;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#countdown .dash .digit {
    margin-right: 5px;
    border-radius: 3px;
    background: #333;
    color: #FFF;
}

#countdown .dash .digit {
    position: relative;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

#countdown .dash .digit div.top,
#countdown .dash .digit div.bottom {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
}

#countdown a {
    padding: 0rem 1.5rem;
    background: var(--white-color);
    color: #000;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    border-radius: 40px;
    letter-spacing: 1px;
    width: 150px;
    justify-content: center;
}

#countdown a:hover {
    background: var(--black-color);
    color: #fff;
}

#countdown a:hover svg path {
    fill: var(--white-color);
}

@media screen and (max-width: 768px) {
    #countdown {
        padding: 0.75rem 0.25rem;
    }

    #countdown .dash {
        padding: 0px;
        width: fit-content;
    }

    #countdown a {
        padding: 0.5rem 1.5rem;
    }
}




/* main ---------- */
#main {
    background: url(../img/DBA/main-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 7rem 0;
}

#main .title-box {
    position: relative;
    z-index: 5;
}

#main .main-bgl {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 30%;
    height: 100%;
}

#main .main-bgl .box-1 {
    background: linear-gradient(to right, #1B1464, #29ABE2 33%, #85a8d800);
    height: 100%;
    width: 100%;
}

#main .main-bgl .box-2 {
    background: linear-gradient(to right, #1B1464, #29ABE2 33%, #85a8d800);
    height: 80%;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 20%;
    animation-delay: .25s;
}

#main .main-bgl .box-3 {
    background: linear-gradient(to right, #1B1464, #29ABE2 33%, #85a8d800);
    height: 60%;
    width: 100%;
    position: absolute;
    top: 20%;
    left: 40%;
    animation-delay: .5s;
}

#main .main-bgr {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 30%;
    height: 100%;
}

#main .main-bgr .box-4 {
    background: linear-gradient(to left, #1B1464, #29ABE2 33%, #85a8d800);
    height: 100%;
    width: 100%;
}

#main .main-bgr .box-5 {
    background: linear-gradient(to left, #1B1464, #29ABE2 33%, #85a8d800);
    height: 80%;
    width: 100%;
    position: absolute;
    top: 10%;
    right: 20%;
    animation-delay: .25s;
}

#main .main-bgr .box-6 {
    background: linear-gradient(to left, #1B1464, #29ABE2 33%, #85a8d800);
    height: 60%;
    width: 100%;
    position: absolute;
    top: 20%;
    right: 40%;
    animation-delay: .5s;
}


@media screen and (max-width: 768px) {
    #main {
        padding: 4rem 0 12rem;
    }

    #main .main-bgr {
        display: none;
    }

    #main .main-bgl {
        width: 100%;
        height: 30%;
        top: unset;
        bottom: 0;
    }

    #main .main-bgl .box-1 {
        background: linear-gradient(to top, #1B1464, #29ABE2 33%, #85a8d800);
        height: 100%;
        width: 100%;
        animation-name: fadeInDown;
    }

    #main .main-bgl .box-2 {
        background: linear-gradient(to top, #1B1464, #29ABE2 33%, #85a8d800);
        height: 100%;
        width: 80%;
        top: unset;
        bottom: 30%;
        left: 10%;
        animation-delay: .25s;
        animation-name: fadeInDown;

    }

    #main .main-bgl .box-3 {
        background: linear-gradient(to top, #1B1464, #29ABE2 33%, #85a8d800);
        height: 100%;
        width: 60%;
        top: unset;
        bottom: 60%;
        left: 20%;
        animation-delay: .5s;
        animation-name: fadeInDown;

    }
}

/* about ---------- */

/* DBAinfo ---------- */
#DBAinfo ul li {
    list-style: circle;
}

#DBAinfo a {
    color: #007AFF;
    text-decoration: underline;
}

#DBAinfo a:hover {
    background: #007AFF;
    color: var(--white-color);
}

#DBAinfo a.agester,
#register a.agester {
    padding: 0.5rem 1.5rem;
    background: #1B1B1B;
    color: var(--white-color);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    letter-spacing: 1px;
    width: 150px;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
}

#DBAinfo a.agester svg path,
#register a.agester svg path {
    fill: var(--white-color);
}

#DBAinfo a.agester:hover,
#register a.agester:hover {
    background: #007AFF;
    color: var(--white-color);
}

#DBAinfo #benefit .benefit-box {
    background-color: #F6F6F6;
    border-radius: 1rem;
}

#DBAinfo #benefit img {
    aspect-ratio: 1 / 1;
    width: 60px;
    object-position: center;
    object-fit: contain;
}

#DBAinfo #benefit .benefit-box h5 {
    color: #007AFF;
}

@media screen and (max-width: 768px) {

    #DBAinfo .cta,
    #register .cta {
        width: 100%;
    }

    #DBAinfo .cta a.agester,
    #register .cta a.agester {
        width: 100%;
        padding: 1rem;
    }

    #DBAinfo #benefit {
        background-color: #F6F6F6;
        margin-top: 2rem;
    }
}

/* schedule ---------- */
#schedule .sub-title {
    aspect-ratio: 1 / 1;
    background-color: var(--white-color);
    color: #1B1B1B;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin: auto;
    padding: .5rem;
    border: 1px solid #1b1b1b;
    margin-bottom: .5rem;
}

#schedule .sub-title.focus {
    background-color: #007AFF;
    color: var(--white-color);
}

#schedule .box h6 {
    color: #404040;
    font-weight: 700;
}

#schedule .box p {
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    #schedule .sub-title {
        aspect-ratio: unset;
        background-color: unset;
        border-radius: 0;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: start;
        margin: 0;
        padding: 0rem;
        border: 0;
        margin-bottom: .5rem;
    }

    #schedule .box {
        background-color: #F6F6F6;
        padding: .5rem;
        margin-bottom: .5rem;
        border-radius: .5rem;
    }

    #schedule .sub-title.focus {
        background-color: unset;
        color: #1B1B1B;
    }
}

/* events---------- */
#events .sub-info {
    color: #0d6efd;
    font-size: 20px;
}

#events .eventmodal {
    background: #EEFFFF;
    border-radius: 6px;
    padding: 10px;
    width: 19%;
}

#events .eventmodal img {
    aspect-ratio: 1 / 1;
}

#events .eventmodal .read-more {
    padding: 0.5rem 1.5rem;
    background: #1B1B1B;
    color: var(--white-color);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
}

#events .eventmodal .read-more svg path {
    fill: var(--white-color);
}

#events .eventmodal:hover {
    background: #1B1464;
    color: var(--white-color);
}

#events .eventmodal:hover .read-more {
    background: #007AFF;
    color: var(--white-color);
}

@media screen and (max-width: 768px) {
    #events .eventmodal {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #events .eventmodal .read-more{
        width: fit-content;
        padding: 0.5rem;
    }

    #events .sub-info {
        font-size: 16px;
    }

    #events .eventmodal.runner {
        background: url(../img/DBA/modal-01-2.png), url(../img/DBA/modal_bg.jpg);
        background-repeat: no-repeat;
        background-position: right center, center;
        background-size: 100%, cover;
    }

    #events .eventmodal.market {
        background: url(../img/DBA/modal-02-2.png), url(../img/DBA/modal_bg.jpg);
        background-repeat: no-repeat;
        background-position: right center, center;
        background-size: 100%, cover;
    }

    #events .eventmodal.influential {
        background: url(../img/DBA/modal-03-2.png), url(../img/DBA/modal_bg.jpg);
        background-repeat: no-repeat;
        background-position: right center, center;
        background-size: 100%, cover;
    }

    #events .eventmodal.sustainability {
        background: url(../img/DBA/modal-04-2.png), url(../img/DBA/modal_bg.jpg);
        background-repeat: no-repeat;
        background-position: right center, center;
        background-size: 100%, cover;
    }

    #events .eventmodal.game {
        background: url(../img/DBA/modal-05-2.png), url(../img/DBA/modal_bg.jpg);
        background-repeat: no-repeat;
        background-position: right center, center;
        background-size: 100%, cover;
    }
}

/* ---------- modal-header ---------- */
#events .modal .modal-content .modal-header {
    padding: 3rem 1rem;
    justify-content: space-between;
    align-items: start;
}

#events .modal .modal-content .modal-header.modal1 {
    background: url(../img/DBA/modal-01.png), url(../img/DBA/modal_bg.jpg);
    background-repeat: no-repeat;
    background-position: right center, center;
    background-size: 70%, cover;
}

#events .modal .modal-content .modal-header.modal2 {
    background: url(../img/DBA/modal-02.png), url(../img/DBA/modal_bg.jpg);
    background-repeat: no-repeat;
    background-position: right center, center;
    background-size: 70%, cover;
}

#events .modal .modal-content .modal-header.modal3 {
    background: url(../img/DBA/modal-03.png), url(../img/DBA/modal_bg.jpg);
    background-repeat: no-repeat;
    background-position: right center, center;
    background-size: 70%, cover;
}

#events .modal .modal-content .modal-header.modal4 {
    background: url(../img/DBA/modal-04.png), url(../img/DBA/modal_bg.jpg);
    background-repeat: no-repeat;
    background-position: right center, center;
    background-size: 70%, cover;
}

#events .modal .modal-content .modal-header.modal5 {
    background: url(../img/DBA/modal-05.png), url(../img/DBA/modal_bg.jpg);
    background-repeat: no-repeat;
    background-position: right center, center;
    background-size: 70%, cover;
}

#events .modal .modal-content a.agester {
    padding: 0.5rem 1.5rem;
    background: var(--white-color);
    color: #1B1B1B;
    border: 1px solid #1B1B1B;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    letter-spacing: 1px;
    width: 150px;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
}

#events .modal .modal-content a.agester:hover svg path {
    fill: var(--white-color);
}

#events .modal .modal-content a.agester:hover {
    background: #007AFF;
    color: var(--white-color);
}

@media screen and (max-width: 768px) {

    #events .modal .modal-content .modal-header.modal1,
    #events .modal .modal-content .modal-header.modal2,
    #events .modal .modal-content .modal-header.modal3,
    #events .modal .modal-content .modal-header.modal4,
    #events .modal .modal-content .modal-header.modal5 {
        background-size: 90%, cover;
    }

    #events .modal .modal-content .modal-header {
        padding: 2rem 1rem;
    }

    #events .modal .modal-content a.agester {
        display: none;
    }
}

/* ---------- modal-body ---------- */
#events .modal .modal-content .modal-body {
    background: linear-gradient(to right, #ffffff7c, #ffffffb3, #ffffff7c, #fff), url(../img/DBA/modal_bg.jpg);
}

#events .modal .modal-content .modal-body .h-light {
    color: #007AFF;
}

#events .modal .modal-content .modal-body.modal2 .h-light {
    color: #F7568E;
}

#events .modal .modal-content .modal-body.modal3 .h-light {
    color: #36A8AA;
}

#events .modal .modal-content .modal-body.modal4 .h-light {
    color: #21A86C;
}

#events .modal .modal-content .modal-body.modal5 .h-light {
    color: #FFBB00;
}


#events .modal .modal-content .modal-body .body-info {
    background-color: var(--white-color);
    padding: 1rem;
}

#events .modal .modal-content .modal-body h2 {
    font-size: 40px;
    font-weight: 700;
}

#events .modal .modal-content .modal-body .percent-card h4 {
    font-size: 1.35rem;
}

#events .modal .modal-content .modal-body.modal1 .percent-card.focus {
    background: linear-gradient(to bottom, #007AFF 90%, #002443);
    color: var(--white-color);
}

#events .modal .modal-content .modal-body.modal1 .percent-card {
    background: linear-gradient(to bottom, #9AD0FF 90%, #007AFF);
    color: var(--black-color);
    transform: scale(0.95);
    align-content: start;
}

#events .modal .modal-content .modal-body.modal2 .percent-card.focus {
    background: linear-gradient(to bottom, #F7568E 90%, #82153B);
    color: var(--white-color);
}

#events .modal .modal-content .modal-body.modal2 .percent-card {
    background: linear-gradient(to bottom, #FFC9DC 90%, #F7568E);
    color: var(--black-color);
    transform: scale(0.95);
    align-content: start;
}

#events .modal .modal-content .modal-body.modal3 .percent-card.focus {
    background: linear-gradient(to bottom, #36A8AA 90%, #0C5A5B);
    color: var(--white-color);
}

#events .modal .modal-content .modal-body.modal3 .percent-card {
    background: linear-gradient(to bottom, #CFEEEF 90%, #36A8AA);
    color: var(--black-color);
    transform: scale(0.95);
    align-content: start;
}

#events .modal .modal-content .modal-body.modal4 .percent-card.focus {
    background: linear-gradient(to bottom, #21A86C 90%, #0D422A);
    color: var(--white-color);
}

#events .modal .modal-content .modal-body.modal4 .percent-card {
    background: linear-gradient(to bottom, #ACDCC7 90%, #21A86C);
    color: var(--black-color);
    transform: scale(0.95);
    align-content: start;
}

#events .modal .modal-content .modal-body.modal5 .percent-card.focus {
    background: linear-gradient(to bottom, #FBDF0E 90%, #FFAE00);
    color: var(--black-color);
}

#events .modal .modal-content .modal-body.modal5 .percent-card {
    background: linear-gradient(to bottom, #FFF25B 90%, #E7CC00);
    color: var(--black-color);
    transform: scale(0.95);
    align-content: start;
}

#events .modal .modal-content a.agester.phone {
    display: none;
}

@media screen and (max-width: 768px) {

    #events .modal .modal-content .modal-body.modal1 .percent-card.focus {
        background: #007AFF;
    }

    #events .modal .modal-content .modal-body.modal1 .percent-card {
        background: #9AD0FF;
        transform: scale(1);
    }

    #events .modal .modal-content .modal-body.modal2 .percent-card.focus {
        background: #F7568E;
    }

    #events .modal .modal-content .modal-body.modal2 .percent-card {
        background: #FFC9DC;
        transform: scale(1);
    }

    #events .modal .modal-content .modal-body.modal3 .percent-card.focus {
        background: #36A8AA;
    }

    #events .modal .modal-content .modal-body.modal3 .percent-card {
        background: #CFEEEF;
        transform: scale(1);
    }


    #events .modal .modal-content .modal-body.modal4 .percent-card.focus {
        background: #21A86C;
    }

    #events .modal .modal-content .modal-body.modal4 .percent-card {
        background: #ACDCC7;
        transform: scale(1);
    }


    #events .modal .modal-content .modal-body.modal5 .percent-card.focus {
        background: #FBDF0E;
    }

    #events .modal .modal-content .modal-body.modal5 .percent-card {
        background: #FFF25B;
        transform: scale(1);
    }


    #events .modal .modal-content .modal-body .percent-card p {
        font-size: 16px;
    }

    #events .modal .modal-content a.agester.phone {
        display: flex;
        margin-top: 1rem;
    }
}

/* marquee---------- */
/* #marquee {
    background: var(--sd-orange-sub);
    border-top: var(--black-color) 6px solid;
    border-bottom: var(--black-color) 6px solid;
} */

.ytvideo {
    position: absolute;
    top: calc(50% - 182.5px);
    left: calc(50% - 325px);
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .ytvideo {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: 220px;
        z-index: 10;
        margin: 1rem 0;
    }
}

/* register ---------- */


#register ul li {
    list-style: none;
    margin-top: 0.5rem;
}


#register .Registration ul li {
    list-style: disc;
    margin: 0.25rem 0;
}

#register .Registration .item>div,
#register .Registration .item>ul {
    background: #F2F2F2;
    border-radius: .5rem;
    padding: .5rem;
}

#register .Registration .item>ul {
    padding-left: 3rem;
    height: 100%;
    margin: 0;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

#register .Registration .item a {
    text-decoration: underline;
}

#register .Registration .item h6 {
    color: #717171;
}

#register .submitted {
    position: relative;
}

#register .submitted::after {
    background: #0173D6;
    width: 110%;
    height: 110%;
    content: '';
    position: absolute;
    z-index: -1;
    left: -5%;
    top: -5%;
}

#register .submitted h2 {
    background: var(--white-color);
    display: inline;
    padding: 3px 6px;
}

#register .submitted ul {
    margin: 1rem 0;
    padding: 0;
    gap: 3px;
    display: flex;
    flex-wrap: wrap;
    color: var(--white-color);
}

#register .submitted ul li {
    width: 100%;
}

@media screen and (max-width: 768px) {
    #register .Registration .item {
        background: #F2F2F2;
        border-radius: .5rem;
    }

    #register .Registration .item>ul {
        height: max-content;
    }

}

/* FAQ ---------- */
#FAQ h3 {
    font-size: 1.4rem;
    padding-bottom: 10px;
}

#FAQ #FAQ-body .accordion-item {
    border: unset;
    background: transparent;
}

#FAQ #FAQ-body .accordion-body p a {
    color: #007AFF;
    text-decoration: underline;
}

#FAQ #FAQ-body .accordion-body p a:hover {
    background: #007AFF;
    color: var(--white-color);
}

#FAQ #FAQ-body .accordion-item {
    border: none;
    padding: 1% 0;
}

#FAQ #FAQ-body .accordion-button {
    background-color: #f2f2f2;
    border-radius: 12px;
}

#FAQ #FAQ-body .accordion-button:focus {
    background-color: #f2f2f2;
    border-radius: 12px;
}

#FAQ #FAQ-body .accordion-button:not(.collapsed) {
    color: var(--black-color);
    background-color: #f2f2f2;
    border-radius: 12px 12px 0px 0px;
}

#FAQ #FAQ-body .accordion-body {
    padding: 1% 2% 0.5% 2%;
    background-color: #f2f2f2;
    border-radius: 0px 0px 12px 12px;
}

#FAQ #FAQ-body .accordion-body ul li p {
    color: #727272;
}

/* judge ---------- */
#judge .announcement {
    background: #1B1B1B;
    color: var(--white-color);
    padding: 1rem;
    margin-top: 1.5rem;
}

/* info ---------- */
#info {
    background: #717171;
    color: var(--white-color);
    letter-spacing: 1px;
}

#info a {
    text-decoration: underline;
    color: var(--white-color);
}

#register .Registration .item a:hover,
#info a:hover {
    background: #007AFF;
    color: var(--white-color);
}

/* review ---------- */
#review {
    background: #D9D9D9;
    color: var(--black-color);
}

#review ul a {
    border: 2px solid transparent;
}

#review ul a li {
    color: var(--black-color);
}

#review ul a:hover {
    border: 2px solid var(--black-color);
    background: var(--black-color);
}

#review ul a:hover li {
    color: var(--white-color);
}

/*footer改色 ---------- */

#footer {
    position: absolute;
    width: 100%;
    background-color: #404040;
    color: var(--white-color);
    padding-bottom: 60px;
}

#footer a {
    color: var(--white-color);
}

#footer a:hover {
    color: var(--sd-green);
    transition: .25s all linear;
}

#footer .scrolltop {
    background: var(--sd-green);
    color: var(--black-color);
    opacity: .9;
}

@media (max-width: 768px) {
    #footer {
        padding: 18px 0 150px 0;
    }
}

#trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* 不干擾其他點擊 */
    z-index: 0;
    overflow: hidden;
}

#trail-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: none;
}