/* 覆盖 frontend 的 body 上边距，去掉头部上方白边 */
body {
  padding-top: 0 !important;
}
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";
}

/* 与首页共用的页脚样式（覆盖 frontend 深色底） */
footer.footer {
  width: 100%;
  padding: 20px 0;
  color: #666;
  text-align: center;
  background: transparent;
  margin-top: 25px;
}
footer.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
footer.footer p {
  margin: 0;
  font-size: 13px;
}
footer.footer a {
  color: #555;
}
footer.footer a:hover {
  color: #333;
}
@media (max-width: 575px) {
  footer.footer {
    padding: 16px 0;
  }
  footer.footer p {
    font-size: 12px;
  }
}

/* 会员资料：教育经历/工作经历 同一行内输入框与按钮垂直居中对齐 */
@media (min-width: 768px) {
  .row-edu.row,
  .row-work.row {
    display: flex;
    align-items: center;
  }
}

/* 全局页面提示框（不跳转到提示页，在当前页顶部显示） */
.page-toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.page-toast-show {
  opacity: 1;
}
.page-toast-success {
  background: #22a16f;
  color: #fff;
}
.page-toast-error {
  background: #e54d42;
  color: #fff;
}
.page-toast-info {
  background: #333;
  color: #fff;
}

/* 全局提示弹窗：与联系方式同款，确保确定按钮为蓝色 */
.page-prompt-mask {
  display: none;
  align-items: center;
  justify-content: center;
}
.page-prompt-modal .page-prompt-btn,
#page-prompt-mask .page-prompt-btn {
  border: none !important;
  background: linear-gradient(135deg, #0073b1, #4f8dff) !important;
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 14px;
  cursor: pointer;
}
#page-prompt-mask .page-prompt-btn:hover {
  opacity: 0.92;
}
/*# sourceMappingURL=user.css.map */