.footer {
  margin: .4rem auto;
  text-align: center;
  font-size: .26rem;
  color: #DBD9D5;
}
.user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .3rem;
  height: .7rem;
  background-color: #fff;
}

.user .logo {
  display: inline-block;
  vertical-align: middle;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
}

.user .username {
  display: inline-block;
  vertical-align: middle;
  font-size: .24rem;
  color: #333;
  padding: 0 .16rem;
}

.user .department {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: .04rem .2rem;
  border-radius: .24rem;
  background: #FA8C16;
  color: #fff;
  font-size: .22rem;
  width: auto !important;
}


.user .right {
  color: #999;
 /* font-size: .22rem;*/
  font-size: .24rem;
}

.banner {
  position: relative;
}
.banner > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.banner-empty {
  overflow: hidden;
  background: linear-gradient(135deg, #6200EA 0%, #2962FF 100%);
  color: white;
  padding-top: 24%;
  height: 0;
  text-align: center;
  position: relative;
}
.banner-empty-high {
  padding-top: 42.5556%;
}

.banner-empty-text {
  position: absolute;
  width: 100%;
  top: .3rem;
  left: 0;
  line-height: 1.6;
}

.banner-empty h1 {
  font-size: 0.36rem;
  margin-bottom: .1rem;
  font-weight: 700;
}

.banner-empty-high h1 {
  padding-top: .5rem;
}

.banner-empty p {
  font-size: 0.28rem;
  margin: 0 auto;
  opacity: 0.9;
}

.banner-empty-circle,
.banner-empty-square {
  position: absolute;
  opacity: 0.1;
}

.banner-empty-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 4px solid white;
  top: -1rem;
  left: -1rem;
}

.banner-empty-square {
  width: 80px;
  height: 80px;
  border: 4px solid white;
  bottom: -30px;
  right: 50px;
  transform: rotate(45deg);
}