#content-core-breadcrumb {
    color: #575757; /* 次要黑灰色 */
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

#content-core-breadcrumb a {
    color: #0a5cad; /* 主题蓝色 */
    text-decoration: none;
    transition: color 0.3s ease;
}

#content-core-breadcrumb a:hover {
    color: #0068b7; /* 主要黑色字体 hover */
}

#content-core-title {
    color: #0a5cad; /* 主题蓝色 */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0a5cad; /* 主题蓝色 */
}

#content-core-content-list {
    list-style: none;
    padding: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-core-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.content-core-content-item:last-child {
    border-bottom: none;
}

#content-core-content-item-1:hover,
#content-core-content-item-2:hover {
    background-color: #e8eaff;
}

.content-core-content-link {
    color: #1e1e1e; /* 主要黑色 */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap; /* 不允许换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    flex: 1; /* 占据剩余空间 */
    margin-right: 20px; /* 与日期保持间距 */
}

.content-core-content-link:hover {
    color: #0068b7; /* 主要黑色字体 hover */
}

.content-core-content-link:before {
    content: "•";
    color: #0a5cad; /* 主题蓝色 */
    margin-right: 10px;
    font-weight: bold;
}

.content-core-date {
    color: #575757; /* 次要黑灰色 */
    font-size: 14px;
    white-space: nowrap; /* 不允许换行 */
    flex-shrink: 0; /* 禁止日期缩小 */
    text-align: right; /* 日期右对齐 */
}

#content-core-pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#content-core-first-page,
#content-core-prev-page,
#content-core-next-page,
#content-core-last-page,
#content-core-jump-btn {
    padding: 8px 15px;
    border: 1px solid #0a5cad; /* 主题蓝色 */
    background: white;
    cursor: pointer;
    color: #0a5cad; /* 主题蓝色 */
    transition: all 0.3s ease;
    font-size: 14px;
}

#content-core-first-page:hover,
#content-core-prev-page:hover,
#content-core-next-page:hover,
#content-core-last-page:hover,
#content-core-jump-btn:hover {
    background-color: #0a5cad; /* 主题蓝色 */
    color: white;
}

#content-core-page-info {
    color: #575757; /* 次要黑灰色 */
    font-size: 14px;
}

#content-core-jump-input {
    width: 50px;
    padding: 7px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}

#content-core-jump-btn {
    margin-left: 10px;
}

@media (max-width: 768px) {
    #content-core-title{
        font-size: 20px;
    }
    #content-core-pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #content-core-first-page,
    #content-core-prev-page,
    #content-core-next-page,
    #content-core-last-page {
        width: 100%;
        text-align: center;
    }

    #content-core-jump-btn {
        width: 100%;
        text-align: center;
        padding: 8px 0px;
        margin: 0;
    }

    #content-core-page-info {
        margin-top: 10px;
        font-size: 12px;
        text-align: center;
    }

    #content-core-jump-input {
        width: 100%;
        padding: 8px 0px;
    }
}