@charset "UTF-8";
/* 详情页 */

.container-1400 {
  width: 1400px;
  margin: 0 auto;
}

.wrapper-detail {
  padding: 60px 0px;
}

.detail-title {
  padding: 35px 0px;
  line-height: 30px;
  color: #333333;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.detail-meta {
  padding: 10px 0px;
  line-height: 2;
  color: #666666;
  font-size: 14px;
  text-align: center;
}

.detail-meta span {
  padding: 0 6px;
}

.detail-content {
  padding: 60px 0px;
  overflow: hidden;
  color: #666666;
  font-size: 16px;
}

.detail-content-left {
  width: 224px;
  float: left;
  background: #f3f5f7;
  border-radius: 2px;
  padding: 32px;
}

.detail-content-right {
  margin-left: 288px;
  padding-left: 30px;
}

.process-item {
  height: 110px;
  position: relative;
}

.process-item:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #d0d3d8;
  position: absolute;
  left: 14px;
  top: 20px;
}

.process-item a {
  display: block;
  position: relative;
}

.process-num {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a2a8ae;
  color: #fff;
  border-radius: 100%;
}

.process-text {
  padding-left: 50px;
}

.process-text p {
  font-family: SourceHanSansCN-Bold;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 700;
  color: slategrey;
}

.process-text span {
  font-family: SourceHanSansCN-Regular;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
  color: slategrey;
}

.process-item--done .process-text p {
  color: rgb(4, 175, 39);
}

.process-item--done .process-text span {
  color: rgb(4, 175, 39);
}

.process-item--on .process-text p {
  color: red;
}

.process-item--on .process-text span {
  color: red;
}

.process .process-item:last-child {
  height: auto;
}

.process .process-item:last-child:before {
  display: none;
}

.process-notice {
  margin-top: 20px;
  font-size: 12px;
  color: #000;
}

.process-notice span {
  color: white;
  border-radius: 4px;
  display: inline-block;
  padding: 1px;
  margin: 0px 5px 0px 0px;
  font-size: 12px;
  line-height: 22px;
}

.process-notice p {
  margin-bottom: 10px;
}

.process-notice--green {
  background: rgb(4, 175, 39);
}

.process-notice--red {
  background: rgb(255, 66, 0);
}

.process-notice--gray {
  background: slategrey;
}

.detail-back {
  position: fixed;
  right: 20px;
  top: 200px;
}

.detail-back a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background: #deaa46;
  border-radius: 100%;
  color: #fff;
  font-size: 14px;
}

table td {
  border: 1px solid;
}

@media screen and (max-width: 1400px) {
  .container-1400 {
    /* width: 100%; */
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 768px) {
  .wrapper-detail {
    padding: 20px 0px;
  }

  .detail-title {
    font-size: 18px;
    padding: 10px 0px;
    line-height: 2;
  }

  .detail-content {
    padding: 20px 0;
  }

  .detail-content-left {
    width: 100%;
    float: none;
  }

  .detail-content-right {
    padding-left: 0;
    margin-left: 0;
  }

  .detail-content-right img {
    max-width: 98%;
  }

  .process {
    width: 100%;
    display: flex;
  }

  .process-item {
    height: auto;
    position: relative;
    flex: 1;
  }

  .process-item:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #d0d3d8;
    position: absolute;
    left: 41px;
    top: 13px;
  }

  .process-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-num {
    position: initial;
    transform: none;
  }

  .process-text {
    padding-left: 0;
    text-align: center;
    margin-top: 10px;
  }

  .process-text p {
    font-size: 14px;
  }

  .process-notice p {
    display: inline-block;
  }
}

@media screen and (max-width: 500px) {
  .detail-content-left {
    padding: 15px;
  }

  .detail-back {
    right: 20px;
    top: auto;
    bottom: 6%;
  }
}

@media screen and (max-width: 420px) {
  .detail-content-left {
    padding: 15px;
  }

  .process {
    overflow-x: auto;
  }

  .process-item {
    min-width: 60px;
  }
}