.module{

}


.module-banner{
    width: 100%;
    height: 100%;
    min-height: 50px;
}

.module-banner .banner-container{
    width: 60%;
    min-width: 800px;
    height: 100%;
    min-height: 50px;
    display: flex;
    margin: 0 auto;
    padding: 0 30px;
    background: #FFF;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 3px 4px 0px 0px rgb(51 51 51 / 40%);
}

.module-banner .banner-container .banner-logo{
    display: flex;
    align-items: center;
}

.module-banner .banner-container .banner-logo img{
    height: 42px;
}

.module-banner .banner-container .banner-split{
    width: 2px;
    background: #F1F1F1;
    margin: 15px 17px;
}

.module-banner .banner-container .banner-menu{
    flex: 1;
    display: flex;
}

.module-banner .banner-container .banner-menu .menu-item{
    position: relative;
}


.module-banner .banner-container .banner-menu .menu-item:hover{
    background: #f4f4f4;
}

.module-banner .banner-container .banner-menu .menu-item:active{
    background: #d5d5d5;
}

.module-banner .banner-container .banner-menu .menu-item .box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 0 15px;
}

.module-banner .banner-container .banner-menu .menu-title{
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5px;
    font-size: 13px;
    letter-spacing: 3px;
    color: #333;
}

.module-banner .banner-container .banner-menu .menu-title i{
    margin-right: 7px;
}

.module-banner .banner-container .banner-menu .menu-hover{
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    background: #66ccff;
    display: none;
}

.menu-item-hover{
    background: #f4f4f4;
}

.menu-item-hover .menu-title{
    color: #000;
}

.menu-item-hover .menu-hover{
    display: block !important;
}

.module-banner .banner-container .banner-tools{
    width: 100px;
}


.module-images-shade{
    width: 100%;
    height: 100%;
    position: relative;
}

.module-images-shade .images-mask{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAKUlEQVQImU3IMREAIAgAwJfNkQCEsH8cijjpMf6vnXlQaIiJFx+omEBfmqIEZLe2jzcAAAAASUVORK5CYII=);
}

.module-images-shade img{
    width: 100%;
    height: 100%;
}

