h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}
.user-baseinfo {
  margin-bottom: 25px;
}
.user-baseinfo table tr td {
  color: #999;
}
/* 中等屏幕（桌面显示器，大于等于 992px） */
@media (max-width: 1500px) {
  .img,.mwp{
    display: none;
  }
}

@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";
}
/*# sourceMappingURL=user.css.map */
.mt10{
  margin-top: 10px;
}
.mt20{
  margin-top: 20px;
}
.mt30{
  margin-top: 30px;
}
.pt10{
  padding-top: 10px;
}
.pb10{
  padding-bottom: 10px;
}
.pt20{
  padding-top: 20px;
}
.f12{
  font-size: 12px;
}
.f18{
  font-size: 18px;
}
.color1{
  color: #616161;
}
.bold{
  font-weight: bold;
}
.center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.red{
  border: 1px solid red;
}
.text-warning{
  color: #ffc100;
}
.text-success{
  color: #71c016;
}
.text-danger{
  color: #ff4747;
}
.bg-success{
  background-color: #71c016;
}
.bg-danger{
  background-color: #ff4747;
}
.bg-warning{
  background-color: #ffc100;
}
.letter1{
  letter-spacing: 1px;
}
.absolute{
  position: absolute;
}
.flex{
  display: flex;
}
.align-center{
  display: flex;
  align-items: center;
}
.flex-column {
  flex-direction: column;
  display: flex;
}
.flex-wrap{
  flex-wrap: wrap;
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
.pointer{
  cursor: pointer;
}

/* 弹窗样式 */
#popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px; /* 圆角边框 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
  0 1px 2px rgba(0, 0, 0, 0.05); /* 层叠阴影 */
}

/* 关闭按钮样式 */
.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
