.report {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 32px;
}

.top {}

.top .black {
    width: 100%;
    height: 92px;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    /* background-image: linear-gradient(90deg, #32505c, #00b7fe); */
    background-color: #0e419d;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

}

.top .black .brand_icon_wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    overflow: hidden;
}

.top .black .brand_icon {
    display: block;
    width: 40px;
    height: 40px;
}

.top .black .black_info .black_info_item {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}

.top .basic {
    padding: 6px 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
}

.text_graph {
    width: 90%;
    margin: 10px auto;
    margin-top: 60px;
}

.level_text {
    /* transform: translateX(-50%); */
    font-size: 12px;
    color: #ccc;
    line-height: 18px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 12px;
}

.level_text .text {
    display: block;
    width: 18px;
    text-align: center;
}

.graph {
    display: flex;
    width: 100%;
    height: 12px;
    position: relative;
    justify-content: space-between;
}

.graph .hor_line {
    background-color: #f5f5f5;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 4.5px;
    left: 0;
}

.graph .graph_dot {
    width: 12px;
    height: 12px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph .graph_dot div {
    display: block;
    width: 44px;
    height: 44px;
    z-index: 10;
    position: absolute;
    bottom: 5px;
    text-align: center;
    font-size: 12px;
    color: #ccc;
    line-height: 18px;
}

.graph .graph_dot div.height_line_text {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    line-height: 24px;
    bottom: 10px;
}

.graph .graph_dot img {
    display: block;
    width: 44px;
    height: 44px;
    z-index: 10;
}

.jump {
    width: 223px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(116, 93, 255, 1);
    color: white;
    font-size: 16px;
    border-radius: 5px 23px 23px 23px;
    position: fixed;
    bottom: 60px;
    text-decoration: none;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 40%);
    border: none;
    z-index: 100;
}