.fs1{
    font-size: 10px;
}
.fs2{
    font-size: 15px;
}
.fs3{
    font-size: 17px;
}
.fs4{
    font-size: 20px;
}
.text_indent_1
{
    text-indent:1em;
}
.text_indent_2
{
    text-indent:2em;
}
.soft-desc{
           /* 设置一个固定的高度 */  
           height: 70px; /* 根据需要调整 */  
           /* 确保内容不会溢出容器 */  
           overflow: hidden;  
           /* 设置为块级元素和弹性盒布局 */  
           display: -webkit-box;  
           -webkit-box-orient: vertical;  
           /* 使用 line-clamp 来限制显示的行数 */  
           -webkit-line-clamp: 4; /* 根据需要调整行数 */  
           /* 可选：设置文本溢出为省略号 */  
           text-overflow: ellipsis;  
}

.img-fit{
      object-fit: cover;
      object-position: left top;
      transition: 1s;
}


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";
}
/*# sourceMappingURL=user.css.map */