.breadcrumb {
  display: flex;
  justify-content: space-between;
  height: 85px;
  background-color: #f5f5f5;
  padding: 45px 1.97rem 0;
  box-sizing: border-box;
}
.breadcrumb .nav {
  display: flex;
  order: 1;
}
.breadcrumb .nav a {
  position: relative;
  color: #333;
  margin-right: 30px;
  background: #333 -webkit-linear-gradient(left, #E6253B, #E6253B) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 100% 0%;
  transition: background-size 0.5s;
}
.breadcrumb .nav a:last-child {
  margin-right: 0;
}
.breadcrumb .nav a:hover,
.breadcrumb .nav a.active {
  background-size: 100% 100%;
}
.breadcrumb .nav a:hover::after,
.breadcrumb .nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.breadcrumb .nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #E6253B;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.breadcrumb .content {
  display: flex;
  padding-bottom: 26px;
  align-items: center;
  order: 2;
}
.breadcrumb .content .home-icon {
  width: 20px;
  height: 18px;
}
.breadcrumb .content .path {
  margin-left: 9px;
  display: flex;
  color: #333;
  font-size: 13px;
}
.breadcrumb .content .path .tip {
  display: flex;
}
.breadcrumb .content .path .divide {
  margin: 0 5px;
}
.breadcrumb .content .path a {
  color: #333;
}
.breadcrumb .content .path a.active,
.breadcrumb .content .path a:hover {
  color: #E6253B;
}
.news-area {
  height: 405px;
  background-color: #fff;
  padding: 103px 1.96rem 0 1.93rem;
  box-sizing: border-box;
}
.news-area .news-header {
  height: 427px;
}
.news-area .news-header .content {
  height: 100%;
  display: flex;
}
.news-area .news-header .content .cover {
  width: 47.1%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: width 0.3s;
}
.news-area .news-header .content .box {
  padding: 62px 0.69rem 83px 0.71rem;
  background-color: #e6253b;
  width: calc(100% - 47.1%);
  box-sizing: border-box;
  color: #fff;
  transition: width 0.3s;
}
.news-area .news-header .content .box .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  color: #fff;
  transform: translateX(-15%);
}
.news-area .news-header .content .box .date .day {
  font-weight: 700;
  font-size: 35px;
  overflow: hidden;
}
.news-area .news-header .content .box .date .day span {
  display: block;
}
.news-area .news-header .content .box .date .year-month {
  font-size: 14px;
  margin-top: 4px;
  overflow: hidden;
}
.news-area .news-header .content .box .date .year-month span {
  display: block;
}
.news-area .news-header .content .box .title {
  margin-top: 41px;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 1px;
  overflow: hidden;
}
.news-area .news-header .content .box .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.news-area .news-header .content .box .desc {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 26px;
  overflow: hidden;
}
.news-area .news-header .content .box .desc span {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-area .news-header .content .box .arrow-icon {
  margin-top: 32px;
  width: 37px;
  height: 37px;
  transition: transform 0.3s;
}
.news-area .news-header .content .box:hover .arrow-icon {
  transform: scale(1.3);
}
.news-list {
  padding-top: 204px;
  padding-left: 1.89rem;
  padding-right: 1.95rem;
  padding-bottom: 138px;
  background-color: #f5f5f5;
}
.news-list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 45px 0.4rem 61px 0.27rem;
  background-color: #fff;
  margin-bottom: 28px;
}
.news-list .item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background-color: #e6253b;
  color: #fff;
}
.news-list .item .date .day {
  font-weight: 700;
  font-size: 35px;
}
.news-list .item .date .year-month {
  font-size: 14px;
  margin-top: 4px;
}
.news-list .item .content {
  width: 71%;
  margin-left: 0.15rem;
  color: #333;
}
.news-list .item .content .title {
  font-size: 20px;
  font-weight: 700;
}
.news-list .item .content .desc {
  color: #8c8c8c;
  line-height: 26px;
  margin-top: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list .item .more {
  margin-left: 0.15rem;
  flex-shrink: 0;
}
.news-list .item .more a {
  position: relative;
  display: flex;
  font-size: 15px;
  align-items: center;
  color: #333;
  padding: 11px 0.24rem 12px 0.22rem;
  border: 2px solid #E6253B;
}
.news-list .item .more a:hover span {
  color: #fff;
}
.news-list .item .more a:hover::after {
  width: 100%;
}
.news-list .item .more a:hover .arrow-icon {
  display: none;
}
.news-list .item .more a:hover .arrow-icon-w {
  display: block;
}
.news-list .item .more a span {
  position: relative;
  z-index: 1;
}
.news-list .item .more a .arrow-icon {
  position: relative;
  z-index: 1;
  width: 7px;
  margin-left: 14px;
}
.news-list .item .more a .arrow-icon-w {
  display: none;
}
.news-list .item .more a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #E6253B;
  transition: all 0.3s;
}
.news-list .pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 80px;
}
.news-list .pagination .prev,
.news-list .pagination .next {
  background-color: #fff;
}
.news-list .pagination .prev a,
.news-list .pagination .next a {
  display: block;
  padding: 17px 20px;
  border: 1px solid #E8E7E7;
  border-radius: 4px;
}
.news-list .pagination .prev a .page-icon,
.news-list .pagination .next a .page-icon {
  width: 8px;
  height: 14px;
}
.news-list .pagination .prev a .page-icon.white,
.news-list .pagination .next a .page-icon.white {
  display: none;
}
.news-list .pagination .prev:hover,
.news-list .pagination .next:hover {
  background-color: #e6253b;
  border: 1px solid #e6253b;
  border-radius: 4px;
}
.news-list .pagination .prev:hover a,
.news-list .pagination .next:hover a {
  border: none;
}
.news-list .pagination .prev:hover .page-icon.white,
.news-list .pagination .next:hover .page-icon.white {
  display: block;
}
.news-list .pagination .prev:hover .page-icon.gray,
.news-list .pagination .next:hover .page-icon.gray {
  display: none;
}
.news-list .pagination .prev {
  margin-right: 46px;
}
.news-list .pagination .prev a {
  transform: rotate(180deg);
}
.news-list .pagination .next {
  margin-left: 46px;
}
.news-list .pagination .page {
  display: flex;
}
.news-list .pagination .page a {
  padding: 18px 20px;
  border-radius: 4px;
  color: #aaa;
  border: 1px solid #E8E7E7;
  margin-right: 10px;
  background-color: #fff;
}
.news-list .pagination .page a.active,
.news-list .pagination .page a:hover {
  background-color: #e6253b;
  color: #fff;
}
.news-list .pagination .jumper {
  display: flex;
  align-items: center;
  margin-left: 58px;
  position: relative;
  color: #333;
}
.news-list .pagination .jumper > a {
  display: flex;
  align-items: center;
  margin: 0 10px;
  padding: 10px 20px;
  border: 1px solid #E8E7E7;
  color: #333;
  background-color: #fff;
}
.news-list .pagination .jumper > a .arrow-icon {
  width: 7px;
  margin-left: 10px;
  transform: rotate(90deg);
}
.news-list .pagination .jumper .page-list {
  display: none;
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 10px 0;
  background-color: #fff;
  max-height: 206px;
  overflow: auto;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.news-list .pagination .jumper .page-list li {
  width: 100%;
  margin-bottom: 10px;
}
.news-list .pagination .jumper .page-list li:last-child {
  margin-bottom: 0;
}
.news-list .pagination .jumper .page-list li a {
  display: flex;
  justify-content: center;
  font-size: 18px;
  width: 100%;
  color: #333;
}
.news-list .pagination .jumper .page-list li a:hover {
  color: #e6253b;
}
@media screen and (max-width: 1020px) {
  .breadcrumb {
    display: block;
    height: auto;
    padding-right: 0;
    padding: 0.3rem 0;
    padding-bottom: 0;
  }
  .breadcrumb .content {
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 0;
    padding-left: 0.2rem;
    padding-bottom: 0;
  }
  .breadcrumb .content .home-icon {
    width: 0.37rem;
    height: 0.32rem;
  }
  .breadcrumb .content .path {
    margin-left: 0.1rem;
    font-size: 0.3rem;
  }
  .breadcrumb .nav {
    margin-top: 0.5rem;
    padding-left: 0.2rem;
  }
  .breadcrumb .nav a {
    font-size: 0.35rem;
    padding-bottom: 0.2rem;
  }
  .news-area {
    padding: 0.5rem 0.3rem;
    height: auto;
  }
  .news-area .news-header {
    height: auto;
    width: 100%;
  }
  .news-area .news-header .content {
    display: block;
  }
  .news-area .news-header .content .cover {
    height: 5rem;
    width: 100%;
  }
  .news-area .news-header .content .box {
    width: 100%;
    padding: 0.5rem 0.3rem;
  }
  .news-area .news-header .content .box .date {
    margin-left: 0.15rem;
    width: 1.7rem;
    box-sizing: border-box;
  }
  .news-area .news-header .content .box .date .day {
    font-size: 0.53rem;
  }
  .news-area .news-header .content .box .date .year-month {
    margin-top: 0.07rem;
    font-size: 0.33rem;
  }
  .news-area .news-header .content .box .title {
    margin-top: 0.35rem;
    font-size: 0.37rem;
  }
  .news-area .news-header .content .box .desc {
    margin-top: 0.4rem;
    font-size: 0.3rem;
    line-height: 0.55rem;
  }
  .news-area .news-header .content .box .arrow-icon {
    margin-top: 0.3rem;
    width: 0.65rem;
    height: 0.65rem;
  }
  .news-list {
    padding: 0.5rem 0.3rem 0.8rem;
  }
  .news-list .item {
    display: block;
    margin-bottom: 0.35rem;
    padding: 0.5rem 0;
  }
  .news-list .item .date {
    width: 1.7rem;
    height: 1.2rem;
  }
  .news-list .item .date .day {
    font-size: 0.5rem;
  }
  .news-list .item .date .year-month {
    font-size: 0.3rem;
  }
  .news-list .item .content {
    padding: 0 0.2rem;
    margin-left: 0;
    width: 100%;
    margin-top: 0.3rem;
    box-sizing: border-box;
  }
  .news-list .item .content .title {
    font-size: 0.47rem;
    line-height: 0.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .news-list .item .content .desc {
    font-size: 0.308rem;
    -webkit-line-clamp: 3;
    line-height: 0.52rem;
    margin-top: 0.3rem;
  }
  .news-list .item .more {
    width: fit-content;
    margin-top: 0.3rem;
  }
  .news-list .item .more a {
    padding: 0.2rem 0.5rem 0.21rem 0.45rem;
    font-size: 0.3rem;
  }
  .news-list .item .more a .arrow-icon {
    margin-left: 0.15rem;
    width: 0.16rem;
    height: 0.22rem;
  }
  .news-list .pagination {
    padding-right: 0;
    margin: 0 -0.3rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .news-list .pagination .prev {
    margin-right: 0.1rem;
  }
  .news-list .pagination .prev a {
    padding: 0.3rem 0.37rem;
  }
  .news-list .pagination .prev a .page-icon {
    width: 0.16rem;
    height: 0.28rem;
  }
  .news-list .pagination .next {
    margin-left: 0.1rem;
  }
  .news-list .pagination .next a {
    padding: 0.3rem 0.37rem;
  }
  .news-list .pagination .next a .page-icon {
    width: 0.16rem;
    height: 0.28rem;
  }
  .news-list .pagination .page {
    font-size: 0.318rem;
  }
  .news-list .pagination .page a {
    padding: 0.3rem 0.37rem;
    margin-right: 0.1rem;
  }
  .news-list .pagination .jumper {
    margin-top: 0.3rem;
    margin-left: 0;
    font-size: 0.318rem;
    justify-self: start;
  }
  .news-list .pagination .jumper > a {
    margin: 0 0.15rem;
    padding: 0.3rem 0.37rem;
  }
  .news-list .pagination .jumper > a .arrow-icon {
    margin-left: 0.2rem;
    width: 0.1rem;
    height: 0.2rem;
  }
  .news-list .pagination .jumper .page-list {
    padding: 0.2rem 0;
    max-height: 3.1rem;
  }
  .news-list .pagination .jumper .page-list li {
    margin-bottom: 0;
  }
  .news-list .pagination .jumper .page-list li a {
    padding: 0.12rem 0;
    font-size: 0.32rem;
  }
}
