/*
菜单样式
*/
.ui-slide-box {
    white-space: nowrap;
    z-index: 10000;
    background-color: #fff;
}

.ui-slide-item {
    width: 100px;
    display: inline-block;
    position: relative;
    z-index: 10000;
}

.ui-slide-item-sub {
    width: 120px;
    z-index: 10000;
}

.ui-slide-item-text {
    display: block;
    text-align: center;
    line-height: 110px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    line-height: 110px;
    z-index: 10000;
}

.ui-slide-item-text-sub {
    display: block;
    text-align: center;
    height: 35px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    background-color: #efefef;
    color: #999;
    line-height: 35px;
    z-index: 10000;
}

.ui-slide-item .ui-slide-box-sub {
    display: none;
    position: absolute;
    left: 0px;
    z-index: 10000;
}

.ui-slide-item-active>.ui-slide-item-text {
    background-color: #048acf;
    color: #fff;
    font-weight: 550;
}

.ui-slide-item:hover>.ui-slide-item-text {
    font-weight: 550;
    background-color: #048acf;
    color: #fff;
    z-index: 10000;
}

.ui-slide-item-sub:hover>.ui-slide-item-text-sub {
    font-weight: 550;
    z-index: 10000;
    color: #fff;
    background-color: #048acf;

}

.ui-slide-item:hover>.ui-slide-box-sub {
    display: block;
    z-index: 10000;
    animation: hideIndex 0.4s 1;
    -moz-animation: hideIndex 0.4s 1;
    /* Firefox */
    -webkit-animation: hideIndex 0.4s 1;
    /* Safari and Chrome */
    -o-animation: hideIndex 0.4s 1;
}

@keyframes hideIndex {
    0% {
        opacity: 0;
        transform: translate(0, 0)
    }

    100% {
        opacity: 1;
        transform: translate(0, 0)
    }

}