.set-swiper-link {
  display: flex;
  flex-direction: column;
  width: 500px;
  box-sizing: border-box;
  .swl-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    .swll-item {
      display: flex;
      width: 100%;
      flex-direction: column;
      border: 1px dashed #999;
      border-radius: 5px;
      padding: 20px;
      margin-bottom: 10px;
      position: relative;
      box-sizing: border-box;
      .swlll-li {
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 5px 0;
        box-sizing: border-box;
        .swllll-name {
          width: 100px;
          font-size: 13px;
        }
        .swllll-value {
          flex: 1;
        }
      }
      .swlll-del-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
      }
    }
  }
}
