.ComponentBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 1280px;
}

.ComponentLeft {
  margin-top: 20px;
  width: 840px;
  border-radius: 8px;
  background: linear-gradient(-45deg,#e0ecf8,#f3f7fb);
  box-shadow: -3px -3px 10px rgba(255,255,255,.58),3px 3px 10px rgba(166,182,195,.72);
}

/* ==================== 列表基础 ==================== */
.ListItem {
  padding: 20px;
  border-radius: 8px;
  border-bottom: 1px solid #f9f9f9;
}

.ListItem:hover {
  background-color: #f5f5f5;
}

.Title h1 {
  font-size: 25px;
  color: #000;
}

.Content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.View {
  position: relative;
  width: 200px;
  height: 136px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e5ec;
  box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #ffffff;
}

.View img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.View .VideoPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.VideoTime {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 6px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
}

.Detail {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.Summary {
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ItemFoot {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  color: #86909c;
  font-size: 12px;
}

.SourceTime span {
  margin-left: 16px;
  font-size: 12px;
}

/* ==================== 图组类型 ==================== */
.Album .Content {
  display: block;
}

.Album .View {
  width: 100%;
  height: auto;
  background: transparent;
  overflow: visible;
}



.AlbumBox {
  display: flex;
  gap: 10px;
}

.AlbumBox a {

  width: 260px;
  height: 177px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e5ec;
  box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #ffffff;

}

.Album .Detail {
  margin-top: 20px;
}

/* ==================== H5类型 ==================== */
.ContentType {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  background: #1890ff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ContentType img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* ==================== 分页 ==================== */
.Pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.PagerBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px #c8d0e7, -2px -2px 5px #fff;
  color: #9baacf;
  cursor: pointer;
  transition: 0.3s;
}

.PagerBtn:hover {
  color: #000;
}

.PagerBtn:active {
  box-shadow: inset 2px 2px 5px #c8d0e7, inset -2px -2px 5px #fff;
}

.ArrowLeft,
.ArrowRight {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
}

.ArrowLeft {
  transform: rotate(135deg);
}

.ArrowRight {
  transform: rotate(-45deg);
}

.PagerTabs {
  display: flex;
  align-items: center;
  position: relative;
  height: 32px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px #c8d0e7, -2px -2px 5px #fff;
}

.PagerTabs input {
  display: none;
}

.PagerTabs label {
  width: 32px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #9baacf;
  font-size: 15px;
  position: relative;
  z-index: 10;
}

.PagerTabs label a {
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PagerTabs label:hover,
.PagerTabs > input:checked + label {
  color: #000;
}

.PagerTab__color {
  position: absolute;
  width: 26px;
  height: 26px;
  left: 3px;
  border-radius: 6px;
  box-shadow: inset 2px 2px 5px #c8d0e7, inset -2px -2px 5px #fff;
  pointer-events: none;
  transition: transform 0.3s ease;
  z-index: 1;
}

#pager-1:checked ~ .PagerTab__color { transform: translateX(0); }
#pager-2:checked ~ .PagerTab__color { transform: translateX(32px); }
#pager-3:checked ~ .PagerTab__color { transform: translateX(64px); }
#pager-4:checked ~ .PagerTab__color { transform: translateX(96px); }
#pager-5:checked ~ .PagerTab__color { transform: translateX(128px); }

.PagerGo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9baacf;
  font-size: 15px;
}

.PagerInput {
  width: 40px;
  height: 32px;
  border: none;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  box-shadow: inset 2px 2px 5px #c8d0e7, inset -2px -2px 5px #fff;
  background: none;
  color: #9baacf;
}

.PagerInput:focus {
  outline: none;
  box-shadow: 3px 3px 6px #c8d0e7, -2px -2px 5px #fff;
}