﻿.tree ul {
    list-style-type: none; /* 移除默认的列表样式 */
    margin: 0; padding: 0px;   
    display: none; /* 默认隐藏所有子列表 */
    
}

.tree li {
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
         }


.mnode {
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    margin: 0; padding: 0px;line-height:30px;color:#2162ae ;font-size:16px;font-family:"微软雅黑" ;
     
         } 
.mnode a{text-decoration:none;color:#000 ;}
 

.cnode {
    float:left;width:80%;
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    margin: 0; padding: 0px;line-height:20px;color:#000 ;font-size:15px;font-family:"微软雅黑" ;
    border-bottom:0px dashed #ccc;
         }

.cnode a{text-decoration:none; margin: 0; padding: 5px;line-height:20px;color:#000 ;font-size:15px;font-family:"微软雅黑" ;}
.cnode a:hover {
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    color:#2162ae;
    text-decoration:none;
         }

.imgnode {float:right;width:20%;}

.tree li.active > ul {
    display: block; /* 展开时显示子列表 */
   
}    

 .tree li { overflow: hidden; min-height: 30px; transition: min-height 0.3s ease; }
 .tree li > ul { padding-left: 20px; }