<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dislike-popup-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
}

.dislike-popup-box .not-line-content-box {
    position: fixed;
    right: 50px;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* background-color: antiquewhite; */
}

.dislike-popup-box .not-line-content-box .dot {
    position: relative;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.32);
    margin-bottom: 0.08rem;
    margin-right: -0.13rem;
}

.dislike-popup-box .not-line-content-box .dot::after{
    content: '';
    position: absolute;
    left: 0.08rem;
    top: 0.08rem;
    width: 0.14rem;
    height: 0.14rem;
    background-color: #fff;
    border-radius: 50%;
}

.dislike-popup-box .not-line-content-box .dashed-line {
    width: 0.02rem;
    height: 0.29rem;
    background: repeating-linear-gradient(to bottom, #fff, #fff 6px, transparent 6px, transparent 8px)
}

.dislike-popup-box .not-line-content-box .content-box {
    width: auto;
    height: auto;
    padding: 0.24rem;
    background-color: #fff;
    border-radius: 0.16rem;
    margin-right: -0.26rem;
    margin-top: 0.1rem;
}

.dislike-popup-box .not-line-content-box .content-box .content {
    width: 2.92rem;
    height: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F7FA;
    border-radius: 0.12rem;
}

.dislike-popup-box .not-line-content-box .content-box .content .icon {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.1rem;
}

.dislike-popup-box .not-line-content-box .content-box .content .text {
    font-weight: 400;
    font-size: 0.28rem;
    color: #2C2D2E;
}</pre></body></html>