12345678910111213141516171819202122232425262728293031 |
- /* 是否可以穿透 */
- .loading-mask {
- pointer-events: none;
- }
- /* 是否可以穿透 */
- /* toast */
- .loading-icon{
- @include square(70px);
- margin-top: -10px;
- }
- .loading{
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- font-size: 18px;
- color: #fff;
- line-height: 24px;
- @include square(150px);
- padding: 0 20px;
- background-color: rgba(0,0,0,0.5);
- border-radius: 5px;
- letter-spacing: 1px;
- opacity: 1 !important;
- z-index: 99999;
- }
- .loading div {
- font-size: 18px;
- line-height: 20px;
- margin-top: 10px;
- }
- /* toast */
|