body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: flex-end; /* 将导航栏内容靠右对齐 */
    background-color: #fce8b6;
    position: fixed; /* 固定导航栏在最上方 */
    top: 0px; /* 固定在顶部 */
    width: calc(100% - 0px); /* 宽度占满整个页面 */
    z-index: 1000; /* 确保导航栏在其他内容之上 */
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.244); /* 添加底部阴影效果 */
}

/* 下拉按钮样式 */
.dropbtn {
    background-color: #fefefe00;
    color: rgb(255, 255, 255);
    padding: 0px;
    font-size: 18px; /* 增大字体大小 */
    border: none;
    cursor: pointer;
    margin: 0 45px; /* 增加间距 */
    text-decoration: none; /* 取消下划线 */
    display: flex;
    align-items: center;
    justify-content: space-between;/* 确保箭头在右侧 */
}
/* 容器 <div> - 需要定位下拉内容 */
.dropdown {
    position: relative;
    display: inline-block;
    color:#f3f2e7;
    font-weight: bold;
}

/* 下拉内容 (默认隐藏) */
.dropdown-content {
    display: none;
    position: absolute;
    color: rgb(237, 236, 236);
    background-color:  #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0);
    z-index: 1;
    font-weight: bold;
}

/* 下拉菜单的链接 */
.dropdown-content a {
    color: black;
    padding: 9px 10px;
    text-decoration: none; /* 取消下划线 */
    display: block;
}

/* 鼠标移上去后修改下拉菜单链接颜色 */
.dropdown-content a:hover {
    background-color: #fce8b6;
    text-decoration: none; /* 取消下划线 */
}

/* 在鼠标移上去后显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block;
}

/* 当下拉内容显示时修改下拉按钮的背景颜色 */
.dropdown:hover .dropbtn {
    background-color: #ffffff00;
}
.container {
    display: flex;
    justify-content: flex-end; /* 将内容靠右对齐 */
    width: 100%;
    height: 100vh; /* 使容器占满整个视口高度 */
    word-wrap: break-word;
    position: fixed;
}


.content-box {
    /*position: absolute;*/
    /*height: 1250vh;*/
    width: 66%; 
    border-radius: 10px; /* 圆角效果 */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* 立体效果 */
    padding: 10px; /* 内边距 */
    margin: 10px auto; /* 外边距 */
    margin-left: 28%;
    background-color: #ffffff; /* 背景颜色 */
}
.content {
    /* position: absolute;*/
     top: 20px;
     left: 30px;
     right: 30px;
     font-size: 20px;
     line-height: 1.5;
 }
.sidebar {
    position: absolute; /* 使侧边栏固定在视口中 */
    top:20px;
    width: 40%;
    padding: 10px;
    box-sizing: border-box;
    margin-left: -20px;
}

.img {
    width: 70%;
    height: 70%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 1); /* 阴影效果 */
    border-radius: 7px; /* 可选：添加边角圆润效果 */
}


.custom-paragraph {
    text-align: justify; /* 文本向左对齐和向右对齐 */
    margin-left: 30px; /* 距离左侧30% */
    margin-right: 50px; /* 距离右侧150px */
    overflow-wrap: break-word; /* 到了位置就换行 */
}



table {
    border: 1px solid rgb(123, 123, 123);
    background-color: rgb(78, 92, 161);
    width: 850px;
    margin-left: 30px;
}

.custom-td {
    background-color: rgb(78, 92, 161);
    color: white; 
    text-align: center;
   
}

.custom-dark {
    background-color: rgb(165, 173, 215);
    color: rgb(0, 0, 0); 
    text-align: center;
   
}

.custom-light {
    background-color: rgb(209, 213, 234);
    color: rgb(0, 0, 0); 
    text-align: center;
   
}

.custom-figure {
    text-align: center;
    font-size: 15px;
    color: gray;
}

td {
    
    background-color: #ffffff;
    text-align: center;
}

.left-align {
    text-align: left;
    position: absolute;
    top: -15px; /* 根据需要调整顶部距离 */
    left: 20px; /* 根据需要调整左侧距离 */
    width: 400px; /* 根据需要调整宽度 */
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.sidebar {
    position: fixed; /* 使侧边栏固定在视口中 */
    top: 30px; /* 根据需要调整顶部距离 */
    left: 20px; /* 根据需要调整左侧距离 */
    width: 400px; /* 根据需要调整宽度 */
 
}
.sidebar ul {
    position: absolute;
    top: 140px;
    left: 40px;
}

.sidebar ul li {
    margin-bottom: 10px;
}
.sidebar ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 15px; /* 调整字体大小，可以根据需要修改 */
    /*font-weight: bold; /* 加粗字体 */
}

.sidebar ul li a:hover {
    color: #007bff;
}

.scroll-indicator {
    position: fixed;
    top: 100px;
    left: 40px;
    width: 10px;
    height: 70%;
    background: rgb(153, 163, 210);
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%; /* 初始高度 */
    background: rgb(68, 82, 150);
    transition: height 0.2s;
}

.circle-link {
    text-decoration: none;
    color: black;
}
.circle-link::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    border: 3px solid rgb(68, 82, 150); /* 空心圆的边框 */
    border-radius: 50%;
    vertical-align: middle;
}
.custom-section{
    margin-left: 40px; 
    margin-top: 60px; 
    font-size: 40px; 
    font-weight: bold;
    color: rgb(78, 92, 161);
}

.custom-sectionlittle{
    
    margin-left: 10px; 
    margin-top: 20px; 
    font-size: 23px; 
    font-weight: bold;
    color: rgb(0, 0, 0);
}

.circle-link.active::before {
    background-color: rgb(68, 82, 150); /* 实心圆的颜色 */
}

.no-bullets {
    list-style-type: none;
}

.main-title {
    font-size: 2em; /* 可以根据需要调整字号 */
    color: #333; /* 可以根据需要调整颜色 */
    margin-bottom: 10px; /* 可以根据需要调整间距 */
    margin-top: 70px;
    margin-left: 80px;
    color: rgb(68, 82, 150);
}

.progress-bar-container {
    position: fixed;
    top: 230px;
    left: 70px; 
    height: 52%;
    width: 8px;
    background-color: rgb(157, 168, 223);
}

.progress-bar {
    width: 100%;
    background-color: rgb(64, 77, 142);
    height: 0%;
    transition: height 0.3s ease;
}
