.__hint {
    width: 384px;
    height: 163px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    padding-bottom: 20px;
    animation: __hint__animation .3s linear;
}
@keyframes __hint__animation {
    0% {
       opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.__hint__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;
    background-color: #F0F0F0;
    padding: 12px 20px 10px;
    user-select: none;
}
.__hint__header__text {
    font-size: 18px;
    font-family: OPPOSans, OPPOSans-Bold;
    color: #101010;
}
.__hint__icon {
    width: 12px;
    height: 12px;
    margin-left: auto;
    margin-right: 0;
    cursor: pointer;
}
.__hint__body__content {
    padding: 20px;
    color: #606060;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-family: OPPOSans, OPPOSans-Regular;
}
.__hint__bottom__button {
    padding: 6px 12px;
    background: #2250c4;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 20px;
    user-select: none;
    color: #fff;
    cursor: pointer;
}
.__hint__shade {
    background-color: #00000080;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    animation: __hint__animation .3s linear;
}