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;
}
@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 9999;
    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;
    background: #fff;
  }
  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 99999;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
  }
  .sidebar-toggle:hover {
    background: #764ba2;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
  }
  .sidebar-toggle:active {
    transform: scale(0.95);
  }
}
body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.3);
}
body.sidebar-open .sidebar-toggle {
  background: #d9534f;
}
body.sidebar-open .sidebar-toggle:hover {
  background: #c9302c;
}
body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

/* 移动端侧边栏遮罩层 */
@media (max-width: 991px) {
  body.sidebar-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
  }

  /* 移动端侧滑栏打开时，禁止body滚动 */
  body.sidebar-open {
    overflow: hidden;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* User Index Page Styles */
.basicinfo {
  margin: 15px 0;
}

.basicinfo .row > .col-xs-4 {
  padding-right: 0;
}

.basicinfo .row > div {
  margin: 5px 0;
}

/* VIP会员标识样式 - 已禁用 */
/*
.vip-badge {
  background-color: #d9534f;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 5px;
  vertical-align: middle;
}
*/

/* 头像相关样式 */
.avatar-img {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
}

.avatar-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* VIP头像边框 - 已禁用 */
/*
.vip-avatar-frame {
  position: absolute;
  top: -25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  background: url('/assets/img/vip-frame.png') no-repeat center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
*/

/* 确保头像容器居中 */
.user-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Profile Page Styles */
.profile-avatar-container {
  position: relative;
  width: 100px;
}

.profile-avatar-container .profile-user-img {
  width: 100px;
  height: 100px;
}

.profile-avatar-container .profile-avatar-text {
  display: none;
}

.profile-avatar-container:hover .profile-avatar-text {
  display: block;
  position: absolute;
  height: 100px;
  width: 100px;
  background: #444;
  opacity: 0.6;
  color: #fff;
  top: 0;
  left: 0;
  line-height: 100px;
  text-align: center;
}

.profile-avatar-container button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0;
}

.form-layer {
  height: 100%;
  min-height: 150px;
  min-width: 300px;
}

.form-body {
  width: 100%;
  overflow: auto;
  top: 0;
  position: absolute;
  z-index: 10;
  bottom: 50px;
  padding: 15px;
}

.form-layer .form-footer {
  height: 50px;
  line-height: 50px;
  background-color: #ecf0f1;
  width: 100%;
  position: absolute;
  z-index: 200;
  bottom: 0;
  margin: 0;
}

.form-footer .form-group {
  margin-left: 0;
  margin-right: 0;
}

/*# sourceMappingURL=user.css.map */