.el-notification {
	width: 200px;
	padding: 10px;
	border-radius: 3px;
	border: 1px solid #aaa;
	position: fixed;
	background: rgba(50,50,50,0.5);
	overflow: hidden
}

.el-notification.right {right: 16px;}
.el-notification.left {left: 16px;}
.el-notification.top {top: 16px;}
.el-notification.bottom {bottom: 16px;}
.el-notification-group {margin-left: 13px;}

.el-notification-title {
	font-size: 14px;
	color: #fea;
	margin: 0;
	cursor:pointer;
}

.el-notification-content {
    font-size: 12px;
    line-height: 1.1;
    color: #fff;
    text-align: justify;
    cursor:pointer;
}
.el-notification-title:hover, .el-notification-content:hover{
    color:#fff;
}

.el-notification-content p {margin: 0}

.el-notification-icon {
	height: 24px;
	width: 24px;
	font-size: 24px
}

.el-notification-close-btn {
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    color: #fff;
    font-size: 16px
}

.el-notification-close-btn:hover {color: #fff;}
.el-notification .el-icon-success {color: #fff;}
.el-notification .el-icon-error {color: #f00;}
.el-notification .el-icon-info {color: #909399;}
.el-notification .el-icon-warning {color: #e6a23c;}

.el-notification-fade-enter.right {
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.el-notification-fade-enter.left {
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.el-notification-fade-leave-active {
    opacity: 0
}

.el-default-close-btn {
    display: inline-block;
    width: 10px;
    height: 10px;
    overflow: hidden;
}

.el-default-close-btn:hover::before, .el-default-close-btn:hover::after {
    background: #fff;
}
.el-default-close-btn::before, .el-default-close-btn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #ccc;
}
.el-default-close-btn::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.el-default-close-btn::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}