#iwmPopup{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
z-index:999999;
}

.iwmBox{
width:340px;
background:#f8f8f8;
border:1px solid #2e2e2e;
border-radius:4px;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
box-shadow:0 0 25px rgba(0,0,0,.45);
overflow:hidden;
}

.iwmHead{
background:#0d0d0d;
color:#fff;
padding:12px;
font-size:13px;
font-weight:bold;
border-bottom:2px solid #f0c400;
text-shadow:0 1px 1px #000;
position:relative;
}

.iwmHead:after{
content:'';
position:absolute;
right:0;
top:0;
width:65px;
height:100%;
background:
linear-gradient(-70deg,
transparent 0,
transparent 45%,
#f0c400 46%,
#f0c400 50%,
transparent 51%,
transparent 65%,
#f0c400 66%,
#f0c400 70%,
transparent 71%);
}

.iwmBody{
padding:8px;
background:#f3f3f3;
}

.iwmLine{
padding:11px 6px;
border-bottom:1px dashed #cfcfcf;
font-size:13px;
color:#444;
transition:.2s;
}

.iwmLine:hover{
background:#ececec;
padding-left:10px;
}

.iwmBtns{
text-align:center;
padding:12px;
background:#f3f3f3;
}

.iwmRed{
border:0;
color:#fff;
padding:8px 18px;
cursor:pointer;
border-radius:4px;
font-weight:bold;
box-shadow:0 2px 4px rgba(0,0,0,.2);
background:linear-gradient(#ff6464,#d10000);
}

.iwmBlue{
border:0;
color:#fff;
padding:8px 18px;
cursor:pointer;
border-radius:4px;
margin-left:5px;
font-weight:bold;
box-shadow:0 2px 4px rgba(0,0,0,.2);
background:linear-gradient(#89d4ff,#2f97e8);
}

.iwmRed:hover,
.iwmBlue:hover{
opacity:.92;
transform:translateY(-1px);
}