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 */




.line1{
     /* 1. 核心：强制文本在一行内显示，不换行（关键属性） */
    white-space: nowrap;
    /* 2. 核心：隐藏超出容器宽度的内容（不显示滚动条，不溢出） */
    overflow: hidden;
    /* 3. 核心：将超出的隐藏内容替换为省略号（...） */
    text-overflow: ellipsis;
    /* 可选：给容器设置一个固定宽度（必须有宽度限制，否则省略号无法触发） */
    /*width: 200px; */
    /* 可根据需求修改为 px、%、rem 等单位 */
}
.line2{
    overflow: hidden; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.text-multi-ellipsis {
    /* 1. 隐藏超出内容 */
    overflow: hidden;
    /* 2. 开启弹性盒模型（辅助多行省略） */
    display: -webkit-box;
    /* 3. 限制显示的行数（这里设置为 2 行，可修改） */
    -webkit-line-clamp: 2;
    /* 4. 文本垂直排列（配合 -webkit-line-clamp 生效） */
    -webkit-box-orient: vertical;
    /* 可选：设置容器宽度 */
    width: 200px;
}
.flex_column{
    display: flex;
    flex-direction: column;
}
.flex_row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.flex_row_bet{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
}
.flex_row_end{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:flex-end;
}
.row_center{
    justify-content: center;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
main.content{
    /*padding: 0;*/
    background: linear-gradient(180deg, #A8D8FF 0%, #FFFFFF 50%);
    margin-top: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 北大红配色方案 */
    --primary-red: #8B0000;
    --primary-red-dark: #6B0000;
    --primary-red-light: #B22222;
    --gold-accent: #FFD700;
    --gold-light: #FFE55C;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-light: #fafafa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --gradient-red: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFE55C 100%);
}

/*body {*/
/*    font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "PingFang SC", 'Segoe UI', Roboto, sans-serif;*/
/*    line-height: 1.6;*/
/*    color: var(--text-dark);*/
/*    overflow-x: hidden;*/
/*    background: var(--bg-white);*/
/*}*/

/*.container {*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*    padding: 0 40px;*/
/*}*/

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    /*max-width: 1280px;*/
    width: 94%;
    margin: 0 auto;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    width: 52px;
    height: 52px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 2px;
    line-height: 24px;
}

.logo-en {
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    /*line-height: 16px;*/
    margin-left: 2px;
    margin-top: 2px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    display: block;
    padding: 8px 0px;
    text-decoration: none;
    color: #212121;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 20px;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #228ADF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 80%;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #228ADF;
}
.avatar-img {
    width: 34px;
    height: 33px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 1;
}
.avatar-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.user-nickname{
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.img_18{
    width: 18px;
    height: 18px;
}
.img_20{
    width: 20px;
    height: 20px;
}
.img_22{
    width: 22px;
    height: 22px;
}
.img_15{
    width: 15px;
    height: 15px;
}
.img_16{
    width: 16px;
    height: 16px;
}
.mt-4{
    margin-top: 20px;
}
.mt-6{
    margin-top: 30px;
}
.bra10{
    border-radius: 10px;
}
@media (min-width: 1200px) {
    .container{
        width: 94%;
    }
}

.nava{
    padding: 0!important;
    display: inline-block!important;
    padding: 10px 0px!important;
}
.nava_box .sa{
    /*margin: 0 5px;*/
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC; 
    font-size: 16px;
    color: #212121;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-left: 5px;
}
.nava_box .nava{
    margin: 0;
}
.float_claer{
    clear:both
}
 .nonemore{ 
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-top: 40px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.flexrow{
    display: flex;
}

/*图片上传展示样式*/
/*多图片*/
.plupload-preview {
    display:inline-block;
    float: left;margin-right: -5px;
}
.plupload-preview .col-xs-3{
    height:90px;
    width:160px; 
    margin-bottom: 10px;
}
.plupload-preview .col-xs-3 .thumbnail{
    border-radius: 10px;
    overflow: hidden;
}
.plupload-preview .btn-trash{
    position: absolute;
    right: 5px;
    top: 0;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 10px;border-bottom-left-radius: 10px; 
    border-top-right-radius: 10px; 
}
.plupload-preview li, .faupload-preview li{
    margin-top: 0;
}
.plupload-preview .fa-trash:before{
    content:'删除';
}
.plupload-preview .btn-danger{
    color: #fff;
    background-color: #EC211A; 
}
.plupload-preview .thumbnail{
    padding: 0;
}
.plupload-preview a img, .faupload-preview a img{
    width: 100%;
    height: 100%;
}
.dbtn{
    cursor: pointer;
}

/*分页样式*/
.pagination > .active > span{
    background-color: #228ADF!important;
    border-color: #228ADF!important;
}
.tbanner{
    width: 100%;
    min-height: 200px;
}