.uitoast {
  display: inline-flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 90px;
  width: 360px;
  padding: 20px 20px;
  z-index: 20;
}
.uitoast .toast-item {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, .25);
}
.uitoast .toast-item .top {
  display: inline-flex;
  flex-direction: row;
 	justify-content: center;
 	align-items: center;
  width: 100%;
 	padding: 8px 15px;
 	border-bottom: 1px solid #EEE;
}
.uitoast .toast-item .top .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--theme-color);
  border-radius: 3px;
}
.uitoast .toast-item .top .title {
  flex: 1;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.uitoast .toast-item .top .time {
  color: #8e8e8e;
  font-size: 14px;
}
.uitoast .toast-item .top .close {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url('/image/icon-close.png');
  background-size: auto 80%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.uitoast .toast-item .body {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 15px;
}
.uitoast .toast-item .body .message {
	width: 100%;
  font-size: 14px;
  text-align: left;
}