       /* 行业动态页面特有样式 */
        
        /* 页面标题区 */
        .news-hero {
            text-align: center;
            margin: 2rem auto 3rem;
        }
        .news-hero h1 {
            font-size: 3.5rem;
            font-weight: 450;
            color: #4d3e2e;
            letter-spacing: -0.02em;
        }
        .news-hero p {
            font-size: 1.3rem;
            color: #7f6e5d;
            max-width: 800px;
            margin: 1rem auto 0;
        }

        /* 文章网格：三列布局 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin: 4rem 0;
        }

        /* 文章卡片 */
        .news-card {
            background: #ffffff;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(140, 100, 70, 0.1);
            transition: all 0.25s ease;
            border: 1px solid #f0e1d2;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px -15px #c8aa8a;
            border-color: #dbb88c;
        }

        .news-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            border-radius: 0; /* 卡片本身已有圆角，内部图片无圆角 */
        }
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.8rem 1.5rem 1.5rem;
        }

        /* 标题样式：H3内链接无下划线 */
        .news-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        .news-content h3 a {
            text-decoration: none;  /* 去除下划线 */
            color: #4d3e2e;
            transition: color 0.2s;
        }
        .news-content h3 a:hover {
            color: #b58d63;  /* 暖色悬停 */
        }

        .news-meta {
            font-size: 0.9rem;
            color: #9b846d;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .news-meta i {
            color: #b58d63;
            font-size: 0.8rem;
        }

        .news-excerpt {
            color: #7f6e5d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .read-more {
            color: #b58d63;
            font-weight: 500;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.2s;
        }
        .read-more i {
            font-size: 0.8rem;
        }
        .read-more:hover {
            gap: 0.6rem;
            color: #9e784c;
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin: 4rem 0 2rem;
            flex-wrap: wrap;
        }
        .page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 0.8rem;
            background: #ffffff;
            border: 1px solid #edd7c4;
            border-radius: 12px;
            color: #5b4637;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }
        .page-num i {
            font-size: 0.9rem;
            color: #b58d63;
        }
        .page-num:hover {
            background: #fcf6ef;
            border-color: #dbb88c;
            color: #4d3e2e;
            transform: translateY(-2px);
        }
        .page-num-current {
            background: #dbb88c;
            border-color: #c9a472;
            color: #ffffff;
            pointer-events: none;
        }
        .page-num-current i {
            color: #ffffff;
        }
        .page-num span {
            display: inline-block;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .pagination {
                gap: 0.3rem;
            }
            .page-num {
                min-width: 38px;
                height: 38px;
                padding: 0 0.5rem;
            }
        }