#news {
  background: #f6f6f6;
}

#news .cur {
  background: var(--mainColor) !important;
  color: #fff;
}

#news .top {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

#news .top .item {
    margin: 10px;
    background: #eee;
    padding: 8px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    opacity: 1;
    font-size: 19px;
}

/*#news .top .item p {*/
/*  font-size: 1.5em;*/
/*  font-weight: bold;*/
/*}*/

#news .top .item span {
  font-size: 0.8em;
}

#news .list {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

#news .list .item {
  padding: 10px;
  box-sizing: border-box;
  margin: 10px;
  line-height: 2em;
  display: flex;
  justify-content: flex-start;
  background: #fff;
}

#news .list .item img {
  width: 30%;
}

#news .list .item > div {
  margin-left: 20px;
}

#news .list .item > div span {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50%;
  font-size: 0.9em;
  color: #555;
}

#news .list .item > div b {
  padding-top: 20px;
  display: block;
  font-size: 1.1em;
}

#news .list .item > div p {
  font-size: 0.9em;
  color: #555;
  margin-top: 40px;
}
@media screen and (max-width: 600px){
  #news .list .item{
      flex-direction: column;
  }  
  #news .list .item img{
      width: 100%;
  }
  #news .list .item > div p{
      font-size: 0.8em;
      line-height: 1.5em;
      margin-top: 10px;
  }
  #news .top{
      margin: 20px 0;
      justify-content: center;
  }
  #news .top .item {
    margin: 10px;
    font-size: initial;
    background: #eee;
    padding: 8px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    opacity: 1;
  }
  #news .top .item p{
    font-size: initial;  
  }
}