/* 下载资源详情页样式 */

/* 确保下载资源页面布局正确 */
.download-detail {
    position: relative;
}

.download-detail .art-header {
    margin-bottom: 0;
}

.download-detail .art-info {
    position: relative;
    z-index: 2;
}

/* 文件信息标签 */
.file-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.file-info-tag {
    background: rgba(31, 128, 255, 0.1);
    color: #1f80ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(31, 128, 255, 0.2);
}

/* 下载链接样式 - 与网址详情页保持一致 */
.download-link {
    background: #1f80ff;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 8px;
}

.download-link:hover {
    background: #0d6efd;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.download-link[data-type="baidu"] {
    background: #1f80ff;
    color: white !important;
}

.download-link[data-type="baidu"]:hover {
    background: #0d6efd;
    color: white !important;
    text-decoration: none !important;
}

.download-link[data-type="quark"] {
    background: #ffe78f;
    color: #333 !important;
}

.download-link[data-type="quark"]:hover {
    background: #ffc107;
    color: #333 !important;
    text-decoration: none !important;
}

/* 下载说明样式 - 使用主题配色 */
.download-notes {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 1px solid #1f80ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    clear: both;
}

.download-notes-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1f80ff;
    margin-bottom: 15px;
}

.download-notes-title i {
    margin-right: 8px;
    font-size: 18px;
}

.download-notes-content {
    color: #424242;
    line-height: 1.6;
}

.download-notes-content p {
    margin: 0 0 10px 0;
}

.download-notes-content ul,
.download-notes-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.download-notes-content li {
    margin: 5px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-link {
        padding: 10px 16px;
        font-size: 13px;
        margin-right: 8px;
        margin-bottom: 6px;
    }
    
    .file-info-tags {
        gap: 6px;
    }
    
    .file-info-tag {
        padding: 4px 8px;
        font-size: 11px;
    }
}
