@charset "UTF-8";
/**
* GA西安项目
 * date:2026-1-8
 * author: gaojing;
 */
.condition-search {
  margin-top: 0;
}

.course-list {
  margin-top: 4px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}
.course-list li {
  margin-top: 20px;
  margin-right: 20px;
  width: calc(25% - 20px);
}
.course-item {
  display: block;
  height: 272px;
  background: #F6F9FA;
  transition: all 0.3s;
}
.course-item:hover {
  transform: translateY(-5px);
}
.course-item:hover .play {
  opacity: 1;
}
.course-img {
  position: relative;
  height: 150px;
}
.course-img img {
  width: 100%;
  height: 100%;
}
.course-img .play {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4) url("../images/video_course/play_ico.png") no-repeat center;
  transition: all 0.3s;
}
.course-info {
  padding: 12px 15px;
  height: calc(100% - 150px);
  box-sizing: border-box;
}
.course-info-item {
  display: flex;
  margin-top: 8px;
  line-height: 18px;
}
.course-info-label {
  flex-shrink: 0;
  color: #999;
}
.course-info-txt {
  flex: 1;
  width: 0;
  color: #666;
}
.course-name {
  height: 44px;
  line-height: 22px;
  color: #333;
  font-size: 16px;
  overflow: hidden;
}

.public-toolbar {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.public-toolbar-btn {
  padding: 0 15px;
  height: 32px;
  line-height: 30px;
  color: #3386EC;
  background: transparent;
  border: 1px solid #3386EC;
  border-radius: 30px;
  box-sizing: border-box;
  transition: all 0.3s;
}
.public-toolbar-btn:hover {
  color: #fff;
  background: #0967CE;
}