.titlestyle272682{ font-size: 9pt; color: #222222; text-decoration: none ;}

/* 基础样式 */
.menu-list {
    width: 260px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
    overflow: hidden;}

/* 菜单项样式 */
.menu-item {
    border-bottom: 1px solid #e6f2ff; /* 浅蓝色分隔线 */
    transition: all 0.3s ease;}

.menu-item:last-child {
    border-bottom: none;}

/* 链接样式 */
.menu-link {
    display: block;
    padding: 12px 20px;
    color: #0066cc; /* 蓝色文字 */
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;}

/* 悬停效果 */
.menu-link:hover {
    background-color: #e6f2ff; /* 浅蓝色悬停背景 */
    color: #0056b3; /* 深蓝色文字 */
    padding-left: 25px;}

/* 当前选中项（可选） */
.menu-item.active .menu-link {
    background-color: #0066cc;
    color: white;
    font-weight: bold;}
