@import url('../css/head_foot.css');
#content .cont_hot .best_title {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 32px;
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  border: 1px solid #333333;
  border-bottom: none;
}
#content .cont_hot .best_title img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
#content .cont_hot .best_title span {
  font-size: 16px;
  font-family: b;
  font-weight: bold;
  vertical-align: middle;
}
#content .cont_hot .hot-title {
  background: #FFF3EC;
}
#content .cont_hot .hot-title span {
  color: #FD7423;
}
#content .cont_hot .best-title {
  background: #E2EFFF;
}
#content .cont_hot .best-title span {
  color: #006DFC;
}
#content .cont_hot .new-title {
  background: #FFEBED;
}
#content .cont_hot .new-title span {
  color: #FC4D59;
}
#content .cont_hot .hot_list {
  padding: 33px 24px;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  border: 1px solid #333333;
  display: grid;
  grid-template-columns: repeat(8, minmax(50px, 1fr));
  grid-gap: 15px;
  margin-bottom: 23px;
}
#content .cont_hot .hot_list .hot_item {
  border: 1px solid #EEEEEE;
  padding: 8px;
  border-radius: 8px;
}
#content .cont_hot .hot_list .hot_item img {
  width: 100%;
  border-radius: 8px 8px 8px 8px;
  margin-bottom: 6px;
}
#content .cont_hot .hot_list .hot_item .title {
  width: 100%;
  font-size: 14px;
  font-family: b;
  font-weight: bold;
  color: #333333;
  line-height: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#content .cont_hot .hot_list .hot_item span {
  font-size: 12px;
  font-family: m;
  font-weight: 500;
  color: #999999;
  line-height: 14px;
}
#content .cont_hot .hot_list .hot_item:hover {
  border: 1px solid #333;
  box-shadow: 4px 4px 0px 0px #333333;
}
#content .cont_hot .hot_list .ad {
  position: relative;
  grid-area: 4/1/5/9;
  min-height: 90px;
  margin-bottom: 20px;
}
#content .cont_hot .hot_list .ad .ad_title {
  position: absolute;
  width: 97px;
  height: 19px;
  font-size: 14px;
  font-family: m;
  font-weight: 400;
  color: #7F7F7F;
  line-height: 16px;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 860px) and (max-width: 1200px) {
  #content .cont_hot .best_title {
    padding: 12px 16px;
  }
  #content .cont_hot .hot_list {
    padding: 16px;
    grid-template-columns: repeat(8, minmax(50px, 1fr));
  }
  #content .cont_hot .hot_list .ad {
    grid-area: 2/1/3/9;
  }
}
@media (min-width: 750px) and (max-width: 859px) {
  #content .cont_hot .best_title {
    padding: 12px 16px;
  }
  #content .cont_hot .hot_list {
    padding: 16px;
    grid-template-columns: repeat(6, minmax(50px, 1fr));
  }
  #content .cont_hot .hot_list .ad {
    grid-area: 2/1/3/7;
  }
}
@media (min-width: 560px) and (max-width: 749px) {
  #content .cont_hot .best_title {
    padding: 12px 16px;
  }
  #content .cont_hot .hot_list {
    padding: 16px;
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
  #content .cont_hot .hot_list .ad {
    grid-area: 2/1/3/6;
  }
}
@media (min-width: 0px) and (max-width: 559px) {
  #content .cont_hot .best_title {
    padding: 12px 16px;
  }
  #content .cont_hot .hot_list {
    padding: 16px;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
  #content .cont_hot .hot_list .ad {
    grid-area: 2/1/3/4;
  }
}
