/* 文档下载页面样式 */
a{ text-decoration:none;}
.download-container {
    padding: 40px 0;
    min-height: 60vh;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.download-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 6px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: #555;
}

.filter-group select, 
.filter-group input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-group input {
    min-width: 200px;
}

.search-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #0052a3;
}

.download-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.download-pagination button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-pagination button:hover:not(:disabled) {
    background: #0052a3;
}

.download-pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.page-info {
    color: #666;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0066cc;
}

.download-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.download-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: #f9f9f9;
}

.download-icon {
    margin-right: 15px;
    color: #0066cc;
    font-size: 24px;
}

.download-info {
    flex: 1;
}

.download-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.download-desc {
    color: #666;
    font-size: 14px;
}

.download-size {
    color: #999;
    font-size: 13px;
    margin-top: 5px;
}

.download-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0052a3;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-icon {
        margin-bottom: 10px;
    }

    .download-btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }

    .download-item {
        padding: 12px 15px;
    }
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; }
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }