/* ========== 资质知识库页面 独有样式 ========== */
.knowledge-banner {
    background: linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.85)), url('/template/zizhi/images/7.png') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
}
@media (max-width:992px) {
    .knowledge-banner { margin-top: 0; }
}
.knowledge-banner h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: bannerShine 2s infinite alternate;
}
.knowledge-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}
@keyframes bannerShine {
    0% { text-shadow: 0 0 10px rgba(198,164,63,0.2); }
    100% { text-shadow: 0 0 30px rgba(198,164,63,0.8); }
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}
@media (max-width: 992px) {
    .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .knowledge-grid { grid-template-columns: 1fr; }
}
.knowledge-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.knowledge-item:hover {
    box-shadow: 0 20px 30px -10px rgba(198,164,63,0.15);
    transform: translateY(-5px);
    border-color: #C6A43F;
}
.knowledge-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #eef2f6;
}
.knowledge-content {
    padding: 24px;
}
.knowledge-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.knowledge-content h3 a {
    color: #0A2540;
    transition: color 0.2s;
    text-decoration: none;
}
.knowledge-content h3 a:hover {
    color: #C6A43F;
}
.knowledge-desc {
    color: #4e5e73;
    font-size: 0.95rem;
    margin: 12px 0 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.knowledge-meta {
    display: flex;
    justify-content: space-between;
    color: #7f8c9f;
    font-size: 0.85rem;
    border-top: 1px solid #eef2f6;
    padding-top: 16px;
}
.knowledge-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.knowledge-meta i {
    color: #C6A43F;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 60px 0 20px;
    flex-wrap: wrap;
}
.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 12px;
    color: #1e2b3c;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
}
.page-num i {
    font-size: 0.9rem;
}
.page-num:hover {
    background: #f5f7fa;
    border-color: #C6A43F;
    color: #C6A43F;
}
.page-num-current {
    background: #0A2540;
    border-color: #0A2540;
    color: white;
}
.page-num-current:hover {
    background: #0A2540;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    color: #7f8c9f;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: #4e5e73;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #C6A43F;
}
.breadcrumb i {
    font-size: 0.7rem;
    color: #C6A43F;
}

.knowledge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 20px;
}
.knowledge-tags a {
    background: #eef2f6;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #1e2b3c;
    transition: 0.2s;
}
.knowledge-tags a:hover {
    background: #C6A43F;
    color: white;
}