.mess_box{
    position: fixed;
    top:0;
    left:0;
    z-index: 999999;
    backdrop-filter:blur(12px);
    background-color: #0009;
    width: 100%;
    height: 100vh;
    display: none;
}
.mess_box.on{
    display: grid;
    place-items: center;
    place-content: center;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.mess_cont{
    background-color: #fff;
    padding: 30px 70px;
    border-radius: 40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 65%;
    max-width: 800px;
    position: relative;
}
.mess_close{
    text-align: right;
    color: #000;
    font-size: 26px;  
    position: absolute;
    top:20px;
    right:35px;
    line-height: 20px;
    cursor: pointer;
}
#myForm{
    /*height: 500px;*/
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
    font-family: "FZLT_M";
}
#myForm::-webkit-scrollbar {/*滚动条整体样式*/
    width: 3px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
#myForm::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #ae0002;
}
#myForm::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #fff;
}
.form_group{
    display: flex;
    flex-wrap: wrap;
}
.form_group p{
    font-family: "FZLT_M";
}
.form_group1 p{
    margin-right: 41px;
}
.form_group1 p:last-child{
    margin-right: 0;    
}
#myForm .form_group1 label{
    margin-bottom: 0;
    float: left;
}
.form_group1 input{
    float: left;
}
/*[type="radio"]*/
#myForm input[type="radio"]{
    -webkit-appearance: radio; /* 针对WebKit内核浏览器，如Chrome、Safari */
    -moz-appearance: radio;    /* 针对Firefox */
    appearance: radio;
}
#myForm .form_group1 input[type="radio"]{
    width: 16px;
    height: 16px;
    /*margin-right: 0px;*/
    margin-left: 12px;
    /*border-radius: 100%;*/
    /*padding:0;*/
    /*background: #f3f3f3;*/
    /*box-shadow: 2px 2px 6px rgba(0,0,0,.1) inset;*/
    cursor:pointer;
    margin-top:0;
}
.form_group2{
    display: flex;flex-wrap: wrap;
    justify-content: space-between;
}
.form_group2 p{
    width: 48%;
    /*max-width: 352px;*/
}
.form-group{
    margin-bottom: 10px;
}
.form-group label {
    display: block;
    margin-bottom: 2px;
    font-family: "FZLT_M";
    font-size: 14px;
    color: #000;
    line-height: 18px;
}
/*.form-group input[type="radio"],*/
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 22.5px;
    height: 30px;
    line-height: 30px;
    background: #f3f3f3;
    box-shadow: 2px 2px 6px rgba(0,0,0,.1) inset;
}
.mess_select{
    width: 100%;
    /*max-width: 352px;*/
    /*padding: 0px 20px;*/
    /*border: 1px solid #ccc;*/
    /*border-radius: 22.5px;*/
    /*height: 45px;*/
    /*line-height: 45px;*/
    /*background: #f3f3f3;*/
    /*box-shadow: 2px 2px 6px rgba(0,0,0,.1) inset;   */
    position: relative;
}
.mess_select:after{
    content:'';
    position: absolute;
    right:20px;
    top:50%;
    margin-top:-5.5px;
    background: url(/template/default/images/select_arrow.png) no-repeat right center; 
    width: 18px;
    height: 11px;
}
/*.form-group select{*/
/*    all: unset;*/
/*    width: 100%;*/
/*}*/
.form-group select option{
    padding:3px 20px;
    font-size: 14px;
}
select{
    width: 100%;
    /*max-width: 352px;*/
    padding: 0px 20px;
    border: 1px solid #ccc;
    border-radius: 22.5px;
    height: 30px;
    line-height: 30px;
    background: #f3f3f3;
    box-shadow: 2px 2px 6px rgba(0,0,0,.1) inset; 
    /*border: 1px solid #ccc;*/
    /*border-radius: 5px;*/
    /*padding: 5px;*/
    font-size: 14px;
    appearance: none; /* 去除默认样式，不同浏览器有不同表现 */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
}
option{
    font-size: 14px;
    color: #333;
    background-color: #fff;
    padding: 8px 20px!important;
}
option:checked{
    background-color: #007bff;
    color: #fff;
}
option:hover{
    background-color: #e0e0e0;
}
select::-webkit-scrollbar{
    width: 8px;
}
select::-webkit-scrollbar-thumb{
    background-color: #ccc;
    border-radius: 4px;
}
select::-webkit-scrollbar-track{
    background-color: #f9f9f9;
}
.form-group textarea{
    height: 90px; 
    display: block;
    font-family: "FZLT_M";
}
.form_group3 label{
    margin-bottom: 0;
}
.form_group3 a{
    font-size: 14px;
    color: #000;
    font-family: "FZLT_M";
    line-height: 20px;
}
#agree1{
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 100%;
    margin: 0 20px 0 0;
}
input[type="checkbox"]{
    -webkit-appearance: checkbox; /* 针对WebKit内核浏览器，如Chrome、Safari */
    -moz-appearance: checkbox;    /* 针对Firefox */
    appearance: checkbox;
}
.form-group span{
    font-size: 12px;
    color: #ad0003;
    font-family: "FZLT_M";
}
.form-group button {
    font-size: 14px;
    color: #ad0003;
    border: 1px solid #ae0002;
    padding: 14px 60px;
    border-radius: 24px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    background: #fff;
}
.form-group button:hover {
    background-color: #ae0002;
    color: #fff;
}
@media(max-width:1860px){
    .mess_cont{
        max-width:760px;
    }
    .mess_cont{
        /*padding:88px 100px;*/
    }
    .form-group{
        margin-bottom:6px;
    }
}
@media(max-width:1600px){
    .mess_cont{
        max-width:860px;
    }
    .mess_cont{
        padding:25px 50px;
    }
    /*.mess_close{*/
    /*    right:100px;*/
    /*}*/
    .form-group label,.form_group3 a{
        font-size:12px;
    }
    #agree1{
        margin: 0 10px 0 0;
    }
    .form-group button{
        padding:10px 40px;
    }
}
@media(max-width:1280px){
    .mess_cont{
        padding:25px 40px 15px;
        border-radius:20px;
        width:70%;
    }
    /*.mess_close{*/
    /*    right:50px;*/
    /*}*/
    /*.form-group{*/
    /*    margin-bottom: 25px;*/
    /*}*/
    .form-group{
        margin-bottom: 5px;
    }
    .form-group label{
        /*font-size:16px;*/
        margin-bottom: 2px;
    }
    /*.form-group textarea {*/
    /*    height: 225px;*/
    /*}*/
    /*.form_group3 a{*/
    /*    font-size:16px;*/
    /*}*/
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea{
        border-radius: 16px;
        height: 32px;
        line-height: 32px;
    }
    .form-group textarea{
        height:96px;
    }
    #myForm .form_group1 input[type="radio"]{
        width:15px;
        height:15px;
    }
    #agree1{
        margin-right:12px;
    }
}
@media(max-width:1099px){
    .mess_cont{
        width:80%;
    }

}
@media(max-width:820px){
    .mess_cont{
        padding:25px 35px;
        width:90%;
    }
    .mess_close{
        right:15px;
        font-size:22px;
        top:20px;
    }
    #myForm .form_group1 input[type="radio"]{
        width:12px;
        height:12px;
    }
    #agree1{
        margin-right:8px;
    }
}
@media(max-width:600px){
    .mess_cont{
        padding:25px 20px;
    }
}
<!--0.00015091896057129-->