/* 下载列表样式 */
.download-list-section {
    padding: 4rem 0;
    background: var(--primary-color-10);
}

.download-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(27,45,107,0.08);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
}

.item-date {
   
    text-align: center;
    padding: 0.8rem;
    background: var(--primary-color);
    border-radius: 6px;
    color: white;
	align-content: center;
}

.year {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.day-month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.item-info h3 a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.item-info h3 a:hover {
    color: var(--accent-color);
}

.download-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.download-count {
    font-size: 0.9rem;
    color: #666;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .item-date {
        flex: none;
        width: 100px;
        margin-bottom: 1rem;
    }

    .download-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-list-section {
        padding: 2rem 0;
    }

    .year {
        font-size: 1rem;
    }

    .day-month {
        font-size: 0.8rem;
    }

    .item-info h3 {
        font-size: 1.1rem;
    }
}