/* 网上报名部分开始 */
.signUp{
    width: 100%;
    height: auto;
    background: url(../images/pc/ny_tu25.jpg) no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding: 5% 0;
}

.signUp form{
    flex-wrap: wrap;
}

.input-item{
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 1%;
}

.input-item label{
    width: 135px;
    text-align: right;
    font-size: 16px;
    color: #333333;
}

.input-item:nth-child(2n) label{
    width: 100px;
}

.input-item input, .input-item select, .input-item textarea{
    background: rgba(255,255,255,0.7000);
    border: 1px solid #E6E6E1;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    color: #A4A4A4;
    box-sizing: border-box;
    padding: 10px 15px;
}

.input-item input, .input-item select{
    width: calc(95% - 135px);
    height: 50px;
}

.mark-item{
    width: 100%;
}

.input-item textarea{
    width: calc(95% - 145px);
    height: 142px;
}

.item-tools{
    box-sizing: border-box;
    padding-left: 135px;
    margin-top: 3%;
}

.item-tools input{
    width: 146px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
}

.item-tools .submit{  
    text-align: center;
    background: linear-gradient(90deg, #C12602, #EE4225);
    border-radius: 5px;
    color: white;
    border: none;
    outline: none;
    margin-right: 5%;
}

.item-tools .cancel{
    text-align: center;
    background: #CFCFCF;
    border-radius: 5px;
    color: white;
    border: none;
    outline: none;
}

/* 网上报名部分结束 */












@media screen and (max-width: 768px) {
    .input-item{
        width: 100%;
    }

    .input-item:nth-child(2n) label{
        width: 135px;
    }

    .input-item textarea{
        width: calc(95% - 135px);
    }

    .item-tools input{
        width: 126px;
        height: 40px;
    }

    .item-tools .submit{
        margin-right: 2%;
    }
}

@media screen and (max-width: 468px) {
    .input-item input, .input-item select, .input-item textarea{
        font-size: 16px;
        padding: 0 15px;
    }

    .input-item input, .input-item select{
        height: 40px;
    }

    .input-item label, .input-item:nth-child(2n) label{
        width: 100px;
        font-size: 16px;
    }

    .input-item input, .input-item select, .input-item textarea{
        width: calc(95% - 100px);
    }

    .input-item textarea{
        height: 85px;
    }

    .item-tools input{
        width: 96px;
        height: 33px;
        font-size: 16px;
    }

    .item-tools{
        padding-left: 100px;
    }

    .input-item{
        margin-bottom: 3%;
    }
}