.modal-footer{
    width: 100%;
    padding: 5px 0 5px 0;
    clear: both;
    overflow: auto;
}
.modal-footer > .left {
    width: 48%;
    float: left;
    text-align: left;
    padding-top: 15px;
}
.modal-footer > .right {
    width: 48%;
    float: right;
    text-align: right;
}
.link {
    cursor: pointer;
    color: rgb(1, 170, 237);
}
.link-large {
    cursor: pointer;
    color: rgb(1, 170, 237);
    font-size: large;
}

.loginBody .password{
    position: relative;
}
.loginBody .password img{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.context-menu {
    display:none;
    position:absolute;
    background-color:white;
    border:1px solid #ccc;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
    background-color: #fff;
    z-index: 99999999;
}

.context-menu ul {
    list-style-type:none;
    padding:0;
    margin:0;
}

.context-menu li {
    padding:8px 12px;
    cursor:pointer;
    white-space:nowrap;
}

.context-menu li:hover {
    background-color:#f0f0f0;
}

.context-menu .submenu {
    position:absolute;
    left:100%;
    top:0;
    display:none;
    border:1px solid #ccc;
    background-color: #fff;
    max-height:200px;/* 限制子菜单最大高度 */
    overflow-y:auto;/* 使子菜单内容可滚动 */
}

.context-menu li:hover .submenu {
    display:block;
}