@charset "UTF-8";

/* ------------------------------------------ reset
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

body {
    width: 100%;
    position: relative;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
}


html,
body,
div,
span,
p,
ul,
li,
input,
table,
thead,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}


p {
    color: #1C1C1C;
    line-height: 32px;
}


hr {
    background-color: rgb(209, 208, 208);
    height: 1px;
    border: none;
    margin: 26px 0;
}

/* ------------------------------------------ utility
--------------------------------------------- */

.row {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.w20 {
    width: 20%;
}

.w30 {
    width: 30%;
}

.w50 {
    width: 50%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

@media screen and (max-width: 786px) {
    .text-center_m {
        text-align: center;
    }
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.col-1-4 {
    padding: 0 16px;
    width: 25%;
}

.col-1-3 {
    padding: 0 16px;
    width: 33%;
}

.col-1-2 {
    padding: 0 16px;
    width: 50%;
}

.col-2-3 {
    padding: 0 16px;
    width: 60%;
}

.col-3-4 {
    padding: 0 16px;
    width: 75%;
}

.col-4-5 {
    padding: 0 16px;
    width: 80%;
}

.col {
    padding: 0 16px;
    width: 100%;
}


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

    .col-1-2,
    .col-1-4,
    .col-1-3,
    .col-3-4,
    .col-2-3,
    .w70,
    .w30 {
        width: 100%;
    }
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 5rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pr-4 {
    padding-right: 4rem;
}

.vertical-md {
    vertical-align: middle;
}

.d-flex {
    display: flex;
    display: -webkit-flex;
}

.inline-block {
    display: inline-block;
}

.margin-auto {
    margin: 0 auto;
}

.align-item-center {
    align-items: center;
}

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

.justify-content-evenly {
    justify-content: space-evenly
}


.show_desktop {
    display: block;
}

.show_mobile {
    display: none;
}

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

    .show_desktop {
        display: none;
    }

    .show_mobile {
        display: block;
    }
}

/* ------txt------- */
.hightlight-orange {
    color: #EF7800;
    font-weight: bold;
}

.txt-link {
    color: #00a19b;
    text-decoration: underline;
}

.txt-link:hover {
    color: #1cada4;
    text-decoration: underline;
}

.txt-remark {
    color: #7c7c7c;
    font-size: .9rem;
    padding-top: .5rem;
    line-height: 1.3rem;
}

/* ------------------------------------------ component 
--------------------------------------------- */

.wrapper {
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.container_fluid {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    position: relative;
}

.container {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}


.mainTitle {
    font-size: 42px;
    font-weight: bold;
    color: #1C1C1C;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 1px #d4d4d4;

}

.mainTitle+p {
    margin-top: 6px;
    font-size: 22px;
    color: #1C1C1C;
    text-shadow: 0 0 1px #d4d4d4;
}

@media screen and (max-width: 786px) {
    .mainTitle {
        font-size: 36px;
        line-height: 45px;
    }

    .mainTitle+p {
        font-size: 20px;
    }

}

@media screen and (max-width: 576px) {
    .mainTitle {
        font-size: 32px;
        line-height: 45px;
    }

    .mainTitle+p {
        font-size: 18px;
    }

@media screen and (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
}

}

.seo {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

/*--scroll-down--*/
.scroll-down {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding-top: 25px;
    text-align: center;
    bottom: 8px;
    z-index: 2;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -2px;
    width: 1px;
    height: 42px;
    background: #012B4E;
    ;
    animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    -ms-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    -webkit-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
}

.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 38px;
}

.arrow-down:after {
    content: '';
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 7px;
    height: 7px;
    bottom: -2px;
    background: #012B4E;
    border-radius: 50%;
}

.scroll-title, .scroll-title:hover {
    border-bottom: 1px solid #012B4E;
    /* border-radius: 8px;
    padding: 4px 8px; */
    display: block;
    text-transform: uppercase;
    color: #012B4E;
    font-size: 16px;
    margin-top: 10px;
    transition: .2s;
}

.scroll-title:hover {
    background: #F4F8FA;
}

.green_b{
    color:#00a19b;
    font-weight: bold;
}
.red{
    color: #ef4343;
}

em{
    font-style: normal;
}
/*--btn--*/
.btn {
    display: inline-block;
    height: 44px;
    font-size: 18px;
    border-radius: 4px;
    line-height: 44px;
    padding: 0px 32px;
    text-align: center;
    vertical-align: middle;
    transition: .2s;
    background: #00B6A4;
    color: #fff;
    letter-spacing: 1px;
}

.btn:hover {
    background: #00c0ad;
    color: #fff;
}

.card .btn {
    padding: 0 18px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    font-size: 18px;
}

.btn .arrow {
    border: solid #ffffff;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    margin-left: 8px;
    margin-bottom: 3px;
}

.btn-group{
    display:flex;
    gap:12px;
    margin-top:20px;
}


@media screen and (max-width: 768px) {
    .btn {
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        padding: 0px 24px;
    }

    .card .btn {
        font-size: 16px;
    }
        .btn-group{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        margin-top:20px;
    }

    .btn-group .btn,
    .btn-group .notice{
        width:280px;
        text-align:center;
    }
}



/*--card--*/
.card {
    width: 100%;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 14px;
    margin-top: 16px;
    margin-bottom: 32px;
    box-shadow: 0 0 4px #C2D2DF;
    text-align: center;
}

.card .title {
    width: 200px;
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    background: #4b4b4b;
    position: absolute;
    border-radius: 10px;
    top: -20px;
    right: calc(50%);
    transform: translateX(50%);
    -ms-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -o-transform: translateX(50%);
    line-height: 40px;
}

@media screen and (max-width: 576px) {
    .card {
        height: auto;
    }

    .card .title {
        font-size: 16px;
        width: 160px;
        height: 38px;
    }
}

table {
    width: 100%;
    border: solid 1px #D0D0D0;
    margin-top: 15px;
    font-size: 14px;
}

table th {
    font-weight: bold;
}

table th, table td {
    padding: 6px 0;
}

table tr:nth-child(even) {
    background: #F5F5F5;
}

@media screen and (max-width: 376px) {
    table {
        font-size: 13px;
    }
}

/* ------------------------------------------ kv 
--------------------------------------------- */

.kv-bg {
    padding-top: 50px;
    width: 100%;
    display: block;
}

.kv-bg_m {
    display: none;
}

@media screen and (max-width: 576px) {
    .kv-bg {
        display: none;
    }

    .kv-bg_m {
        padding-top: 50px;
        width: 100%;
        display: block;
    }

    .kv-title {
        bottom: 20px;
        top: unset;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
    }

    .kv-title img {
        max-width: 220px;
    }

    .kv-title .txt {
        font-size: 16px;
    }
}

/* -section--- */
section {
    padding-top: 80px;
    overflow: hidden;
    height: auto;
    font-size: 18px;
    line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
    section {
        padding-top: 65px;
        /* padding-bottom: 50px; */
        font-size: 16px;
        line-height: 1.6rem;
    }
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title .title {
    font-size: 34px;
    font-weight: bold;
    color: #007A7A;
    position: relative;
    display: inline-block;
}


.section-title .title+p {
    color: #007A7A;
    margin-top: 12px;
    font-size: 20px;
}

@media screen and (max-width:1200px) {
    .section-title .title {
        font-size: 32px;
    }
}

@media screen and (max-width: 786px) {
    .section-title {
        margin-bottom: 70px;
    }

    .section-title .title {
        font-size: 26px;
    }

    /* .section-title .title+p {
        margin-top: 6px;
        margin-bottom: 20px;
        font-size: 18px;
    } */
}

@media screen and (max-width: 376px) {
    .section-title .title {
        letter-spacing: 0px;
    }
    .section-title .title+p {
        font-size: 16px;
    }
}

.section-title .title::before {
    content: "";
    background: url(../img/title-decro.png) no-repeat center;
    background-size: contain;
    width: 30px;
    height: 28px;
    position: absolute;
    left: -24px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    animation: lighten 2.5s infinite;
}

.section-content {
    margin: 0 auto;
    /* padding-top: 50px; */
}

/* .section-content .content-img {
    max-width: 45%;
}

.section-content .content-img img {
    width: 100%;
} */

.section-content .content-txt {
    max-width: 100%;
    /* padding: 20px; */
}

.section-content .content-txt .title {
    font-weight: bold;
    font-size: 20px;
    color: #00a19b;
    margin-bottom: 6px;
}

.section-content .content-txt .title-mark {
    color: #00a19b;
    margin-bottom: 10px;
}

@media screen and (max-width: 786px) {
    .section-content .row {
        margin-bottom: 50px;
    }

    /* .section-content .content-img {
        max-width: 100%;
        width: 100%;
        order: 1;
        text-align: center;
        margin-top: 12px;
    } */

    .section-content .content-txt {
        /* max-width: 440px; */
        width: 100%;
        order: 0;
    }

    .section-content .content-txt.pl-4, .section-content .content-txt.pr-4 {
        padding: 0;
    }

    .section-content .content-txt .title {
        font-size: 18px;
        text-align: center;
    }

    .section-content .content-txt .title-mark {
        color: #007A7A;
        margin-bottom: 10px;
        text-align: center;
    }
}
@media screen and (max-width: 430px) {


}
.section-content .btn {
    max-width: 250px;
}


.section-wave {
    width: 100%;
    max-height: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
}


/*--- section0 --- */
#section0 {
    background: url(../img/section0-bg.png) no-repeat;
    background-size: 100% 345px;
    background-position: center bottom;
    padding-top: 90px;
}

#section0 .section-content .row {
    margin-bottom: 45px;
}


#section0 .content-txt p {
    font-size: 20px;
}

/* #section0 .content-img img {
    width:100%;
    max-width:400px;
} */

#section0 .btn {
    border-radius: 24px;
    height: 40px;
    line-height: 36px;
    background: none;
    border: 1px solid #00a19b;
    color: #00a19b;
}

#section0 .btn:hover {
    border: 1px solid #00817d;
    color: #00817d;
}

    @media screen and (max-width:768px){
    #section0 {
        background-size: contain;
        padding-bottom: 10px;
        padding-top: 70px;
    }

    #section0 .section-content .row {
        margin-bottom: 0px;
    }

    #section0 .content-txt {
        width: 390px;
    }

    #section0 .content-txt p {
        font-size: 18px;
    }

    /* #section0 .content-img img { 
         width: 108px; 
    }*/

    #section0 .btn {
        display: block;
        width: 160px;
        margin: 16px auto;
    }
    #section0 .row{
        flex-direction:column;
    }

    /* #section0 .content-img{
        order:1;
        max-width:100%;
        margin-bottom:20px;
    }

    #section0 .content-img img{
        width:80%;
        max-width:320px;
    } */

    #section0 .content-txt{
        order:2;
        padding-left:0;
        text-align:center;
    }

}

/* section0 */


/* 左右排列 */
.intro-wrap{
    display: flex;
    align-items: center; /* 關鍵：垂直置中 */
    justify-content: center;
}

/* 左圖 */
.intro-img{
    flex: 0 0 35%;
}

.intro-img img{
    display: block;
    width: 100%;
    max-width: 350px;
}

/* 右文字 */

.intro-txt p{
    margin: 0;
    font-size: 20px;
    line-height: 2;
}
.intro-img img{
    display: block;
    width: 100%;
    max-width: 250px;
    animation: bearFloat 3.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes bearFloat{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
}

.section-title .title{
    margin-bottom: 15px;
    line-height: 1.3;
}

@media screen and (max-width:768px){
        .intro-txt{
        margin-top: 30px;
    }

    .intro-wrap{
        flex-direction: column;
    }

    .intro-img,
    .intro-txt{
        flex: none;
        width: 100%;
    }

    .intro-img img{
        margin: 0 auto;
        width:25%;
    }

    .intro-txt{
        text-align: center;
    }
}
@media screen and (max-width:576px){
    .intro-img img{
        width:52%;
    }

}

/*--- 活動一＋活動二--- */
.section-title .activity-date{
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #007A7A;
}

.section-title .btn{
    display: inline-block;
}
/* 活動區塊 */
.activity-item{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:80px;
}
html{
overflow-y: scroll;
}
/* 文字區 */
.activity-text{
    flex:1;
}

/* 圓形圖片區 */
.activity-img{
    width:100%;
    max-width:400px;
    max-height:400px;
    /* border-radius:50%; */
    /* background:#ffffff;
    border:3px dashed #d9d9d9; */

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

    /* color:#999;
    font-size:20px;
    font-weight:bold;

    flex-shrink:0; */
}

/* 之後放圖片用 */
/* .activity-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
} */
 .activity-img img{
    display:block;
    width:100%;
    height:auto;
    border-radius:50%;

    transition:transform .3s ease;

    filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}

.activity-img:hover img{

    transform:scale(1.08) rotate(2deg);

}

/* 手機版 */
@media screen and (max-width:768px){

    .activity-item{
        display:flex;
        flex-direction:column;
        gap:20px;
        margin-bottom:50px;
    }

    /* .activity-img{
        order:1;
        width:200px;
        height:200px;
        margin:0 auto;
    } */

    .activity-text{
        order:2;
        width:100%;
    }

}
/*--- section1 --- */
#section1 {
    background: url(../img/section1-bg.png) no-repeat;
    background-color: #F4F8FA;
    background-size: 100% 220px;
    background-position: center bottom;
    padding-bottom: 100px;
}
.section-title > .title{
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 14px 38px 14px 28px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;

    background: linear-gradient(
        135deg,
        #00a19b 0%,
        #008f89 100%
    );

    /* 斜角底 */
    clip-path: polygon(
        16px 0,
        100% 0,
        calc(100% - 24px) 100%,
        0 100%
    );

    box-shadow:
        0 6px 18px rgba(0,161,155,.25);
}

.section-title > .title span{
    color: #ffd54f;
}

/* 掃光效果 */
.section-title > .title::after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.3) 50%,
        rgba(255,255,255,0) 100%
    );

    transform: skewX(-20deg);

    animation: slowShine 5s ease-in-out infinite;
    will-change: transform, left, opacity;
}

/* 掃光動畫 */
@keyframes slowShine{
    0%{
        left: -100%;
        opacity: 0;
    }

    10%{
        opacity: 1;
    }

    60%{
        left: 140%;
        opacity: 1;
    }

    70%,
    100%{
        left: 140%;
        opacity: 0;
    }
}
@media screen and (max-width:430px){
.section-title > .title{
    font-size: 21px;
}
}
@media screen and (max-width:375px){
.section-title > .title{
    font-size: 19px;
}
}
#section1 .section-title .title::before {
    left: auto;
    right: -50px;
}
/* 
#section1 .content-img .section1-img1 {
    max-width: 380px;
    margin-left:30%;
}

#section1 .content-img .section1-img2 {
    max-width: 250px;
} */


@media screen and (max-width: 786px) {
    #section1 {
        background-size: contain;
    }

    #section1 .content-txt .btn {
        display: block;
        max-width: 278px;
        margin: 0 auto;
        margin-top: 24px;
    }

    #section1 .btn{
        display:flex;
        justify-content:center;
        align-items:center;

        width:278px;
        margin:0 auto;
    }

    /* #section1 .content-img .section1-img1 {
        max-width: 300px;
        position: absolute;
        margin-top:850px;
        left:1px;
        top: 20px;
    } */
    .section1-img1{
        margin-right:0px;
    }
}

@media screen and (max-width: 576px) {
    #section1 .content-txt .btn {
        max-width: 250px;
    }
}

/*--- section2 --- */
#section2 {}

#section2 .video {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

#section2 .video img {
    width: 100%;
}

/*--- section3 --- */
#section3 {
    padding-bottom: 0;
}

#section3 .section-title .title {
    font-size: 28px;
}

#section3 .section-title .title img {
    margin-left: 12px;
    vertical-align: middle;
}

#section3 .section-title .title::before {
    content: none;
    left: auto;
    right: -50px;
}

@media screen and (max-width: 786px) {
    #section3 .section-title .title {
        font-size: 26px;
    }


}

/*--- notice --- */
.section-notice {
    padding-bottom: 32px;
}

.section-notice .container {
    background: #f8f8f8;
    padding: 18px 28px;
    width: 90%;
}

.notice-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.notice-title p {
    font-size: 18px;
    line-height: 1.5rem;
    font-weight: bold;
    color: #1C1C1C;
    display: inline-block;
}

.notice-title .arrow {
    border: solid #1C1C1C;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 4px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);

}

.notice-title .arrow.rotate {
    margin-top: 10px;
}

.notice-content {
    margin-top: 12px;
    padding-top: 12px;
    /* border-top: 1px dashed #d4d4d4; */
}

.notice-content p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #15396e;
}

.notice-content ol {
    font-size: 16px;
    /* margin-left: 23px; */
    margin-bottom: 16px;
    color: #595959;
    text-align: justify;
}

.notice-content ol li {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 1px;
    list-style: decimal;
    padding: 3px;
}
@media screen and (max-width: 768px) {
.container{
    max-width:700px;
}
}
@media screen and (max-width: 576px) {
    .section-notice .container {
        padding: 18px;
    }

    .section-notice .title {
        font-size: 16px;
        padding: 0px 0;
    }

    .notice-content ul {
        /* margin-left: 22px; */
    }

    .notice-content p, .notice-content ul li {
        font-size: 14px;
    }
}

/* ----popup--- */
.fancybox-bg {
    background: #151515b5;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: default;
}

.fancybox-content {
    border-radius: 5px;
    width: 900px;
    min-height: 200px;
    padding: 32px;
}

.fancybox-button {
    width: 48px;
    height: 48px;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.5rem;
}

.popup-content .popup-img {
    width: 45%;
    position: relative;
}

.popup-content .popup-img img {
    padding: 0 14px;
    max-width: 100%;
    position: relative;
    right: 0px;
    transform: translateY(15%);


}

.popup-content .popup-txt {
    width: 55%;
    padding: 20px;
    text-align: justify;
}

.popup-content .title {
    font-size: 30px;
    color: #007A7A;
    font-weight: 500;
    text-align: center;
    margin: 24px 0;
}

.popup-content .btn {
    background: #1CADA4;
    width: 255px;
    height: 100px;
    border-radius: 30px;
    line-height: 90px;
    font-size: 20px;
    border: #BDE3E2 solid 5px;
    margin: 8px 16px;
    position: relative;
    transition: .2s;
}

.popup-content .btn:hover {
    border: #007A7A solid 5px;
}

.popup-content .btn:hover::after {
    content: "";
    position: absolute;
    background: url(../img/ball.svg) no-repeat;
    background-size: cover;
    right: -10px;
    bottom: -10px;
    width: 35px;
    height: 35px;
}

.popup-block p {
    padding-left: 30px;
    font-size: 20px;
    color: #515151;
    line-height: 32px;
    letter-spacing: 1.1;
    /* font-weight: bold; */
}

.popup-block p small {
    margin-left: 8px;
    color: #a2a2a2;
}

@media screen and (max-width: 900px) {
    .fancybox-content {
        width: 95%;
    }
}


@media screen and (max-width: 768px) {
    .popup-content .popup-img {
        width: 100%;
        height: 250px;
        order: 0;
    }

    .popup-content .popup-img img {
        width: 100%;
        right: 50%;
        transform: translate(50%, 25%);
    }

    .popup-content .popup-txt {
        width: 100%;
        order: 0;
        overflow-y: auto;
    }

    ::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 7px;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(0, 0, 0, .5);
        -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
    }

    .popup-content .title {
        font-size: 26px;
    }

    .popup-content .btn {
        height: 90px;
        line-height: 80px;

    }
}


/* ------------------------------------animation
-------------------------------------------- */

@keyframes elasticus {
    0% {
        transform-origin: 0% 0%;
        transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -webkit-transform: scale(1, 0);
        -o-transform: scale(1, 0);
    }

    50% {
        transform-origin: 0% 0%;
        transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -o-transform: scale(1, 1);
    }

    50.1% {
        transform-origin: 0% 100%;
        transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -o-transform: scale(1, 1);
    }

    100% {
        transform-origin: 0% 100%;
        transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -webkit-transform: scale(1, 0);
        -o-transform: scale(1, 0);
    }
}

.rotate {
    transform: rotate(225deg) !important;
    -ms-transform: rotate(225deg) !important;
    -moz-transform: rotate(225deg) !important;
    -webkit-transform: rotate(225deg) !important;
    -o-transform: rotate(225deg) !important;
}


@keyframes moveRight {
    0% {
        transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
    }
}


@keyframes moveLeft {
    0% {
        transform: translateX(100%);
        -ms-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(-00%);
        -o-transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes enlarge {
    0% {
        opacity: 0;
        transform: scale(0) translate(0%, 0%);
        -ms-transform: scale(0) translate(0%, 0%);
        -moz-transform: scale(0) translate(0%, 0%);
        -webkit-transform: scale(0) translate(0%, 0%);
        -o-transform: scale(0) translate(0%, 0%);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(-50%, -50%);
        -ms-transform: scale(1) translate(-50%, -50%);
        -moz-transform: scale(1) translate(-50%, -50%);
        -webkit-transform: scale(1) translate(-50%, -50%);
        -o-transform: scale(1) translate(-50%, -50%);
    }

}

@keyframes lighten {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* 展開的注意事項------------------------------------------------ */
.notice-box{
    margin:50px auto;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.notice-box summary{
    list-style:none;
    cursor:pointer;
    padding:25px 30px;
    font-size:14px;
    font-weight:bold;
    color:#333;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.notice-box summary::-webkit-details-marker{
    display:none;
}

/* 箭頭 */
.notice-box summary::after{
    content:"⌃";
    color:#acacac;
    font-size:24px;
    transition:.3s;
}

.notice-box[open] summary::after{
    transform:rotate(180deg);
}

/* 內容區 */
.notice-content{
    padding:0 30px 30px;
    font-size:14px;
    line-height:2;
}

/* 第一層黑點 */
.notice-ul{
    margin:0;
    padding-left:16px;
}

.notice-ul > li{
    list-style:disc;
    display:list-item;
    margin-bottom:16px;
    line-height:2;
}

/* 第二層數字 */
.notice-ol{
    margin-top:8px;
    padding-left:23px;
}

.notice-ol > li{
    list-style:decimal;
    display:list-item;
    margin-bottom:12px;
    line-height:2;
}

/* 手機版 */
@media screen and (max-width:768px){

    .notice-box{
        width:auto;
        margin:30px 20px;
    }

    .notice-box summary{
        padding:18px 20px;
    }

    .notice-content{
        padding:0 20px 20px;
    }

}