@charset "UTF-8";

.qrcode_wrap {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
}
.qrcode_inner {
    text-align: center;
}
.qrcode_inner img {
    margin: 40px auto;
    height: 480px;
    border-radius: 15px;
}
.qrcode_footer {
    padding: 15px 10px;
    background-color: #fff;
    border-top: 1px solid #f2f2f2;
}
.qrcode_footer .tips {
    margin-bottom: 8px;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.cache__entry, .cache__entry-global {
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-sizing: border-box;
}
.cache__entry-global {
    width: 100%;
    max-width: 640px;
    position: fixed;
    top: 70px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 999;
    cursor: pointer;
    pointer-events: none;
    transition: top .5s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.cache__entry {
    position: absolute;
    right: 0;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.2);
    background-color: hsla(0,0%,100%,.85);
    border-radius: 20px 0 0 20px;
    z-index: 1000;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 5px 0 8px;
    font-size: 12px;
    line-height: 12px;
    pointer-events: auto;
    color: #333;
}
.cache__entry-icon {
    margin-right: 3px;
    width: 15px;
    position: relative;
    top: 1px;
}
.cache__entry-icon img {
    margin: 0;
    width: 100%;
}