    .detail-head {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 36px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 4px;
        padding: 26px;
        margin-bottom: 20px;
    }

    .detail-cover {
        width: 100%;
        aspect-ratio: 3 / 4;
        background: #f2f2f2;
        overflow: hidden;
    }

    .detail-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .detail-meta h2 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 16px;
        color: #222;
    }

    .detail-meta ul {
        border-top: 1px dashed #dcdcdc;
        padding-top: 10px;
    }

    .detail-meta li {
        display: grid;
        grid-template-columns: 78px 1fr;
        gap: 10px;
        padding: 6px 0;
        color: #333;
        font-size: 15px;
    }

    .detail-meta .label {
        color: #666;
    }

    .detail-body {
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 4px;
        padding: 24px 26px;
    }

    .detail-body p {
        font-size: 15px;
        color: #333;
        line-height: 1.95;
        text-indent: 2em;
        margin-bottom: 14px;
    }

    .detail-body p:last-child {
        margin-bottom: 0;
    }

    .detail-bottom-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 44px;
        margin-top: 24px;
        padding-top: 16px;
        border-top: 1px solid #ececec;
    }

    .detail-bottom-nav .divider {
        width: 1px;
        height: 18px;
        background: #d9d9d9;
    }

    .detail-bottom-nav a {
        color: #2d2d2d;
        font-size: 18px;
        line-height: 1.5;
    }

    .detail-bottom-nav a:hover {
        color: #1a3a6c;
    }

    .detail-bottom-nav .label {
        margin-right: 4px;
    }

    @media (max-width: 900px) {
        .detail-head {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 18px;
        }

        .detail-cover {
            max-width: 320px;
        }
    }