* {
    margin: 0;
    padding: 0;
    font-size: 0.16rem;
}

body {
    background: #fff;
}

.main {
    width: 14rem;
    margin: 0 auto;
}

.class_name {
    margin-bottom: 0.52rem !important;
}



.banner {
    width: 100%;
    max-width: 19.2rem;
    height: 6rem;
    position: relative;
    margin: -0.7rem auto 0;
}

.banner .banner_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: -1;
}

.banner .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .ban_name {
    font-weight: bold;
    font-size: 0.36rem;
    color: #FFFFFF;
    text-align: center;
    padding-top: 2.54rem;
}

.banner .ban_cont {
    margin-top: 0.17rem;
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
    text-align: center;
}




/* 内容 */

.form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 1.09rem;
}

.title {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 0.3rem;
    color: #000000;
    line-height: 0.45rem;
    margin-bottom: 0.82rem;
}

.user_h {
    width: 100%;
    margin-bottom: 0.4rem;
    display: flex;
    flex-wrap: wrap;
}


.user_list {
    width: 4.33rem;
    height: auto;
    margin-right: 0.5rem;
}

.user_list:nth-child(3n) {
    margin-right: 0;
}

.user_list .radio {
    width: 100%;
}

.user_title {
    width: 100%;
    font-weight: 600;
    font-size: 0.18rem;
    color: #000000;
    line-height: 0.38rem;
    margin-bottom: 0.13rem;
}

.user_title b {
    color: #FF0000;
    padding-right: 0.04rem;
}

.user_input input {
    width: 100%;
    height: 0.56rem;
    font-weight: 400;
    font-size: 0.16rem;
    color: #333;
    display: block;
    padding-left: 0.15rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.46);
    border: 0.01rem solid #E5E5E5;
}

.user_input input::placeholder {
    color: #9A9A9A;
}




.user_text {
    width: 100%;
    float: left;
}

.user_text textarea {
    width: 100%;
    height: 3rem;
    background: rgba(255, 255, 255, 0.46);
    border: 0.01rem solid #E5E5E5;
    padding: 0.15rem 0.12rem;
    box-sizing: border-box;
}

.user_text textarea::placeholder,
.user_input input::placeholder {
    color: #9A9A9A;
    font-weight: 400;
    font-size: 0.16rem;
}

.submit {
    width: 1.6rem;
    height: 0.5rem;
    background: linear-gradient(90deg, #4FCCE8 0%, #0071FF 100%);
    border-radius: 0.04rem;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.5rem;
    text-align: center;
    display: block;
    margin: 0.51rem auto 0rem;
}









/* 单选按钮 */
.radio {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 0.16rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 1.12rem;
}

.radio-container:last-child {
    margin-right: 0;
}

/* Hide the browser default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    width: 0.14rem;
    height: 0.14rem;
    border-radius: 50%;
    border: 0.01rem solid #707070;
    margin-right: 0.11rem;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input~.checkmark {
    border: 0.01rem solid #0071FF;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.checkmark {
    background: #fff;
    border: 0.01rem solid #0071FF;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    top: 0.0715rem;
    left: 0.037rem;
    width: 0.07rem;
    height: 0.07rem;
    background: #0071FF;
    border-radius: 50%;
}







@media only screen and (max-width: 1024px) {
    .banner{
        height: 4.6rem !important;
    }
    .banner .ban_name{
        padding-top: 2.5rem;
    }
    .title{
        width: 74%;
        margin: auto;
    }
    .form form .user_h:nth-of-type(2){
        margin-top: 0.5rem;
    }
    .user_title,.radio-container,.user_title,.user_input input,.submit{
        font-size: 12px;
    }
    .radio{
        flex-wrap: wrap;
    }
    .user_list{
        width: 100%;
        margin-right: 0;
        margin-top: 0.3rem;
    }
}