
.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:25px ;
    margin-top: 50px;
}
.title .line {
    height: 3px;
    background-color: #960013;
    width: 300px;
    margin: 10px 0;
}

.data_info {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
}

.data_info .left_data_ifno {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 30px;
    box-sizing: border-box;
    padding: 0 20px;
    justify-content: space-between;
}

.start_zixun {
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 18px;
    border-radius: 15px;
    border: 1px solid #960013;
    color: #960013;
    padding: 5px 20px;
    width: max-content;
}
.sub_btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    border-radius: 15px;
    background: #960013;
    color: #FFF;
    padding: 5px 20px;
    width: max-content;
}

.data_info .right {
    display: flex;
    flex-direction: column;
    background-color: #EEEEEF;
    padding: 15px;
}
.right_title {
    text-align: center;
    margin: 15px 0;
    font-size: 20px;
    font-weight: 700;
}

.er_code_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.er_code_div .er_code {
    width: 130px;
    height: 130px;
    border: 1px solid #000;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:5px ;
}


.input_item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.input_item_label {
    width: 220px;
    display: flex;
    flex-direction: column;
}
.label_name {
    text-align: left;
    font-size: 18px;
}
.label_line {
    height: 3px;
    background-color: #960013;
    width: 220px;
    margin: 3px 0;
}
.label_name_en {
    font-size: 18px;
    text-align: right;
}

.info_input {
    flex: 1;
    margin-left: 30px;
    height: 40px;
    box-sizing: border-box;
    padding-left: 10px;
}


.lianxi_img {
    width: 100%;
    height: 450px;
}
.lianxi_img img {
    width: 100%;
    height: 100%;
}

/*在小于等于480px屏幕尺寸时，以下CSS样式生效*/
@media only screen and (max-device-width: 480px){
 
    .mb_none {
        display: none!important;
    }
    
    .data_info {
        display: flex;
        flex-direction: column;
    }
    .data_info .left_data_ifno {
        /* display: flex; */
        margin-right: 0;
    }
    .input_item {
        flex-direction: column;
    }
    .label_line {
        width: 100%;
    }
    .input_item_label {
        width: 100%;
    }
     .info_input {
        margin-left: 0;
        width: 100%;
        line-height: 50px;
        height: 50px;
    }
    .lianxi_img {
        height: 200px;
    background-color: #000;
    margin-top: 30px;
    }
}

