/* 合集详情样式 */
.collectionDetail {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.collectionHeader {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}
.collectionHeader img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}
.collectionHeader .info h1 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #333;
}
.collectionHeader .info p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
.collectionHeader .info .desc {
    margin-top: 12px;
    color: #666;
    line-height: 1.6;
}
.collectionHeader .info strong {
    color: #ee6767;
}

/* 应用列表样式 */
.collectionDetail ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}
.collectionDetail ul li {
    width: calc(16.66% - 17px);
    min-width: 150px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}
.collectionDetail ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.collectionDetail ul li a {
    display: block;
    text-decoration: none;
    color: #333;
}
.collectionDetail ul li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: block;
}
.collectionDetail ul li .name {
    font-size: 14px;
    text-align: center;
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.collectionDetail ul li .meta {
    font-size: 12px;
    text-align: center;
    color: #666;
}
.collectionDetail ul li .date {
    font-size: 11px;
    text-align: center;
    color: #999;
    margin: 5px 0 0;
}
.collectionDetail ul li .btn {
    display: block;
    width: 80px;
    margin: 10px auto 0;
    padding: 5px 0;
    text-align: center;
    background: #ee6767;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .collectionDetail ul li {
        width: calc(20% - 16px);
    }
}
@media (max-width: 768px) {
    .collectionDetail ul li {
        width: calc(25% - 15px);
    }
    .collectionHeader {
        flex-direction: column;
        text-align: center;
    }
    .collectionHeader img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .collectionDetail ul li {
        width: calc(50% - 10px);
    }
}
