@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');


/*////////////////////////////// 首頁 //////////////////////////////*/

html,
body {
    /* overflow-x: hidden; */
    font-family: Arial, 'Noto Sans TC', sans-serif;
    font-weight: 300;
    /* height: 100%; */

    color: #1F1F1F;
}


* {
    /* outline: 1px solid red; */
}


.head_box .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


.head_box .nav .logo_box {
    background-color: #1A486A;
    flex-basis: 450px;
    margin: 10px;

    padding: 20px 50px;
    text-align: center;

    animation: logo 1s forwards;
    opacity: 0;

    display: flex;
    align-items: center;
}

@keyframes logo {
    100% {
        opacity: 1;
    }
}

.head_box .nav .logo_box img {
    width: 100%;
}

.head_box .nav .two {
    background-color: #FCC311;
    flex-basis: calc(100% - 450px - 40px);
    margin: 10px;

    position: relative;
    overflow: hidden;
    animation: two 1s 0.2s forwards;
    opacity: 0;
}

@keyframes two {
    100% {
        opacity: 1;
    }
}

.head_box .nav .two::before {
    content: "";

    background-image: url(../img/icon_people.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 500px;
    width: 500px;
    height: 50px;

    position: absolute;
    bottom: 0;
    right: -135px;
}

.head_box .nav .aaa {
    width: 100%;

    display: flex;
}

.head_box .banner {
    /* background-color: #F4F6F3; */

    flex-basis: 100%;
    margin: 10px;

    text-align: center;
    padding: 140px 20px;

    position: relative;

    animation: banner 1s 0.5s forwards;
    opacity: 0;

    overflow: hidden;
}

@keyframes banner {
    100% {
        opacity: 1;
    }
}

.head_box .banner .title {
    padding-bottom: 50px;
    display: inline-block;

    position: relative;
    z-index: 5;
}

.head_box .banner h1 {
    font-size: 2rem;
    margin: 10px 0;
    font-weight: 900;

    color: #1A486A;

    text-shadow:
        -1px -2px 0 #F4F6F3,
        2px -1px 0 #F4F6F3,
        -1px 1px 0 #F4F6F3,
        1px 1px 0 #F4F6F3;
}


.head_box .banner .title .title_line {
    width: 40px;
    height: 3px;
    background-color: #E5B734;
    position: absolute;
    top: 90px;
    left: 0;

    animation: title_line 2.5s 0.3s forwards;
    opacity: 0;
    left: -40px;
}

@keyframes title_line {

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}




.head_box .banner .text_box {
    text-align: right;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;
}


.head_box .banner .text_box p {
    margin: 0;
    padding: 10px 0;
    font-weight: 500;
    font-size: 1.3rem;
    padding-right: 70px;
    margin-right: 190px;
    margin-left: 80px;
    position: relative;
    overflow: hidden;

    animation: text_p 1s 1.4s forwards;
    opacity: 0;
}

@keyframes text_p {
    100% {
        opacity: 1;
    }
}

.head_box .banner .text_box p::before {
    content: "";
    background: linear-gradient(to right, #4C9F38 0%, #C2E693 100%);
    width: 130%;
    height: 3800%;
    position: absolute;

    top: 50%;
    left: -20px;
    transform: translateY(-50%);

    animation: text_p_bg 10s infinite;
}

@keyframes text_p_bg {

    50% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.head_box .banner .text_box p span {
    position: relative;
    font-weight: 600;
    color: #F4F6F3;
    opacity: 0;
    display: inline-block;
    transform: translateX(-200%);
    animation: span 1s 1.2s forwards;

    text-shadow:
        -1px -1px 0 #4C9F38,
        1px -1px 0 #4C9F38,
        -1px 1px 0 #4C9F38,
        1px 1px 0 #4C9F38;
}

@keyframes span {
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.head_box .banner .text_box .br {
    display: none;
}

.head_box .banner .text_box .img_box {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0px;
    right: 140px;
    border-radius: 100px;

    animation: img_box 0.6s 1.2s forwards;
    transform: scale(0);
}

@keyframes img_box {
    100% {
        transform: scale(1);
    }
}

.head_box .banner .text_box .img_box::before {
    content: "";
    background: linear-gradient(to right, #4C9F38 0%, #C2E693 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 100px;

    top: 50%;
    left: 0;
    transform: translateY(-50%);

    animation: img_box_bg 10s infinite;
}

@keyframes img_box_bg {

    50% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.head_box .banner .text_box .img_box img {
    position: absolute;
    width: 110px;
    bottom: 10px;
    right: 10px;

    filter: drop-shadow(1px 2px 0px #00000063);

    transform: rotate(0deg) scale(1);
    cursor: pointer;
}

.head_box .banner .text_box .img_box img:hover {
    animation: img_hover 5s infinite;
}

@keyframes img_hover {

    50% {
        transform: rotate(3deg) scale(1.02);
    }
}

.head_box .banner .earth {
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 220px;

    animation: earth 1s 0.3s forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes earth {
    100% {
        left: 0px;
        bottom: 0;
        opacity: 1;
        transform: scale(1);
    }
}

.head_box .banner .butterfly {
    position: absolute;
    left: -100px;
    top: 50px;
    width: 160px;

    animation: butterfly 1s 0.6s forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes butterfly {
    100% {
        left: 150px;
        opacity: 1;
        transform: scale(1);
    }
}




.head_box .btn_box {
    text-align: right;
    margin-right: 20px;
}

.head_box .btn_box .home_box {
    display: inline-block;
    text-decoration: none;
    color: #1A486A;
    border: 1px solid #2E2E2E;
    border-radius: 10px;
    padding: 5px 25px;
    font-weight: 400;
    line-height: 23px;
    margin: 40px 0;
    transition: 0.3s;
}

.head_box .btn_box .home_box:hover {
    background-color: #1A486A;
    border: 1px solid #1A486A;
    color: #fff;
}

.head_box .banner img {
    position: absolute;
}

.head_box .banner .rings {
    width: 400px;
    right: 0px;
    bottom: -120px;
    z-index: -1;
    animation: rings_animation 1s 1.2s forwards 1, rings_circle 15s infinite linear;

    transform: scale(0.5);
    opacity: 0;
}

@keyframes rings_animation {

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rings_circle {

    100% {
        transform: scale(1) rotate(360deg);
    }
}

.head_box .banner .clouds {
    top: 130px;
    right: -80px;
    width: 75px;
    animation: clouds_animation 1.5s 0.6s forwards;
}

@keyframes clouds_animation {

    100% {
        right: -20px;
    }
}

.head_box .banner .sun {
    width: 90px;
    top: 90px;
    right: -80px;

    animation: sun_animation 1.2s 0.9s forwards, sun_circle 10s infinite linear;
    opacity: 0;
}

@keyframes sun_animation {
    100% {
        opacity: 1;
        right: 15px;
    }
}

@keyframes sun_circle {

    100% {
        transform: rotate(-360deg);
    }
}

.head_box .banner .windmill {
    bottom: 0;
    right: 10px;
    width: 80px;
}

.head_box .banner .pads {
    bottom: 0;
    left: 200px;
    width: 90px;
}



@media (max-width: 1399.98px) {

    .head_box .banner .earth {
        width: 180px;
    }

    .head_box .banner .rings {
        width: 320px;
        right: 40px;
        bottom: -80px;
    }
}

@media (max-width: 1199.98px) {

    .head_box .banner h1 {
        font-size: 1.9rem;
    }
}

@media (max-width: 991.98px) {

    .head_box .banner {
        padding: 130px 20px;
    }

    .head_box .banner h1 {
        font-size: 1.8rem;
    }

    .head_box .banner .earth {
        width: 150px;
    }

    .head_box .banner .text_box p {
        font-size: 1.1rem;
        margin-right: 150px;
    }

    .head_box .banner .pads {
        left: 120px;
        width: 70px;
    }

    @keyframes butterfly {
        100% {
            left: 20px;
            opacity: 1;
            transform: scale(1);
        }
    }

    .head_box .banner .windmill {
        width: 60px;
    }

    .head_box .banner .text_box .img_box {
        right: 100px;
    }

    .head_box .banner .rings {
        right: 0;
    }
}

@media (max-width: 767.98px) {

    .head_box .nav .logo_box {
        flex-basis: 300px;
        padding: 10px;
    }

    .head_box .nav .two {
        flex-basis: calc(100% - 300px - 40px);
    }

    .head_box .banner .earth {
        width: 80px;
    }

    .head_box .banner .pads {
        display: none;
    }

    .head_box .banner .windmill {
        right: -10px;
        width: 40px;
    }

    .head_box .banner .text_box p {
        margin-right: 72px;
        margin-left: 0;
    }

    .head_box .banner .text_box .img_box {
        right: 30px;
    }

    .head_box .banner .rings {
        right: -70px;
    }

    .head_box .banner .title {
        padding-bottom: 0;
    }

    .head_box .banner .butterfly {
        width: 100px;
        top: 40px;
    }

    .head_box .banner .sun {
        top: 30px;
    }

    .head_box .banner .clouds {
        top: 80px;
    }

    .head_box .banner {
        padding-top: 100px;
    }

    .head_box .banner .text_box p span {
        padding-left: 80px;
    }
}

@media (max-width: 575.98px) {

    .head_box .nav .logo_box {
        flex-basis: 100%;
        padding: 10px 15px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .head_box .nav .two {
        flex-basis: 100%;
        background-color: #1a486a;
        margin: 0 10px;
        padding-bottom: 10px;

        animation: two 1s 0s forwards;
    }

    .head_box .nav .two::before {
        right: 243px;
    }

    .head_box .btn_box {
        margin-right: 15px;
    }

    .head_box .btn_box .home_box {
        margin: 0;
        color: #FCC311;
        border: 1px solid #FCC311;
        padding: 5px 10px;
    }

    .head_box .btn_box .home_box:hover {
        background-color: #FCC311;
        color: #1A486A;
    }

    .head_box .banner h1 {
        font-size: 1.3rem;
    }

    .head_box .banner .text_box .img_box img {
        width: 50px;
    }

    .head_box .banner .text_box .img_box {
        width: 70px;
        height: 70px;
        right: -5px;
        z-index: 5;
    }

    .head_box .banner .text_box p {
        margin-right: 35px;
        padding-right: 29px;
        font-size: 1rem;
    }

    .head_box .banner .text_box p span {
        padding-left: 35px;
        text-align: left;
    }

    .head_box .banner .rings {
        width: 150px;
        right: -45px;
        bottom: -20px;
    }

    .head_box .banner .earth {
        width: 40px;
        z-index: 1;
    }

    @keyframes earth {
        100% {
            left: -10px;
            bottom: 0;
            opacity: 1;
            transform: scale(1);
        }
    }

    .head_box .banner .windmill {
        right: initial;
        left: -10px;
        transform: scaleX(-1);
    }

    .head_box .banner .sun {
        top: 0px;
        width: 60px;
    }

    .head_box .banner .clouds {
        top: 35px;
        width: 50px;
    }

    @keyframes butterfly {
        100% {
            left: -30px;
            top: -5px;
            opacity: 1;
            transform: scale(1);
        }
    }

    .head_box .banner {
        padding-top: 75px;
    }
}









.line {
    display: flex;
}

.line div {
    padding: 5px 0;
    flex-basis: calc(100% / 3);
    margin: 0px 10px;
}

.line div:nth-child(1) {
    background-color: #E6243C;
    opacity: 0;
    animation: line1 1s 1.2s forwards;
}

@keyframes line1 {
    100% {
        opacity: 1;
    }
}

.line div:nth-child(2) {
    background-color: #E5B734;
    opacity: 0;
    animation: line2 1s 1.2s forwards;
}

@keyframes line2 {
    100% {
        opacity: 1;
    }
}

.line div:nth-child(3) {
    background-color: #4C9F38;
    opacity: 0;
    animation: line3 1s 1.2s forwards;
}

@keyframes line3 {
    100% {
        opacity: 1;
    }
}

.line.full div {
    flex-basis: 100%;
    background-color: #01699E;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
}

.line.activity2 div {
    background-color: #E5B734;
}

.line.notes {
    position: relative;
}

.line.notes img {
    width: 80px;
    position: absolute;
    bottom: 18px;
    left: 20px;

    animation: line_img 1s 1.2s forwards;
    opacity: 0;
}

@keyframes line_img {
    100% {
        opacity: 1;
    }
}

.activity_box>img {
    width: 60px;
    position: absolute;
    bottom: 10px;
    right: 20px;

    animation: line_img 1s 1.2s forwards;
    opacity: 0;
}

@media (max-width: 575.98px) {

    .line.notes img {
        width: 60px;
    }
}





.activity_box {
    display: flex;

    animation: activity 1s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

@keyframes activity {
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.activity_box>div {
    flex-basis: calc((100% - 50%) / 2);
    background-color: #F7E8EC;
    margin: 10px;
}

.activity_box>div:nth-last-child(1) {
    background-color: #DDF1DF;
}

.activity2_box>div {
    background-color: #DDF1DF;
}

.activity2_box>div:nth-last-child(1) {
    background-color: #F7E8EC;
}

.activity_box .activity {
    flex-basis: 50%;
    background-color: #EFF4F9;
    padding: 40px 30px;
}

.activity2_box .activity {
    padding: 65px 30px;
}

.activity_box .activity p {
    margin: 0;
    font-size: 1.1rem;
}

.activity_box .activity .title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;

    position: relative;
}

.activity_box .activity .title::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 0;
    background-color: #1A486A;
}

.activity_box .activity .title p {
    font-weight: 500;
    padding: 2px 10px 1px 10px;
    margin: 0 10px;

    position: relative;
    background-color: #EFF4F9;
}

.activity_box .activity .title p:nth-child(1) {
    /* border: 1px solid #1A486A; */
    border-radius: 10px;
    margin: 3px 0;

    background-color: #1A486A;
    padding: 4px 20px 4px 20px;
    color: #fff;
}

.activity_box .activity .title img {
    position: absolute;
    width: 45px;
    left: -12px;
    top: 12px;
}

.activity_box .activity .text_box {
    background-color: #f9fcff;
    padding: 25px 20px;
    box-shadow: 2px 2px 3px #0000000f;
    border-radius: 3px;
    margin-bottom: 30px;
}

.activity_box .activity .text_box:nth-last-child(1) {
    margin-bottom: 0;
}


.activity_box .activity .prize_box .title_box {
    position: relative;
}

.activity_box .activity .prize_box .title_box::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #2DBCE0;
    position: absolute;
    top: 50%;
    left: 0;
}

.activity_box .activity .prize_box .title_box p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A486A;

    position: relative;
    background-color: #f9fcff;
    display: inline-block;
    padding-right: 15px;
}

.activity_box .activity .prize_box .prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding-bottom: 2px;
}

.activity_box .activity .prize_box .prize.date p {
    font-weight: 400;
}

.activity_box .activity .prize_box .prize p {
    font-weight: 500;
}

.activity_box .activity .prize_box .prize p span {
    font-size: 1rem;
    padding-left: 1px;
}

.activity_box .activity .small {
    font-size: 1rem;
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #2DBCE0;
}

@media (max-width: 991.98px) {

    .activity_box>div {
        flex-basis: calc((100% - 80%) / 2);
    }

    .activity_box .activity {
        flex-grow: 1;

        padding: 65px 15px;
    }
}


@media (max-width: 575.98px) {
    .activity_box>div {
        flex-basis: 0;
        margin: 0;
    }

    .activity_box .activity {
        flex-basis: 100%;
        margin: 10px;
    }

    .activity_box .activity .prize_box .prize {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity_box .activity .prize_box .prize p:nth-last-child(1) {
        width: 100%;
        text-align: right;
    }
}





.question_box {
    max-width: 700px;
    margin: 0 auto;
    /* padding: 3lvh 10px; */
    padding: 30px 25px;

    animation: activity 2s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

.question_box .question {
    font-size: 1.1rem;
    margin: 30px 0;
}

.question_box .question:nth-last-child(2) {
    border-bottom: none;
}

.question_box .question .title {
    font-size: 1.2rem;
    font-weight: 500;
    padding-bottom: 3px;
}

.question_box .question .title p {
    display: flex;
    align-items: center;
    margin: 0;
    padding-bottom: 3px;
}

.question_box .question .title .hint_box {
    position: relative;
    height: 14px;
}

.question_box .question .title .hint_box::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ED6931;

    position: absolute;
    top: 7px;
    left: 0;
}

.question_box .question .hint_btn {
    background-color: #fff;
    color: #ED6931;
    border: 2px solid #ED6931;
    border-radius: 25px;
    font-size: 0.8rem;
    padding: 1px 4px 0px 4px;
    margin-left: 5px;
    font-weight: 800;

    position: absolute;
    width: 90px;
    top: -6px;
    right: 0;

    transition: 0.3s;
    height: 24px;
    overflow: hidden;
    z-index: 5;
}

.question_box .question .hint_btn.active {
    font-weight: 400;
    width: 250px;
    font-size: 1rem;
    height: 28px;

    background-image: url(../img/icon_trumpet.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 8px center;

    text-align: left;
    padding-left: 34px;
}

.question_box .question label {
    padding: 5px 0;
    margin: 3px 0;
    position: relative;

    transition: 0.3s;
    width: 100%;

    cursor: pointer;
    padding: 5px 10px;
}

.question_box .question .question_option {
    position: relative;
    display: flex;
}

.question_box .question input[type="radio"]:checked {
    opacity: 0;
    position: absolute;
    top: 13px;
}

.question_box .question input[type="radio"]:checked+label {
    background-color: #01699E;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
}





.result_box {
    text-align: right;
}

.result_box .result {
    border: 1px solid #ED6931;
    display: inline-block;
    border-radius: 30px;
    padding: 1px 20px 0 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ED6931;

    position: relative;
    transform: rotate(2px);

    animation: result_animation 0.9s infinite;
}

@keyframes result_animation {
    50% {
        transform: rotate(2deg) translateY(-10px);
    }
}

.result_box .result img {
    width: 33px;
    position: absolute;
    bottom: -5px;
}

.result_box .result.fail {
    border: 1px solid #01699E;
    color: #01699E;
    transform: rotate(0deg) translateY(-8px);
}

.result_box .result.fail::after {
    border-right: 1px solid #01699E;
    border-top: 1px solid #01699E;
}

.result_box .result.fail img {
    width: 30px;
    bottom: -10px;
}




.line.lottery {
    position: relative;
}

.line.lottery img {
    position: absolute;
    width: 100px;
    bottom: 47px;
    left: 20px;

    animation: line_img 1s 1.2s forwards;
    opacity: 0;
}

.line.lottery div {
    background-color: #ED6931;
}

.lottery_box {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 25px;

    animation: activity 2s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

.lottery_box .form-group {
    margin: 20px 0;
}

.lottery_box label {
    font-size: 1.1rem;
}

.lottery_box input {
    border: 1px solid #F3F3F2;
    box-shadow: inset 2px 2px 3px #0000000f;
    padding: 4px 10px 3px 10px;
    margin: 2px 0;
    background-color: #fff;

    transition: 0.3s;
    font-size: 1.1rem;
}

.lottery_box input:focus {
    color: initial;
    background-color: #fff;
    border-color: #F3F3F2;
    outline: 0;
    box-shadow: inset 2px 2px 3px #0000000f;
}

.lottery_box input.error {
    outline: 1px solid #E5B734;
    transform: scale(1.01);
}

.lottery_box input::placeholder {
    color: #a5a5a5;
    font-weight: 300;
    font-size: 0.95rem;
}

.form-control:disabled {
    background-color: #fff;
}

.lottery_box .btn_box {
    padding-top: 30px;
    text-align: center;
}

.lottery_box .btn_box .send_btn {
    background-color: transparent;
    border: 1px solid #ED6931;
    color: #ED6931;
    font-weight: 500;
    border-radius: 5px;
    padding: 4px 25px 2px 25px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.lottery_box .btn_box .send_btn:hover {
    background-color: #ED6931;
    border: 1px solid #ED6931;
    color: #fff;
}

.lottery_box .message_box {
    text-align: center;
    transform: translateY(15px);
    margin-top: 10px;
}

.lottery_box .message {
    border-bottom: 3px double #A31C43;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #A31C43;

    position: relative;
    transform: rotate(-1deg) scale(1.5);

    transition: 0.3;

    animation: message 1s forwards;
    opacity: 0;
    z-index: 1;
}

@keyframes message {
    100% {
        transform: rotate(-1deg) scale(1);
        opacity: 1;
    }
}

.lottery_box .message img {
    width: 20px;
    position: absolute;
    top: 15px;
    right: -20px;
    transform: rotate(15deg);
}

@media (max-width: 991.98px) {

    .line.lottery img {
        width: 70px;
    }
}





.line.course div {
    background-color: #2DBCE0;
}


.course_box {
    max-width: 660px;
    margin: 0 auto;
    padding: 30px 10px;

    animation: activity 2s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

.course_box .box {
    margin: 50px 0;
    position: relative;
}

.course_box .box::before {
    content: "";
    display: inline-block;
    width: calc(100vw - 20px);
    height: 2px;
    background-color: #C99A2D;

    position: absolute;
    top: 65%;
    left: calc(50% - 50vw + 10px);
}

.course_box .box .bg {
    background-color: #fff;
    position: relative;
    padding: 0 30px;
}

.course_box .title_box {
    position: relative;
}

.course_box .title_box::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #F59C2C;

    position: absolute;
    top: 50%;
    left: 0;
}

.course_box .title_box p {
    position: relative;
    display: inline-block;
    background-color: #fff;
    transform: translateX(-7px);
    font-size: 1.3rem;
}

.course_box p {
    margin: 0;
    padding: 5px 0;
    font-size: 1.2rem;
}

.course_box .small:nth-child(1) {
    padding-right: 5px;
}

.course_box .large {
    font-size: 1.25rem;
    color: #1A486A;
    font-weight: 500;
    padding: 0 4px;
}

.course_box .btn_box {
    padding-bottom: 20px;
    text-align: center;
}

.course_box .btn_box .register_btn {
    background-color: transparent;
    border: 1px solid #A31C43;
    color: #A31C43;
    font-weight: 500;
    border-radius: 5px;
    padding: 4px 35px 2px 35px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.course_box .btn_box .register_btn:hover {
    background-color: #A31C43;
    border: 1px solid #A31C43;
    color: #fff;
}

@media (max-width: 575.98px) {

    .course_box .box .bg {
        padding: 0 15px;
    }
}



.line.notes div {
    background-color: #3E7F45;
}

.notes_box {
    /* background-color: #F5F5F5; */
    padding: 50px 0px;
    /* padding-left: 40px; */
    padding-left: 22px;
    margin: 10px 0;

    animation: activity 2s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

.notes_box .list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: decimal;
    font-size: 1rem;
}

.notes_box .list li {
    padding: 8px 0;

    transition: 0.3s;
    text-align: justify;
}

.notes_box .list li:hover {
    transform: translateX(3px);
}

.notes_box .list li span {
    font-size: 1.15rem;
    color: #1A486A;
    font-weight: 500;
    padding: 0 4px;
}

.notes_box .list li a {
    font-size: 1.15rem;
    color: #1A486A;
    font-weight: 500;
    padding: 0px 4px;
    text-decoration: none;
    border: 1px solid #1A486A;
    border-radius: 5px;

    transition: 0.3s;
    display: inline-block;
}

.notes_box .list li a:hover {
    color: #DE1768;
    border: 1px solid #DE1768;
}

.footer_box {
    margin: 10px 10px;
    padding: 40px 15px;
    text-align: center;
    border-bottom: 10px solid #E8432E;

    animation: activity 2s 0.9s forwards;
    transform: translateY(300px);
    opacity: 0;
}

.footer_box p {
    margin: 0;
}





#app {
    background: linear-gradient(210deg, #ffffff81 20%, #ffffffe9 100%), url(../img/bg_img.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.line.full div {
    font-size: 1.3rem;
}

.head_box .banner {
    margin: 0 10px;
    background-color: transparent;
}

.activity_box .activity {
    flex-basis: 700px;
}

.activity_box>div {
    flex-basis: calc((100% - 700px) / 2);
}

.course_box {
    max-width: 700px;
}

.activity_box .activity .text_box {
    padding: 30px 20px;
}

.question_box .question .hint_btn {
    background-color: #fef8f5;
}

.lottery_box input {
    padding: 7px 10px 7px 10px;
}

.lottery_box .form-group {
    margin: 25px 0;
}

.course_box .title_box p {
    background-color: #fdf1f4;
}

.course_box .box .bg {
    background: linear-gradient(45deg, rgb(252 241 243), rgb(242 239 250));
    border-radius: 10px;
    box-shadow: 1px 1px 20px #f3eff8e3;
}

.notes_box {
    /* background-color: #f5f5f5b3; */
}






.lottery_box .btn_box {
    padding-top: 10px;
}

div#g-recaptcha {
    display: flex;
    justify-content: center;
}












/* 20251104 新增css */
.activity_box .activity .text_box p {
    line-height: 1.8rem;
}

/* 背景圖 */
.line.activity2 {
    position: relative;
}

.activity2>img {
    width: 60px;
    position: absolute;
    bottom: 10px;
    right: 20px;

    animation: line_img 1s 1.2s forwards;
    opacity: 0;
}

/* 活動二 */
.activity .title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;

    position: relative;
}

.activity .title::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 0;
    background-color: #1A486A;
}

.activity .title p {
    font-weight: 500;
    padding: 2px 10px 1px 10px;
    margin: 0 10px;

    position: relative;
    background-color: #EFF4F9;
}

.activity .title p:nth-child(1) {
    border-radius: 10px;
    margin: 3px 0;

    background-color: #1A486A;
    padding: 4px 20px 4px 20px;
    color: #fff;
}

.activity .title img {
    position: absolute;
    width: 45px;
    left: -12px;
    top: 12px;
}

.activity .course_box .box {
    margin: 0;
    margin-bottom: 50px;
}

.activity .course_box .box:before {
    content: none;
}

.activity .course_box .box .bg {
    background: transparent;
    padding: 0;
}

.activity .course_box .title_box p {
    background-color: #eff4f9;
}

.activity .course_box .small {
    border-top: none;
}

.activity .course_box .btn_box {
    padding: 0;
    margin: 25px 0;
    margin-top: 10px;
    text-align: right;

    position: relative;
}

.activity .course_box .btn_box::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #F59C2C;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.activity .course_box .btn_box .register_btn {
    text-decoration: none;
    background-color: #eff4f9;
}

.activity .course_box .btn_box .register_btn:hover {
    background-color: #A31C43;
}

.activity .box.notes {
    margin-bottom: 0;
}

.activity .notes p {
    font-size: 1rem;
    padding-top: 10px;
}