.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-detail {
  display: flex;
  padding-left: 1.94rem;
  padding-bottom: 120px;
}
.news-detail .left {
  width: 64%;
  padding-top: 138px;
  padding-right: 0.48rem;
  box-sizing: border-box;
  border-right: 1px solid #eaeaea;
  color: #333;
}
.news-detail .left .title {
  font-size: 38px;
  font-weight: 700;
  line-height: 45px;
}
.news-detail .left .date {
  font-size: 18px;
  margin-top: 43px;
  color: #E6253B;
}
.news-detail .left .content {
  margin-top: 64px;
  font-size: 16px;
  color: rgba(51, 51, 51, 0.7);
  line-height: 34px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eaeaea;
}
.news-detail .left .content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin: 30px 0;
}
.news-detail .left .content p {
  text-indent: 2em;
  margin-bottom: 44px;
}
.news-detail .left .bottom {
  margin-top: 82px;
  display: flex;
  align-items: center;
}
.news-detail .left .bottom .more a {
  position: relative;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 15px;
  padding: 11px 0.17rem 12px 0.16rem;
  border: 2px solid #E6253B;
  white-space: nowrap;
  box-sizing: border-box;
}
.news-detail .left .bottom .more a:hover {
  color: #fff;
}
.news-detail .left .bottom .more a:hover .arrow-icon {
  display: none;
}
.news-detail .left .bottom .more a:hover .arrow-icon.arrow-icon-w {
  display: block;
}
.news-detail .left .bottom .more a:hover::after {
  width: 100%;
}
.news-detail .left .bottom .more a span {
  position: relative;
  z-index: 1;
}
.news-detail .left .bottom .more a .arrow-icon {
  position: relative;
  z-index: 1;
  margin-left: 19px;
  width: 7px;
  height: 13px;
}
.news-detail .left .bottom .more a .arrow-icon.arrow-icon-w {
  display: none;
}
.news-detail .left .bottom .more a::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #E6253B;
  transition: all 0.3s;
}
.news-detail .left .next-title {
  color: #333;
  font-size: 20px;
  line-height: 25px;
  margin-left: 54px;
}
.news-detail .right {
  width: calc(100% - 64% - 1.95rem);
  margin-right: 1.95rem;
  box-sizing: border-box;
  padding-left: 0.44rem;
  padding-top: 143px;
  color: #333;
}
.news-detail .right > .title {
  font-size: 32px;
  font-weight: 700;
}
.news-detail .right .desc {
  font-size: 18px;
  margin-top: 17px;
}
.news-detail .right .other-news-list {
  margin-top: 95px;
}
.news-detail .right .other-news-list .item {
  display: block;
  position: relative;
  border: 1px solid #f3f3f3;
  border-bottom: none;
  padding: 34px 0.25rem 43px 0.29rem;
  height: 202px;
  box-sizing: border-box;
}
.news-detail .right .other-news-list .item:hover .date {
  visibility: hidden;
}
.news-detail .right .other-news-list .item:hover .title {
  color: #fff;
  transform: translateY(-60px);
  -webkit-line-clamp: 3;
}
.news-detail .right .other-news-list .item:hover .arrow-icon {
  transform: scale(1);
}
.news-detail .right .other-news-list .item:hover::after {
  display: block;
}
.news-detail .right .other-news-list .item:last-child {
  border-bottom: 1px solid #f3f3f3;
}
.news-detail .right .other-news-list .item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  color: #E6253B;
  transform: translateX(-15%);
}
.news-detail .right .other-news-list .item .date .day {
  font-weight: 700;
  font-size: 35px;
  overflow: hidden;
}
.news-detail .right .other-news-list .item .date .day span {
  display: block;
}
.news-detail .right .other-news-list .item .date .year-month {
  font-size: 14px;
  margin-top: 4px;
  overflow: hidden;
}
.news-detail .right .other-news-list .item .date .year-month span {
  display: block;
}
.news-detail .right .other-news-list .item .title {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 20px;
  color: #333;
  line-height: 27px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: transform 0.5s;
}
.news-detail .right .other-news-list .item .arrow-icon {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  width: 37px;
  height: 37px;
  transform: scale(0);
  transition: transform 0.4s;
}
.news-detail .right .other-news-list .item::after {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-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-detail {
    display: block;
    padding: 1rem 0.3rem 0.8rem;
  }
  .news-detail .left {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    border-right: none;
  }
  .news-detail .left .title {
    font-size: 0.6rem;
    line-height: 0.633rem;
  }
  .news-detail .left .date {
    margin-top: 0.5rem;
    font-size: 0.377rem;
  }
  .news-detail .left .content {
    margin-top: 0.5rem;
    font-size: 0.333rem;
    line-height: 0.6rem;
    padding-bottom: 0.5rem;
  }
  .news-detail .left .content p {
    margin-bottom: 0.4rem;
  }
  .news-detail .left .content img {
    margin: 0.4rem 0;
  }
  .news-detail .left .bottom {
    display: block;
    margin-top: 0.5rem;
  }
  .news-detail .left .bottom .more {
    width: fit-content;
    margin-top: 0.5rem;
  }
  .news-detail .left .bottom .more a {
    padding: 0.2rem 0.377rem 0.21rem 0.333rem;
    font-size: 0.3rem;
  }
  .news-detail .left .bottom .more a .arrow-icon {
    margin-left: 0.12rem;
    width: 0.12rem;
    height: 0.18rem;
  }
  .news-detail .left .bottom .next-title {
    margin-top: 0.3rem;
    margin-left: 0;
    font-size: 0.377rem;
    line-height: 0.5rem;
  }
  .news-detail .right {
    display: none;
  }
}
