#content {
  padding: 20px 40px 60px;
}
#content .h1-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
#content .bread {
  font-family: r;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}
#content .bread .shen {
  color: #333333;
}
#content .edit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(20px, 1fr));
  gap: 10px 0;
}
#content .edit-list .edit-item a {
  display: block;
  border-radius: 12px;
  position: relative;
  padding: 8px;
  box-sizing: border-box;
}
#content .edit-list .edit-item a .img-box {
  width: 100%;
  height: 160px;
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
  position: relative;
}
#content .edit-list .edit-item a .img-box img {
  width: 100%;
  height: 100%;
}
#content .edit-list .edit-item a .img-box .title-box {
  width: 100%;
  padding: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0px 0px 8px 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}
#content .edit-list .edit-item a .img-box .title-box h3 {
  font-family: s;
  font-size: 14px;
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#content .edit-list .edit-item a:hover {
  background: #F4F4F4;
}
#content .edit-list .edit-item a:hover .title-box h3 {
  text-decoration: underline;
}

@media (min-width: 860px) and (max-width: 1200px) {
  #content .edit-list {
    grid-template-columns: repeat(4, minmax(20px, 1fr));
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .edit-list {
    grid-template-columns: repeat(3, minmax(20px, 1fr));
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .edit-list {
    grid-template-columns: repeat(2, minmax(20px, 1fr));
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .edit-list {
    grid-template-columns: repeat(1, minmax(20px, 1fr));
  }
}