/*form {
	max-width: 600px;
}*/

.form-col {
    line-height: 35px;
    font-size: 14px;
   width: 100%;
}
.form-col-3{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.form-col-3 .form-col{
    margin-right: 30px;
}
#check-code {
    line-height: 35px;
    font-size: 15px;
}

.form-col label {
    flex: 1;
    box-sizing: unset!important;
    color: #232323;
    font-size: 15px;
    line-height: 35px;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

.form-col>input,
.form-col>textarea {
    background-color: #f9fbfc;
    color: #999;
    font-size: 15px;
    border: 1px solid #D9D9D9;
    border-radius: 0;
    padding: 0 10px;
    resize: vertical;
    width: 100%;
    line-height: 40px;
}

#check-code>input {
    background-color: #f9fbfc;
    color: #999;
    font-size: 15px;
    border: 1px solid #d9e1e3;
    padding: 0 10px;
    resize: vertical;
    width: 60%;
    float: left;
    line-height: 40px;
}

#check-code>label {
    display: block;
}

.form-col>textarea {
    min-height: 120px;
}

/* header
<link href="https://fonts.googlefonts.cn/css?family=Architects+Daughter" rel="stylesheet">
*/
.code {
    font-family: 'Architects Daughter', cursive;
    color: #666;
    font-size: 16px;
    border-radius: 6px;
    resize: vertical;
    padding: 0 10px;
    font-size: 30px;
    font-style: italic;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    width: 40%;
    cursor: pointer;
    float: left;
}

.submit input {
    width: 100%;
    display: inline-block;
    width: 200px;
    text-align: center;
    margin: auto;
    border: none;
    line-height: 50px;
    border-radius: 4px;
    transition: 0.3s all;
    cursor: pointer;
    background-image: linear-gradient(to right, #0663EF 0%, #2CDAFF 100%);
    color: #fff;
}

.inputfocus {
    border: 1px solid green;
}

.submit input:hover {
    background: #0663EF;
}

.contact-box>div:nth-child(1) {
    float: left;
    width: 50%;
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
}

.contact-box>div.info-box {
    float: left;
    width: 50%;
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
}

.contact-box .fa {
    font-size: 30px;
    float: left;
    margin-right: 10px;
    color: #5eb52a;
}

.submit {
    clear: both;
    overflow: hidden;
    margin-top: 20px;
    text-align: right;
}

.form-title {
    margin-bottom: 20px;
}

.form-title>p {
    font-size: 28px;
    font-weight: 600;
}

.form-title>p.sub-title {
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width:480px) {
    .form-col-3{
        display: block;
    }
    .form-col-3 .form-col{
        margin-right: 0;
    }
}