.student-list {
  width: 100%;
  height: auto;
  min-height: 160px;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  padding-right: 0;
  color: #666;
}
.student-list .student-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 2px;
    border: dashed 1px #ddd;
    padding: 10px;
    position: relative;
    margin-bottom: 30px;
}
.student-list .student-item .s-icon {
      height: 70px;
      width: 70px;
      margin-bottom: 6px;
}
.student-list .student-item .s-icon img {
        width: 70px;
}
.student-list .student-item .checkded-i {
      position: absolute;
      top: 0;
      left: 0;
      width: 16px;
      height: 16px;
      font-size: 12px;
      text-align: center;
      background-color: #736efe;
      line-height: 16px;
      color: #fff;
      display: none;
}
.student-list .student-item .checkded-i i {
        font-size: 12px;
}
.student-list .student-item.active {
      border: dashed 1px #736efe;
}
.student-list .student-item.active .checkded-i {
        display: block;
}
.student-list .student-item .name {
      display: flex;
      align-items: center;
}
.student-list .student-item .name img {
        width: 20px;
}
.student-list .student-item i {
      font-size: 70px;
}
.student-list .student-item:hover {
      color: var(--primaryColor);
}

