/*帖子查看容器CSS*/
.atcmain_box{
    width: 100vw;
    height: 100vh;
    display: grid;
    justify-items: center;
    align-content: flex-start;
    background-color: #1f1f1f44;
    box-shadow: 0 0 10px #47474744;
    z-index: 9998;
    position: fixed;
    top: 0;
    left: 0;
}


/*帖子查看box*/
.atc_box{
    width: 650px;
    display: grid;
    justify-items: center;
    border-radius: 6px;
    background: #ffffffce;
    backdrop-filter: blur(10px);
    margin-top: 30px;
    animation: atcbox 0.2s ease forwards;
}
@keyframes atcbox{
    0%{
        opacity: 0;
        transform: translateY(-10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0%);
    }
}
/*控件*/
.atc_ctl{
    width: 100%;
    padding: 8px 15px 10px 15px;
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom-style:dashed;
    border-bottom-width: 1px;
    border-bottom-color: #e1e1e1;
}
.atc_ctl button{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 5px;
    padding: 6px 18px 6px 13px;
    border-radius: 4px;
    background: #e7e7e7;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.13s ease 0s;
}
.atc_ctl button:hover{
    background: #e1e1e1;
}
.atc_ctl h1{
    font-size: 1rem;
    color: #666;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    transform: translateY(1px);
}
.atc_ctl h1 span{
    color: #ff7b23;
    font-size: 1rem;
}
.atc_ctl h1 img{
    width: 39px;
    height: 39px;
    margin-left: 8px;
    transform: translateY(-1px);
    user-select: none;
    -webkit-user-drag: none;
    border-radius: 50%;
}




/*帖子正文*/
.atc_content{
    width: 100%;
    max-height: 88vh;
    overflow: scroll;
    padding: 16px 20px;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom-style:dashed;
    border-bottom-width: 1px;
    border-bottom-color: #e1e1e1;
}
.atc_content::-webkit-scrollbar{
    display: none;
}
.atc_content p{
    font-size: 1.05rem;
}
.post-meta{
    color: #666 !important;
    margin-top: 18px;
}



/*帖子留言区*/
.atc_common{
    width: 100%;
    padding: 16px 20px;
    background: none;
    display: grid;
    justify-items: center;
    align-content: flex-start;
}
/*帖子留言控件*/
.atccm_ctl{
    width: 100%;
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.atccm_ctl h1{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    font-size: 0.98rem;
    gap: 6px;
    color: #666;
}
.atccm_ctl_btn{
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 20px;
}
.atccm_ctl_btn button{
   color: #666666b7;
   font-size: 0.92rem; 
}
.atccm_ctl_btn button:hover{
    color: #de874d;
}
.atccm_ctl_btn_active{
    color: #de874d !important;
}







/*响应式布局*/
@media (max-width: 860px) {
    .atc_box{
        width: 88vw;
        min-width: 360px;
        margin-top: 10vh;
    }
    .atc_ctl{
        padding: 6px 14px 8px 14px;
    }
    .atc_ctl button{
        font-size: 0.82rem;
        padding: 4px 15px 3px 10px;
    }
    .atc_ctl h1{
        font-size: 0.88rem;
    }
    .atc_ctl h1 span{
        font-size: 0.89rem;
    }
    .atc_ctl h1 img{
        width: 34px;
        height: 34px;
    }
    .atc_content{
        min-width: 360px;
    }
    .atc_content p{
        font-size: 1rem;
    }
    .atc_common{
        padding: 12px 15px;
        min-width: 360px;
    }
    .atccm_ctl svg{
        width: 18px;
        height: 18px;
    }
    .atccm_ctl h1{
        font-size: 0.88rem;
    }
    .atccm_ctl_btn button{
        font-size: 0.85rem;
    }
}