.floatingbar {
  position: fixed;
  left: 0px;
  bottom: 10px;
  width: 100%;
  transition: all 400ms ease;
  z-index: 999;
  color: rgba(0, 0, 0, 0.87);
}
.floatingbar .floatingtext {
  position: absolute;
  left: 0px;
  height: 64px;
  width: 150px;
  top: 0px;
  background: #fffcf1;
  font-size: 16px;
  line-height: 64px;
  text-align: center;
  cursor: pointer;
}
.floatingbar .floatingbarbody {
  width: 0px;
  padding: 15px;
  box-sizing: border-box;
  transition: all 0.3s;
  height: 64px;
}
.floatingbar.active .floatingbarbody {
  width: 100%;
  background: #fffcf1;
  border-radius: 5px 0 0 5px;
  padding: 15px;
  box-sizing: border-box;
  padding-left: 170px;
  transition: all 0.3s;
}

.resource {
  position: absolute;
  bottom: 12px;
  left: 0;
  padding: 0;
}
.resource .resourcesText {
  background-color: #294040;
  color: #fff;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.resource .resourcesText .material-icons {
  color: #fff;
}
