/*Ê×Ò³*/
.menuvice {
    display: inline-block;
    width: 100%;
}

    .menuvice a {
        display: block;
        float: left;
        width: 33.33%;
        line-height: 180px;
        text-align: center;
    }

        .menuvice a span {
            display: block;
            height: 110px;
            background-position: center;
            background-repeat: no-repeat;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color:#fff;
            
        }
       .menuvice a:nth-child(9n+5) span {
        
        text-indent: -5000px;
        }
        .menuvice a:nth-child(2n+2) {
            background-image: -webkit-linear-gradient(top right, #f4b523, #6d4802);
            background-image: -moz-linear-gradient(top right, #f4b523, #6d4802);
            background-image: -o-linear-gradient(top right, #f4b523, #6d4802);
            background-image: -ms-linear-gradient(top right, #f4b523, #6d4802);
        }

        .menuvice a:nth-child(2n+1) {
            background-image: -webkit-linear-gradient(top left, #434343, #1e1e1e);
            background-image: -moz-linear-gradient(top left, #434343, #1e1e1e);
            background-image: -o-linear-gradient(top left, #434343, #1e1e1e);
            background-image: -ms-linear-gradient(top left, #434343, #1e1e1e);
        }

