/* 定义lmaa容器的样式：右浮动、高度35px、相对定位 */
#lmaa{
    float:right; 
    float:right; /* 重复设置右浮动，可能是冗余代码 */
    height:35px; 
    position:relative; /* 相对定位，作为子元素绝对定位的参考 */
}

/* 定义lmaa容器内xjt类元素的样式 */
#lmaa .xjt{
    float:right; /* 左浮动，使元素横向排列 */
    height:24px; /* 高度24px */
    cursor:pointer; /* 鼠标悬停时显示手型指针 */
    margin-top:5px; /* 顶部外边距5px，垂直居中 */
    border-radius: 4px; /* 4px圆角边框 */
    font-weight:normal; /* 字体正常粗细 */
    font-size:12px; /* 字体大小12px */
    font-weight:bold; /* 字体加粗（覆盖上面的normal，可能是冗余） */
    color:#fff; /* 文字白色 */
    background-color:#9F131C; /* 背景深红色 */
    line-height:24px; /* 行高24px，垂直居中文字 */
    margin-right:12px; /* 右侧外边距12px，与其他元素保持距离 */
}

/* 定义xjt类元素内的span标签样式 */
#lmaa .xjt span{
    height:24px; /* 高度24px */
    background-image: url(../images/lmc.png); /* 背景图片 */
    background-repeat: no-repeat; /* 背景不重复 */
    background-position: center center; /* 背景图居中显示 */
    width:18px; /* 宽度18px */
    float:right; /* 右浮动 */
    margin-right:8px; /* 右侧外边距8px */
    margin-left:10px; /* 左侧外边距10px */
}

/* 定义lmaa容器内sjt类元素的样式 */
#lmaa .sjt{
    float:left; /* 左浮动，使元素横向排列 */
    height:24px; /* 高度24px */
    cursor:pointer; /* 鼠标悬停时显示手型指针 */
    margin-top:5px; /* 顶部外边距5px，垂直居中 */
    font-size:15px; /* 字体大小15px */
    border-bottom:0px; /* 底部边框为0 */
    border-radius: 4px; /* 4px圆角边框 */
    line-height:24px; /* 行高24px，垂直居中文字 */
    color:#fff; /* 文字白色 */
    font-weight:bold; /* 字体加粗 */
    font-size:12px; /* 字体大小12px（覆盖上面的15px） */
    margin-right:12px; /* 右侧外边距12px */
    background-color:#9F131C; /* 背景深红色 */
}

/* 定义sjt类元素内的span标签样式 */
#lmaa .sjt span{
    height:24px; /* 高度24px */
    background-image: url(../images/gb.png); /* 背景图片 */
    background-repeat: no-repeat; /* 背景不重复 */
    background-position: center center; /* 背景图居中显示 */
    width:18px; /* 宽度18px */
    float:right; /* 右浮动 */
    margin-right:8px; /* 右侧外边距8px */
    margin-left:10px; /* 左侧外边距10px */
}

/* 定义lmaa容器内bdlm类元素的样式（可能是下拉菜单容器） */
#lmaa .bdlm{ 
    width:250px; /* 宽度250px */
    padding:2px; /* 内边距2px */
    position:absolute; /* 绝对定位 */
    right:12px; /* 距离右侧12px */
    top:35px; /* 距离顶部35px，与父元素高度一致 */
    background-color:#eee; /* 背景浅灰色 */
    padding:10px; /* 内边距10px（覆盖上面的2px） */
    z-index:99; /* 层级99，确保显示在其他元素上方 */
    display:none; /* 默认隐藏 */
}

/* 定义lb容器的样式 */
#lb{
    width:250px; /* 宽度250px */
    float:left; /* 左浮动 */
    max-height:230px; /* 最大高度230px */
    overflow-y:auto; /* 垂直方向超出时显示滚动条 */
    overflow-x:hidden; /* 水平方向超出时隐藏 */
}

/* 定义lb容器内的UL列表样式 */
#lb UL{ 
    list-style-type:none; /* 去除默认列表样式（圆点） */
}

/* 定义lb容器内UL列表的LI元素样式 */
#lb UL LI {
    width:250px; /* 宽度250px */
    float:left; /* 左浮动 */
    WHITE-SPACE: nowrap; /* 文字不换行 */
    OVERFLOW: hidden; /* 超出部分隐藏 */
    text-align:left; /* 文字左对齐 */
    font-size:13px; /* 字体大小13px */
    background-color:#f7f7f7; /* 背景浅灰色 */
    font-weight:bold; /* 字体加粗 */
}

/* 定义LI元素内的A链接样式 */
#lb UL LI A {
    line-height:32px; /* 行高32px，垂直居中 */
    padding-left:10px; /* 左侧内边距10px */
    border-bottom:#eee solid 1px; /* 底部浅灰色边框 */
    COLOR: #9F131C; /* 文字深红色 */
    DISPLAY: block; /* 块级显示，使链接占满整个LI */
}

/* 定义A链接内的i标签样式 */
#lb UL LI A i{ 
    float:left; /* 左浮动 */
    line-height:32px; /* 行高32px */
    margin-left:8px; /* 左侧外边距8px */
    margin-right:8px; /* 右侧外边距8px */
}

/* 定义带有sec类的LI元素内的A链接样式（可能是选中状态） */
#lb UL LI.sec A {
    COLOR:#fff; /* 文字白色 */
    background-color:#B81622; /* 背景红色 */
    background-image: linear-gradient(to top, #9F131C, #B81622); /* 从上到下的渐变色背景 */
}

/* 定义LI元素内A链接的 hover 状态（鼠标悬停） */
#lb UL LI A:hover {
    COLOR:#fff; /* 文字白色 */
    background-color:#B81622; /* 背景红色 */
    background-image: linear-gradient(to top, #9F131C, #B81622); /* 从上到下的渐变色背景 */
}

/* 定义带有xl类的LI元素样式（可能是子列表项） */
#lb UL LI.xl {
    width:100%; /* 宽度100% */
    height:30px; /* 高度30px */
    line-height:30px; /* 行高30px，垂直居中 */
    TEXT-OVERFLOW: ellipsis; /* 文字超出时显示省略号 */
    WHITE-SPACE: nowrap; /* 文字不换行 */
    OVERFLOW: hidden; /* 超出部分隐藏 */

    text-align:left; /* 文字左对齐 */
    font-weight:normal; /* 字体正常粗细 */
    font-size:12px; /* 字体大小12px */
    margin:0px; /* 外边距0 */
    background-image: url(jtd.png); /* 背景图片 */
    background-repeat: no-repeat; /* 背景不重复 */
    background-position: 20px center; /* 背景图位于左侧20px居中位置 */
    background-color:#fff; /* 背景白色 */
}

/* 定义xl类LI元素内的A链接样式 */
#lb UL LI.xl A { 
    color:#555; /* 文字深灰色 */
    padding-left:32px; /* 左侧内边距32px，为背景图留出空间 */
    display:block; /* 块级显示 */
}

/* 定义xl类LI元素内A链接的i标签样式 */
#lb UL LI.xl A i{ 
    float:left; /* 左浮动 */
    margin-left:8px; /* 左侧外边距8px */
    margin-right:8px; /* 右侧外边距8px */
}

/* 定义xl类LI元素内带有sec类的A链接样式（可能是选中状态） */
#lb UL LI.xl A.sec {
    border:0px; /* 边框0 */
    COLOR:#9F131C; /* 文字深红色 */
}

/* 定义xl类LI元素内A链接的hover状态（鼠标悬停） */
#lb UL LI.xl A:hover {
    border:0px; /* 边框0 */
    COLOR:#9F131C; /* 文字深红色 */
    background:none; /* 无背景 */
}