.notification{
    width: 360px;
    padding: 0;
    overflow: hidden;
}
.notification .header{
    display: flex;
    border-bottom: 1px solid #ebebeb;
    background: #fff;
}
.notification .header button{
    position: relative;
    flex: 1 1;
    height: 48px;
    cursor: pointer;
    box-shadow: none!important;
    background: none;
    border: none;
}
.notification .header button i{
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}
.notification > .header > .active > i{
    color: #D82A22!important;
}
.notification .header button:not(:last-child):after {
    position: absolute;
    left: 120px;
    top: 14px;
    width: 1px;
    height: 20px;
    margin: auto;
    background: #ebebeb;
    content: "";
}

.notification .list{
    height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
}
.notification > .footer{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    line-height: 40px;
    background: #fff;
    border-top: 1px solid #ebebeb;
    box-sizing: border-box;
}
.notification .footer > a{
    font-size: 14px;
    color: #8590a6;
}
.notification .footer > a i{
    font-size: 14px;
}
