/* 公用样式 */
* {
  margin: 0;
  padding: 0;
}

html,body {
  height: 100%;
  font-size: 14px;
  background-color: #f2f3f5;
}

a {
  color: #fff;
  text-decoration: none;
}

ul, li {
  list-style: none;
}

/* message插件 */
.msg-box {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity .3s,transform .4s,top .4s;
  width: 380px;
  height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.msg-show {
  opacity: 0;
  top: 0;
}

.msg-leave {
  opacity: 0;
  top: 0!important;
}

.msg-box > svg {
  margin-right: 10px;
}