/**
 * 系统通知：背景 #FF2442，文字紧凑，收窄宽度
 */
.alert-system .alert-body {
    width: auto;
    min-width: 0;
    max-width: 200px;
    margin-bottom: 6px;
    padding: 0 10px;
    font-size: 0;
    line-height: 1.25;
    text-align: left;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 36, 66, 0.25);
    --this-color: #fff;
    --this-bg: #ff2442;
    --this-border: #ff2442;
    --this-hover-color: #fff;
    --this-hover-bg: #ff2442;
    color: #fff !important;
    background: #ff2442 !important;
    transform: translateX(110%) scaleY(0);
}

.alert-system .alert-body.show {
    font-size: 12px;
    padding: 4px 10px;
    opacity: 1;
    transform: translateX(0) scaleY(1);
}

.alert-system .alert-body i {
    font-size: 1em;
    margin-right: 4px;
    color: #fff;
}

.alert-system .alert-body span {
    line-height: 1.25;
    letter-spacing: 0;
}
