body {
  font-family: 'Noto Sans', sans-serif;
}


.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dnerf {
  font-variant: small-caps;
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}

.publication-title {
}

.publication-banner {
  max-height: parent;
}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
}

.publication-authors a:hover {
    text-decoration: underline;
}

.author-block {
  display: inline-block;
}

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}

.slider-pagination .slider-page {
  background: #000000;
}

.eql-cntrb { 
  font-size: smaller;
}


/* my */
.container.is-max-desktop {
  max-width: 97% !important; 
  width: 97% !important;
}

/* 统一 GIF 容器样式 */
.gif-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  margin-bottom: 30px; 
}

/* 让所有 GIF 在一行 */
.gif-items {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

/* GIF 样式 */
.gif-item {
  flex: 1;
  max-width: 200px;
  position: relative;
}

/* 让 GIF 适应容器 */
.gif-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* 任务名称 - 默认隐藏 */
.gif-item::after {
  content: attr(data-task);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* 鼠标悬停时显示任务名称 */
.gif-item:hover::after {
  opacity: 1;
}

/* 让标题风格与 DMControl 一致 */
.category-title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  color: #333;
  padding: 5px;
}




/* GIF 滚动容器 */
.gif-row-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.gif-suite {
  width: 48%;
  text-align: center;
}

.gif-scroll-container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  overflow-x: auto; /* 启用水平滚动 */
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* GIF 容器 */
.gif-wrapper {
  display: flex;
  gap: 10px;
  scroll-behavior: smooth; /* 让滚动更平滑 */
}

/* GIF 样式 */
.gif-item {
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
}

/* 让 GIF 具有固定大小 */
.gif-item img {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

/* 悬停时显示 Task 名称 */
.gif-item::after {
  content: attr(data-task); /* 读取 HTML 中的 data-task 内容 */
  position: absolute;
  bottom: -10px; /* 让文本显示在 GIF 下方 */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85); /* 让背景更深，不影响可读性 */
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: normal; /* 允许换行 */
  max-width: 100%; /* 让文本自动适应 GIF 宽度 */
  width: 150px; /* 确保与 GIF 宽度一致 */
  text-align: center;
  word-wrap: break-word; /* 确保长单词换行 */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 100; /* 确保文本浮动在最上方 */
}

/* 鼠标悬停时显示任务名称 */
.gif-item:hover::after {
  opacity: 1;
}

/* LIBERO-suite 标题样式 */
.gif-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 15px; /* 增加间距，让标题不贴近 GIF */
  margin-bottom: 15px; /* 增加间距，让标题不贴近 GIF */
}


/* 视频样式 */
.task {
  margin-bottom: 40px;
}

.task-title {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-label {
  font-weight: bold;
  margin-top: 6px;
  text-align: center;
}

video {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

