#news > .box {
  display: flex;
}

#news > .box .n_right .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#news > .box .n_right .list .items {
  box-sizing: border-box;
  margin-bottom: 20px;
  width: 100%;
}

#news > .box .n_right .list .items .li {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  display: block;
  transition: 0.5s;
  position: relative;
  display: flex;
}

/*#news > .box .n_right .list .items .li:hover {*/
/*  border: 1px solid var(--dataColor);*/
/*  transition: 0.5s;*/
/*  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.08);*/
/*  transform: translate3d(0, -3px, 0);*/
/*  border: 1px solid #e5e5e5;*/
/*}*/

/*#news > .box .n_right .list .items .li:hover .more {*/
/*  bottom: 10px;*/
/*  transition: 0.5s;*/
/*}*/

#news > .box .n_right .list .items .li .img {
  width: 25%;
}

#news > .box .n_right .list .items .li .text {
  width: 75%;
  display: flex;
}

#news > .box .n_right .list .items .li .text .day {
  color: #808080;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin: 10px 0;
}

#news > .box .n_right .list .items .li .text .day::before {
  margin-right: 10px;
}

#news > .box .n_right .list .items .li .text .h4 {
  text-align: left;
  margin: 5px 0 5px;
  line-height: 22px;
  font-size: 15px;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
  z-index: 999;
  position: relative;
  font-family: "montserratB";
}

#news > .box .n_right .list .items .li .text .details {
  color: #999;
  overflow: hidden;
  height: 40px;
  line-height: 20px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#news > .box .n_right .list .items .li .text .more {
  color: #dfdfdf;
  padding: 18px 0px;
  padding-left: 19px;
  font-size: 22px;
  /* text-align: center; */
  box-sizing: border-box;
}

#news > .box .text {
    color: #000;
    margin-left: 45px
}

#news > .box > .main {
  width: calc(100% - 300px);
  margin-left: 50px;
}

#news > .box .left {
  padding: 30px 0px;
  width: 73px;
}

#news > .box .center {
    width: 93%;
}

#news > .box .left .time {
    font-size: 20px;
}

#news > .box .center .title {
    padding: 30px;
}

#news > .box .center .content {
    padding: 0 30px;
    color: #8f8f8f;
}

#news > .box > .main span {
  color: #333;
  position: relative;
  font-size: 20px;
  display: inline-block;
  padding: 8px 10px;
  line-height: 30px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  text-transform: capitalize;
  /*border-bottom: 1px solid #fff;*/
  font-family: "montserratB";
  /*margin-left: 459px;*/
}

#news > .box > .main .content {
  padding: 10px;
  /* border: 1px solid #e5e5e5; */
}

@media screen and (max-width: 600px) {
    #news > .box > .main span {
        /*margin-left: 95px;*/
    }
    #news > .box .n_right .list .items {
      margin-bottom: 0;
    }
  #news > .box .n_right .list .items .li .text {
      display: block;
  }
  #news > .box .center {
    width: 100%;
  }
  #news > .box .center .title {
     padding: 10px;
  }
   #news > .box .left {
    height: 40px;
    padding: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #news > .box {
    flex-direction: column;
  }
  #news > .box .n_right {
    width: 100%;
  }
  #news > .box .n_right .items .li {
    flex-direction: column;
  }
  #news > .box .n_right .items .li .img {
    width: 100% !important;
  }
  #news > .box .n_right .items .li .img .slide {
    padding-bottom: 50% !important;
  }
  #news > .box .n_right .items .li .text {
    width: 100% !important;
  }
  #news > .box > .main {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}