/**
 * 改文件在 index.html 文件中引用，必须放置在 static 目录中
 */
body {
    -webkit-text-size-adjust: 100% !important;
    /* 页面字号不受微信设置大字号导致页面错位 */
}

.tui-loading-init {
    min-width: 200rpx;
    min-height: 200rpx;
    max-width: 500rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    font-size: 26rpx;
    color: #fff;
    display: none;
    border-radius: 10rpx;
    transform: translate(-50%, -50%);
    background-color: transparent !important;
    &.init0 {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

.tui-loading-init .thorui-loading-line {
    bottom: 0;
    width: 4px;
    position: absolute;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}


.tui-loading-image {
    margin: 0 6px;
    display: inline-block;
    vertical-align: middle;
    animation: opacity 1s linear infinite;
    margin-bottom: 36rpx;
}

@keyframes opacity {
    from {
        opacity: .2;
    }

    to {
        opacity: .9;
    }
}
