.user-container{
	padding: 10px 0;
	overflow: hidden;
	background: #f4f6f9;
}
.user-wrapper{
	width: 100%;
	max-width: 1024px;
	padding: 0 22px;
	margin: 0 auto;
}
.user-card{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
	border-radius: 4px;
	overflow: hidden;
	background-color: #fff;
}
.user-banner{
	width: 100%;
	height: 200px;
}
.banner-content{
	width: 100%;
	height: 100%;
	position: relative;
}
.banner-box,
.banner-img{
	width: 100%;
	height: 100%;
}
.banner-img{
	position: relative;
 	overflow: hidden;
}
.banner-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 1;
}
.banner-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.info-box{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
    align-items: flex-end;
    padding: 30px 20px;
    z-index: 3;
}
.user-info{
	display: flex;
	align-items: center;
	gap: 20px;
	width: 420px;
}
.avatar-img{
	width: 100px;
    height: 100px;
    border-radius: 4px;
    border: 4px solid transparent;
    background-image: linear-gradient(45deg, #ffffff, #e3e3e3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.avatar-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}
.info-box .text-info{
	color: #fff;
    flex: 1 1 0%;
    min-width: 0;
}
.user-banner .user-nickname{
	margin: 0;
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, .4);
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.user-description,
.last-login{
	font-size: 13px;
	color: #fff;
	font-weight: 400;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, .4);
	margin-top: 5px;
}
.last-login{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.user-description{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.control-box{
	position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 4;
}
.control-box .bg-change,
.control-box .settings{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.control-box a.banner-btn {
	display: inline-flex;
	align-items: center;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .4);
	background-color: rgba(255, 255, 255, .3);
	color: #fff;
	padding: 0 16px;
	text-align: center;
	font-size: 15px;
	line-height: 32px;
	height: 34px;
	cursor: pointer;
	user-select: none;
	gap: 4px;
	min-width: 120px;
	justify-content: center;
}
.control-box a.banner-btn svg path{
	fill: #fff;
}
.control-box a.banner-btn span {
    display: inline-flex;
    align-items: center;
}
.control-box a.banner-btn:hover{
	background-color: rgba(255, 255, 255, .6);
}
.user-bottom{
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.column-left{
	width: calc(100% - 310px);
}
.column-right{
	width: 300px;
}
.user-profile-tabs{
	border-bottom: 1px solid #e1e1e1;
}
.user-profile-tabs ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1px;
}
.user-profile-tabs ul li{
	padding: 0 12px;
	flex-shrink: 0;
	display: inline-block;
}
.user-profile-tabs ul li a{
	color: #191b1f;
	display: inline-block;
	font-size: 16px;
	line-height: 22px;
	padding: 12px 0;
	position: relative;
	font-weight: 400;
}
.user-profile-tabs ul li a.router-link-exact-active{
	font-weight: 600;
}
.user-profile-tabs ul li a.router-link-exact-active:after{
	background: #1772f6;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}
.user-profile-tabs ul li a .tab-count{
    color: #9196a1;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-left: 6px;
}
.list-header{
	height: 40px;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 18px;
	border-bottom: 1px solid #e1e1e1;
}
.list-header-text{
	font-weight: 600;
	color: #1d1d1f;
}
.list-item{
	padding: 16px 18px;
    border-bottom: 1px solid #e1e1e1;
}
.list-item:last-of-type{
	border-bottom: none;
}
.blank-list{
	padding: 70px 0;
}
.blank-con{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.blank-con .blank-icon img{
	width: 170px;
	height: auto;
	margin-bottom: 20px;
}
.blank-con .blank-title{
	font-size: 15px;
	color: #8491a5;
	text-align: center;
}
.list-pagination{
	padding: 0 18px;
}
.top-pagination{
	padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e1e1;
}
.bottom-pagination{
	padding-top: 16px;
	padding-bottom: 16px;
    border-top: 1px solid #e1e1e1;
}
.list-pagination .pagination{
	margin: 0;
	padding: 0;
}
.list-pagination .pagination{
	display: flex;
	gap: 5px;
}
.list-pagination .pagination button{
  all: unset; /* 清除所有默认样式 */
  display: block; /* 让它像 div 一样是块级元素 */
  width: 100%; /* 可选，设置宽度为100%（视需要） */
  height: auto; /* 高度自动调整（视需要） */
  background: none; /* 去掉背景 */
  border: none; /* 去掉边框 */
  padding: 0; /* 去掉内边距 */
  margin: 0; /* 去掉外边距 */
  text-align: left; /* 可选，根据需要对齐文本 */
}
.list-pagination .pagination span{
	display: flex;
    align-items: center;
    justify-content: center;
}
.list-pagination .pagination button{
	font-size: 15px;
    line-height: 26px;
    height: 26px;
    padding: 0 8px;
/*    border: 1px solid #e1e1e1;*/
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    color: #1d1d1f;
    font-weight: 400;
}
.list-pagination .pagination button:disabled{
	cursor: not-allowed;
	color: #9e9e9e;
/*	border-color: #e1e1e1;*/
}
.list-pagination .pagination button.active{
	background-color: #1772f6;
	color: #fff;
	font-weight: 600;
}
.list-pagination .pagination button:not(.active):hover{
	background-color: #eee;
}
.list-pagination .pagination button:disabled:hover{
	background-color: inherit;
}
.list-comment .post-title,
.list-topic .topic-title,
.list-favorite .forum-title,
.list-favorite .topic-title,
.list-subscription .forum-title,
.list-subscription .topic-title{
/*	font-size: 16px;*/
	font-size: 15px;
	color: #1d1d1f;
	line-height: 1.6;
	margin-bottom: 10px;
}
.list-reply .post-title{
	font-size: 15px;
	color: #777;
	line-height: 1.6;
	padding: 8px 12px;
	background-color: #eee;
	border-radius: 5px;
	margin-bottom: 10px;
}
.list-comment .post-title a,
.list-topic .topic-title a,
.list-reply .post-title a,
.list-favorite .forum-title a,
.list-favorite .topic-title a,
.list-subscription .forum-title a,
.list-subscription .topic-title a{
	font-weight: 600;
	color: #1d1d1f;
	text-decoration: none;
}
.list-comment .post-title a:hover,
.list-topic .topic-title a:hover,
.list-reply .post-title a:hover,
.list-favorite .forum-title a:hover,
.list-favorite .topic-title a:hover,
.list-subscription .forum-title a:hover,
.list-subscription .topic-title a:hover{
	color: #0f5ada;
}
.list-comment:last-of-type .comment-box,
.list-topic:last-of-type .topic-box,
.list-reply:last-of-type .reply-box,
.list-favorite:last-of-type > div,
.list-subscription:last-of-type > div{
	border-bottom: none;
}
.list-comment .comment-avatar,
.list-reply .reply-avatar,
.list-favorite .author-avatar,
.list-subscription .author-avatar{
	width: 40px;
	height: 40px;
	border-radius: 2px;
    overflow: hidden;
}
.list-comment .comment-avatar img,
.list-reply .reply-avatar img,
.list-favorite .author-avatar img,
.list-subscription .author-avatar img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.list-comment .comment-user,
.list-reply .reply-user,
.list-favorite .topic-author,
.list-subscription .topic-author{
	display: flex;
	gap: 14px;
	align-items: center;
}
.comment-info,
.reply-info,
.author-info{
	display: flex;
    flex-direction: column;
    height: 40px;
    justify-content: space-between;
}
.list-comment .comment-nickname,
.list-reply .reply-nickname,
.list-favorite .author-nickname,
.list-subscription .author-nickname{
	font-size: 15px;
	color: #1d1d1f;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	display: inline-block;
}
.list-comment .comment-nickname:hover,
.list-reply .reply-nickname:hover,
.list-favorite .author-nickname:hover,
.list-subscription .author-nickname:hover{
	color: #0f5ada;
}
.list-comment .comment-date,
.list-reply .reply-date,
.list-favorite .topic-date,
.list-subscription .topic-date{
	font-size: 13px;
	color: #777;
	font-weight: 400;
	line-height: 1;
}
.comment-body,
.reply-body{
	margin-top: 10px;
}
.comment-reply-to{
	font-size: 14px;
	line-height: 20px;
}
.reply-to-first{
	color: #777;
}
.reply-to-last{
	margin-left: 4px;
	font-weight: 600;
	color: #1d1d1f;
}
.reply-to-last a{
	color: inherit;
}
.reply-to-last a:hover{
	color: #0f5ada;
}
.comment-text,
.topic-text,
.reply-text,
.forum-text{
	font-size: 15px;
	line-height: 20px;
	margin-top: 10px;
	color: #333;
	white-space: pre-line;
    word-break: break-all;
}
.topic-forum,
.topic-meta,
.forum-meta{
	color: #777;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
}
.topic-meta,
.forum-meta{
	display: flex;
	align-items: center;
}
.topic-meta{
/*	gap: 10px;*/
}
.topic-meta span:before,
.forum-meta span:before{
    content: "·";
    margin: 0 5px;
}
.topic-meta span:first-child:before,
.forum-meta span:first-child:before {
    content: "";
    margin: 0;
}
.topic-forum a{
	color: #3f3f3f;
	font-weight: 600;
}
.topic-forum a:hover{
	color: #0f5ada;
}
.stats-title,
.info-title{
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	padding: 0 20px;
}
.stats-list,
.info-list{
	list-style: none;
	margin: 0;
	padding: 14px 0;
}
.stats-list li,
.info-list li{
	padding: 0 20px;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 14px;
	color: #535861;
	height: 32px;
	line-height: 32px;
	gap: 10px;
}
.user-card{
	margin-bottom: 10px;
}
@media(max-width: 1068px){
	.user-wrapper{
		max-width: 724px;
	}
	.user-bottom{
    	flex-direction: column;
	}
	.column-left,
	.column-right{
		width: 100%;
		flex: 1;
	}
	.control-box a.banner-btn{
		min-width: unset;
		width: 34px;
	}
	.control-box a.banner-btn span.banner-btn-text{
		display: none;
	}
}
@media(max-width: 833px){
	.user-wrapper{
        max-width: 700px;
        padding: 0 10px;
    }
}
@media(max-width: 734px){
	.user-wrapper{
		max-width: 450px;
	}
	.user-banner{
		height: 180px;
	}
	.info-box{
		height: 70%;
		top: auto;
		bottom: 0;
		padding-top: 0;
	}
	.user-info{
		width: 100%;
	}
	.control-box{
		width: 100%;
		top: 0;
		bottom: auto;
		flex-wrap: nowrap;
		align-items: center;
		align-content: unset;
		padding: 10px;
		height: auto;
		gap: 10px;
	}
	.control-box .bg-change, 
	.control-box .settings{
		width: auto;
	}
	.control-box a.banner-btn{
		padding: 0 10px;
	}
	.avatar-img{
		width: 80px;
		height: 80px;
		border: 2px solid transparent;
	}
	.user-banner .user-nickname{
		font-size: 20px;
	}
	.user-info{
		width: 100%;
	}
	.tabs-inner{
		width: 100%;
		position: relative;
	}
	.mobile-tab-display{
		width: 140px;
		height: 40px;
		margin: 0 auto;
		padding: 0 20px;
		cursor: pointer;
	}
	.tab-btn-box{
		width: 100%;
		margin: 0 auto;
		display: flex;
		align-items: center;
		width: 100%;
		height: 100%;
		justify-content: space-between;
	}
	.tab-btn-box svg{
		transition: all 0.2s;
	}
	.tab-btn-box.active svg{
		transform: rotate(-180deg);
	}
	.tab-btn-box .tab-text{
		font-size: 16px;
		font-weight: 600;
		color: #191b1f;
	}
	.tab-btn-box .tab-text .tab-count{
		font-size: 14px;
		color: #9196a1;
		font-weight: 400;
	}
	.tabs-inner > ul{
		position: absolute;
		width: 200px;
		border: 1px solid #eee;
		flex-direction: column;
		flex-wrap: unset;
		padding: 6px 0;
		z-index: 3;
        background-color: #fff;
        transform: translateX(-50%);
        left: 50%;
        top: 50px;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	.tabs-inner > ul > li{
		width: 100%;
	}
	.user-profile-tabs ul li a.router-link-exact-active:after{
		display: none;
	}
	.user-profile-tabs .tabs-inner > ul > li{
		border-bottom: 1px solid #e1e1e1;
		padding: 0;
	}
	.user-profile-tabs .tabs-inner > ul > li:last-child{
		border-bottom: none;
	}
	.user-profile-tabs ul li a{
		display: block;
		font-size: 14px;
		padding: 10px 15px;
		position: relative;
	}
	.user-profile-tabs ul li a .tab-count{
		font-size: 12px;
	}
	.user-profile-tabs ul li a.router-link-exact-active:after{
        display: block;
        content: '';
        position: absolute;
        width: 12px;
        height: 6px;
        border-left: 2px solid #1772f6;
        border-bottom: 2px solid #1772f6;
        transform: rotate(135deg);
        top: 45%;
        right: 15px;
        left: auto;
        background: none;
        transform: translateY(-50%) rotate(-45deg);
	}
	.list-header{
		display: none;
	}
	.list-pagination .pagination{
		gap: 20px;
	}
	.list-pagination .pagination span{
		display: none;
	}
	.list-pagination .pagination span:first-child,
	.list-pagination .pagination span:last-child{
		display: flex;
		width: calc(50% - 10px);
	}
	.list-pagination .pagination button{
		font-weight: 600;
		font-size: 16px;
		height: 32px;
		line-height: 32px;
		border: 1px solid #e1e1e1;
	}
	.comment-text,
	.topic-text,
	.reply-text,
	.forum-text{
		line-height: 22px;
	}
}
@media(max-width: 430px){
	.user-wrapper{
		width: 100%;
	}
}

/*加载动画*/
.loading{
	width: 100%;
	background-color: #fff;
	border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.loading-feed{
	margin-bottom: 10px;
}
.loading-box{
	min-height: 200px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loading-spinner {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
}
.loading-spinner span {
	width: 8px;
	height: 8px;
	background: #333;
	border-radius: 50%;
	animation: bounce 0.6s infinite alternate;
}
.loading-spinner span:nth-child(2) {
	animation-delay: 0.2s;
}
.loading-spinner span:nth-child(3) {
	animation-delay: 0.4s;
}
@keyframes bounce {
	from {
		transform: translateY(0);
		opacity: 0.5;
	}
	to {
		transform: translateY(-8px);
		opacity: 1;
	}
}