/* post.css —— 文章详情页（post）专有样式 */
.btn-download {
    background: #1abc9d;
    display: inline-block;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(22, 163, 74, 0.5);
    will-change: transform, opacity;
    margin-right: 2rem;
    width: 50%;
    max-width: 292px;
}
.btn-download > button {
    height: 100%;
}
.btn-download a {
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    border-bottom: none;
    align-items: center;
    justify-content: center;
}
.btn-download a > img {
    width: 28px;
    height: 28px;
    margin: 0;
}
.btn-download:hover {
    background: #15803d;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.copy-share-msg {
    width: fit-content;
    max-width: 50%;
}
@media (max-width: 768px) {
    .btn-download {
        margin-right: 1rem;
        width: 50%;
        padding: 0;
    }
    .btn-download a {
        font-size: 13px;
    }
    .btn-download a > img {
        width: 16px;
        height: 16px;
        margin: 0;
    }
}
.content-tabs-body {
    border: 1px solid #e5e7eb;
    padding: 16px;
    margin-top: 20px;
}
.dplayer {
    aspect-ratio: 16 / 9;
}
/* 文章顶部分隔线的间距微调（原内联 style 抽出） */
.line.line--mb1 {
    margin-bottom: 1rem;
}
.line.line--mt0 {
    margin-top: 0;
}
