body {
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial, "Microsoft JhengHei", 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.05);}
}


@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: #00a28e;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}
#form .header .text2 {
    text-align: center;
    color: #000;
    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: #b2e3dd;
    padding: 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-left: 30px;
    width: 500px;
    text-align: left;
}

#form .body .form .block {
    position: relative;
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
}

#form .body .form .block input[type=text],
#form .body .form .block select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    border-radius: 0;
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    color: #000;
    font-size: 14px;
}
#form .body .form .block input[type=text]::placeholder {
    opacity: 1;
    color: #000;
}

.arrow_down {
    position: absolute;
    pointer-events: none;
    left: 90px;
    top: 11px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #000;
}

#form .body .form .note {
    padding: 0 10px 10px;
    color: #000;
    font-size: 13px;
}

#form .body .form .agger {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 28px;
    color: #000;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
}

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

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

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

#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: 20px;
    text-align: center;
}
#form .body .form .submit button{
    border: 0;
    width: 200px;
    height: 50px;
    font-size: 22px;
    color: #fff;
    background: #00a28e;
    cursor: pointer;
    outline: 0;
}

#form .body .form .submit button:hover {
    border: 2px solid white;
    color: #00a28e;
    background: white;
}

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


/* footer */
footer {
    border-top: 1px solid #e5e5e5;
    background-color: white;
    text-align: center;
    padding: 0px 15px 15px;
    color: #494949;
}
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;
}
.sec_part img{
    width: 100%;
}
#form .thir_part{
    padding: 50px 0;
}
#form .thir_part .thir_text1 {
    text-align: center;
    color: #00a28e;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}
#form .thir_part .thir_text2 img {
    width: 100%;
}
#form .thir_part .thir_text3 h3 {
    text-align: center;
    color: #00a28e;
    /* padding-bottom: 10px; */
    font-size: 24px;
    font-weight: bold;
}
#form .thir_part .thir_text3 ul{
    text-align: center;
    padding: 0;
}
#form .thir_part .thir_text3 ul li {
    text-align: center;
    color: #00a28e;
    list-style-type: none;
    display: inline-block;
}
#form .thir_part .thir_text3 ul li a{
    color: #00a28e;
    display: inline-block;
}
.thir_symbol:before {
    content: "|";
}
#form .thir_part .thir_text3 .tip {
    text-align: center;
    color: #00a28e;
    font-size: 12px;
}


@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%;
    }
}
<style type="text/css">
        .test {
            display: block;
            bottom: 0px;
            right: 1px;
            position: fixed;
        }

        * html .test {
            position: absolute;
        }

        *+html .test {
            position: absolute;
        }

        .test1 {
            right: 15px;
            bottom: 290px;
            color: #000;
            opacity: 0;
            height: 30px;
            width: 30px;
        }

        .mobile {
            display: none;
        }

        .web {
            display: inline;
        }

        @media (max-width: 768px) {
            .mobile {
                display: inline;
            }

            .test2 {
                padding-left: 0px;
            }

            .web {
                display: none;
            }

            .test {
                display: block;
                position: fixed;
                right: auto;
                top: 50%;
                left: 50%;
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }

            .test1 {
                opacity: 0;
                top: 31%;
                left: 92%;
                height: 30px;
                width: 30px;
                font-size: 36px;
            }
        }

        .pp_social {
            display: none;
        }

        #v_box {
            width: 700px;
            height: 460px;
            background: #fff;
            position: fixed;
            top: 50%;
            left: 50%;
            z-index: 522222;
            margin-top: -305px;
            margin-left: -350px;
            border-radius: 5px;
            box-shadow: #333 0px 0px 10px;
            _position: absolute;
            *border: 1px solid #333;
            border: 1px solid #333;
            display: none;
        }

        #v_box h3 {
            color: #333;
            height: 10px;
            font-size: 18px;
            padding-left: 28px;
            line-height: 46px;
            overflow: hidden;
            font-weight: bold;
        }

        #v_box div {
            width: 650px;
            margin: 0 auto;
            background: #000;
        }

        #shut {
            position: absolute;
            width: 30px;
            height: 30px;
            display: block;
            top: 8px;
            right: 10px;
            color: #333;
            font-size: 30px;
            line-height: 22px;
            overflow: hidden;
            text-align: center;
            cursor: pointer;
        }

        #shut:hover {
            text-decoration: none;
            color: #f00;
        }

        #shut:active {
            color: #a40606;
        }

        .h1::after {
            position: absolute;
            content: '';
            display: block;
            height: 6px;
            width: 220px;
            border-top: 4px dotted #D6D6D6;
            left: 154px;
            top: 9px;
        }

        .li7 span {
            margin-right: -2px;
        }
        .jia{margin-bottom: 90px !important;color: #00a28e;font-size: 64px;}
        .banner-web{display: inline;}
        .banner-mobile{display: none;}
        .title_moblie{display: none;}
        @media (max-width: 768px){
            .banner-web{display: none;}
            .banner-mobile{display: inline;}
            .text3 div{display: inline-block !important;width: auto !important;}
            .text3 img{width: 80px;height: 80px;}
            .text2 span{display: block;}
            .jia{margin-bottom: 64px !important;font-size: 40px;}
            .title{display: none;}
            .title_moblie{display: block;}
            #form .thir_part .thir_text1 {
                font-size: 20px;
                padding-bottom: 0px;
            }
            #form .thir_part .thir_text3 h3 {
                font-size: 20px;
            }
            #form .thir_part .thir_text3 ul li {
                display: block;
            }
            .thir_symbol {
                display: none!important;
                text-align: center;
            }
            #form .thir_part .thir_text3 .tip {
                font-size: 12px;
            }
        }
    </style>
    <style type="text/css">
        .mx-tip-panel:focus {
            outline: 0;
        }

        .mx_keyword {
            line-height: 20px;
            color: #333333;
            font-size: 14px;
            letter-spacing: 0.2px;
            font-family: PingFangSC-Semibold;
        }

        .mx-scrollbar::-webkit-scrollbar {
            width: 8px;
            height: 1px;
        }

        .mx-scrollbar {
            overflow-y: auto;
            max-height: 380px;
        }

        .mx-scrollbar::-webkit-scrollbar-thumb {
            border-radius: 4px;
            background: #C0C0C0;
        }

        .mx-scrollbar::-webkit-scrollbar-track {
            border-radius: 4px;
            background: #eeeeee;
        }

        .maxthon_tip {
            background-color: white;
            border: none;
        }

        .maxthon_tip:active {
            background-color: #E6F4FF;
            border: 1px solid #449EFB;
        }

        .maxthon_tip:hover {
            background-color: #E6F4FF;
            border: 1px solid #449EFB;
        }
    </style>