.layui-layer.layui-layer-drawer {
    bottom: 0px;
    top: 0px;
    border: none!important;
    box-shadow: none !important;
    overflow: auto
}
.layui-layer.layui-layer-drawer>.layui-layer-content>.layui-layer-load{
	/* background:url(../layui/css/modules/layer/default/loading-2.gif) center center no-repeat #eee;; */
	background:url(../images/load.gif) center center no-repeat #eee;;
}
.layui-layer.layui-layer-drawer>.layui-layer-content,.layui-layer .layui-layer-drawer>.layui-layer-content>iframe {
    height:100%!important
}
.layui-layer.layui-layer-drawer>.layui-layer-title+.layui-layer-content {
    top: 0px;
    left: 0; 
    right: 0;
    bottom: 0;
    height: auto!important
}
.layui-anim-rl-close{
	-webkit-animation-name: layui-rl-close;
    animation-name: layui-rl-close
}
@-webkit-keyframes layui-rl-close {
    from {
    	-webkit-transform: translateX(0)
    }
    to {
    	-webkit-transform: translateX(100%)
    }
}    
@keyframes layui-rl-close {
    from {
    	transform: translateX(0)
    }
    to {
    	transform: translateX(100%)
    }
} 
.layui-anim-rl {
    -webkit-animation-name: layui-rl;
    animation-name: layui-rl;
    animation-duration:500ms; 
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes layui-rl {
    from {
        -webkit-transform: translateX(100%)
    }
    to {
        -webkit-transform: translateX(0)
    }
}    
@keyframes layui-rl {
    from {
        transform: translateX(100%)
    }
    to {
        transform: translateX(0)
    }
} 

.layui-anim-lr{  
    -webkit-animation-name: layui-lr;
    animation-name: layui-lr;
}
@-webkit-keyframes layui-lr {
    from {
        -webkit-transform: translate3d(-300px,0,0);
        opacity: 1
    }    
    to {
        -webkit-transform: translate3d(0,0,0);
        opacity: 1
    }
}    
@keyframes layui-lr {
    from {
        transform: translate3d(-300px,0,0)
    }
    to {
        transform: translate3d(0,0,0)
    }
}

.layui-anim-down {
    -webkit-animation-name: layui-down;
    animation-name: layui-down
}
@-webkit-keyframes layui-down {
    from {
        -webkit-transform: translate3d(0, -300px, 0);
        opacity: .3
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1
    }
}
@keyframes layui-down {
    from {
        transform: translate3d(0, -300px, 0);
        opacity: .3
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}