@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap');

body {
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', sans-serif;
}
.hidden { visibility: hidden; }
.disappear { display: none; }
.donly { display: block; }
.monly { display: none; }
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.left { float: left; }
.right { float: right; }
.float_group:after {
    content: "";
    display: table;
    clear: both;
}
.flex_direction_vertically_center {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.absolute_vertically_center {
    display: inline-block;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

@keyframes singleBanner {
    0%   {opacity: 0.8; transform: scale(1);}
    100% {opacity: 1; transform: scale(1.02);}
}


@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(0.98, 0.98, 0.98);
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* form */
#form .header {
    padding: 80px 0 40px;
    width: 100%;
    overflow: hidden;
}
#form .header .text1 {
    text-align: center;
    color: #1980cf;
    padding-bottom: 10px;
    font-size: 32px;
    font-weight: bold;
}
#form .header .text2 {
    text-align: center;
    color: #1980cf;
    padding-bottom: 10px;
    font-size: 24px;
}
#form .header .text2 div {
    display: inline-block;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
#form .header .text2 span {
    font-size: 16px;
}
#form .header .text3 {
    text-align: center;
    color: #494949;
}
#form .header .text3 span {
    font-size: 12px;
}
#form .header .text3 div {
    display: inline-block;
    margin: 0 10px;
}

#form .body {
    background: #FFF;
    padding: 100px 40px 80px 40px;
    text-align: center;

}

#form .body .image {
    display: inline-block;
    vertical-align: top;
    width: 456px;
}
#form .body .image img {
    max-width: 456px;
}

#form .body .form {
    display: inline-block;
    vertical-align: top;
    margin: auto;
    width: 60%;
    text-align: left;
}

#form .body .form .block {
    position: relative;
    width: 90%;
	margin-left: 5%;
    height: 50px;
    margin-bottom: 20px;
	display:inline-block;
}

#form .body .form .block input[type=text],
#form .body .form .block select {
	width: 100%;
    height: 100%;
    outline: 0;
    padding: 5px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    color: #707070;
    font-size: 20px;
    border: 2px solid #F54646;
    border-radius: 10px;

}
#form .body .form .block input[type=text]::placeholder {
    opacity: 1;
    color: #707070;
}


#form .body .form .note {
    padding: 20px 0px;
    color: #707070;
    font: normal normal normal 18px/26px Noto Sans TC Medium;
}

#form .body .form .agger {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 28px;
    color: #707070;
    font: normal normal normal 18px/26px Noto Sans TC Medium;
    line-height: 26px;
    margin-bottom: 10px;
}

#form .body .form .agger a {
    color: #707070;
}

#form .body .form .agger input {
    position: absolute;
    opacity: 0;
}

#form .form_text{ width:90%;margin:auto; padding-right:20px;}

#form .body .form .agger .checkmark {
    position: absolute;
    top: 7px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
	border:1px solid #707070;
}

#form .body .form .agger .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#form .body .form .agger input:checked ~ .checkmark:after {
    display: block;
}

#form .body .form .agger .checkmark:after {
    left: 5px;
    top: 3px;
    width: 3px;
    height: 6px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-sizing: unset;
}

#form .body .form .submit {
    margin-top: 41px;
    text-align: center;
}
#form .body .form .submit button{
    border: 0;
    width: 300px;
    height: 80px;
    font: normal normal normal 42px/70px Noto Sans TC Bold;
    color: #fff;
    background:#F54646;
    cursor: pointer;
    outline: 0;
	border-radius: 15px;
	
}

#form .body .form .submit button:hover {
    border: 0px solid white;
    color: #fff;
    background: #AA323C;
	
}

#form .footer {
    background-color: white;
    width: 100%;
    height: 80px;
}


/* footer */
footer {
    border-top: 1px solid #e5e5e5;
    background-color: #fbebe9;
    text-align: center;
    padding: 0px 15px 0px;
    color: #494949;
	margin-bottom: -20px;
}
footer a {
    color: #494949;
    text-decoration: none;
}
footer div {
    display: inline-block;
    margin: 15px 10px 0;
    font-size: 12px;
    height: 40px;
    padding: 14px 0;
    line-height: 1;
    vertical-align: middle;
}
footer div.footer_logo {
    padding: 0;
}

@media (max-width:1200px) {
    .donly { display: none; }
    .monly { display: block; }


    /* form */
    #form .body .image {
        width: 100%;
    }
    #form .body .image img {
        max-width: 768px;
        width: 100%;
    }
    #form .body .form {
        width: 100%;
        max-width: 768px;
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width:768px) {
    .donly { display: none; }
    .monly { display: block; }

    /* form */
    #form .header .text2 div {
        display: block;
        width: 100%;
    }
    #form .header .text3 div {
        display: block;
        margin: 0;
        width: 100%;
    }
}