﻿.Y-toast {
    position: fixed;
    z-index: 5000;
    width: 120px;
    min-height: 120px;
    top: 180px;
    left: 50%;
    margin-left: -60px;
    background: hsla(0, 0%, 7%, .7);
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

    .Y-toast > p {
        display: block;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.6;
        text-align:center;
    }

.m-common-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-color: #d8d8d8;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.icon_loading {
    -webkit-mask: url('https://static.jiaoyubao.cn/images/common/icon-loading.svg') no-repeat;
    mask: url('https://static.jiaoyubao.cn/images/common/icon-loading.svg') no-repeat;
}

.loads {
    margin: 30px 0 0;
    width: 38px;
    height: 38px;
    vertical-align: baseline;
    animation: circle 2s linear infinite;
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
