.menulist {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.menulist .item {
    width: 320px;
    height: 400px;
    position: relative;
}

.menulist .item::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.menulist .item .img img {
    width: 100%;
    min-height: 400px;
}

.menulist .item .text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menulist .item .text .name {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.menulist .item .text .en {
    color: #fff;
    font-size: 30px;
    opacity: .7;
    text-align: center;
}

.menulist .item .text .ico {
    width: 161px;
    height: 161px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin:0 auto;
    margin-bottom: 50px;
}

.menulist .item .text .ico::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    background: url(../img/home-item-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.menulist .item:hover::before {
    background: rgba(20, 50, 112, .6);
}



.footer .foot{height:90px;    justify-content: center;}

@media screen and (max-width: 1280px) {

    .menulist {
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .menulist .item {
        width: 100%;
        margin: 10px 0;
        height: auto;
    }

    .menulist .item .text .name {
        font-size: 20px;
    }

    .menulist .item .text .en {
        font-size: 16px;
    }

    .menulist .item .text .ico {
        width: 120px;
        height: 120px;
    }

    .menulist .item .text .ico img {
        width: 30%;
    }


}