@import url('../css/head_foot.css');
#content .cont_all {
  width: 1200px;
  margin-bottom: 34px;
}
#content .cont_all .best_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  padding: 17px 24px;
  background: #0088FF;
  border: 1px solid #333;
  border-bottom: none;
  box-sizing: border-box;
  position: relative;
}
#content .cont_all .best_title .r-bai {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
#content .cont_all .best_title span {
  font-size: 16px;
  font-family: b;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
}
#content .cont_all .all_list {
  display: grid;
  grid-template-columns: repeat(8, minmax(50px, 1fr));
  grid-gap: 16px;
  padding: 24px 16px;
  border: 1px solid #333;
  background: #fff;
}
#content .cont_all .all_list .all_item {
  border: 2px solid #eee;
  padding: 8px;
  border-radius: 8px;
}
#content .cont_all .all_list .all_item .img-box {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
}
#content .cont_all .all_list .all_item .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content .cont_all .all_list .all_item .title {
  width: 100%;
  font-size: 14px;
  font-family: b;
  font-weight: bold;
  color: #333;
  line-height: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#content .cont_all .all_list .all_item span {
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #999999;
  line-height: 14px;
}
#content .cont_all .all_list .all_item:hover {
  border-color: #0088FF;
}
#content .cont_all .all_list .all_item:hover .title {
  color: #0088FF;
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content .cont_all {
    width: 100%;
  }
  #content .cont_all .best_title {
    width: 100%;
  }
  #content .cont_all .all_list {
    grid-template-columns: repeat(8, minmax(50px, 1fr));
    padding: 12px;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .cont_all {
    width: 100%;
  }
  #content .cont_all .best_title {
    width: 100%;
  }
  #content .cont_all .all_list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    padding: 12px;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .cont_all {
    width: 100%;
  }
  #content .cont_all .best_title {
    width: 100%;
  }
  #content .cont_all .all_list {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    padding: 12px;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .cont_all {
    width: 100%;
  }
  #content .cont_all .best_title {
    width: 100%;
  }
  #content .cont_all .all_list {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    padding: 12px;
  }
}
