@import '../result/result.module.css';
.load {
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #1890ff;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    display: none;
}
.loading {
    opacity: 1;
    position: static;
    display: block;
}
.nested {
    position: relative;
}
.nested-loading {
    display: block;
    position: absolute;
    height: 100%;
    max-height: 360px;
    width: 100%;
    z-index: 4;
}

.container {
    position: relative;
    transition: opacity 0.3s;
    zoom: 1;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    opacity: 0.5;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
}
.container:before,
.container:after {
    content: "";
    display: table;
}
.container:after {
    clear: both;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.3;
    transition: all 0.3s;
    z-index: 10;
}
