.drawer-header {
  padding: 16px 20px;
  border-bottom: 1px dashed #E6E8EB;
}

.drawer-close {
  z-index: 10;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 18px;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: color .3s;
  transition: color .3s;
  text-rendering: auto;
}

.drawer-title {
  flex: 1;
  color: #0E1114;
}

.drawer-wrap {
  width: 300px;
  height: 500px;
  background: #FFFFFF;
}

.drawer-wrap-content {
  height: 100%;
  background: #ddd;
  box-shadow: -4px 0 20px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.9, 0, 0.3, 0.7), box-shadow 0.3s cubic-bezier(0.9, 0, 0.3, 0.7), -webkit-transform 0.3s cubic-bezier(0.9, 0, 0.3, 0.7), -webkit-box-shadow 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
}

.drawer-wrap-content {
  display: flex;
  flex-direction: column;
}

.drawer-content {
  flex: 1;
  overflow: auto;
  position: relative;
}

.drawer-footer {
  height: 90px;
  border-top: 1px dashed #E6E8EB;
}

.drawer-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 16px 20px;
}

.drawer-footer-wrap > div {
  margin-left: 10px;
}

.drawer-header-wrap {
  display: flex;
}

.drawer-no-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-no-data-image {
  width: 202px;
  height: 202px;
  background: url(./images/no-data.svg) no-repeat;
}

.drawer-no-data-text {
  color: #BBBFEE;
  text-align: center;
  position: relative;
  top: -40px;
}

.drawer-tip-container {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translate(-50%, 0);
}

.drawer-wrap-right {
  position: fixed;
  width: 0%;
  top: 0;
  height: 100%;
  background: transparent;
  top: 0;
  cursor: pointer;
}

.drawer-wrap-right .drawer-wrap-content {
  position: fixed;
  right: 0;
  background: #FFFFFF;
  box-shadow: -4px 0 20px 0 rgba(0, 0, 0, 0.05);
}

.drawer-wrap-open {
  width: 100%;
}
