.form-content {
    margin: 30px 0;
}
.form-content .sub-title {
    margin-bottom: 10px;
    color: rgb(215, 0, 15);
}
.form-content .sub-title:before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 14px;
    margin-right: 10px;
    background-color: rgb(215, 0, 15);
    position: relative;
    top: 2px;
}
.form-content .tel {
    padding-left: 15px;
    margin-bottom: 20px;
}
.form-content .form-table {
    margin: 20px 0;
}
.form-content .float {
    overflow: hidden;
    padding: 5px 0;
}
.form-content .flex-left {
    float: left;
    width: 150px;
    min-height: 36px;
    margin-left: 3em;
    line-height: 36px;
    word-break: break-word;
    font-size: 14px;
    font-weight: 400;
}
.form-content .flex-left.text-indent1 {
    padding-left: 1em;
}
.form-content .flex-left span {
    color: rgb(215, 0 ,15);
}
.form-content .flex-right {
    float: left;
    width: calc(100% - 250px);
    width: -ms-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    margin-left: 10px;
    font-size: 14px;
    line-height: 20px;
}
.form-content .flex-right .code-box {
    padding: 0;
}
.form-content .flex-right input {
    width: 240px;
    height: 36px;
    padding: 5px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
.form-content .flex-right input:focus, .form-content .flex-right textarea:focus {
    border: 1px solid rgb(215, 0 ,15);
}
.form-content .flex-right input.width100 {
    width: 100px;
}
.form-content .flex-right #img {
    display: inline-block;
    margin: 0 8px;
    border-radius: 4px;
}
.form-content .flex-right .change-code {
    line-height: 36px;
    cursor: pointer;
    display: inline-block;
}
.form-content .flex-right textarea {
    width: 450px;
    height: 200px;
    padding: 5px 5px;
    line-height: 2;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
.form-content .flex-right .bt {
    padding: 5px 20px;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}
.form-content .flex-right .bt:nth-child(1), .form-content .flex-right .bt:nth-child(1) a {
    color: #fff;
    border: none;
    background-color: rgb(215, 0 ,15);
}
.form-content .flex-right .select-box {
    width: 240px;
    position: relative;
}
.form-content .flex-right #content_investertype {
    width: 240px;
    height: 36px;
    padding: 5px;
    border: 1px solid #ccc;
    outline: none;
    /*去掉默认的下拉三角*/
    appearance:none;  
    -moz-appearance:none;  
    -webkit-appearance:none;
    background: url(../img/common/arrow-down-black.png) right 10px center / 16px auto no-repeat;
}

.select-box {
    width: 240px;
    position: relative;
}
.select-current {
    line-height: 36px;
    padding-right: 36px;
    text-align: center;
    background: url(../img/company/select-box.png) right center/100% 100% no-repeat;
}
.select-list {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2), 0 0 0 #000, 0 5px 5px -2px rgba(0, 0, 0, .2), 0 5px 5px -2px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2), 0 0 0 #000, 0 5px 5px -2px rgba(0, 0, 0, .2), 0 5px 5px -2px rgba(0, 0, 0, .2);
    border-radius: 0 0 2px 2px;
    background-color: #fff;
}
.select-list.active {
    display: block;
}
.select-list li {
    padding-right: 20px;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form-content .flex-left {
        width: 120px;
        margin: 0;
    }
    .form-content .flex-right {
        float: left;
        width: calc(100% - 130px);
        width: -ms-calc(100% - 130px);
        width: -moz-calc(100% - 130px);
        width: -webkit-calc(100% - 130px);
    }
    .form-content .flex-right input.width100 {
        width: 80px;
    }
    .form-content .flex-right #img {
        width: 60px;
        height: 36px;
    }
    .form-content .flex-right input,
    .form-content .flex-right .code-box,
    .form-content .flex-right textarea,
    .form-content .flex-right .select-box,
    .form-content .flex-right #content_investertype {
        width: 100%;
    }
    
}