123456789101112131415161718192021222324252627282930 |
- @import "~@less/variables.less";
- .loading{
- .maskZIndex;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- .cover{
- width: 100%;
- height: 100%;
- background: #000;
- opacity: .4;
- filter:alpha(opacity=40);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- }
- .info{
- position: absolute;
- top: 40%;
- left: 45%;//calc(50% - 50px);
- text-align: center;
- img{
- width: 40px;
- height: 40px;
- }
- }
- p{
- color: #fff;
- }
- }
|