.fold-panel {
  margin-top: 26px;
  width: 100%;
}
.fold-panel .fold-item {
  margin-top: 20px;
  width: 100%;
}
.fold-panel .fold-item.open .fold-tit .icons-box::before {
  height: 0;
}
.fold-panel .fold-item .fold-tit {
  padding: 18px 20px;
  background-color: #b82842;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.fold-panel .fold-item .fold-tit p {
  margin-bottom: 0;
  color: #fff;
}
.fold-panel .fold-item .fold-tit .icons-box {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.fold-panel .fold-item .fold-tit .icons-box:hover .icons-box::before {
  color: 111;
  height: 0;
}
.fold-panel .fold-item .fold-tit .icons-box::after,
.fold-panel .fold-item .fold-tit .icons-box::before {
  content: '';
  background-color: #fff;
  transition: height 0.35s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fold-panel .fold-item .fold-tit .icons-box::after {
  height: 2px;
  width: 100%;
}
.fold-panel .fold-item .fold-tit .icons-box::before {
  width: 2px;
  height: 100%;
}
.fold-panel .fold-item .fold-con {
  background-color: var(--module-bg2);
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease-in-out;
}
.fold-panel .fold-item .fold-con .fold-hei {
  padding: 18px 15px;
}
.fold-panel .fold-item .fold-con .fold-hei p {
  margin-top: 20px;
  color: var(--module-con-text-color1);
}
.fold-panel .fold-item .fold-con .fold-hei p .red {
  color: #b82842;
}
@media screen and (max-width: 992px) {
  .fold-panel .fold-item .fold-con .fold-hei p {
    margin-top: 10px;
  }
}
.fold-panel .fold-item .fold-con .fold-hei > a {
  font-style: italic;
  color: #b82842;
}
.fold-panel .fold-item .fold-con .fold-hei > a:hover {
  text-decoration: underline;
}
.fold-panel .fold-item .fold-con .fold-hei ol {
  padding-left: 16px;
}
.fold-panel .fold-item .fold-con .fold-hei ol li {
  list-style: decimal;
}
