/* 下载产业扶持弹窗 */
.form-inner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 111;
}

.form-inner-content {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 420px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.2);
    transform: translate(-50%,-50%);
    padding-bottom: 36px;
}

.close-img {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 32px;
    text-align: center;
    padding-top: 32px;
}

.form-desc {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    text-align: center;
    margin-top: 4px;
}

.form-input-title {
    margin-top: 30px;
    margin-left: 46px;
    overflow: hidden;
}

.form-input-title img {
    float: left;
    width: 10px;
    height: 10px;
    margin-top: 6px;
}

.form-input-title div {
    float: left;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
}

.form-inner-content input {
    width: 316px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding-left: 8px;
    margin-left: 48px;
    margin-top: 8px;
}

.form-inner-content input::-webkit-input-placeholder  {   
    font-size: 14px;
    color: #BBBBBB;
    line-height: 32px;
}

.form-select {
    margin-top: 8px;
    margin-left: 48px;
    overflow: hidden;
}

.form-option {
    float: left;
    margin-right: 24px;
    overflow: hidden;
    cursor: pointer;
}

.form-option-circle {
    float: left;
    width: 16px;
    height: 16px;
    border: 1px solid #D9D9D9;
    margin-top: 2px;
    border-radius: 50%;
}

.form-option-circle div {
    width: 8px;
    height: 8px;
    margin: 4px;
    border-radius: 50%;
}

.form-option-text {
    float: left;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    margin-left: 8px;
}

.form-button {
    width: 328px;
    height: 38px;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 38px;
    text-align: center;
    background: #1F6CDD;
    border-radius: 4px;
    margin: 40px auto 0;
    cursor: pointer;
}

.form-option-active .form-option-circle {
    border: 1px solid #1F6CDD;
}

.form-option-active .form-option-circle div {
    background: #1F6CDD;
}