body {
    font-family: 'Noto Sans', sans-serif;
  }
  
  
  .footer .icon-link {
      font-size: 25px;
      color: #000;
  }
  
  .link-block a {
      margin-top: 5px;
      margin-bottom: 5px;
  }
  
  .quart {
    font-variant: small-caps;
  }
  
  
  .teaser .hero-body {
    padding-top: 0;
    padding-bottom: 3rem;
  }
  
  .teaser {
    font-family: 'Google Sans', sans-serif;
  }
  
  
  
  .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-title-small {
    font-family: 'Google Sans', sans-serif;
    /* font-size: 45px; */
  }
  
  .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(207, 100%, 50%) !important;
  }
  
  .publication-authors a:hover {
      text-decoration: underline;
      /* color: hsl(193, 100%, 50%) !important; */
  }
  
  .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;
    border: 1px solid #bbb;
    border-radius: 10px;
    padding: 0;
    font-size: 0;
  }
  
  .results-carousel video {
    margin: 0;
  }
  
  
  .interpolation-panel {
    background: #f5f5f5;
    border-radius: 10px;
  }
  
  .interpolation-panel .interpolation-image {
    width: 100%;
    border-radius: 5px;
  }
  
  .interpolation-video-column {
  }
  
  .interpolation-panel .slider {
    margin: 0 !important;
  }
  
  .interpolation-panel .slider {
    margin: 0 !important;
  }
  
  
  #interpolation-image-wrapper {
    width: 100%;
  }
  #interpolation-image-wrapper img {
    border-radius: 5px;
  }
  
  .is-centered {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    width: 100%; /* 确保容器宽度占满整个屏幕 */
    max-width: 100%; /* 确保容器不超过屏幕宽度 */
    margin: auto; /* 自动调整左右外边距 */
  }
  
  .quart {
    font-variant: small-caps;
  }

  .title.is-4 {
    font-size: 1.2rem; /* 减小主标题尺寸 */
    margin-bottom: 10px;
  }
  
  .video-slider {
    position: relative;
    width: 100%;
    margin: 15px auto;
    overflow: hidden;
  }
  
  .slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 5px 0;
  }
  
  .slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .slider-item {
    flex: 0 0 auto;
    width: 400px; /* 增加视频宽度 */
    margin-right: 15px;
  }
  
  .video-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .video-caption {
    padding: 5px; /* 减小内边距 */
    text-align: center;
    font-size: 0.8rem; /* 减小字体大小 */
    font-weight: normal; /* 改为普通字重 */
    background-color: #f5f5f5;
    margin: 0;
    color: #555;
  }
  
  .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .slider-btn {
    background-color: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .prev-btn {
    margin-left: 10px;
  }
  
  .next-btn {
    margin-right: 10px;
  }
  
  @media (max-width: 768px) {
    .slider-item {
      width: 320px;
    }
  }
  
  @media (max-width: 576px) {
    .slider-item {
      width: 280px;
    }
  }