* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main {
    display:none;
    width: 100%;
    height: 100%;
    position:absolute;
    /*position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -350px;
    margin-left: -500px;*/
    overflow: hidden;
    z-index:9999;
}

.window {
    width: 334px;
    height: 300px;
    box-shadow: 0px 0px 10px #e8e8e8;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 4px;
}

.win-header {
    cursor: pointer;
    height: 30px;
    width: 100%;
    background:#f5f5f5;
}

.win-body {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
}

.win-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.win-sys-btns {
    width: 26px;
    height: 26px;
    background: url('../img/button/close.png') center center no-repeat;
    float: right;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    margin-right:8px;
    margin-top: 2px;
}
/* #closeWin{
    text-align: center;
    font-size: 18px;

} */