/*提示消息*/
.no-info-bar{
    color: #c8c8c8;
    padding: 0.4rem 0;
    text-align: center;
}
.no-content-page{
    padding: 0.4rem 0
}
.no-content-icon{
    width: 2.266667rem;
    height: 2.506667rem;
    margin: 0 auto;
    background: url("../images/no-content-page.png") center no-repeat;
    background-size: contain;
}
.no-content-txt{
    color: #c8c8c8;
    padding-top: 0.266667rem;
    text-align: center;
}
/*兼容苹果点击*/
.check-hd {
    cursor: pointer;
}

/* 弹出提示层 */
.layer-mask {
    height: 100%; width: 100%;
    background-color: rgba(255,255,255,.35);
    position: absolute; left: 0; top: 0;
    z-index: 9;
}
.layer-loading {
    width: 3px; height:3px;
    border-radius: 100%;
    box-shadow: 0 -10px 0 1px currentColor,           /* top, 1px expand */
    10px 0px currentColor,                /* right */
    0 10px currentColor,                  /* bottom */
    -10px 0 currentColor,                 /* left */
    -7px -7px 0 .5px currentColor,        /* left-top, 0.5px expand */
    7px -7px 0 1.5px currentColor,        /* right-top, 1.5px expand */
    7px 7px currentColor,                 /* right-bottom */
    -7px 7px currentColor;                /* left-bottom */
    -webkit-animation: spin 1s steps(8) infinite;
    animation: spin 1s steps(8) infinite;
    /*center*/
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
}
.layer-loading-text{
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
    margin-left:54%;
    height:25px;
    line-height: 25px;
}
.spin {
    -webkit-animation: spin 1s steps(8) infinite;
    animation: spin 1s steps(8) infinite;
}


@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
