/* 弹窗 CSS start */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background: rgba(0,0,0,.3);
    font-size: 16px;
    text-align: center;
}
.modal-sm {
    width: 90%;
    margin: 30px auto;
    max-width: 400px;
}
.modal-header {
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
#mydel {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: -16px;
    top: -100px;
    background: rgba(0,0,0,.85);
    color: #fff;
    border-radius: 50px;
    font-family: Arial;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
}
.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-body {
    position: relative;
    padding: 15px;
}
/* 弹窗 CSS end */

/* 新窗口 CSS start */
.alert_cont {
    max-width: 620px;
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);/* IE 9*/
    -moz-transform: translate(-50%, -50%);/* Firefox*/
    -webkit-transform: translate(-50%, -50%);/* Safari 和 Chrome*/
    -o-transform: translate(-50%, -50%);/* Opera*/
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 10px 10px;
}

.alert {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.alert_img {
    display: block;
    width: 98px;
    margin: 15px auto 15px;
}

.alert_text {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #333;
}

.alert .close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
}

.alert .close span {
    display: block;
    width: 30px;
    height: 30px;
    background: #eee;
    color: #000;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    margin: 5px;
    border-radius: 100px;
}

.alert_close {
    display: block;
    width: 50%;
    margin: 15px auto 15px;
    background-color: #69f550;
    color: #fff;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
}
/* 新窗口 CSS end */