@charset "UTF-8";

/* 后加 */
.form-text>textarea,
.option-input>input,
.form-input>input{
    font-size: 16px;
}
/* end */

body{
    padding: 0;
    margin: 0;
}

ul>li{
    list-style-type: none;
}
a,h3,h5,p,ul{
    margin: 0;
    padding: 0;
}
.form-title{
    display: flex;
    padding:50px 30px 45px;
}
.form-title>a{
    width: 150px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    border: solid 1px #e5e5e5;
    font-size: 18px;
    color: #14a5af;
    text-align: center;
    line-height: 40px;
    margin-left: 30px;
    text-decoration: none;
}
.form-title>h3{
    font-size: 32px;
    color: #3aa0ff;
    padding-left: 30px;
    border-left: 10px solid #3aa0ff;
}
.red{
    color: #ff0000;
    font-size: 18px;
}
.form-list{
    padding-left: 0;
}
.form-list>li{
    padding: 10px 70px;
    border-bottom: 1px solid #cccccc60;
}
.form-input .red{
    margin-right: 10px;
}
.form-input>span{
    display: inline-block;
    width: 110px;
    font-size: 18px;
    color: #444444;
}
.form-input>input{
    margin-left: 20px;
    padding: 0 10px;
    width: 500px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-option-box{
    display: flex;
    padding: 10px 70px;
    border-bottom: 1px solid #cccccc60
}
.option-title{
    font-size: 18px;
    color: #444444;
    font-weight: initial;
    text-align: right;
    padding-top: 10px;
}
.form-option{
    display: flex;
    flex-wrap: wrap;
    width:60%;
    padding-left: 20px;
}
.option-input{
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 0;
}
.option-input>p{
    color: #444;
}
.form-text{
    display: flex;
    padding: 10px 70px;
    border-bottom: 1px solid #cccccc60;
}
#zyftd{
    margin-left: 20px;
    padding: 10px 15px;
    resize:none;
    width: 26%;
    height: 120px;
    border: 1px solid #ccc;
}
.form-btn{
    display: flex;
    padding: 20px 70px ;
}
.form-btn>button{
    width: 70px;
    height: 35px;
    color: #fff;
    background-color: #007aff;
    border: 0;
    margin-right: 20px;
    border-radius: 5px;
}
.form-btn>a{
    width: 70px;
    height: 35px;
    background-color: #cccccc78;
    color: #444;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    line-height: 35px;
    font-size: 14px;
}

@media (max-width:990px) {
    .form-text>textarea,
    .option-input>input,
    .form-input>input{
        font-size: 14px;
    }
    .form-title>a,
    .red,
    .option-title,
    .form-input>span{
        font-size: 16px;
    }
    .form-btn,
    .form-text,
    .form-option-box,
    .form-list>li{
        padding: 10px;
    }
    .form-btn{
        justify-content: center;
    }



    .form-input{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .form-input>input{
        width: 60%;
        margin-left: 0;
    }
    .form-input>span{
        width: 100px;
        padding-right: 10px;
        text-align: left;
    }
    .form-option-box{
        flex-wrap: wrap;
    }
    .form-option{
        width: 100%;
        padding: 0 20px;
    }
    .option-title{
        width: auto;
    }
    .form-text{
        flex-wrap: wrap;
    }
    #zyftd{
        width: 100%;
        margin: 20px 20px 0 ;
    }
}