.popup{
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 666;
    display: none;
}
.popup .popup-content{
    width:900px;
    padding: 10px;
    overflow:hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-image: linear-gradient(to bottom, #4281ac, #2ebd8f);
    background-image: -webkit-linear-gradient(to bottom, #4281ac, #2ebd8f);
}
.popup .popup-content .popup-content-content {
    background:#373737;
    padding: 60px;
    position: relative;
}
.popup .popup-close{
    position: absolute;
    top: 30px;
    right: 30px;
}
.popup .popup-close a{
    width:40px;
    height:40px;
    background: url('/assets/img/close.png') no-repeat center center;
    background-size: 100%;
    display:block;
}
.popup .general{
    width:76px;
    height:55px;
    margin: 0 auto;
    background: url('/assets/img/general.png') no-repeat center center;
    background-size: 100%;
}
.popup .cont{
    max-width:685px;
    margin: 0 auto;
    margin-top:35px;
}
.popup .cont p{
    padding: 0 20px;
    font-size:31px;
    line-height: 1.2;
    color:#fff;
    text-align:center;
}
.popup .submit{
    width:175px;
    height:52px;
    margin: 0 auto;
    margin-top:80px;
}
.popup .submit a{
    width:175px;
    height:52px;
    text-decoration:none;
    color:#fff;
    display:block;
    font-size:20px;
    text-align:center;
    line-height:52px;
    border-radius: 5px;
    background-image: linear-gradient(to right,#4281ac , #2ebd8f);
}
.popup .agreement{
    width:250px;
    margin: 0 auto;
    text-align:center;
    font-weight: bold;
    margin-top: 80px;
}
.popup .agreement a{
    text-align:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    border-bottom:1px solid #ccc;
}
@media screen and (max-width: 750px) {
    .popup .popup-content {
        width: 90%;
        padding: 7px;
    }
    .popup .popup-content .popup-content-content {
        padding: 50px 0;
    }
    .popup .cont{
        margin-top: 25px;
    }
    .popup .cont p{
        font-size: 16px;
        padding: 0 10px;
    }
    .popup .general {
        width: 46px;
        height: 50px;
        margin: 0 auto;
    }
    .popup .popup-close{
        top: 20px;
        right: 20px;
    }
    .popup .popup-close a{
        width: 20px;
        height: 20px;
    }
    .popup .submit{
        width:120px;
        height:40px;
        margin: 0 auto;
        margin-top:30px;
    }
    .popup .submit a{
        width:120px;
        height:40px;
        text-decoration:none;
        color:#fff;
        display:block;
        font-size:16px;
        text-align:center;
        line-height:40px;
        border-radius: 5px;
        background-image: linear-gradient(to right,#4281ac , #2ebd8f);
    }
    .popup .agreement{
        width:100%;
        margin: 0 auto;
        margin-top:30px;
    }
    .popup .agreement a{
        color:#fff;
        font-size: 14px;
    }
}