
/*文件夹列表*/
.list {
  margin-top: 40px;
  margin-left: 200px;
}
.card-list {
  text-align: left;
  padding: 0 20px;
}
/* 教师名称和课程名称之间的间距 */
.name {
  padding: 10px 0;
}

/* 教师名称以及课程名称 */
.tmp {
  white-space: nowrap; /*强制单行显示*/
  text-overflow: ellipsis; /*超出部分省略号表示*/
  overflow: hidden; /*超出部分隐藏*/
  width: 260px; /*设置显示的最大宽度*/
  display: inline-block;
  cursor: pointer; /*鼠标悬停变小手*/
  text-align: left; /* 文本框靠左 */
}

/* 教师名称 */
.bottom {
  color: rgb(138, 139, 153);
  font-size: 14px;
  margin-top: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  display: block;
  justify-content: space-between;
  align-items: center;
}

/*每行之间的间距*/
.el-col {
  margin-bottom: 30px;
}

/*图片样式*/
.image {
  width: 100%;
  display: block;
  cursor: pointer;
  /* 鼠标悬停变小手 */
  margin: auto;
  height: 170px;
  border-radius: 10px;
}
.image-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  color: #909399;
  font-size: 40px;
}

/* 卡片 */
.el-card:hover .button-wrap {
  visibility: visible;
  /* 将删除按钮显示 */
}

/* 删除按钮 */
.button-wrap {
  visibility: hidden;
  /*将删除按钮隐藏*/
  height: 32px;
  text-align: right;
  margin-right: 2%;
}


.courseMain {
  margin-left: 5%;
  margin-right: 5%;
}
.top-seach {
  display: flex;
  justify-content: space-between;
}
.input {
  width: 300px;
  /* position:fixed; */
  /* float:right; */
}
.btn {
  margin-left: 5px;
  margin-right: 60%;
  float: left;
}

