body {
    font-family: BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* width: 60%; */
    margin: 0 auto;
    /* max-width: 1100px; */
    /* background-color: #f4f4f4; */
}

header {
    /* background-color: #333; */
    /* color: white; */
    padding: 30px;
    padding-bottom: 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    background-image: linear-gradient(
        to right,
        rgb(64, 255, 170), rgb(64, 121, 255), rgb(64, 255, 170), rgb(64, 121, 255), rgb(64, 255, 170));
        
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: titleShine 8s linear infinite;
}

@keyframes titleShine {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}
@font-face {
    font-family: 'Google Sans';
    src: url('font/GoogleSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futura-pt';
    src: url('font/futura\ medium\ bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    color: #4a4a4a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

h3 {
    margin: 20px;
    margin-top: 40px;
    font-size: 32px;
    font-weight: bold;
    color: #363636;
    /* text-align: center; */
    font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

p {
    font-size: 1.1em;
    line-height: 1.4;
    color: #000000B3
}
.name {
    color: #485fc7; /* 默认颜色 */
    text-decoration: none;
}
.name:hover {
    color: black; /* 悬浮时的颜色 */
    text-decoration: underline; /* 添加下划线 */
}

.citation-text {
    font-family: 'Courier New', Courier, monospace;
    margin: 50px;
    padding:20px;
    margin-top: 30px;
    white-space: pre-wrap;
    color: #333;
    text-align: left;
    max-width: 800px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
}
.button i {
    margin-right: 8px;
}

#accept{
    font-size: 20px;
    color:#999999;
    font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}
#authors {
    justify-content: center;
    font-size: 20px;
    /* font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif; */
    font-family: 'Google Sans', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


#abstract {
    text-align: center;
    background-color: #f5f5f5;
}
#abstract p {
    display: inline-block; /* 使段落成为行内块元素 */
    margin: 0 auto; /* 自动设置左右边距以居中 */
    text-align: justify;
}




#resources .icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

#resources .icon {
    text-align: center;
}

#resources .icon img {
    width: 35px;
    height: 35px;
}


.video-container1 {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
}

.video-item {
    flex: 1;
    margin: 0 5px;
}

video {
    width: 100%;
    height: auto;
}

.caption {
    text-align: center;
    margin-top: 5px;
}

.controls {
    text-align: center;
    margin-top: 20px;
}

#video-compare-container {
    display: inline-block;
    line-height: 0;
    position: relative;
    width: 80%;
    /* height: auto; */
    padding-top: 45%;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

#video-container1 {
    clip-path: inset(0 0 0 0);
}

#video-container2 {
    clip-path: inset(0 0 0 40%);
}

#video-container3 {
    clip-path: inset(0 0 0 59%);
}

#video-compare-container video {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px; /* 增加宽度 */
    background-color: rgba(0, 0, 0, 0.3); /* 改变颜色 */
    cursor: ew-resize;
    z-index: 10;
    /* border: 2px solid #fff; 添加边框 */
}

.slider::before {
    content: '';
    position: absolute;
    top: 3%;
    left: -18px; /* 紧贴滑块右侧 */
    transform: translateY(-50%);
    width: 16px; /* 图标宽度 */
    height: 16px; /* 图标高度 */
    background: url('image/left.png') no-repeat center center;
    background-size: contain; /* 确保图标适应容器 */
}

.slider::after {
    content: '';
    position: absolute;
    top: 3%;
    left: 10px; /* 紧贴滑块右侧 */
    transform: translateY(-50%);
    width: 16px; /* 图标宽度 */
    height: 16px; /* 图标高度 */
    background: url('image/right.png') no-repeat center center;
    background-size: contain; /* 确保图标适应容器 */
}

#slider1 {
    left: 40%;
}

#slider2 {
    left: 59%;
}



#tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #4CAF50; /* 绿色背景 */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px; /* 增加按钮之间的间距 */
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    border-radius: 5px; /* 圆角 */
    font-size: 16px; /* 字体大小 */
    font-weight: bold; /* 字体加粗 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 阴影 */
}

.tab-button:hover {
    background-color: #45a049; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* 鼠标悬停时的阴影 */
    transform: translateY(-2px); /* 鼠标悬停时的轻微上移效果 */
}

.tab-button.active {
    background-color: #3e8e41; /* 激活状态的背景颜色 */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* 激活状态的阴影 */
}

.captions {
    /* color: #333; */
    font-weight: bold;
    font-size: 1em;
}
.video-group {
    display: none;
}

.video-group.active {
    display: block;
}
