.MusicLib {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.MusicLib .top {
  width: 100%;
  height: 40px;
  background: #232629;
  border-radius: 2px 2px 0px 0px;
  display: flex;
  overflow: auto;
}
.MusicLib .top .btnMine {
  margin-left: 10px;
  margin-top: 10px;
  width: 50px;
  height: 20px;
  background: #2d3036;
  border-radius: 2px 2px 2px 2px;
  opacity: 1;
  display: flex;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.MusicLib .top .btnMine.is-selected {
  color: #2991f1;
}
.MusicLib .top .btnType {
  margin-left: 10px;
  margin-top: 10px;
  width: 50px;
  height: 20px;
  background: #2d3036;
  border-radius: 2px 2px 2px 2px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.MusicLib .top .btnType.is-selected {
  color: #2991f1;
}
.MusicLib .bottom {
  margin-top: 1px;
  width: 100%;
  padding: 5px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  background: #181818;
  border-radius: 0px 0px 2px 0px;
  align-content: flex-start;
  overflow: auto;
}
.MusicLib .bottom.is-empty {
  justify-content: center;
}
.MusicLib .bottom .m-noMap-item {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.MusicLib .bottom .m-noMap-item .u-noMap-text {
  width: 100%;
  font-size: 12px;
  margin-bottom: 20px;
}
.MusicLib .bottom .m-noMap-item .u-noMap-but {
  width: 65px;
  height: 30px;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #2991f1;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #2991f1;
  line-height: 30px;
  cursor: pointer;
}
.MusicLib .bottom .item {
  width: 195px;
  height: 145px;
  background: #202020;
  border-radius: 2px 2px 2px 2px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
}
.MusicLib .bottom .item.selected {
  border-color: #2991f1;
}
.MusicLib .bottom .item img {
  width: 100%;
}
.MusicLib .bottom .item .name {
  position: absolute;
  margin-top: 20px;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 12px;
}
.MusicLib .bottom .item .btnshouchang {
  position: absolute;
  bottom: 14px;
  right: 7px;
  width: 18px;
  height: 18px;
  display: flex;
  cursor: pointer;
}
.MusicLib .bottom .item .audio-duration {
  position: absolute;
  bottom: 40px;
  right: 7px;
  font-size: 12px;
}
.MusicLib .popMenu {
  width: 150px;
  background: #232529;
  box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.25);
  border-radius: 2px 2px 2px 2px;
  padding: 10px;
  padding-bottom: 0px;
  position: absolute;
  top: 41px;
  left: 71px;
  display: flex;
  flex-direction: column;
}
.MusicLib .popMenu .item {
  width: 130px;
  height: 30px;
  margin-bottom: 10px;
  background: #2d3036;
  border-radius: 2px 2px 2px 2px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.MusicLib .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #000000b5;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
}

