.detail-page {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

/* 侧边栏 */
.detail-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(30, 64, 175, 0.2);
}

.recommend-item {
    display: block;
    padding: 12px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recommend-item:last-child {
    margin-bottom: 0;
}

.recommend-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    transform: translateX(4px);
}

.recommend-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.recommend-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.recommend-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.recommend-desc {
    font-size: 12px;
    color: #888;
}

/* 主内容区 */
.detail-main {
    flex: 1;
    min-width: 0;
}

.detail-card {
    background: #fff;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.app-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.app-logo-lg {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.app-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.app-tags span {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.app-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.content-block h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #1e40af;
}

.content-block p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

.content-block li {
    padding: 10px 0;
    color: #444;
    line-height: 1.6;
}

.screenshot {
    width: 100%;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .detail-page {
        flex-direction: column;
    }

    .detail-sidebar {
        width: 100%;
    }

    .sidebar-card {
        position: static;
    }

    .detail-card {
        padding: 24px;
    }

    .app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-tags {
        justify-content: center;
    }
}
