h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 22px;
  color: #333;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #777;
  padding: 8px 15px;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    line-height: 120px;
    font-size: 60px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    margin: 0 auto 15px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  /* 调整左侧菜单栏和右侧内容区域的宽度比例 */
  #content-container .row > .col-md-2 {
    width: 16.66667%;
  }
  #content-container .row > .col-md-10 {
    width: 83.33333%;
  }
  /* 统一调整内容区域内边距 */
  .panel-default {
    border-color: #eaeaea;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .panel-body {
    padding: 20px 25px;
  }
}
.sidebar-toggle {
  display: none;
  background-color: #46c37b !important;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(70, 195, 123, 0.3);
}
.sidebar-toggle:hover {
  background-color: #3db172 !important;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 220px;
    left: -220px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    font-size: 18px;
    padding: 8px;
    line-height: 30px;
    height: 45px;
    width: 45px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 220px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.1);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}
/*# sourceMappingURL=user.css.map */

/* 添加导航居中显示的样式 */
.navbar-center {
    display: inline-block;
    float: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 添加导航选中状态的样式 */
.navbar-center li.active a {
    color: #fff;
    background-color: #46c37b;
    border-radius: 4px;
}

.navbar-center li a:hover {
    color: #fff;
    background-color: #62d99c;
    border-radius: 4px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .navbar-center {
        position: relative;
        left: 0;
        transform: none;
        display: block;
        float: none;
    }
}

/* 修改侧边栏样式 */
.sidenav {
  background-color: #fff;
  padding: 15px 0;
  border-radius: 4px;
  margin-right: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.sidenav .list-group {
  margin-bottom: 0;
}

.sidenav .list-group-heading {
  padding: 12px 15px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
  background-color: #f5f5f5;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.sidenav .list-group-item {
  border: none;
  border-radius: 0;
  margin-bottom: 2px;
  background-color: transparent;
  color: #666;
  padding: 10px 15px 10px 20px;
  font-size: 13px;
  transition: all 0.2s ease;
  position: relative;
}

.sidenav .list-group-item.active,
.sidenav .list-group-item.active:hover,
.sidenav .list-group-item.active:focus {
  background-color: #46c37b;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-weight: 500;
  border-left: 4px solid #348b5a;
  padding-left: 16px;
}

.sidenav .list-group-item.active i,
.sidenav .list-group-item.active:hover i,
.sidenav .list-group-item.active:focus i {
  color: #fff;
}

.sidenav .list-group-item:hover {
  background-color: #f5f5f5;
  color: #333;
  padding-left: 22px;
}

.sidenav .list-group-item i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
  color: #666;
  font-size: 14px;
  position: relative;
  top: 1px;
}

/* 自定义的信息区块 */
.user-brief-info {
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.user-brief-info .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.user-brief-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-brief-info .user-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.user-brief-info .user-group {
  font-size: 12px;
  color: #888;
  display: inline-block;
  padding: 2px 8px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

/* 表单样式优化 */
.form-control {
  height: 38px;
  box-shadow: none;
  border-color: #e5e5e5;
}

.form-control:focus {
  border-color: #46c37b;
  box-shadow: none;
}

.btn-primary {
  background-color: #46c37b;
  border-color: #3db172;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
  background-color: #3db172;
  border-color: #38a269;
}