/* 活动结束 */
.activity-end {
  margin: 30px 0;
}

.my-activity {
  margin: 30px auto;
  max-width: 1500px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: white;
  padding: 30px;
  box-sizing: border-box;
}



.act-row {
  display: flex;
  gap: 20px;
}

.act-col {
  flex: 2;
}

.act-col2 {
  flex: 3;
}

.countdown-box {}

.end-box {
  background: var(--bg2);
  border-radius: 10px;
}

.countdown-title {
  font-size: 18px;
  color: var(--text);
  height: 48px;
  line-height: 48px;
  font-weight: normal;
  text-align: center;
}

.countdown-time {
  display: flex;
  height: 70px;
  line-height: 70px;
}

.time-item {
  flex: 1;
  text-align: center;
}

.time-num {
  font-size: 30px;
  font-weight: bold;
  color: var(--blue2);
}

.time-unit {
  font-size: 14px;
  margin-left: 5px;
}

.activity-date {
  font-size: 14px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

#endDate,
#startDate {
  color: var(--blue2);
}

.stats-box {
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
}

.stat-item {
  flex: 1;
  height: 180px;
  background: var(--bg2);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}

.stat-icon {
  font-size: 48px;
  color: var(--blue2);
  margin-bottom: 15px;
  margin-top: 10px;
}

.stat-icon i {
  font-size: 50px;
}

.stat-num {
  font-size: 32px;
  color: var(--blue2);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

.my-upbtn {
  width: 200px;
}

/* 活动结束 */

.filer-box {
  display: flex;
  justify-content: space-between
}

.my-form {
  position: relative;
  margin-right: 0px !important;
}

.home-form {
  margin-right: 0px !important;
}

.desc {
  margin-left: 20px;
  cursor: pointer;
  cursor: pointer;
}
.sort-desc {
  transform: rotate(180deg);
}

.layui-tab .layui-tab-title li {
  border: none !important;
}

.layui-tab .layui-tab-title:after,
.layui-tab-title .layui-this:after {
  border: none !important;
}

.layui-tab .layui-tab-title .layui-this {
  color: var(--blue2);
  font-weight: bold;
  border-bottom: 2px solid var(--blue) !important;
}

.layui-input-suffix {
  width: 60px;
}

.home-search {
  border: 2px solid var(--blue2);
}


.card-wrap {
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.card-grid {
  margin-top: 20px;
  gap: 20px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}


/* 视频卡片 */
.video-card {
  background: var(--w);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;

}



.video-img {
  position: relative;
  overflow: hidden;
  max-width: 274px;
  max-height: 178px;
  border-radius: 3px 3px 0px 0px;
}

.video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 274/178;
}

/* 角标 */
.video-badge {
  position: absolute;
  top: 3px;
  right: 0px;
  /* background: #ff4757; */
  background: rgba(0, 0, 0, 0.5);
  color: var(--w);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}


/* 视频信息（左下角） */
.video-info {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: center;

}

.hot-num,
.hot {
  display: block;
  color: var(--w);
  font-size: 12px;
  background-color: var(--blue2);
  padding: 2px 4px;
  border-radius: 5px 0 0 5px;
}

.hot-num {
  border-radius: 0 5px 5px 0;
  background-color: var(--bg);
  padding: 2px 6px;
}

.hot:first-child::before {
  content: "•";
  margin-right: 4px;
  position: relative;

}


.video-info i {
  font-size: 14px;
}

/* 视频内容区 */
.video-content {
  padding: 12px;
}

.video-title {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 40px;
}

/* 点赞按钮 */
.like-btn {
  width: 100%;
  height: 36px;
  background: var(--blue2);
  border: none;
  border-radius: 18px;
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}


.like-btn i {
  font-size: 16px;
}

#pc-video-no-more {
  text-align: center;
  padding: 20px;
  display: none;
  font-size: 20px;
}

@media screen and (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}