/* 内容内表单 */
.con .con_l .form-title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.con .con_l .form-title .title-text {
    font-size: 20px;
    color: #2A78BA;
    font-weight: bold;
    margin-bottom: 5px;
}

.con .con_l .hint-text {
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 5px;
}

.con .con_l .form {
    width: 100%;
    background: #f0f7ff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.con .con_l .form .form-item{
    width: calc(50% - 10px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0 0 0;
    white-space: nowrap;
    font-size: 0;
}

.con .con_l .form .hidden-item{
    display: none;
}

.con .con_l .form .form-item .label-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
}

.con .con_l .form .form-item input, .con .con_l .form .form-item .select-nat {
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 8px;
    border: 0;
    background: #fff;
    box-sizing: border-box;
    font-weight: 400;
}


.con .con_l .form .form-item .country {
    width: 150px;
    height: 40px;
    padding: 10px;
    border-radius: 8px 0 0 8px;
    border: 0;
    background: #fff;
    box-sizing: border-box;
}

.con .con_l .form .form-item .phone-input {
    flex: 1;
    height: 40px;
    padding: 10px;
    border-radius: 0 8px 8px 0;
    border: 0;
    border-left: 1px solid #f5f5f5;
    background: #fff;
    box-sizing: border-box;
}

.con .con_l .form .form-item .radio-val {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.con .con_l .form .form-item .radio-text {
    font-size: 16px;
    margin-right: 5px;
}


.con .con_l .form .submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.con .con_l .form .submit-btn .btn-style {
    width: 50%;
    font-size: 18px;
    background: #2A78BA;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 10px 0;
    margin-top: 15px;
    border: none;
}

@media screen and (max-width: 768px) {
    /*表单*/
    .con .con_l .form .form-item {
        width: 100%;
    }

    .con .con_l .form .submit-btn .btn-style {
        width: 100%;
    }

    .con .con_l .form-title .title-text {
        margin-bottom: 5px;
    }

    .con .con_l .hint-text {
        margin-bottom: 5px;
    }

}