#content {
  padding: 24px 16px;
}
#content .all .top_title {
  font-size: 20px;
  font-family: s;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
#content .all .move_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  margin-bottom: 24px;
  grid-gap: 16px;
}
#content .all .move_list .move_item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
#content .all .move_list .move_item .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
#content .all .move_list .move_item .move_cover {
  width: 100%;
  height: 193px;
  object-fit: cover;
}
#content .all .move_list .move_item .move_btm {
  background: #121212;
  padding: 8px;
}
#content .all .move_list .move_item .move_btm h4 {
  height: 46px;
  font-size: 18px;
  font-family: m;
  font-weight: 500;
  color: #E8E8E9;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}
#content .all .move_list .move_item .move_btm .btm_box {
  display: flex;
  align-items: center;
}
#content .all .move_list .move_item .move_btm .btm_box img {
  width: 18px;
  height: 18px;
}
#content .all .move_list .move_item .move_btm .btm_box span {
  width: calc(100% - 24px);
  font-size: 14px;
  font-family: r;
  font-weight: 400;
  color: #8C8D8F;
  margin-left: 6px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#content .all .move_list .move_item:hover .move_btm {
  background: #2F3138;
}
#content .all .move_list .move_item:hover .move_btm h4 {
  color: #00DC5B;
}
#content .all .paging {
  height: 50px;
  text-align: center;
}
#content .all .paging ul {
  display: inline-block;
  overflow: hidden;
}
#content .all .paging ul li {
  cursor: pointer;
  float: left;
  width: 29px;
  height: 31px;
  border-radius: 4px;
  background: #121212;
  font-size: 14px;
  font-family: m;
  font-weight: 400;
  color: #8C8D8F;
  text-align: center;
  line-height: 31px;
  margin-right: 12px;
}
#content .all .paging ul li:nth-child(2) {
  width: 32px;
  height: 32px;
  background: #00DC5B;
  border-radius: 4px;
  border: none;
  color: #333;
}
#content .all .paging ul li:last-child {
  margin-right: 0;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content .all .move_list {
    grid-template-columns: repeat(3, minmax(100px, 100%));
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .all .move_list {
    grid-template-columns: repeat(2, minmax(100px, 100%));
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .all .move_list {
    grid-template-columns: repeat(2, minmax(100px, 100%));
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .all .move_list {
    grid-template-columns: repeat(1, minmax(100px, 100%));
  }
}
