.hyzx-title {
    color: #004993;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
}

.hyzx-title a {
    color: #004993;
    text-decoration: none; /* 去掉下划线，可选 */
}

/* 主容器 */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

/* 左侧导航栏 */
.sidebar {
    width: 261px;
    height: 710px;
    background-color: #fff;
    padding: 20px;
    border-right: 1px solid #ddd;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    margin-top: 40px;
    margin-bottom: 50px;
    border-radius: 4px;
}

/* 导航菜单 */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 菜单项 */
.sidebar-menu li {
    margin-bottom: 15px;
    border-radius: 5px;
}

/* 菜单项链接 */
.sidebar-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    display: block;
    padding: 15px 30px;
    transition: all 0.3s ease;
    background-color: #F5F5F5;
}

/* 菜单项悬浮效果 */
.sidebar-menu li a:hover {
    background-color: #8DAAD7;
    color: white;
}

/* 激活菜单项的样式 */
.sidebar-menu li a.active {
    background-color: #8DAAD7;
    color: white;
}

/* 右侧内容区域 */
.content-container {
    flex: 1;
    padding: 10px 30px;
}

.article-list {
    margin: 0;
    padding-top: 20px;
    list-style: none;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px dashed #ccc;
    transition: all 0.3s ease;
}

.article-item:hover {
    background-color: #f9f9f9;
}

.article-title {
    position: relative;
    padding-left: 20px;
    flex: 1;
}

.article-title a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
  	white-space: nowrap; /* 防止换行 */
    overflow: hidden; /* 隐藏溢出的部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    width: 100%; /* 你可以根据需要调整宽度 */
    max-width: 600px; /* 根据需要设置最大宽度 */
}

.article-title a:hover {
    color: #004993;
}

.article-title a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #004993;
    border-radius: 50%;
}

.article-date {
    font-size: 16px;
    color: #999;
    text-align: right;
    min-width: 120px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.article-item:hover .article-date {
    color: #004993;
}

/* 分页样式 */
.hyzx-index {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 10px;
}