.form-cont{
    padding:10px;
    display: flex;
    flex-direction: column;
}
.form-cont label{
    font-size: 20px;
    color:#000000;
    margin-bottom: 10px;
}
.form-cont input{
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #B2BAC7;
    background: #FBFCFE;
    height: 50px;
    padding:0 20px;
}
.form-cont .commit-btn{
    width: 190px;
    height: 60px;
    background: linear-gradient( 180deg, #85BDFE 13%, #4281FF 84%);
    border-radius: 50px;
    border:0;
    margin:0 auto;
    color:#fff;
    font-size: 22px;
}
.form-cont .commit-btn:hover{
    background:#4281FF ;
}
.background-filter{
    content: '';
    position: fixed;
    background: rgba(0,0,0,.7);
    left:0;
    top:0;
    right:0;
    bottom:0;
    z-index: 999;
    transition: .3s;
}
.pop-outer{
    display: none;
}
.pop-cont{
    position: fixed;
    height:600px;
    width: 1100px;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 8px;
    z-index: 9999;
    transition: .3s;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
}
.pop-cont .ok-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:30px 0;
}
.pop-cont .ok-cont img{
    width: 72px;
    height: auto;
}
.pop-cont .ok-cont span{
    color:#222;
    font-size: 22px;
}
.pop-cont h2{
    background: linear-gradient( 90deg, #CBE6FF 0%, #E5F3FF 100%);
    padding:22px 50px;
    color:#222;
    font-size: 22px;
    margin-bottom: -10px;
    position: relative;
    z-index: 9;
}
.pop-cont h2 span{
    font-size: 24px;
    color:#1D418C
}
.pop-cont .answer{
    background: url("../img/popbanner.png") no-repeat;
    background-size: 100% auto;
    height: 269px;
    padding:30px 50px;
    color:#fff;
    font-size: 22px;
}
.pop-cont .pop-footer{
    display: flex;
    justify-content: center;
    padding:16px 0;
    background:rgba(87, 172, 249, 0.10);
    position: absolute;
    left:0;
    right:0;
    bottom:0;
}
.pop-cont .pop-footer button{
    width: 150px;
    height: 52px;
    color:#fff;
    background: #13CD78;
    border-radius: 10px;
    border:0;
    font-size: 22px;
    transition: .3s;
}
.pop-cont .pop-footer button:hover{
    background: darkgreen;
}
@media(max-width: 1100px){
    .pop-cont{
        position: fixed;
        width: 90%;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    .pop-cont .answer{
        background-size: 100% auto;
        background: url(../img/popbanner.png) no-repeat #4da2f8;

    }
}
@media (max-width: 676px) {
    .form-cont .commit-btn{
        height: 50px;
        font-size: 16px;
    }
    .form-cont{
        padding:10px 0;
    }
    .form-cont label{
        font-size: 16px;
    }
    .form-cont input{
        height: 40px;
        padding:0 10px;
    }
}
