.list-history001 {
  position: relative;
  margin-top: 0.4rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.list-history001:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 0;
  border-right: 2px solid rgba(64, 106, 203, 0.5);
}

.list-history001 .history-item {
  width: 50%;
  position: relative;
  margin-bottom: 0.5rem;
  padding-right: 0.3rem;
}

.list-history001 .history-item:nth-child(2n) {
  margin-top: 1.5rem;
  padding-right: 0;
  padding-left: 0.3rem;
}

.list-history001 .history-item:nth-child(2n):after {
  left: -0.1rem;
}

.list-history001 .history-item:nth-child(2n) .txt {
  position: relative;
  border-radius: 0 10px 10px 10px;
}

.list-history001 .history-item:nth-child(2n) .txt:before {
  left: -0.19rem;
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  font-size: 0;
  border: 10px solid transparent;
  border-right-color: #f2f2f7;
}

.list-history001 .history-item:after {
  content: '';
  position: absolute;
  right: -0.1rem;
  top: 0;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: var(--ruifox-color-primary-1);
  border: 4px solid #a6d2fc;
  box-sizing: border-box;
}

.list-history001 .history-item .txt {
  padding: 0.3rem 0.3rem 0.6rem;
  background: #f2f2f7;
  font-size: 0.18rem;
  position: relative;
  border-radius: 10px 0 10px 10px;
}

.list-history001 .history-item .txt:before {
  content: '';
  position: absolute;
  right: -0.19rem;
  top: 0;
  width: 0;
  height: 0;
  font-size: 0;
  border: 10px solid transparent;
  border-left-color: #f2f2f7;
}

.list-history001 .history-item .img-list {
  margin: -0.3rem auto 0;
  width: 80%;
  z-index: 1;
  position: relative;
  background-color: #fff;
  display: flex;
}

.list-history001 .history-item .img-list .img {
  flex: 1;
  padding: 0.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 0.05rem;
}

.list-history001 .history-item .img-list .img .inner-img {
  width: 100%;
  padding-bottom: 56%;
  position: relative;
}

.list-history001 .history-item .img-list .img .inner-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.list-history001 .history-item .tit {
  position: relative;
  margin-bottom: 0.34rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
}

.list-history001 .history-item .tit p {
  color: var(--ruifox-color-primary-1);
  margin-left: 0.1rem;
  font-size: 0.24rem;
}

.list-history001 .history-item .tit .line {
  height: 0.02rem;
  flex: 1;
  background: var(--ruifox-color-primary-1);
}

@media (max-width: 960px) {
  .list-history001 {
    display: block;
    margin-top: 40px;
    padding-top: 0;
  }

  .list-history001:after {
    display: none;
  }

  .list-history001 .history-item {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0;
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  .list-history001 .history-item:after {
    display: none;
  }

  .list-history001 .history-item .img-list {
    display: block;
  }

  .list-history001 .history-item .img-list .img {
    width: 100%;
  }

  .list-history001 .history-item .txt {
    border-radius: 0 !important;
    padding: 20px 20px 40px 20px;
  }

  .list-history001 .history-item .txt:before {
    display: none;
  }

  .list-history001 .history-item .tit p {
    font-size: 18px;
  }
}