#popup-cover{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    background-color: rgba(0,0,0,0.5);
}

#popup {
    width: 400px;
    height: 215px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 7;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    text-align: center;
    overflow: hidden;
    background: white;
    border-radius: 3px;
    border: 0.5px solid #d3d3d3;
    box-shadow: 0 0 3px #d3d3d3;
}

#popup .popup_top {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: rgb(130, 153, 167);
}

#popup .popup_content {
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}

#popup .popup_title {
    height: 30px;
    line-height: 30px;
    text-align: left;
    font-size: 18px;
    color: #454545;
}

#popup input {
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    width: 100%;
    height: 30px;
    font-size: 14px;
    color: #333;
}

#popup #submit,#popup #cancel {
    display: inline-block;
    margin: 40px 20px 0 0;
    height: 34px;
    line-height: 34px;
    width: 71px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    cursor: pointer;
    background-color: #666;
    border-radius: 10px;
}