
/* 鼠标 */
.tweet_div{
    display: flex;
    position: relative;
  }
  .tweet_body {
    display: none;
    /* display: flex; */
    position: absolute;
    /* align-items: flex-end; */
    flex-direction: row;
    top: 31px;
    z-index: 5;
    left: -700px;
    width: 1920px;
    height: 240px;
    background-color: white;
  }
  
  .tweet_div:hover .tweet_body{
    display: flex;
  }
  .tweet_content{
    display: flex;
    position: relative;
    flex-direction: row;
    margin-left: 375px;
    margin-top: 32px;
  }
  .tweet_content_col{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 530px;
  }
  .tweet_content_col_top_title{
    display: flex;
    position: relative;
    color: #1e90ff;
    font-family: PingFang SC;
    font-size: 12px;
    font-weight: 400;
  }
  .tweet_content_col_body{
    display: flex;
    position: relative;
    margin-top: 23px;
  }
  .tweet_tag, .tweet_special{
    height: 36px;
    line-height: 36px;
    /* width: 90px; */
    padding: 0 10px;
    text-align: center;
    color: #4f4f4f;
    font-family: PingFang SC;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 10px;
  }
  .tweet_content_col_body span:first-child{
      margin-left: 0px;
  }
  .tweet_tag:hover, .tweet_special:hover{
    background-color: #5aa3f7;
    color: white;
    border-radius: 4px;
  }
  .tweet_span_click{
    background-color: #5aa3f7;
    color: white;
    border-radius: 4px;
  }