.easyDialog_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index: 9999;
    display: none;
}
.easyDialog_box {
    position: fixed;
    z-index: 10000;
    display: none;
}
.easyDialog_wrapper {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 5px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    min-width: 260px;
}
.easyDialog_title {
    padding: 10px 15px;
    margin: 0;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
    cursor: move;
    font-size: 16px;
}
.close_btn {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #999;
    text-decoration: none;
}
.close_btn:hover {
    color: #333;
}
.easyDialog_text {
    padding: 20px 15px;
    font-size: 14px;
    line-height: 1.5;
}
.easyDialog_footer {
    padding: 10px 15px;
    text-align: right;
    border-top: 1px solid #eee;
    background: #fafafa;
    border-radius: 0 0 5px 5px;
}
.easyDialog_footer button {
    margin-left: 10px;
    padding: 5px 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
}
.btn_highlight {
    background: #3388ff !important;
    color: #fff;
    border-color: #3388ff !important;
}
