@charset "UTF-8";
/**
 * 信息服务详情页
 * date:2025-9-23
 * author: qcn;
 */
.wrap {
  padding-bottom: 32px;
}

.project {
  color: #fff;
  line-height: 54px;
  border-radius: 10px;
  padding: 30px 20px 40px;
  background: url("../images/information_detail/project_bg.png") no-repeat center;
  background-size: 100% 100%;
  text-align: center;
  margin-bottom: 6px;
}
.project-title {
  font-size: 36px;
  font-weight: bold;
}
.project-text {
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 27px;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 54px - 78px);
  height: 2px;
  background: #D0D0D0;
  top: 45px;
}
.step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.step-item::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #BBC3D7;
  border: 2px solid #BBC3D7;
  border-radius: 50%;
  top: 39px;
}
.step-item-name {
  padding: 0 10px;
  height: 31px;
  line-height: 31px;
  border-radius: 4px;
  border: 1px solid #BBC3D7;
  background: #BBC3D7;
  font-size: 14px;
  color: #fff;
}
.step-item.done .step-item-name {
  color: #0AA36E;
  background: #E9FFF3;
  border-color: #0AA36E;
}
.step-item.done::before {
  border-color: #0AA36E;
  background: #fff;
}
.step-item-date {
  font-size: 14px;
  color: #091221;
  line-height: 21px;
  margin-top: 30px;
}
.step-item:hover .step-item-name {
  color: #fff;
  background: #0AA36E;
  border-color: #0AA36E;
}
.step-item:hover::before {
  background: #0AA36E;
  border-color: #0AA36E;
}
.step-item.current .step-item-name {
  color: #fff;
  background: #0AA36E;
  border-color: #0AA36E;
}
.step-item.current::before {
  background: #0AA36E;
  border-color: #0AA36E;
}

.left-nav {
  width: 93px;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 1px solid #D0D0D0;
  left: 50%;
  margin-left: -712px;
}
.left-nav-item {
  height: 30px;
  line-height: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.left-nav-item.current::before {
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
  background: #2556D8;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.left-nav-item.current .left-nav-item-name {
  color: #2556D8;
}
.left-nav-item-name {
  color: #788BB3;
  font-size: 13px;
  padding: 0 0 0 23px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article {
  margin-top: 24px;
}