 /* 主体容器 */
        .news-wrapper {
            max-width: 1200px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }
        /* 页面标题区 */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .page-header h1 {
            font-family: "华文楷书", cursive;
            font-size: 36px;
            color: #c49a6c;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        .page-header h1:before, .page-header h1:after {
            content: "☯";
            font-size: 24px;
            color: #d4b87a;
            margin: 0 15px;
            opacity: 0.6;
        }
        .page-header p {
            color: #b8946a;
            font-size: 15px;
        }
 /* 新闻列表 - 无图片，纯文字加图标 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 45px;
        }
        /* 新闻条目卡片 */
        .news-item {
            background: #fffefb;
            border-radius: 20px;
            padding: 22px 28px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            border: 1px solid #f0dc9c;
            cursor: pointer;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            border-color: #d4b87a;
            background: #fffef9;
        }
        .news-left {
            flex: 1;
            min-width: 200px;
        }
        .news-category {
            display: inline-block;
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 11px;
            color: white;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 18px;
            font-weight: 700;
            color: #5e3a22;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-summary {
            font-size: 13px;
            color: #8a6a4a;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .news-meta {
            display: flex;
            gap: 20px;
            font-size: 12px;
            color: #b8946a;
        }
        .news-meta i {
            margin-right: 5px;
            width: 16px;
        }
        .news-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fdf3e0, #faeccc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #d4a76a;
            transition: 0.3s;
        }
        .news-item:hover .news-icon {
            transform: scale(1.05);
            color: #c49a6c;
        }
        /* 分页样式 */
        .pagination-wrap {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .layui-laypage {
            background: #fffef7;
            border-radius: 50px;
            padding: 6px 12px;
            border: 1px solid #f0dc9c;
            display: inline-block;
        }
        .layui-laypage a, .layui-laypage span {
            color: #b8946a;
            border-radius: 30px;
            margin: 0 5px;
            padding: 0 12px;
            height: 32px;
            line-height: 32px;
        }
        .layui-laypage .layui-laypage-curr {
            background-color: #d4b87a;
        }
        .layui-laypage .layui-laypage-curr em {
            color: #fff;
        }
        .layui-laypage a:hover {
            color: #d4a76a;
        }
        /* 底部 */
        .footer {
            background: linear-gradient(98deg, #5e4630, #7a5a42);
            border-top: 3px solid #f5dc9c;
            padding: 30px 40px;
            margin-top: 40px;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo i { font-size: 28px; color: #f5dc9c; }
        .footer-logo span { font-family: "华文楷书", cursive; font-size: 20px; color: #fff5e0; }
        .footer-copyright { color: #e0c8a0; font-size: 13px; }
        /* 右侧在线客服 - 鲜亮多彩 */
        .online-service {
            position: fixed;
            right: 20px;
            bottom: 80px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .service-item {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 6px 14px rgba(0,0,0,0.15);
            font-size: 26px;
            color: white;
        }
        .service-item:nth-child(1) { background: linear-gradient(135deg, #f0a87c, #e8885c); border: 1px solid #f0c48a; }
        .service-item:nth-child(2) { background: linear-gradient(135deg, #5cbc7c, #3c9c5c); border: 1px solid #8ce0a0; }
        .service-item:nth-child(3) { background: linear-gradient(135deg, #7c9ce0, #5c7cc0); border: 1px solid #a0bcec; }
        .service-item:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 22px rgba(0,0,0,0.2);
        }
        @media (max-width: 760px) {
            .top-nav { padding: 0 20px; }
            .nav-menu a { padding: 12px 8px; font-size: 12px; }
            .news-item { flex-direction: row; padding: 18px; }
            .news-icon { width: 48px; height: 48px; font-size: 22px; }
            .news-title { font-size: 16px; }
        }
        @media (max-width: 550px) {
            .news-item { flex-direction: column; align-items: flex-start; }
            .news-icon { align-self: flex-end; }
        }

         /* 主体容器 */
        .detail-wrapper {
            max-width: 1000px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }
        /* 新闻详情卡片 */
        .detail-card {
            background: #fffefb;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(60,40,20,0.15);
            border: 1px solid #f0dc9c;
        }
        .detail-header {
            background: linear-gradient(115deg, #fdf3e0, #faeccc);
            padding: 28px 32px;
            border-bottom: 1px solid #e8d4b0;
        }
        .detail-category {
            display: inline-block;
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 12px;
            color: white;
            font-weight: 500;
            margin-bottom: 15px;
        }
        .detail-title {
            font-size: 28px;
            font-weight: 700;
            color: #5e3a22;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 13px;
            color: #b8946a;
        }
        .detail-meta i {
            margin-right: 6px;
            width: 16px;
        }
        .detail-content {
            padding: 32px;
            line-height: 1.9;
            font-size: 16px;
            color: #4a3724;
        }
        .detail-content p {
            margin-bottom: 20px;
        }
        /* 上下篇导航 */
        .news-nav {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            padding: 20px 32px 32px;
            border-top: 1px solid #e8dcc8;
        }
        .nav-prev, .nav-next {
            flex: 1;
            min-width: 200px;
            background: #fef8ef;
            border-radius: 20px;
            padding: 16px 20px;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid #f0dc9c;
        }
        .nav-prev:hover, .nav-next:hover {
            background: #fffef7;
            border-color: #d4b87a;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.05);
        }
        .nav-label {
            font-size: 12px;
            color: #b8946a;
            margin-bottom: 8px;
        }
        .nav-label i {
            margin-right: 5px;
        }
        .nav-title {
            font-size: 14px;
            font-weight: 600;
            color: #5e3a22;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .nav-next {
            text-align: right;
        }
        .nav-next .nav-title {
            white-space: nowrap;
        }
        .no-data {
            color: #b8946a;
            font-style: italic;
        }
        /* 返回列表按钮 */
        .back-btn {
            text-align: center;
            margin-top: 20px;
        }
        .back-btn a {
            display: inline-block;
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            border: none;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 14px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        .back-btn a:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(212,156,92,0.3);
        }