.feed-control{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.page-select{
	position: relative;
	margin-bottom: 10px;
	padding: 16px 18px;
	background-color: #fff;
	border-radius: 4px;
}
/*.page-select::after{
	content: "";
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, .22);
	bottom: 0;
	left: 0;
	display: block;
}*/
.page-select ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.page-select ul{
	display: flex;
	gap: 10px;
}
.page-select li{
	display: flex;
}
.page-select li a{
	padding: 5px 10px;
	font-size: 14px;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, .22);
    border-radius: 4px;
    color: #1d1d1f;
}
.page-select li a svg path{
	fill: #1d1d1f;
}
.page-select li a.active{
	background-color: #0f5ada;
	border-color: #0f5ada;
	color: #fff;
}
.page-select li a.active svg path{
	fill: #fff;
}
.page-select li a:not(.active):hover{
	background-color: #eee;
}
.top-control{
	margin-bottom: 10px;
}
.order-select{
	display: flex;
	align-items: center;
	gap: 6px;
}
.order-select button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    color: #8b8b8b;
    font-size: 12px;
    border: 1px solid #eee;
    padding: 0 10px;
    height: 24px;
    line-height: 22px;
    border-radius: 11px;
}
.order-select button.active {
    border-color: #2468de;
    background-color: #2468de;
    color: #fff;
    cursor: not-allowed;
}
.feed-loop{
}
.feed-loop ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.topic{
	padding: 16px 18px;
	background-color: #fff;
	border-radius: 4px;
	margin-bottom: 10px;
	padding-bottom: 8px;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.topic a{
	color: inherit;
}
.topic a:hover{
	color: #0f5ada;
}
.topic a:hover svg path{
	fill: #0f5ada;
}
.topic .topic-top{
	display: flex;
	align-items: center;
	gap: 20px;
}
.topic .topic-top .r{
	width: calc(100% - 72px);
}
.topic .topic-avatar{
	width: 52px;
}
.topic .topic-avatar a{
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	overflow: hidden;
}
.topic .topic-avatar a img{
	width: 100%;
	height: 100%;
}
.topic .topic-middle{
	padding-left: 72px;
}
.topic-author{
	font-size: 15px;
	color: #1d1d1f;
	line-height: 1.3;
	font-weight: 600;
	margin-bottom: 4px;
}
.topic-author a{
	color: inherit;
}
.topic-author a:hover{
	color: #0f5ada;
}
.topic-release{
	color: #9499a0;
	line-height: 1.3;
	font-size: 13px;
}
.topic-title{
	font-size: 15px;
	line-height: 1.5;
	color: #1d1d1f;
	font-weight: 600;
	margin-top: 8px;
}
.topic-content{
	line-height: 1.5;
	font-size: 15px;
	margin-top: 8px;
	color: #333;
	white-space: pre-line;
    word-break: break-all;
}
.topic-content .read-more-btn{
	text-decoration: underline;
}
.topic-images{
	margin-top: 12px;
}
.topic-images .image-list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 420px;
}
.topic-images .image-big{
	margin-bottom: 10px;
	border: 1px solid rgba(0, 0, 0, .22);
	border-radius: 8px;
    overflow: hidden;
}
.topic-images .image-big img{
	width: 100%;
	height: auto;
	cursor: zoom-out;
}
.topic-images.active .image-list{
	max-width: 100%;
}
.topic-images .image-box{
	width: 130px;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	overflow: hidden;
}
.topic-images.active .image-box{
	width: calc( (100% - 80px) / 9);
}
.topic-images .image-box.active{
	border: 2px solid #ff8200;
}
.topic-images .image-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: zoom-in;
}
.topic-parent{
	margin-top: 14px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.topic-parent .from{
	display: inline-flex;
	gap: 4px;
	align-items: center;
	height: 24px;
    line-height: 24px;
    background-color: #f6f7f9;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 12px;
    overflow: hidden;
	color: #1d1d1f;
}
.topic-parent .from.from-topic-tag{
	color: #2873c5;
}
.topic-parent .from.from-topic-tag:hover{
	color: #0f5ada;
}
.topic-parent .from svg path{
	fill: #1d1d1f;
}
.topic-parent .from.from-topic-tag svg path{
	fill: #2873c5;
}
.topic-bottom{
	margin-top: 10px;
}
.topic-actions{
	display: flex;
	align-items: center;
	gap: 20px;
}
.topic-actions .likes{
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
}
.topic-actions .views,
.topic-actions .reply,
.topic-actions .likes{
	display: inline-flex;
    align-items: center;
    width: calc(100% / 3);
    gap: 4px;
    font-size: 14px;
    color: #777;
    justify-content: center;
    padding: 0;
    height: 40px;
    line-height: 40px;
}
.topic-actions .views svg path,
.topic-actions .reply svg path,
.topic-actions .likes svg path{
	fill: #777;
}
/*分页*/
.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;
}
/*标题*/
.archive-head{
	padding: 16px 18px;
	background-color: #fff;
	border-radius: 4px;
	margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.archive-head-box{
	display: flex;
	justify-content: space-between;    
	align-items: flex-start;
}
.archive-head .archive-head-left{
	width: 52px;
}
.archive-head .archive-head-left a,
.archive-head .archive-head-left span{
	width: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	border-radius: 4px;
	overflow: hidden;
}
.archive-head .archive-head-left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.archive-head .archive-head-right{
	width: calc(100% - 72px);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.archive-head .archive-head-title{
	font-size: 15px;
	line-height: 1.5;
	color: #1d1d1f;
	font-weight: 600;
}
.archive-head .archive-head-description{
	font-size: 14px;
	line-height: 1.5;
	color: rgba(0, 0, 0, .6);
}
/*没有帖子*/
.no-result{
	padding: 16px 18px;
	border-radius: 4px;
	background-color: #fff;
	margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.no-result .no-result-content{
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.no-result-image{
	width: 70%;
}
.no-result-image img{
	width: 100%;
	height: auto;
}
.no-result-text{
	line-height: 1.5;
	color: rgba(0, 0, 0, .6);
	font-size: 15px;
}
/*图标*/
.topic-corner{
	position: absolute;
	display: flex;
	gap: 10px;
	align-items: center;
	right: 18px;
	top: 16px;
}
.topic-box{
	position: relative;
}
.topic-icon-box{
	display: flex;
	gap: 10px;
	align-items: center;
}
.topic-icon{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.topic-icon svg{
	width: 20px;
	height: 20px;
}
.topic-icon svg path{
	fill: rgba(0, 0, 0, .6);
}
.topic-icon.super-sticky svg,
.topic-icon.sticky svg{
	width: 18px;
	height: 18px;
}
.topic-icon.super-sticky svg path{
	fill: #ff211d;
}
.topic-icon.sticky svg path{
	fill: #007eff7a;
}
.topic-icon.hot svg path{
	fill: red;
}
.topic-icon.new svg path{
	fill: green;
}
.topic-function-popup-btn button{
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.topic-function-popup-btn button svg path{
	fill: rgba(0, 0, 0, .6);
}
.topic-function-popup {
    position: absolute;
    right: 0;
    top: 26px;
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    background: #fff;
    display: inline-block; /* 让宽度跟最长按钮匹配 */
    z-index: 2;
}

.topic-function-popup ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; /* 让ul占满父容器宽度 */
}

.topic-function-popup ul li {
    margin: 0;
}

.topic-function-popup ul li button {
    display: block; /* 按钮块级元素 */
    width: 100%;   /* 宽度撑满li和ul */
    padding: 15px 20px;
    white-space: nowrap; /* 文字不换行 */
    text-align: left; /* 文字左对齐，可按需改center或right */
    border: none;
    background: none;
    cursor: pointer;

    /* 其他样式 */
    font-size: 14px;
    line-height: 1;
}
.topic-function-popup ul li button:hover{
	background-color: #f8f8fb;
}



@media(max-width: 734px){
	.list-pagination{
		width: 100%;
	}
	.list-pagination .pagination span{
		display: none;
	}
	.list-pagination .pagination{
		width: 100%;
		justify-content: space-between;
	}
	.list-pagination .pagination span:first-child,
	.list-pagination .pagination span:last-child{
		display: flex;
		width: calc(50% - 8px);
	}
	.list-pagination .pagination span:first-child,
	.list-pagination .pagination span:last-child{
	}
	.list-pagination .pagination button {
        font-weight: 600;
        font-size: 16px;
        height: 32px;
        line-height: 32px;
        border: 1px solid #e1e1e1;
    }
    .list-pagination .pagination button:disabled {
	    cursor: not-allowed;
	    color: #9e9e9e;
	}
	.order-select{
		display: none;
	}
}
@media(max-width: 734px){
	.topic .topic-avatar,
	.archive-head .archive-head-left{
		width: 40px;
	}
	.topic .topic-top{
		gap: 8px;
	}
	.topic .topic-middle{
		padding-left: 48px;
	}
	.archive-head .archive-head-right{
		width: calc(100% - 48px);
		gap: 0;
	}
	.topic-images .image-box{
		width: calc((100% - 20px ) / 3);
	}
	.topic-images.active .image-box{
		width: calc((100% - 40px) / 5);
	}
}