/* ===== 布局 ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.main-left {
	width: 808px;
    display: flex;
    flex-direction: column;
}
.main-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* ===== 左栏内容 ===== */
.news-list {
    margin-top: 12px;
}
.news-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-list li {
    background: #fff;
    box-shadow: 0 0 0 1px #ececec;
    padding: 16px;
    margin-bottom: 15px;
}
.news-inner {
    display: flex;
    align-items: flex-start;
}
.news-thumb {
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 20px;
    flex-shrink: 0;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-content {
    flex: 1;
    min-width: 0;
}
.news-title {
    margin-bottom: 10px;
    line-height: 1.5;
}
.news-title a {
    font-size: 16px;
    font-weight: 700;
    color: #131715;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title a:hover {
    color: #23c268;
}
.news-meta {
    color: #a7a8a7;
    font-size: 12px;
    margin-top: 12px;
}
.news-desc {
    color: #7f8381;
    font-size: 12px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 无图 */

.no-thumb .news-inner {
    display: block;
}
.no-thumb .news-title {
    margin-bottom: 12px;
}
.no-thumb .news-desc {
    margin-top: 10px;
}

@media(max-width:768px) {
.news-inner {
    flex-direction: column;
}
.news-thumb {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 15px;
}
}
















/* ===== 右栏 ===== */
/* === 通用模块容器 === */
.module-tags, .module-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #f1f1f1;
    padding: 0 20px 25px 20px;
}
/* === 顶部标题栏 === */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 18px;
    height: 56px;
    line-height: 56px;
}
.module-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    position: relative;
}
.module-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #22c55e;
    border-radius: 1px;
}
.module-header a {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.module-header a i {
    color: inherit;
    transition: all .2s;
}
.module-header a:hover {
    color: #22c55e;
}
.module-header a:hover i {
    transform: translateX(2px);
}

/* === 内容模块 === */
.module-block .module-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.module-block .module-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
}
/* 单个内容块 */
.block-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 9px 10px;
    margin: 0 -8px;
}
.block-entry:hover {
    background: #f2fbf6;
    border-radius: 8px;
}
.block-entry:first-child {
	margin-top: -7px;
}
.block-entry:last-child {
	margin-bottom: -9px;
}
.entry-thumb {
    width: 60px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
}
.entry-thumb img {
    width: 100%;
    height: 100%;
}
/* 右侧信息区 */
.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 186px;
}
.entry-info .entry-name {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
}
.entry-info p {
    font-size: 12px;
    color: #9d9d9d;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
}
/* 评分与热度 */
.entry-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #7a7d7a;
}
.entry-meta .score {
    color: #23c268;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
}
.entry-meta .score i {
    font-size: 10px;
    padding-right: 2px;
}

/* 响应式 */
@media(max-width:900px) {
.main-container {
    flex-direction: column;
}
.main-right {
    width: 100%;
}
.app-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.info-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
/* 评论块 */
/* === 整个评分+评论白块 === */
.rating-comment-wrap {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    padding: 24px;
}
/* ===== 顶部快爆评分部分 ===== */
.rating-comment-wrap .rating-section {
    display: flex;
    flex-direction: column;
    padding: 20px 32px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
}
.rating-comment-wrap .rating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.rating-comment-wrap .rating-left {
    flex: 1;
    min-width: 220px;
}
.rating-comment-wrap .rating-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.rating-comment-wrap .rating-title .bi-r-circle::before {
    font-weight: bold!important;
    padding-left: 2px;
    font-size: 13px;
}
.rating-comment-wrap .rating-score {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.rating-comment-wrap .rating-stars {
    color: #d0d0d0;
    font-size: 16px;
    margin-bottom: 18px;
}
.rating-comment-wrap .rating-stars i {
    margin-right: 3px;
}
/* 右侧评分条（星星右对齐 + 横条） */
.rating-comment-wrap .rating-right {
    width: 51%;
    min-width: 300px;
    margin-top: 18px;
}
.rating-comment-wrap .rating-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rating-comment-wrap .rating-line {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-line .stars-text {
    width: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rating-comment-wrap .rating-line .stars-text i {
    color: #d0d0d0;
    font-size: 12px;
    margin-left: 2px;
}
.rating-comment-wrap .rating-line .bar {
    flex: 1;
    height: 6px;
    background: #f2f2f2;
    border-radius: 3px;
    margin-left: 10px;
}
/* 下方一行：extra + users */
.rating-comment-wrap .rating-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-footer .rating-extra span {
    color: #666;
}
.rating-comment-wrap .rating-footer .rating-users {
    color: #999;
}
/* ===== 评论区 ===== */
.rating-comment-wrap .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.rating-comment-wrap .comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 20px;
    margin-right: 10px;
}
.rating-comment-wrap .comment-label {
    font-size: 16px;
    color: #a7a8a7;
    margin-right: 10px;
}
.rating-comment-wrap .comment-stars {
    font-size: 20px;
    color: #d0d0d0;
}
.rating-comment-wrap .comment-stars i {
    margin-right: 4px;
}
/* 输入框 */
.rating-comment-wrap .comment-box {
    background: #fafbfc;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}
.rating-comment-wrap .comment-text {
    width: 100%;
    height: 100px;
    border: none;
    resize: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    padding: 14px 16px;
}
.rating-comment-wrap .comment-text::placeholder {
color:#999;
}
/* 发表评论按钮（靠右） */
.rating-comment-wrap .comment-submit {
    display: inline-block;
    background: #7be39b;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 36px;
    border: none;
    border-radius: 30px;
    margin-top: 16px;
    cursor: pointer;
    transition: .2s;
    float: right;
}
.rating-comment-wrap .comment-submit:hover {
    background: #6cd28d;
}
/* ===== 底部提示块 ===== */
.comment-bottom {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    margin-top: 20px;
    padding: 70px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.comment-bottom span {
    color: #666;
}


/*page*/
.pages {
    display: grid;
    background-color: #fff;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 24px 0;
	border-radius: 0 0 8px 8px;
}
.pages ul {
    margin: 0 auto;
}
.pages li {
	text-decoration:none;
	margin:0 4px;
	float:left;
}
.pages li.liuye,.pages li.active {
	display:inline-block;
}
.pages li a {
	display:inline-block;
	padding:6px 11px;
	background-color:#fff;
	border:1px solid #ddd;
	border-radius:4px;
	color:#121212;
	text-decoration:none;
	font-size:14px;
}
.pages li a:hover {
	color: #fff!important;
}
.pages li.active span,.pages li:hover span,.pages li a:hover,.pages li:hover a {
	display:inline-block;
	padding:6px 11px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#fff;
	background-color:#40e788;
	border:1px solid #40e788;
}
.pages li.shouye span{
	display:inline-block;
	padding:5px 14px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#ccc;
	border:1px solid #ccc;
}
