/* 详情区域 */

.detail-section {
    margin-top: 20px;
    margin-bottom: 28px;
}


/* 顶部区域 */

.detail-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.detail-cover {
    width: 200px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* 右侧 */

.detail-side {
    flex: 1;
    min-width: 0;
}


/* 基础信息 */

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-meta p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}


/* 标题 */

.detail-title {
    margin: 0 0 14px;
    color: #f5f5f5;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}


/* 操作区 */

.detail-action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-play-btn {
    flex: 1;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff334b, #ff5c6c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.detail-mini-ad {
    min-width: 92px;
    height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid #252b35;
    background: #0d1118;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}


/* 简介 */

.detail-desc {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #252b35;
    background: #0d1118;
}

.detail-block-title {
    margin-bottom: 12px;
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 700;
}

.detail-desc p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.9;
    word-break: break-word;
}


/* 小屏 */

@media (max-width: 390px) {

    .detail-cover {
        width: 130px;
        height: 180px;
    }

    .detail-title {
        font-size: 20px;
    }

    .detail-meta p {
        font-size: 13px;
    }

    .detail-action-row {
        gap: 8px;
    }

    .detail-mini-ad {
        min-width: 78px;
        padding: 0 10px;
        font-size: 13px;
    }

}