/* 用户首页的收藏列表 */
.user-collect-list {}


.user-collect-list .pages .c-listpage{
  text-align: center;
}
.collect-item {
  width: 300px;
  display: inline-block;
  margin-right: 20px;
  box-shadow: 0 2px 10px #ccc;
  margin-bottom: 20px;
  -webkit-transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 4px 8px rgba(0, 0, 0, .02);
  position: relative;
  vertical-align: top;
}

.collect-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 16px 32px -4px rgba(0, 0, 0, .17);
  transform: translateY(-1px);
}

.collect-item:hover .shoucang-btn {
  display: block;
}

.collect-item .shoucang-btn {
  position: absolute;
  display: inline-block;
  padding: 5px 10px;
  background: #ffa028;
  left: 10px;
  top: 10px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

.collect-item .shoucang-btn:hover {
  background: #ff8e00fa;
}

.collect-item:nth-child(3n) {
  margin-right: 0;
}

.collect-item a {
  display: inline-block;
  width: 100%;
}

.collect-item a>.info {
  padding: 10px 15px;
}

.collect-item img {
  width: 100%;
  height: 225px;
}

.collect-item .title {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collect-item .tec {
  color: #b2b2b2;
}

.collect-item .update {
  padding: 2px 5px;
  font-size: 12px;
  background-color: #ddd;
  color: #a0a0a0;
}


/* 课程页面下的收藏按钮 */
.shoucangCourse{
  cursor: pointer;
  transition: 0.3s;
}

.shoucangCourse:hover{
  color: #ffa028;
}
.shoucangCourse i{
  color: #ffa028;
  position: relative;
  top: -2px;
  /* margin-right: 0 !important; */
}