@charset "UTF-8";
/**
 * 公告详情
 * date: 2025-4-2
 * author: jyxuan
 */
.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  height: 96px;
  background-color: #f7f7f7;
}
.step-item.disabled,
.step-item.current {
	cursor: default;
}
.step-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.step-item::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 6px;
  width: 20px;
  height: 20px;
  border: 1px solid #de281f;
  border-radius: 50%;
  background-color: #fff;
}
.step-item.current::before {
  background-color: #de281f;
}
.step-item.disabled::before {
  border-color: #e6e6e6;
}
.step-item + .step-item::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -54px;
  width: 106px;
  height: 2px;
  background-color: #e6e6e6;
}

.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.notice-swiper {
  position: relative;
}
.notice-swiper.small-quantity {
  margin-left: 40px;
}
.notice-swiper .swiper {
  max-width: 830px;
}
.notice-swiper .swiper-slide {
  width: auto;
}
.notice-swiper .swiper-button-prev,
.notice-swiper .swiper-button-next {
  top: 50%;
  margin-top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -webkit-box-shadow: 0 1.5px 9px 0 rgba(4, 44, 101, 0.1);
          box-shadow: 0 1.5px 9px 0 rgba(4, 44, 101, 0.1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.notice-swiper .swiper-button-prev.swiper-button-disabled,
.notice-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.notice-swiper .swiper-button-prev:hover::after,
.notice-swiper .swiper-button-next:hover::after {
  color: #fff;
}
.notice-swiper .swiper-button-prev::after,
.notice-swiper .swiper-button-next::after {
  color: #de281f;
  font-size: 10px;
}
.notice-swiper .swiper-button-prev {
  left: auto;
  right: calc(100% + 20px);
}
.notice-swiper .swiper-button-prev:hover {
  background-color: #de281f;
}
.notice-swiper .swiper-button-next {
  left: calc(100% + 20px);
  right: auto;
}
.notice-swiper .swiper-button-next:hover {
  background-color: #de281f;
}
.notice-item {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f7f7f7;
}
.notice-item.current {
  cursor: default;
}
.notice-item:hover, .notice-item.current {
  border-color: #de281f;
  background-color: #fff;
}
.notice-item:hover .notice-title, .notice-item.current .notice-title {
  color: #de281f;
}
.notice-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notice-time {
  color: #999;
  line-height: 21px;
}
.notice-tag {
  padding: 0 6px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  border-radius: 2px;
  background-color: #de281f;
}
.notice-title {
  margin-top: 8px;
  color: #2e3033;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 21px;
  overflow: hidden;
}