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;
 }


 .title {
        color: #4e5ca1; /* 这里可以设置字体颜色 */
        font-size: 45px; /* 这里可以设置字体大小 */
        text-align: center; /* 居中显示 */
        font-weight: bold;
        padding-top: 20px; /* 顶部内边距为30px */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-description {
    text-align: center; /* 文本居中 */
    margin-top: 15px;  /* 上方外边距 */
    font-size: 30px; 
    font-weight: bold;  /* 字体大小 */
    color: #000000;       /* 字体颜色 */
}

.word {
    font-size: 17px; 
    color: #404040;       /* 字体颜色 */
}

.member-card {
    flex: 1; 
    padding: 10px; 
    text-align: center; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
    border-radius: 8px; /* 给框增加圆角 */
    background-color: white; /* 设置背景颜色 */
    transition: transform 0.2s; /* 添加过渡效果 */
    height: 750px; /* 设置固定高度 */
    overflow: hidden; /* 防止内容溢出 */
}

.member-card:hover {
    transform: scale(1.02); /* 悬停时放大效果 */
}



