/* Header 样式 */
.header-box {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo-wrapper img {
  height: 40px;
  width: auto;
}

.user-section {
  gap: 24px;
}

.user-section > div {
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.user-section > div:hover {
  background-color: #f5f5f5;
}

.user-section .glyphicon {
  font-size: 18px;
  color: #666;
  margin-bottom: 4px;
}

.user-section div div {
  font-size: 14px;
  color: #666;
}

/* Footer 样式 */
.footer-box {
  background: #f8f9fa;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid #eee;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #3c9cff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #999;
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .header {
    padding: 10px;
  }

  .user-section {
    gap: 15px;
  }
}
