/* ============================================================
   新闻详情页 news_wz.html —— 与全站风格一致（品牌色/字体/动效/响应式）
   ============================================================ */
.news-wz-page {
    background: #F6F7F8;
    color: #625F5D;
}

/* ---------- 面包屑（沿用列表页 x-aa） ---------- */
.news-wz-page .x-news1 .container2 .x-aa a {
    color: #231815;
    background-color: #FFFFFF;
    border: 1px solid #F0F1F3;
    box-shadow: 0 8px 20px rgba(35, 24, 21, .06);
    border-radius: .1rem;
    display: inline-block;
    margin: 0 .06rem;
    padding: .09rem .22rem;
    text-decoration: none;
    transition: color .3s, background-color .3s, box-shadow .3s;
}
.news-wz-page .x-news1 .container2 .x-aa a:hover {
    color: #FFFFFF;
    background-color: #E73216;
    box-shadow: 0 10px 22px rgba(231, 50, 22, .24);
}

/* ---------- 文章容器 ---------- */
.news-wz-wrap {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1400px;
    padding: .5rem .2rem 1rem;
    position: relative;
    width: 85%;
}
@media (max-width: 991px) {
    .news-wz-wrap { width: 92%; padding-top: .34rem; }
}

/* ---------- 文章主体 ---------- */
.news-wz-article {
    background: #FFFFFF;
    border-radius: .12rem;
    box-shadow: 0 14px 34px rgba(35, 24, 21, .07);
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 14.8rem;
    padding: .66rem .72rem .78rem;
}
.news-wz-head {
    border-bottom: 1px solid #F0F1F3;
    margin-bottom: .42rem;
    padding-bottom: .34rem;
    text-align: center;
}
.news-wz-title {
    color: #231815;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.4;
    margin: 0 0 .26rem;
}
.news-wz-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .12rem .28rem;
    justify-content: center;
}
.news-wz-meta-item {
    color: #9A9591;
    font-size: 13px;
    line-height: 1.6;
}
.news-wz-meta-sort {
    color: #E73216;
}
.news-wz-meta-item::before {
    content: "";
    display: inline-block;
    height: 4px;
    margin: 0 .12rem .04rem 0;
    vertical-align: middle;
    width: 4px;
    background: #E73216;
    border-radius: 50%;
}
.news-wz-meta-date::before,
.news-wz-meta-views::before {
    background: #C9C4C0;
}

/* ---------- 正文富文本 ---------- */
.news-wz-content {
    font-size: 15px;
    line-height: 1.9;
    word-break: break-word;
}
.news-wz-content > p {
    margin: 0 0 .26rem;
}
.news-wz-content h2,
.news-wz-content h3,
.news-wz-content h4 {
    color: #231815;
    font-weight: 700;
    line-height: 1.5;
    margin: .48rem 0 .2rem;
}
.news-wz-content h2 { font-size: 21px; }
.news-wz-content h3 { font-size: 18px; }
.news-wz-content h4 { font-size: 16px; }
.news-wz-content a {
    color: #E73216;
    text-decoration: underline;
}
.news-wz-content strong { color: #231815; font-weight: 700; }
.news-wz-content img {
    border-radius: .1rem;
    display: block;
    height: auto;
    margin: .3rem auto;
    max-width: 100%;
}
.news-wz-content blockquote {
    border-left: 3px solid #E73216;
    color: #8A857F;
    font-style: italic;
    margin: .3rem 0;
    padding: .1rem 0 .1rem .26rem;
}
.news-wz-content ul,
.news-wz-content ol {
    margin: .24rem 0;
    padding-left: .4rem;
}
.news-wz-content li { margin-bottom: .1rem; }
.news-wz-content table {
    border-collapse: collapse;
    margin: .3rem 0;
    max-width: 100%;
    width: 100%;
}
.news-wz-content table th,
.news-wz-content table td {
    border: 1px solid #EAECEE;
    padding: .12rem .18rem;
}
.news-wz-content table th {
    background: #F6F7F8;
    color: #231815;
    font-weight: 700;
}

/* ---------- 上一篇 / 下一篇 ---------- */
.news-wz-prevnext {
    display: flex;
    gap: .24rem;
    margin: .34rem auto 0;
    max-width: 14.8rem;
}
.news-wz-pn {
    background: #FFFFFF;
    border-radius: .1rem;
    box-shadow: 0 10px 24px rgba(35, 24, 21, .05);
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
    padding: .24rem .3rem;
    transition: box-shadow .3s, transform .3s;
}
.news-wz-pn:hover {
    box-shadow: 0 14px 30px rgba(35, 24, 21, .1);
    transform: translateY(-2px);
}
.news-wz-pn a {
    color: #625F5D;
    display: block;
    text-decoration: none;
}
.news-wz-pn-label {
    color: #E73216;
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: .08rem;
}
.news-wz-pn-title {
    color: #625F5D;
    display: block;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-wz-pn a:hover .news-wz-pn-title {
    color: #E73216;
}
.news-wz-next { text-align: right; }
.news-wz-next .news-wz-pn-label { text-align: right; }
.news-wz-next .news-wz-pn-title { text-align: right; }

/* ---------- 相关推荐 ---------- */
.news-wz-related {
    margin: .5rem auto 0;
    max-width: 14.8rem;
}
.news-wz-related-head {
    margin-bottom: .26rem;
}
.news-wz-related-title {
    color: #231815;
    font-size: clamp(22px, 1.9vw, 28px);
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-left: .18rem;
}
.news-wz-related-title::before {
    background: #E73216;
    border-radius: 2px;
    content: "";
    height: .22rem;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
}
.news-wz-related-grid {
    display: grid;
    gap: .24rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-wz-related-card {
    background: #FFFFFF;
    border-radius: .1rem;
    box-shadow: 0 10px 24px rgba(35, 24, 21, .05);
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .3s, transform .3s;
}
.news-wz-related-card:hover {
    box-shadow: 0 16px 32px rgba(35, 24, 21, .12);
    transform: translateY(-4px);
}
.news-wz-related-img {
    aspect-ratio: 16 / 9;
    background: #EEF1F2;
    overflow: hidden;
}
.news-wz-related-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform .5s;
}
.news-wz-related-card:hover .news-wz-related-img img {
    transform: scale(1.05);
}
.news-wz-related-body {
    padding: .18rem .2rem .22rem;
}
.news-wz-related-body h3 {
    color: #231815;
    display: -webkit-box;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0 0 .12rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-wz-related-card:hover .news-wz-related-body h3 {
    color: #E73216;
}
.news-wz-related-body time {
    color: #9A9591;
    font-size: 13px;
}

/* ---------- 响应式 ---------- */
@media (max-width: 767px) {
    .news-wz-article { padding: .5rem .32rem .6rem; }
    .news-wz-prevnext { flex-direction: column; }
    .news-wz-next,
    .news-wz-next .news-wz-pn-label,
    .news-wz-next .news-wz-pn-title { text-align: left; }
    .news-wz-related-grid { grid-template-columns: 1fr; }
    .news-wz-meta { gap: .08rem .2rem; }
}
@media (max-width: 380px) {
    .news-wz-title { font-size: 22px; }
    .news-wz-content { font-size: 14px; }
}
