#content .best {
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px 16px 16px 16px;
  overflow: hidden;
  border: 1px solid #000000;
  margin-bottom: 16px;
}
#content .best .best_top,
#content .best .new_top,
#content .best .hot_top {
  height: 52px;
  border-bottom: 1px solid #000000;
  font-size: 18px;
  font-family: b;
  font-weight: bold;
  color: #333333;
  line-height: 52px;
  padding: 0 24px;
}
#content .best .best_top {
  background: #D9E8FF;
}
#content .best .new_top {
  background: #FFD9D9;
}
#content .best .hot_top {
  background: #D9DDFF;
}
#content .best .best_list {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(10, minmax(50px, 106px));
  grid-gap: 16px;
}
#content .best .best_list .best_item {
  position: relative;
  padding: 8px;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 12px 12px 12px 12px;
  border: 1px solid #EEEEEE;
  overflow: hidden;
}
#content .best .best_list .best_item img {
  width: 100%;
  border-radius: 12px 12px 12px 12px;
}
#content .best .best_list .best_item .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
#content .best .best_list .best_item .title_box {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.59) 100%);
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  align-items: end;
  padding: 7px;
}
#content .best .best_list .best_item .title_box span {
  width: 100%;
  height: 17px;
  font-size: 14px;
  font-family: b;
  font-weight: bold;
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#content .best .best_list .best_item:hover {
  border-color: #333;
}
#content .best .best_list .best_item:hover .title_box {
  top: 0;
  transition: 0.3s;
}
#content .best .best_list .big_one {
  grid-area: 1/2/3/4;
}
#content .best .best_list .big_two {
  grid-area: 3/7/5/9;
}
