main .banner {
  padding: 2.4% 9%;
  position: relative;
}
main .banner img {
  width: 100%;
}
main .banner .sp1 {
  position: absolute;
  top: 29%;
  left: 11%;
  color: #ed1c24;
  font-family: 思源黑体 CN;
  font-size: 1.75rem;
  font-weight: 700;
}
main .banner .sp2 {
  width: 35%;
  position: absolute;
  top: 43%;
  left: 11%;
  color: #ffffff;
  font-family: 思源黑体 CN;
  font-size: 1.625rem;
}
main .table {
  padding: 2.4% 9%;
}
main .table .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  width: 100%;
  border-bottom: #cdcdcd 1px solid;
}
main .table .top .title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #1c1c1c;
  display: flex;
  align-items: center;
}
main .table .top .title span {
  display: inline-block;
  width: 1.7rem;
  height: 2.3rem;
  background: #ed1c24;
  margin-right: 1rem;
}
main .table .top ul {
  display: flex;
  flex-wrap: wrap;
}
main .table .top ul .active {
  background: #ed1c24;
}
main .table .top ul .active a {
  color: #fff;
}
main .table .top ul li {
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem 0;
}
main .table .top ul li a {
  display: inline-block;
  padding: 0.5rem 2rem;
  text-align: center;
}
main .Recommended {
  padding: 2.4% 9%;
  padding-top: 0;
}
main .Recommended .big {
  display: flex;
  justify-content: space-between;
}
main .Recommended .big .small {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 32%;
}
main .Recommended .big .small .imgs {
  width: 100%;
  height: 17.5rem;
  overflow: hidden;
}
main .Recommended .big .small .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
main .Recommended .big .small .bottom .date {
  font-size: 0.875rem;
  color: #666;
  font-weight: 300;
  margin-top: 2rem;
}
main .Recommended .big .small .bottom p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  margin-top: 1rem;
}
main .Recommended .big .small .bottom .txt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 最多显示3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
  color: #000;
  font-weight: 300;
  margin-top: 1rem;
}
main .Recommended .big .small:hover img {
  transform: scale(1.1);
}
main .list {
  padding: 2.4% 9%;
}
main .list .news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 3rem;
  border-bottom: #cdcdcd 1px solid;
}
main .list .news .txtbox {
  width: 80%;
}
main .list .news .txtbox .date {
  font-weight: 400;
  font-size: 1rem;
}
main .list .news .txtbox p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-top: 1.5rem;
}
main .list .news .txtbox .txt {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 最多显示3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  color: #1f1f1f;
  font-weight: 300;
  margin-top: 1rem;
}
main .list .news .iconfont {
  width: 20%;
  text-align: right;
  font-size: 3rem;
  font-weight: 400;
}
main .list .news:hover .iconfont {
  color: #ed1c24;
}
main .pages {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10rem;
}
main .pages a {
  margin: 0 1rem;
}
main .pages .thisclass {
  color: #fff;
  background: #ed1c24;
}
main .pages span {
  margin: 0 1rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ed1c24;
}
/* 窗口宽度<960,设计宽度=768 */
@media screen and (max-width: 959px) {
  main .banner {
    padding: 0;
    height: 150px;
  }
  main .banner img {
    height: 100%;
  }
  main .banner .sp1 {
    font-size: 14px;
    top: 20%;
  }
  main .banner .sp2 {
    top: 45%;
    width: auto;
    font-size: 18px;
  }
  main .table {
    padding: 4%;
  }
  main .table .top {
    flex-direction: column;
  }
  main .table .top .title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  main .table .top .title span {
    width: 20px;
    height: 30px;
  }
  main .table .top ul li {
    font-size: 16px;
  }
  main .Recommended {
    padding: 4%;
  }
  main .Recommended .big {
    flex-direction: column;
  }
  main .Recommended .big .small {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    width: 100%;
  }
  main .Recommended .big .small .imgs {
    height: 150px;
  }
  main .Recommended .big .small .bottom {
    margin-bottom: 10px;
    padding: 20px 5px;
  }
  main .Recommended .big .small .bottom .date {
    font-size: 12px;
  }
  main .Recommended .big .small .bottom p {
    font-size: 16px;
  }
  main .Recommended .big .small .bottom .txt {
    -webkit-line-clamp: 3;
    font-size: 14px;
  }
  main .list {
    padding: 4%;
    padding-top: 0;
  }
  main .list .news {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  main .list .news .txtbox .date {
    font-size: 12px;
  }
  main .list .news .txtbox p {
    font-size: 16px;
  }
  main .list .news .txtbox .txt {
    font-size: 14px;
  }
  main .list .news .iconfont {
    font-size: 16px;
  }
  main .pages {
    font-size: 16px;
  }
  main .pages a {
    margin: 0 10px;
  }
}
