.model{
    position: fixed;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(255,255,255,0.3);
    z-index: 999999;
}
.content-container{
    width: 680px;
    margin: 0 auto;
    padding: 20px;
    color: #3e3e3e;
    border: 2px solid #dedede;
    border-top: 2px solid #ff4a00;
    background-color: #FFF;
    position: absolute;
    top: 26%;
    left:26%;
}
.close{
    display: inline-block;
    zoom: 1;
    width: 24px;
    height: 24px;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
    color: #DDD;
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close:hover{
    color: #ff4700;
}
.content-header{
    font-size: 14px;
    text-align: left;
}
.content-header h3{
    width:100%;
    font-size: 16px;
}
.content-body p{
    width:100%;
    font-size: 12px;
    text-align: left;
    margin-top: 10px;
    margin-left: 5px;
}
.content-body p a{
    font-weight: 700;
    font-size: 14px;
    color: #ff5b20;
}
.btn {
    display: inline-block;
    min-width: 180px;
    zoom: 1;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    background: #ff4001;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}
@media screen and (max-width: 768px){
    .content-container{
        width: 100%;
        top: 15%;
        left:0;
        box-sizing: border-box;
    }
}