html body {
    height: 100%;
}

.layui-layout {
    height: 100%;
}

.img-rorate {
    -webkit-animation: rotateImg 1s linear infinite;
    vertical-align: middle;
}

@keyframes rotateImg {
    100% {
        transform: rotate(0deg);
    }
    0% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateImg {
    100% {
        -webkit-transform: rotate(0deg);
    }
    0% {
        -webkit-transform: rotate(360deg);
    }
}

.lay-head-icon{
    display: none;
    color: white;
    position: absolute;
    right: 20px;
    top: 22px;
}