.banner-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 445px);
    min-height: 750px;
    background: url("../images/shopping/shop-banner.jpg?v=201911111344") no-repeat center;
    background-size: cover;
    position: relative;
}
.shop-info>p{
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 85px;
}
.business{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.business .business-list{
    display: block;
    width: 195px;
    margin: 32px 32px 0 32px;
    cursor: pointer;
}
.business .business-list:hover span{
    opacity: 1;
}
.business .business-list:hover .icon{
    animation: myTop 1s linear infinite;
}
@keyframes myTop {
    0%{
        top: 0;
    }
    50%{
        top: -10px;
    }
    100%{
        top: 0;
    }
}
.business-list .icon{
    position: relative;
    top: 0;
    display: block;
    margin: 38px auto 0 auto;
    transition: all .3s;
}
.business-list>span{
    display: block;
    width:170px;
    height:30px;
    border:1px solid rgba(255,255,255,1);
    opacity:0.5;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    transition: all .3s;
}