.collapse-card {
  border-bottom: 1px solid var(--color-line1-1, #e8e8e8);
  overflow: hidden;
  background-color: var(--color-white, #fff);
  transition: border-bottom 0.3s ease;
  &[data-open='true']:last-child {
    border-bottom: 1px solid transparent;
  }
  &-header {
    padding: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-brand3-1, rgba(242, 245, 247, 1));
    &[data-open='true'] {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
  }
  &-title {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text1-4, #292929);
    font-weight: 500;
    &-text {
      display: inline-flex;
      align-items: center;
    }
  }
  &-operations {
    .next-btn {
      margin-left: 8px;
    }
  }
  &-body {
    height: 100%;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    &-open {
      max-height: 5000px;
    }
  }
}

