#news > .container {
  padding-bottom: 100px;
}
#news .category {
  padding-top: 70px;
  justify-content: center;
}
#news .category a {
  color: #333333;
  font-size: 20px;
  margin: 0 70px;
  padding: 0 5px 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
#news .category a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #45C25B;
  transition: all 0.3s ease;
  border-radius: 3px;
}
#news .category a.on,
#news .category a:hover {
  color: #45C25B;
}
#news .category a.on::after,
#news .category a:hover::after {
  width: 100%;
  left: 0;
}
#news .news_list {
  width: 100%;
  display: inline-block;
  padding: 70px 0 15px;
}
#news .news_list .n_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f8f8f8;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}
#news .news_list .n_item .n_img {
  width: 25.5%;
  height: 214px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#news .news_list .n_item .n_img img {
  display: inline-block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
}
#news .news_list .n_item .d-flex {
  width: 72.6%;
  justify-content: space-between;
}
#news .news_list .n_item .n_text {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  width: calc(90% - 178px);
}
#news .news_list .n_item .n_text h5 {
  display: inline-block;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 16px;
}
#news .news_list .n_item .n_text p {
  display: inline-block;
  width: 100%;
  font-size: 15px;
  color: #666666;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#news .news_list .n_item .n_date {
  width: 178px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#news .news_list .n_item .n_date p {
  display: inline-block;
  font-size: 58px;
  color: #242424;
  line-height: 60px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}
#news .news_list .n_item .n_date span {
  font-size: 18px;
  color: #242424;
  line-height: 20px;
  margin-top: 4px;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}
#news .news_list .n_item:hover {
  background: #fff;
  box-shadow: 0px 10px 60px 1px rgba(0, 0, 0, 0.11);
}
#news .news_list .n_item:hover .n_img img {
  webkit-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
  transform: scale(1.06);
}
#news .news_list .n_item:hover .n_text h5 {
  color: #27A43C;
}
#news .news_list .n_item:hover .n_date p {
  color: #27A43C;
}
#news .news_list .n_item:hover .n_date span {
  color: #27A43C;
}
#news_detail .detail {
  padding: 72px 0 134px;
  display: flex;
  justify-content: space-between;
}
#news_detail .detail .left {
  width: 71.25%;
  padding-right: 2.38%;
  border-right: 1px solid #E4E3E2;
  padding-bottom: 4.5vh;
}
#news_detail .detail .left .font32 {
  color: #373737;
  font-weight: 400;
}
#news_detail .detail .left .time {
  padding: 3vh 0;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 3vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#news_detail .detail .left .time img {
  margin-right: 9px;
}
#news_detail .detail .left .time span {
  color: #7D7D7D;
}
#news_detail .detail .left .time .share {
  display: inline-flex;
  align-items: center;
}
#news_detail .detail .left .time .share span {
  color: #000;
}
#news_detail .detail .left .time .share a .code {
  display: none;
  position: absolute;
  bottom: 120%;
  width: 140px;
  max-width: 140px;
  left: calc(50% - 70px);
  border: 2px solid #F0F0F0;
}
#news_detail .detail .left .time .share .wx {
  margin-right: 20px;
  position: relative;
}
#news_detail .detail .left .time .share .wx:hover .code {
  display: block;
}
#news_detail .detail .left .desc {
  text-align: center;
}
#news_detail .detail .left .desc p {
  font-size: 16px;
  color: #2D3441;
  line-height: 30px;
  text-align: left;
}
#news_detail .detail .left .desc img {
  max-width: 80%;
  margin: 2vh auto ;
}
#news_detail .detail .left .more {
  background: #E5E5E5;
  padding: 2vh 1.5vh;
  justify-content: space-between;
  display: flex;
  margin-top: 4vh;
}
#news_detail .detail .left .more a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #2D3441;
  transition: all 0.1s;
}
#news_detail .detail .left .more a span {
  margin: 0 6px;
}
#news_detail .detail .left .more a:hover {
  color: #27A43C;
}
#news_detail .detail .right {
  width: 28.75%;
  padding-left: 2%;
  box-sizing: border-box;
  position: relative;
  padding-top: 32px;
}
#news_detail .detail .right > .font24 {
  font-size: 24px;
  color: #373737;
  padding-bottom: 15px;
}
#news_detail .detail .right .list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
#news_detail .detail .right .list .item {
  width: 100%;
  display: block;
  margin-bottom: 3vh;
  color: #2D3441;
}
#news_detail .detail .right .list .item img {
  width: 100%;
}
#news_detail .detail .right .list .item .font14 {
  font-size: 14px;
  color: #808080;
  margin-bottom: 6px;
  margin-top: 15px;
}
#news_detail .detail .right .list .item .font20 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin: 1vh 0 1.7vh;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#news_detail .detail .right .list .item .font16 {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#news_detail .detail .right .list .item:hover .font20 {
  color: #27A43C;
}
#news_detail .detail .right .more {
  background: #E5E5E5;
  padding: 2vh 0;
  text-align: center;
  color: #373737;
  font-size: 16px;
  display: block;
  margin-top: 1vh;
  transition: all 0.3s;
}
#news_detail .detail .right .more:hover {
  background: #27A43C;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #news > .container {
    padding-bottom: 50px;
  }
  #news .category {
    padding-top: 37px;
  }
  #news .category a {
    margin: 0 20px!important;
    font-size: 15px!important;
    padding-bottom: 10px;
  }
  #news .news_list {
    padding: 15px 0 0 ;
  }
  #news .news_list .n_item {
    width: 100%;
    position: relative;
    flex-direction: column;
    margin-bottom: 22px;
  }
  #news .news_list .n_item .n_img {
    width: 100%;
    height: auto;
  }
  #news .news_list .n_item .n_img img {
    display: inline-block;
    width: 100%;
    height: auto;
  }
  #news .news_list .n_item .d-flex {
    width: 100%;
    flex-direction: column-reverse;
    padding: 17px 20px;
  }
  #news .news_list .n_item .n_text {
    width: 100%;
    padding-top: 9px;
    padding-right: 0;
  }
  #news .news_list .n_item .n_text::after {
    content: none;
  }
  #news .news_list .n_item .n_text h5 {
    height: auto;
    display: inline-block;
    font-size: 17px;
    line-height: 28px;
    font-weight: bold;
    margin: 0;
  }
  #news .news_list .n_item .n_text p {
    font-size: 14px;
    line-height: 25px;
    height: auto;
    margin-top: 8px;
  }
  #news .news_list .n_item .n_date {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  #news .news_list .n_item .n_date p {
    font-size: 14px;
    line-height: 14px;
    padding-left: 6px;
    position: relative;
  }
  #news .news_list .n_item .n_date p::after {
    content: '/';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 14px;
    color: #10111A;
  }
  #news .news_list .n_item .n_date span {
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    margin-top: 0;
  }
  #news_detail .detail {
    flex-direction: column;
    padding: 40px 0 20px;
  }
  #news_detail .detail .left {
    width: 100%;
    padding-bottom: 0;
    border-right: none;
    padding-right: 0;
  }
  #news_detail .detail .left .font32 {
    font-size: 24px;
    line-height: 35px;
    padding-bottom: 17px;
  }
  #news_detail .detail .left .font32::after {
    width: 46px;
    height: 2px;
  }
  #news_detail .detail .left .time {
    padding: 12px 0 8px;
  }
  #news_detail .detail .left .time .font16 {
    font-size: 14px;
  }
  #news_detail .detail .left .time .share {
    font-size: 14px;
  }
  #news_detail .detail .left .time .share img {
    width: 29px;
    margin-right: 0;
  }
  #news_detail .detail .left .time .share .wx {
    margin-right: 17px;
  }
  #news_detail .detail .left .time .share a .code {
    width: 100px;
    left: calc(50% - 50px);
  }
  #news_detail .detail .left .desc p {
    font-size: 14px;
    line-height: 26px;
  }
  #news_detail .detail .left .more {
    flex-direction: column;
    padding: 15px 12px;
  }
  #news_detail .detail .left .more a {
    font-size: 14px;
  }
  #news_detail .detail .left .more a:first-child {
    margin-bottom: 8px;
  }
  #news_detail .detail .left .more a img {
    display: none;
  }
  #news_detail .detail .right {
    width: 100%;
    padding: 0 0 36px;
  }
  #news_detail .detail .right > .font24 {
    font-size: 20px;
    margin: 30px 0 0;
    padding-bottom: 0;
  }
  #news_detail .detail .right .list .item {
    font-size: 14px;
    margin-bottom: 17px;
    line-height: 23px;
    padding-left: 0;
  }
  #news_detail .detail .right .list .item::after {
    width: 7px;
    height: 7px;
  }
  #news_detail .detail .right .list .item .font16 {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 25px;
  }
  #news_detail .detail .right .list .item .font20 {
    font-size: 17px;
    line-height: 25px;
    margin: 8px 0 10px;
  }
  #news_detail .detail .right .more {
    font-size: 14px;
  }
}
