.hot_list {
  width: 278px;
  height: auto;
  margin-right: 35px;
  flex-shrink: 0;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.hot_list .hot_list_title {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-image: url(/images/cell_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 22px;
  color: #FFFFFF;
}
.hot_list .hot_list_ul {
  width: 100%;
}
.hot_list .hot_list_ul a {
  width: 100%;
  color: #000000;
  line-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}
.hot_list .hot_list_ul a i {
  color: #FFFFFF;
  background-color: #c2c2c2;
  font-size: 13px;
  text-align: center;
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
  font-style: normal;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.hot_list .hot_list_ul a span {
  display: block;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
}
.hot_list .hot_list_ul a:nth-of-type(1) i {
  background-color: #e21212;
}
.hot_list .hot_list_ul a:nth-of-type(2) i {
  background-color: #fb9a4e;
}
.hot_list .hot_list_ul a:nth-of-type(3) i {
  background-color: #fbd04e;
}
.hot_list .hot_list_ul a:last-of-type {
  border: none;
}

@media screen and (max-width: 600px) {
  .hot_list {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
  }
}