/* 修改页眉背景色 */
.main-header {
    background-color: #f7f7f7;
}

/* 修改页脚背景色 */
.site-footer {
    margin-top: 3rem;    /* 页脚上方的外部间距 */
    padding-top: 1rem;   /* 顶部内边距，使页脚变窄 */
    padding-bottom: 1rem; /* 底部内边距，使页脚变窄 */
    background: #f7f7f7; 
    color: #000;        
}

/* 修改用户下拉菜单字体颜色*/
.navbar-light .navbar-nav .dropdown-item {
    color: #000 !important;
}

/* 修改用户下拉菜单字体颜色 */
.navbar-nav .dropdown-item {
    color: #000 !important;
}

/* 修改页脚占位条 */
.site-footer-sidebar {
    padding-bottom: 1rem;  /* 从2rem减少到1rem */
    margin-bottom: 1rem;   /* 从2rem减少到1rem */
}

/* 超链接颜色 */
.alert-primary a, .alert-primary a:hover, .alert-primary a:focus, .alert-primary a:active {
    color: #000;
    text-decoration: underline;
}

/* 标题字体 */
.navbar-logo-text {
    display: block;
    width: 100%;
    white-space: normal;
    padding-left: 2.5em;
    padding-right: 0.5em;
    border: 1px solid transparent;
    font-family: 'PT Serif', serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* 超链接字体 */
a {
    color: #052C68;
}

/* 通知底色 */
.alert-primary {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #333;
}

/* 下拉列表底色 */
.dropdown-menu {
    background: #f0f0f0;
}