    /* 标签存档页面样式 */
    .tags-archive-container {
        background: #fff;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .tags-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .tags-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 20px;
    }

    @media (max-width: 992px) {
        .tags-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .tags-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .tag-item {
        background-color: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #eaeaea;
    }

    .tag-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .tag-header {
        background-color: #1e40af;
        color: white;
        padding: 15px;
        position: relative;
    }

    .tag-name {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
        color: #fff;
    }

    .tag-count {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 3px 10px;
        font-size: 12px;
    }

    .tag-posts {
        padding: 15px;
    }

    .tag-posts ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tag-posts li {
        padding: 8px 0;
        border-bottom: 1px dashed #eaeaea;
    }

    .tag-posts li:last-child {
        border-bottom: none;
    }

    .tag-posts a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tag-posts a:hover {
        color: #1e40af;
    }

    .tag-view-all {
        display: block;
        text-align: center;
        margin-top: 15px;
        padding: 8px;
        background-color: #f0f0f0;
        color: #666;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .tag-view-all:hover {
        background-color: #1e40af;
        color: white;
    }

    .no-tags-message {
        text-align: center;
        padding: 30px;
        color: #666;
        font-style: italic;
    }

    .post-date {
        font-size: 12px;
        color: #999;
        margin-left: 5px;
    }
    .tag-posts .tag-view-all:hover {
        background-color: #1e40af;
        color: white; /* 修改为白色，确保与蓝色背景形成对比 */
    }
    /* 分页样式 */
    .pagination {
        margin: 30px 0;
        text-align: center;
    }

    .pagination ul {
        display: inline-block;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .pagination ul li {
        display: inline-block;
        margin: 0 3px;
    }

    .pagination ul li a,
    .pagination ul li span {
        display: block;
        padding: 8px 12px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        color: #333;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .pagination ul li a:hover {
        background: #1e40af;
        color: white;
        border-color: #1e40af;
    }

    .pagination ul li span.current {
        background: #1e40af;
        color: white;
        border-color: #1e40af;
    }