.color-title .textDesc
{
    font-size: 15px;
    font-weight: 500;
    line-height: 45px;
    font-family: Roboto;
    width: 1000px;
    margin: 0 auto;
}

.color-title .textDesc .h2
{
    font-size: 15px;
    font-family: Roboto;
}

header .logo1 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    margin: 0;
}


/** pagination */
.pagination-container {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif; /* 建议使用现代无衬线字体 */
    letter-spacing: -0.01em;
    justify-content: center;
    margin-top: 40px;
}

.pagination-status {
    color: #fff;
    font-size: 13px;
}

.pagination-status strong {
    color: #111; /* 关键数字用深色 */
    margin: 0 2px;
}

.pagination-nav a {
    text-decoration: none;
    color: #111;
    padding: 8px 12px;
    margin-left: 10px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.pagination-nav a.active {
    background-color: #f5f5f7; /* 极浅灰背景，不抢眼但清晰 */
    font-weight: 600;
}

@media screen and (max-width: 1100px) {
    .color-title .textDesc {
        width: 100%;
        max-width: 960px;
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 35px;
    }

    .color-title .textDesc .h2 {
        font-size: 14px;
    }
}