/* 通用列表区域 */
.list-section {
  background: #fff;
  padding: 10px 0;
}

.list-section .section-title {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: left;
  margin-left: 15px;
  float: right;
  padding-top: 5px;
}
#gallerySectionTitle{
  display: none;
}
#listTitle{
  display: none;
}
#videoSectionTitle
{
  display: none;
}
/* 面包屑导航 */
.breadcrumb {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
  margin-left: 10px;
  height: 50px;
  display: flex;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
 
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  margin:0 10px;
}

.breadcrumb a:hover {
  color: #00A5E0;
}
.breadcrumb span {margin-left: 10px;}

/* 列表容器 */
.list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 单条列表项：PC 左图右文 */
.list-item {
  display: flex;
  gap: 18px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 6px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.list-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* 缩略图区域 */
.list-item .thumb {
  width: 170px;
  flex-shrink: 0;
}

.list-item .thumb a {
  display: block;
}

.list-item .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

/* 文本信息 */
.list-item .info {
  flex: 1;
}

.list-item .info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.list-item .info h3 a {
  color: #333;
  text-decoration: none;
}

.list-item .info h3 a:hover {
  color: #00A5E0;
}

.list-item .info .date {
  font-size: 13px;
  color: #999;
}

/* 分页 */
.pagination {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pagination button {
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.pagination button:disabled {
  color: #ccc;
  border-color: #eee;
  cursor: default;
}

.pagination span {
  font-size: 14px;
  color: #666;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .list-item .thumb {
    width: 220px;
  }
}

/* 手机适配：仍保持左右结构（左图右文） */


/* 小屏手机 */
@media (max-width: 480px) {
  .list-item {
    gap: 10px;
  }
  .continent-filter li {
    font-size: 14px;
  }
  .list-item .thumb img {
    border-radius: 4px;
  }
  #gallerySectionTitle{
    display: block;
  }
  #listTitle{
    display: block;
  }
  #videoSectionTitle
  {
    display: block;
  }
}

/* 视频列表页：默认 16:9，短视频列表项使用 9:16 封面 */
.video-list-section .list-item .thumb img {
  aspect-ratio: 16 / 9;
}

.video-list-section .list-item.video-short .thumb img {
  aspect-ratio: 9 / 16;
}

/* 视频列表页：主体列表 + 右侧地区筛选（仅口语表达/才艺展示使用） */
.video-list-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: row-reverse;

}

.video-list-layout .list-container {
  flex: 1;
}

.video-filter-side {
  width: 120px;
  flex-shrink: 0;
  border-left: 1px solid #eee;
  padding-left: 16px;
  display: none; /* 默认隐藏，仅在口语表达/才艺展示时显示（JS 控制） */
}

.video-filter-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.continent-filter {
  list-style: none;
  padding: 0;
  margin: 0;
 
  gap: 8px;
}

.continent-filter li {
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.continent-filter li:hover {
  background: #f5f5f5;
}

.continent-filter li.active {
  background: #00A5E0;
  color: #fff;
}

@media (max-width: 768px) {
  .video-list-layout {
    flex-direction: column;
  }
  .continent-filter li {
    font-size: 14px;
  }
  #gallerySectionTitle{
    display: block;
  }
  #listTitle{
    display: block;
  }
  #videoSectionTitle
  {
    display: block;
  }
  .video-filter-side {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 12px;
    order: -1; /* 移到列表上方（紧跟在栏目标签下面） */
  }

  .list-section .section-title {
    font-size: 18px;
    padding-left: 5px;
    margin-bottom: 10px;
    float: none;
  }
}

/* 视频列表页：网格布局，按类型与端区分行列数 */
.video-list-section .video-list-grid {
  display: grid;
  gap: 20px;
}

/* PC：短视频 4 列，其他 3 列，每页 12 条（3 行或 4 行） */
.video-list-section .video-list-grid.type-short {
  grid-template-columns: repeat(4, 1fr);
}

.video-list-section .video-list-grid.type-highlight,
.video-list-section .video-list-grid.type-spoken,
.video-list-section .video-list-grid.type-talent {
  grid-template-columns: repeat(3, 1fr);
}

/* 卡片式：视频封面在上，标题在下 */
.video-list-section .video-list-grid .list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
}

.video-list-section .video-list-grid .list-item .thumb {
  width: 100%;
}

.video-list-section .video-list-grid .list-item .info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.video-list-section .video-list-grid .list-item .info .date {
  font-size: 13px;
}

/* 移动端：所有类型 2 列，每页仍 12 条（6 行） */
@media (max-width: 768px) {
  .video-list-section .video-list-grid.type-short,
  .video-list-section .video-list-grid.type-highlight,
  .video-list-section .video-list-grid.type-spoken,
  .video-list-section .video-list-grid.type-talent {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .list-section {
    padding: 10px 0;
  }

  /* 手机端取消面包屑 */
  .breadcrumb {
    display: none !important;
  }
  .breadcrumb {
    font-size: 13px;
    color: #999;
    margin-bottom: 3px;}
  /* 栏目名靠左、缩小字号 */
  .list-section .section-title,
  .detail-section .detail-title {
    font-size: 18px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }
    .detail-section .detail-title{
  text-align: center;

}
  .list-item {
    flex-direction: row; /* 保持左右结构 */
    padding: 5px;
     
  }
  .container {
    padding: 0 15px;
}
.detail-section .container {
  padding: 0 5px;
}
  .list-item .thumb {
    width: 100%;
    flex: 1.5;
  }
  .list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
  .list-item .info {
    flex: 3;
    margin: 0;
}
  .list-item .info h3 {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
  }
  .list-section .section-title {
    font-size: 18px;
    text-align: left;
    padding-left: 1px;
}
  .list-item .info .date {
    font-size: 12px;
  }

  .pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* 图集列表页：精彩图集网格 3 列（PC）/2 列（移动），4:3 比例；选手网格 4 列（PC）/2 列（移动） */
.gallery-list-section .gallery-list-grid {
  display: grid;
  gap: 20px;
}

.gallery-list-section .gallery-list-grid.type-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-list-section .gallery-list-grid.type-player {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-card a,
.player-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-card .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

.gallery-card h4 {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.player-card .thumb img {
  width: 45%;
  aspect-ratio: 9 /16;
  margin: 0 auto;
 
  object-fit: cover;
}

.player-card .player-info {
  text-align: center;
  margin-top: 6px;
}

.player-card .player-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.player-card .player-info .country {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .gallery-list-section .gallery-list-grid.type-gallery,
  .gallery-list-section .gallery-list-grid.type-player {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-title{
    text-align: center;
  }
 

}

/* 详情页布局：左内容 + 右推荐 */
.detail-section {
  background: #fff;
  padding: 10px 0;
}

.detail-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.detail-main {
  flex: 1;
  min-width: 0;
  border-right: 1px solid #cccccc;
  padding-right: 45px;
}

.detail-title {
  font-size: 26px;
  margin-bottom: 16px;
  color: #333;

  color: #333333;
  text-align: center;
  padding: 15px 0 15px;
  overflow: hidden;
  line-height: 1.5;
  border-bottom: 1px dotted #c1c0c0;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.detail-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
  justify-content: center;
  padding-top: 10px;
}

.detail-meta span {
  padding-right: 0px;
}

#detailDate{
  margin-right: 20px;
}

.detail-content {
  font-size: 18px;
  line-height: 30px;
  color: #333;
  text-align: left;
  overflow: hidden;
 
  font-size: 16px;
}
.detail-content p {
  margin: 10px auto;
  word-break: break-all;
}
.detail-content img {
  max-width: 100%;
  height: auto;
  margin: 15px auto;
}

.detail-side {
  width: 280px;
  flex-shrink: 0;
  padding-top: 35px;
}

.side-block {
  padding-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
}
.detail-side section:nth-last-child(1),.detail-side section:nth-last-child(2) {
  border-bottom: none;
  margin-bottom: 20px;
}
.side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.side-title {
  font-size: 16px;
  color: #00A5E0;
  margin: 0;
}

.side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-list li {
  line-height: 1.5;
  /* list-style-type: initial; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-list li a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.side-list li a:hover {
  color: #00A5E0;
}

.side-more {
  margin-top: 8px;
  text-align: right;
}

.side-more a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.side-more a:hover {
  color: #00A5E0;
}

.side-more-link {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 10px;
}

.side-more-link:hover {
  color: #00A5E0;
}

.side-media-card .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

.side-media-card h4 {
  margin-top: 6px;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .detail-layout {
    flex-direction: column;
  }

  .detail-side {
    width: 100%;
  }

  .detail-main {
    border-right: none;
    padding-right: 0;
  }
}

