/* --- 新增：仿截图样式 Start --- */
body { background-color: #f5f7f9; } /* 整体背景设为浅灰 */

/* 内容容器 */
.m-list-container {
    padding: 10px;
}

/* 顶部切换 Tab */
.m-tab-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.m-tab-item {
    width: 48%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    background: #fff;
    color: #333;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
/* 激活状态（橙色） */
.m-tab-item.active {
    background: #ff7f24; /* 截图中的橙色 */
    color: #fff;
}

/* 文章列表卡片 */
.m-news-card {
    display: flex;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    text-decoration: none;
}
.m-news-card:active {
    background-color: #fafafa;
}

/* 左侧图片 */
.card-img {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧内容 */
.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* 防止文字溢出 */
}

/* 标题 */
.card-title {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 4px;
    /* 限制最多2行 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 描述文字 */
.card-desc {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

/* 底部元数据 (标签、阅读量、日期) */
.card-meta {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #999;
}

/* 绿色标签 */
.meta-tag {
    color: #28b87c;
    background: #eaf8f2;
    padding: 1px 5px;
    border-radius: 3px;
    margin-right: 8px;
}

.meta-views {
    margin-right: auto; /* 将日期推到最右边 */
}

/* 底部“没有更多了” */
.m-no-more {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    padding: 20px 0;
}
/* --- 新增：仿截图样式 End --- */

/* --- 手机端分页样式 Start --- */
/* --- PC风格纯文字分页样式 Start --- */
.m-pages {
    padding: 30px 0;      /* 上下留白 */
    text-align: center;   /* 内容居中 */
    font-size: 14px;      /* 字体大小 */
    line-height: 24px;
    color: #333;
}

 /* --- 文章详情卡片样式 (核心部分) --- */
.m-article-box {
    background: #fff;
    padding: 20px 15px;
    border-radius: 8px; /* 圆角白底卡片 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/* 标题：红色、居中、大号字体 */
.m-art-title {
    font-size: 22px;
    color: #ff3333; /* 截图中的红色 */
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    margin: 0 0 10px 0;
}
/* 日期：灰色、居中、下方分割线 */
.m-art-date {
    font-size: 12px;
    color: #999;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee; /* 浅灰分割线 */
    margin-bottom: 20px;
}
/* 正文内容 */
.m-art-content {
    font-size: 16px;       /* 手机端易读字号 */
    line-height: 1.8;      /* 行高宽松 */
    color: #333;
    text-align: justify;   /* 两端对齐 */
    word-wrap: break-word; /* 防止长单词撑破屏幕 */
}

/* 正文段落间距 */
.m-art-content p {
    margin-bottom: 15px;
}
/* 正文图片自适应 (关键) */
.m-art-content img {
    max-width: 100% !important; /* 强制不超过屏幕宽度 */
    height: auto !important;
    display: block;
    margin: 15px auto;          /* 图片居中 */
    border-radius: 4px;
}
/* --- 引用/帖子样式 (截图下方那个类似推特引用的部分) --- */
.m-art-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #ccc;
    margin: 10px 0;
    padding: 10px;
    color: #666;
}
/* 所有的分页链接和文字 */
.m-pages a, 
.m-pages span,
.m-pages li a,
.m-pages li span {
    display: inline-block;
    padding: 0 4px;       /* 文字左右间距 */
    margin: 0 2px;
    background: none;     /* 去掉背景色 */
    border: none;         /* 去掉边框 */
    box-shadow: none;     /* 去掉阴影 */
    color: #555;          /* 默认文字颜色（深灰） */
    text-decoration: none;
}
/* 选中页 / 当前页状态 */
.m-pages .current, 
.m-pages span.current,
.m-pages .active span,
.m-pages li.active span {
    color: #28b87c;       /* 选中变为主题绿色（类似PC端的加粗或高亮） */
    font-weight: bold;    /* 加粗 */
    background: none;     /* 确保无背景 */
    border: none;         /* 确保无边框 */
}
/* 鼠标点击/悬停效果 */
.m-pages a:hover {
    color: #28b87c;
    text-decoration: underline; /* 鼠标经过加下划线，更有PC的感觉 */
}
/* 针对“上一页/下一页”文字特殊处理（可选） */
.m-pages a:first-child, 
.m-pages a:last-child {
    font-family: sans-serif; /* 确保箭头显示正常 */
}
/* --- PC风格纯文字分页样式 End --- */


.zxxz_wrap {
    max-width: 100%;
    width: 600px;
    height: 100px;
    margin: 30px auto;
    padding: 10px;
    background: #FFFFFF;
    border: 2px solid #FAE4D1;
    border-radius: 20px;
    box-sizing: border-box;
    text-indent: 0;
}

.zxxz_wrap .zxxz_left  {
    float: left;
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px;
    display: inline-block;
    margin: 0;
}

.zxxz_wrap .zxxz_right {
    float: right;
    /*width: 486px;*/
    height: 100%;
    width: calc(100% - 100px);
}

.zxxz_wrap .zxxz_right .top {
    width: 100%;
    overflow: hidden;
}

.zxxz_wrap .zxxz_right .top .top_l {
    float: left;
    /*width: 320px;*/
    width: calc(100% - 100px);
}

.zxxz_wrap .zxxz_right .top .top_l .tit {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zxxz_wrap .zxxz_right .top .top_l .tit::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 18px;
    margin-right: 5px;
    background: url("https://js1.18183.com/te5/common/images/hot.png") no-repeat center;
}

.zxxz_wrap .zxxz_right .top .top_l .tags {
    width: 100%;
    overflow: hidden;
    max-height: 23px;
    line-height: 23px;
}

.zxxz_wrap .zxxz_right .top .top_l .tags i {
    /*float: left;*/
    height: 16px;
    margin-right: 8px;
    /*margin-top: 6px;*/
    padding: 0 8px;
    line-height: 16px;
    border: 1px solid #C3C3C3;
    border-radius: 11px;
    color: #999999;
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    display: inline-block;
    
}
.zxxz_wrap .zxxz_right .top .top_l .tags i:nth-child(n+4){
    display: none;
}
.zxxz_wrap .zxxz_right .top .top_l .tags i:nth-of-type(1) {
    border: 1px solid #FF881E;
    color: #FF881E;
}

.zxxz_wrap .zxxz_right .top .top_r {
    float: right;
    /*width: 140px;*/
    /*height: 42px;*/
    /*line-height: 42px;*/
    background: linear-gradient(90deg, #FF5E1E, #FF881E);
    border-radius: 10px;
    /*font-size: 18px;*/
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    
    
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.zxxz_wrap .zxxz_right .top .top_r:hover {
    background: linear-gradient(90deg, #ff4b1e, #ff781e);
}

.zxxz_wrap .zxxz_right .des {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-indent: 0;
    margin-top: 6px;
}

