/* 分页栏样式 */
.tabs {
    max-width: 100%;
    overflow: hidden; /* 隐藏水平滚动条 */
}

.tab-row {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 整体居中 */
    gap: 10px; /* 上下两栏之间的间距 */
    padding: 0;
    margin: 0;
}

.tab-column {
    display: flex;
    justify-content: center; /* 每栏居中 */
    gap: 10px; /* 每栏内选项之间的间距 */
}

.tabs li {
    list-style: none;
}

.tabs a {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    white-space: nowrap; /* 防止文本换行 */
    font-size: 14px; /* 分页栏字体大小 */
}

.tabs a:hover {
    background-color: #f5f5f5;
}

/* 小标题样式 */
.title.is-4 {
    font-size: 1.1em; /* 比正文稍大 */
    color: #666; /* 灰色 */
    margin-top: 1.5rem; /* 调整上边距 */
    margin-bottom: 0.5rem; /* 调整下边距 */
}

/* 正文样式 */
.has-text-justified {
    font-size: 1em; /* 正文字号 */
    color: #333; /* 正文字体颜色 */
}

/* 视频样式 */
.publication-video-tool {
  position: relative;
  width: 100%;
  padding-top: 56.25%;  /* 16:9 高宽比，可以换成 75% (4:3) 或 100% (1:1) */
  background: black;
}

.publication-video-tool video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 保证完整显示，可能左右或上下有黑边 */
}
