.cate-item {
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    max-height: 2.2rem;
    padding: 5px 10px; /* 可以根据需要调整内边距 */
    transition: background-color 0.1s ease, color 0.1s ease; /* 添加过渡效果 */
}

.cate-url {
    height: 1.5rem;
    line-height: 1.5rem;
    max-height: 1.8rem;
}

.cate-item:hover {
    background-color: #023990;
    color: #ffffff;
}

.submenu-list {
}

.submenu-item {
    width: 200px;
    border-bottom:1px solid #f5f5f5;
    font-size: 16px;
    padding: 5px 10px; /* 可以根据需要调整内边距 */
    transition: background-color 0.3s ease, color 0.3s ease; /* 添加过渡效果 */
}

.submenu-url {
}

.submenu-item:hover {
    background-color: #023990;
    color: #ffffff;
}

.submenu-url:hover {
}

/******* list pagination **********/
.pagination {
    display: flex;
    justify-content: center;
    align-content: center;
}

.pagination li {
    margin: 0 10px;
}