
.win_tips {
    margin-top: -187px;
    border-radius: 8px;
    background-color: white;
}

.win_masklayer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.44);
}

.win_tips .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    height: 44px;
    background-color: #1ba3e4;
    border-radius: 6px 6px 0 0;
}

.win_tips .header > span {
    font-size: 16px;
    color: white;
}

.win_tips .header > img {
    cursor: pointer;
    -webkit-transition: .6s;
    transition: .6s;
}

.win_tips .header > img:hover {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.win_tips .contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    margin: 30px 0 20px 0;
}

.win_tips .contents > img {
    margin-right: 16px;
}

.win_tips .contents_span {
    max-width: 300px;
}

.win_tips .contents_span > span {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
}

.win_tips .footer {
    height: 56px;
}

.win_tips .footer > div {
    display: flex;
    align-items: center;
    padding: 15px;
}

.win_tips .footer > .right {
    width: auto;
    float: right;
}

.win_tips .footer > .center {
    width: auto;
    justify-content: center;
}

.win_tips #sureBtn {
    padding: 0 24px;
    height: 30px;
    border-radius: 3px;
    border: none;
    background-color: #1ba3e4;
    color: white;
    font-size: 14px;
    cursor: pointer;
    outline: 0;
}

.win_tips #cancelBtn {
    padding: 0 24px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #dcdfe6;
    background-color: white;
    color: #3e3e3e;
    font-size: 14px;
    cursor: pointer;
    outline: 0;
    margin-right: 12px;
}