h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
@media (min-width: 992px) {
  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }
  .user-center .avatar-img {
    font-size: 0;
  }
  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}
.sidebar-toggle {
  display: none;
}
/* 用户中心左侧菜单：统一美化与修复（适配 sidenav.html 实际结构） */
.sidenav {
  padding: 14px 0;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.sidenav .list-group {
  margin: 0;
  padding: 0;
}
.sidenav .list-group .list-group-item-header,
.sidenav .list-group .list-group-item-header.list-group-item {
  padding: 10px 16px;
  margin: 0 0 6px;
  border: none;
  border-left: 3px solid rgba(34, 87, 166, 0.95);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(34, 87, 166, 0.10) 0%, rgba(34, 87, 166, 0.04) 100%);
  color: #2257a6;
  font-weight: 700;
  font-size: 14px;
}
.sidenav .list-group .list-group-item {
  border: none;
  border-radius: 0;
  padding: 10px 16px;
  margin: 0;
  background: transparent;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-weight: 500;
  transition: background 0.15s, border-left-color 0.15s, color 0.15s;
  text-decoration: none;
}
.sidenav .list-group .list-group-item i {
  width: 18px;
  text-align: center;
  color: #2257a6;
  opacity: 0.95;
  flex-shrink: 0;
}
.sidenav .list-group .list-group-item:hover {
  background-color: rgba(34, 87, 166, 0.06);
  border-left-color: rgba(34, 87, 166, 0.95);
  color: #2257a6;
  text-decoration: none;
}
.sidenav .list-group .list-group-item.active {
  background-color: rgba(34, 87, 166, 0.08);
  border-left-color: rgba(34, 87, 166, 1);
  color: #2257a6;
}

@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}
/*# sourceMappingURL=user.css.map */