* {
  margin: 0;
}

a {
  color: #323232;
  text-decoration: none;
  transition: color 0.3s;
}

body {
  background-color: #f4f9f8;
}

.main-content {
  padding-top: 66px;
  width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  padding: 27px 0;
}

.breadcrumb .breadcrumb-item {
  font-weight: 500;
  font-size: 17px;
  height: 19px;
  line-height: 19px;
  letter-spacing: 0%;
  border-right: 3px solid #bf9742;
  padding-right: 13px;
  margin-right: 13px;
}

.breadcrumb .breadcrumb-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.news-list-box {
  width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #c0c0c0;
  margin-top: 32px;
  padding-top: 2px;
}

.news-list-item {
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 28px 22px;
  position: relative;
  display: flex;
  transition: all 0.3s;
  cursor: pointer;
  align-items: center;
}

.news-list-item::after {
  content: "";
  position: absolute;
  display: block;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #c0c0c0;
}

/* .news-list-item:last-child::after, */
.news-list-item:hover::after {
  display: none;
}

.news-list-item:hover {
  top: -2px;
  border-radius: 10px;
  background-color: rgba(47, 97, 0, 0.1);
  border: 1px solid #ffffff;
}

.news-list-item-img {
  width: 137px;
  height: 77px;
  object-fit: cover;
  margin-right: 27px;
}

.news-list-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list-item-content-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-list-item-content-desc {
  font-size: 16px;
  color: #333333;
  line-height: 100%;
  margin-top: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-list-item-arrow {
  width: 30px;
  height: 30px;
  display: none;
  transition: all 0.3s;
  margin-left: 22px;
}

.news-list-item:hover .news-list-item-arrow {
  display: block;
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 52px;
  margin-bottom: 40px;
}

.news-pagination-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #696969;
}

.news-pagination-left,
.news-pagination-right {
  width: auto;
  height: 20px;
  margin: 0 20px;
  cursor: pointer;
}

.news-pagination-input {
  height: 20px;
  font-size: 22px;
  color: #696969;
  text-align: center;
  padding: 0 12px;
  width: 60px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  height: 37px;
  line-height: 37px;
  box-sizing: border-box;
  background-color: #f4f9f8;
}
.news-pagination-divider {
  margin: 0 6px 0 8px;
  height: 22px;
  width: auto;
}
@media screen and (max-width:1024px){
.news-list-item-content-desc{
font-size:14px !important;
}
.main-content,.news-list-box{
width:100%;
}
.main-content{
padding-left:30px;
padding-right:30px;
padding-top:0px ;
}
.news-list-box{
margin-top:0px;
padding:20px 0;
}
.news-list-item{
width:100% !important;
    flex-wrap: wrap;
    padding: 0;
margin-bottom:15px;
}
.news-list-item-img{
width:100%;
height:auto;
}
.news-list-item-content{
width:100%;
flex:none;
padding:15px 0 20px 0;
}
.news-list-item-content-title{
font-size:16px;
}
.news-list-item-arrow{
display:none !important;
}
.news-list-item:hover{
top:0;
background:#f4f9f8;
border:none;
border-radius:0;
}

.breadcrumb .breadcrumb-item{
font-size:16px !important;
}
.news-list-item::after{
left:0 !important;
width:100% !important;
}




}