.desktop .desktopListBox .desktopListBoxTop {
  width: 100%;
  position: relative;
}
.desktop .desktopListBox .desktopListBoxTop .desktopTitle {
  font-size: 22px;
  text-align: center;
  color: #333;
  margin: 20px auto;
}
.desktop .desktopListBox .desktopListBoxTop .editDesktopButton {
  width: 81px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 20px;
  margin: 20px 0;
  background: #eee;
  border-radius: 4px;
}
.desktop .desktopListBox .desktopListBoxTop .editDesktopButton:hover {
  color: #0167c0;
}
.desktop .desktopListBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.desktop .desktopListBox li {
  width: 171px;
  height: 140px;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.desktop .desktopListBox li:hover {
  border: 1px solid #33a6ff;
  border-radius: 8px;
  background: #edf7fe;
}
.desktop .desktopListBox li:hover .iconDeleteDesktop {
  display: block;
}
.desktop .desktopListBox li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.desktop .desktopListBox li a img {
  width: 64px;
  height: 64px;
}
.desktop .desktopListBox li a .desktopDetail {
  margin-top: 20px;
  text-align: center;
}
.desktop .desktopListBox li .iconDeleteDesktop,
.desktop .desktopListBox li .iconSuccessSelect {
  width: 16px;
  height: 16px;
  background: url(../images/icon_delete.png) no-repeat center center / cover;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
.desktop.desktopPop .desktopListBox li {
  width: 140px;
  height: 120px;
  margin-bottom: 15px;
}
.desktop.desktopPop .desktopListBox li[data-status='1'] a {
  border: 1px solid #33a6ff;
  border-radius: 8px;
  background: #edf7fe;
}
.desktop.desktopPop .desktopListBox li[data-status='1'] .iconSuccessSelect {
  display: block;
}
.desktop.desktopPop .desktopListBox li:hover {
  border: none;
  border-radius: none;
  background: transparent;
}
.desktop.desktopPop .desktopListBox li a {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.desktop.desktopPop .desktopListBox li a .desktopDetail {
  margin-top: 10px;
}
.desktop.desktopPop .desktopListBox li .iconSuccessSelect {
  right: 18px;
  top: 8px;
  background: url(../images/icon_select.png) no-repeat center center / cover;
}
