.banner {
  width: 100%;
  position: relative;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 360px;
  transform: translate(0%, -50%);
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  color: #ffffff;
  line-height: 64px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.banner img {
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
  padding-bottom: 0;
}
.newsTabs {
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.newsTab {
  padding: 22px 29px;
  font-weight: 500;
  font-size: 16px;
  color: #5c78a1;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
}

.newsTab:hover {
  color: #ffffff;
  background-color: #2563eb;
}

.newsTab-active {
  color: #ffffff;
  background-color: #2563eb;
}

.newList {
  width: 1200px;
  padding: 0px 20px 40px 20px;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 4px;
}

.newItem {
  padding: 40px 20px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newItem:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.newItemImg {
  width: 200px;
  height: 150px;
  border-radius: 4px 4px 4px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.newItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newItemInfo {
  width: 750px;
  margin-left: 60px;
  padding-top: 20px;
}
.newItem-title {
  font-weight: 500;
  font-size: 20px;
  color: #3d3d3d;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newItem-time {
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 16px;
}
.newItem-time span {
  margin-right: 40px;
}
.newItem-text {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 响应式设计 */
@media (max-width: 1439px) and (min-width: 768px) {
  .newList {
    width: 90%;
    padding: 0px 20px 40px 20px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px 4px 4px 4px;
  }
  .newItem {
    padding: 40px 20px;
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .newItemImg {
    width: 100%;
    height: 150px;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .newItemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .newItemInfo {
    width: 100%;
    margin-left: 0px;
    padding-top: 20px;
  }

  .banner-title {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translate(0%, -50%);
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    color: #ffffff;
    line-height: 64px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }
}

@media (max-width: 767px) {
  
  .newList {
    width: 90%;
    padding: 0px 20px 40px 20px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px 4px 4px 4px;
  }
  .newItem {
    padding: 40px 0px;
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .newItemImg {
    width: 100%;
    height: 150px;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .newItemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .newItemInfo {
    width: 100%;
    margin-left: 0px;
    padding-top: 20px;
  }
}
