html,
body {
  width: 100%;
  font-family: 微软雅黑, Microsoft YaHei, sans-serif;
}

#app {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li,
button {
  list-style: none;
  outline: none;
}

.ellipsis-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wechat-share-icon {
  position: relative;
}

.wechat-share-icon .wechat-qrcode {
  display: none;
}
.wechat-share-icon:hover .wechat-qrcode {
  display: block;
}

.wechat-qrcode {
  position: absolute;
  text-align: center;
  font-size: 16px;
  background: #ffffff;
  border-radius: 8px;
  z-index: 100;
  top: -205px;
  left: -84px;
  width: 200px;
  height: 192px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  transition: all 200ms;
  -webkit-tansition: all 350ms;
  -moz-transition: all 350ms;
}

.wechat-qrcode h4 {
  line-height: 40px;
  font-weight: bold;
  color: #222222;
  background: #f5f5f5;
  border-radius: 8px 8px 0px 0px;
}
.wechat-qrcode .qrcode-content {
  padding: 10px;
}
.wechat-qrcode .qrcode-img {
  display: inline-block;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #d3d6da;
  border-radius: 8px;
  margin-bottom: 12px;
}
.wechat-qrcode .qrcode-txt {
  opacity: 0.6;
  color: #474a52;
}
.wechat-qrcode:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-width: 8px 10px 6px 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
