/*选中li*/
.gr{
    background: #d6e9f6 !important;
}
/*caps lock 大写键盘锁定样式*/
.caps-lock-css{
    margin-left: 44px;
    border: 1px solid #ccc;
    height: 28px;
    width: 120px;
    line-height: 28px;
    padding-left: 10px;
    border-radius: 5px;
    margin-top: -2px;}
.caps-lock-css em,.caps-lock-css span{
    display:block;
    width:30px;
    height:16px;
    font-size:30px;
    overflow:hidden;
    position:relative;
    margin-left:-5px;}
.caps-lock-css em{
    margin-top:-41px;
    color:#ccc;
    font-style:normal;}
.caps-lock-css span{
    margin-top:-14px;
    color:white;}


/*登陆选择租户模态框样式*/
.tenant-model{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: rgba(0,0,0,0.5);
}
.tenant-model-content{
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 50%;
    /*max-width: 700px;*/
    /*height: 40%;*/
    max-height: 500px;
    margin: 100px auto;
    border-radius:10px;
    background-color:#fff;
    -webkit-animation: zoom 0.6s;
    animation: zoom 0.6s;
    /*resize: both;*/
    /*overflow: auto;*/
}
@-webkit-keyframes zoom{
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}
@keyframes zoom{
    from {transform: scale(0)}
    to {transform: scale(1)}
}
.tenant-model-header{
    height:50px;
    box-sizing:border-box;
    border-bottom:1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#closeModel{
    color: #b7b7b7;
    font-size: 30px;
    font-weight: bold;
    margin-right: 20px;
    transition: all 0.3s;
}
#closeModel:hover,#closeModel:focus{
    color: #95b4ed;
    text-decoration: none;
    cursor: pointer;
}
.tenant-model-body{
    padding: 10px;
    font-size: 16px;
    box-sizing:border-box;
}
.tenant-model-footer{
    box-sizing:border-box;
    border-top:1px solid #ccc;
    display: flex;
    padding: 15px;
    justify-content: flex-end;
    align-items: center;
}
.tenant-model-footer >button{
    width: 60px;
    height: 35px;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 10px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    background-color: cornflowerblue;
}
.tenant-model-footer button:hover,.tenant-model-footer button:focus{
    background-color: #95b4ed;
    cursor: pointer;
}
@media only screen and (max-width: 700px){
    .tenant-model-content {
        width: 80%;
    }
}

/*展示租户下拉框样式*/

#search-navbar {
    margin: 0 10px;
    /*position:relative;*/
    font-size: 18px;
}

.search-nav-icon {
    cursor:pointer;
    color: #fff;
    padding:0 20px 0 5px;
    vertical-align: middle;
    float: left;
}
.search-nav-input {
    /*width: 85%;*/
    width: 100%;
    height: 40px;
    font-size: 15px;
}
.search-input {
    width: 100%;
    /*border: none;*/
    padding: 2px 2px 2px 8px;
}
.search-result {
    background-color: #fff;
    height:320px;
    max-height:300px;
    /*overflow-y: auto;*/
    overflow-y: scroll;
    /*overflow-y: hidden;*/
    clear: both;
    position: relative;
    color:#fff;
    width: 100%;

}
.search-animation {
    animation:searchResult 0.5s;
}
@keyframes searchResult
{
    from {opacity:0;}
    to {opacity:1;}
}
@-webkit-keyframes searchResult /* Safari and Chrome */
{
    from {opacity:0;}
    to {opacity:1;}
}
.search-result-title {
    color: #000;
    padding: 20px 0 0 30px;
}
.top-search-i {
    margin:0 10px;
}
.search-nav {
    height:50px;
    background-color: #438EB9;
    padding: 0 20px;
    padding-top:7px;
    zoom: 1;
}
.search-nav:after {
    content:"";
    display: block;
    height:0;
    clear: both;
    visibility: hidden;
}
.search-ul {
    /*max-height: 515px;*/
    overflow-y: auto;
    padding: 5px 10px 10px 20px;
}
.search-ul li {
    color: #000;
    box-sizing: content-box;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin-top:5px;
    background: #f5f5f5;
    border-left:2px solid transparent;
}
.search-ul li:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.search-ul li:hover {
    border-left:2px solid #ff9900 !important;
    background-color: #f5f5f5;
    cursor: pointer;
}
.search-text {
    height: 30px;
    line-height: 30px;
    display: inline-block;
}
.search-ul .search-select {
    border-left:2px solid #ff9900;
}

.search-result-footer {
    margin: 0 20px 0 0;
    float: right;
    color: #000;
}
.search-ul li i {
    font-size: 15px;
    margin:0 10px;
    vertical-align: middle
}
.search-type {
    color: #fff;
    float: right;
    font-size: 12px;
    background: #438eb9;
    height: 19px;
    line-height: 19px;
    vertical-align: middle;
    /*position: relative;*/
    /*top: 6px;*/
    /*right: 17px;*/
    margin-top: 6px;
    margin-right: 17px;
    border-radius: 4px;
    padding: 0 8px;
    box-shadow: 1px 1px #94949d;
}

/* 滚动条 */
.search-ul::-webkit-scrollbar-thumb:horizontal { /*水平滚动条的样式*/
    width: 5px;
    background-color: #CCCCCC;
    -webkit-border-radius: 6px;
}
.search-ul::-webkit-scrollbar-track-piece {
    background-color: #fff; /*滚动条的背景颜色*/
    -webkit-border-radius: 0; /*滚动条的圆角宽度*/
}
.search-ul::-webkit-scrollbar {
    width: 10px; /*滚动条的宽度*/
    height: 8px; /*滚动条的高度*/
}
.search-ul::-webkit-scrollbar-thumb:vertical { /*垂直滚动条的样式*/
    height: 50px;
    background-color: #999;
    -webkit-border-radius: 4px;
    outline: 2px solid #fff;
    outline-offset: -2px;
    border: 2px solid #fff;
}
.search-ul::-webkit-scrollbar-thumb:hover { /*滚动条的hover样式*/
    height: 50px;
    background-color: #9f9f9f;
    -webkit-border-radius: 4px;
}
/*显示...并带有提示*/
  .showTitle {
      overflow:hidden;
      white-space:nowrap;
      text-overflow:ellipsis;
      -o-text-overflow:ellipsis;
      max-width: 300px;
  }