.loader {
    display: none; /* 将默认隐藏状态修改为不显示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}
.dot_div{
    display: flex;
}
.dot {
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #fff;
    animation: dot-animation 1.5s infinite;
}

.dot_text {
    margin-top: 10px;
    color: #fff;
    height: 10px;
}

@keyframes dot-animation {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.res{
    display: none;
}
.risk-content-item-block p {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #fcfcfc 0%, #f5f5f5 100%);
    padding: 40px 40px 40px;
    color: #666564;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
    box-sizing: border-box;
}

.risk-content-item-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    bottom: 0;
}


.title {
    display: inline-block;
    width: 155px;
    text-align: end;
}

.value {
    display: inline-block;
    width: 155px;
}
