.alumni-right-notification{
    width: 100%;
}
.right-notification-item{
    margin-bottom: 40px;
}
.right-notification-item li{
    list-style: none;
    width: 100%;
    height: 69px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #efefef;
}
.right-notification-item li::before{
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid rgba(33, 152, 176, 1);
    border-radius: 50%;
    display: inline-block;
  transition: all .3s linear;
}
.right-notification-item li span:nth-of-type(1){
    width: 87%;
    display: inline-block;
    font-size: 16px;
    color: rgba(43, 43, 43, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}
.right-notification-item li span:nth-of-type(2){
    display: inline-block;
    font-size: 16px;
    color: rgba(153, 153, 153, 1)
}

/* 左侧列表选中样式 */
.left-list-active {
    color: rgba(33, 152, 176, 1);
    font-weight: bold;
    position: relative;
}

.left-list-active::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: rgba(33, 152, 176, 1);
    position: absolute;
    top: calc(50% - 3px);
    left: 8%;
   transition: all .3s linear;
}

.right-notification-item li{
    cursor: pointer;
    transition: all .3s linear;
}

.right-notification-item li:hover span{
    color: rgba(33, 152, 176, 1);
}
.right-notification-item li:hover span:nth-of-type(1){
transform: translateX(10px);
}
.right-notification-item li:hover::before{
transform: translateX(10px);
}
@media (max-width:1150px) {
    .alumni-left-list p {
        width: 25%;
        margin: 0;
    }
    .inner-alumni{
        padding-top: 0;   
    }
   
}
@media (max-width:850px) {
    .right-notification-item li span:nth-of-type(1) {
        width: 80%;
    }
}
@media (max-width:600px) {
    .right-notification-item li span:nth-of-type(1) {
        width: 75%;
        font-size: 14px;
    }
    .right-notification-item li span:nth-of-type(2) {
        font-size: 13px;
    }
   
}
@media (max-width:450px) {
    .right-notification-item li span:nth-of-type(1) {
        width: 70%;
        font-size: 14px;
    }
}
