/* 限制手机和ipad登录 */
.showPC{
    display: none;
}

@media screen and (max-width:1000px) {
    .showPC{
        width: 100%;
        height: 100%;
        background: #ededed;
        position: fixed;
        top: 0;
        left: 0;
        text-align: center;
        display: inline-block;
    }
    
    .showPC .iconPC {
        left: 50%;
        top: 30%;
        transform: translate(-50%, 0px);
        position: absolute;
    }
    .showPC .iconPC  img{
        width: 100%;
        height: 100%;
    }
}
