.pop {
    visibility: hidden;
}

.pop--show {
    visibility: visible;
}

.pop__mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.pop__mask--hide {
    background: 0 0;
}

.pop__container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: center;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease; /* Firefox 4 */
    -webkit-transition: all 0.4s ease; /* Safari 和 Chrome */
    -o-transition: all 0.4s ease;; /* Opera */
    z-index: 11;
    opacity: 0;
    background-color:transparent;
}

.pop--show .pop__container {
    opacity: 1;
}

.pop--show .pop__mask {
    display: block;
}

.pop--left .pop__container {
    left: 0;
    top: 50%;
    transform: translate3d(-100%, -50%, 0);
}

.pop--show.pop--left .pop__container {
    transform: translate3d(0, -50%, 0);
}

.pop--right .pop__container {
    right: 0;
    top: 50%;
    left: auto;
    transform: translate3d(100%, -50%, 0);
}

.pop--show.pop--right .pop__container {
    transform: translate3d(0, -50%, 0);
}

.pop--bottom .pop__container {
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%, 100%, 0);
}

.pop--show.pop--bottom .pop__container {
    transform: translate3d(-50%, 0, 0);
}

.pop--top .pop__container {
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -100%, 0);
}

.pop--show.pop--top .pop__container {
    transform: translate3d(-50%, 0, 0);
}




.paper-header {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    /*padding: 0 20px;*/
}

.paper-header-mfx {
    color: #c5c3c5;
    width: 70%;
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin: 0 auto;
}

.paper-header-mfx::after {
    content: "";
    position: absolute;
    left: -25%; /* 为了使虚线达到100%宽度，这里计算偏移量，80%宽度对应左右各偏移12.5% */
    right: -25%;
    top: 50%;
    transform: translateY(-50%);
    border-bottom: 2px dotted #c5c3c5;
    box-sizing: border-box;
    z-index: 1;
}
.paper-header-mfx span {
    position: relative;
    z-index: 2;
    background-color: white;
}

.paper-header-time {
    color: #333434;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

.monospace {
    font-family: monospace; /* 使用等宽字体 */
}

.resize-triggers {
    display: none;
}

.disable-pointer-events {
    pointer-events: none;
}
.check-icon{
    display: none;
}