* {
    margin: 0;
}

.Navigation {
    z-index: 999;
    width: 100%;
    height: 2.75rem;
    display: flex;
    position: fixed;
    background: #fff;
    bottom: 0;
    /* border: 1px solid red; */
    padding-top: 0.3125rem;
    box-shadow: inset 0px 0.5px 0px rgba(0, 0, 0, 0.18);
}

.navItem {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #737C83;
    text-decoration: none;
}

.navItem svg{
    width: 100%;
    height: 100%;
}

.navItem_img {
    width: 1.625rem;
    height: 1.625rem;
    margin-bottom: 0.1875rem;
}

.navItem_name {
    height: 1.625rem;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 0.9375rem;
    margin-bottom: 0.125rem;
}

.activess {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1F7CE8;
}

.sc {
    display: none;
}

.othernoReadNum{
    position: absolute;
    margin-left: 20px;
    top: 9px;
    background: red;
    color: #fff;
    border-radius: 100pc;
    width: 10px;
    height: 10px;
    line-height: 17px;
    display: none;
    font-size: 12px;
    animation: redPulse 1.2s infinite;
}

@keyframes redPulse {
    from {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}
@-webkit-keyframes redPulse {
    from {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}
