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: 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";
}

/* ========== 底部统计信息样式 ========== */
.index-footer {
  background: #f5f7fa;
  border-top: 1px solid #e0e6ed;
  margin-top: 30px;
  padding: 20px 0 0 0;
}
.index-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px 20px;
}
.index-footer .footer-stat {
  text-align: center;
  padding: 15px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.index-footer #site-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #666;
}
.index-footer .stat-num {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  min-width: 40px;
  text-align: center;
}
.index-footer .footer-bottom {
  background: #fff;
  border-top: 1px solid #e0e6ed;
  padding: 15px 20px;
  text-align: center;
  font-size: 13px;
  color: #999;
}
.index-footer .footer-bottom a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s;
}
.index-footer .footer-bottom a:hover {
  color: #764ba2;
  text-decoration: underline;
}
.index-footer .footer-bottom img {
  vertical-align: middle;
  margin: 0 5px;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .index-footer #site-stats {
    flex-direction: column;
    gap: 8px;
  }
  .index-footer .stat-num {
    font-size: 14px;
    padding: 2px 8px;
  }
}

/* ========== 搜索框样式 ========== */
#search-box-container {
  -webkit-animation: slideDown 0.3s ease;
  -moz-animation: slideDown 0.3s ease;
  animation: slideDown 0.3s ease;
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes slideDown {
  from {
    opacity: 0;
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#search-toggle-link {
  transition: all 0.2s ease;
  cursor: pointer;
}

#search-box-container input[name="q"]:focus {
  border-color: #3460ab !important;
  box-shadow: 0 0 0 3px rgba(52, 96, 171, 0.1);
}

#search-box-container button[type="submit"]:hover {
  background: #2455a3 !important;
  border-color: #2455a3 !important;
}

/* 响应式适配 */
@media (max-width: 768px) {
  #search-box-container > div {
    padding: 15px 10px !important;
  }
  
  #search-box-container input[name="q"],
  #search-box-container button[type="submit"] {
    height: 40px !important;
    font-size: 14px;
  }
}
/*# sourceMappingURL=user.css.map */