        /* 全局移动端优化 */
        * {
            box-sizing: border-box;}
        html, body {
            overflow-x: hidden;
            width: 100%;}
        img {
            max-width: 100%;
            height: auto;}

        /* 新闻详情页样式 */
        .breadcrumb {
            background: #f5f5f5;
            padding: 15px 0;
            margin-bottom: 20px;}
        .breadcrumb .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;}
        .breadcrumb a {
            color: #666;
            text-decoration: none;}
        .breadcrumb a:hover {
            color: #07ae71;}
        .breadcrumb span {
            color: #333;
            margin: 0 8px;}
        .news-detail-page {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 15px;}
        .news-detail-container {
            background: #fff;
            padding: 40px 60px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);}
        .news-detail-header {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 2px solid #07ae71;
            margin-bottom: 30px;}
        .news-detail-title {
            font-size: 32px;
            color: #333;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 20px;}
        .news-detail-meta {
            font-size: 14px;
            color: #999;}
        .news-detail-meta span {
            margin: 0 15px;}
        .news-detail-meta span::before {
            margin-right: 5px;}
        .news-detail-meta .author::before {
            content: "✍️";}
        .news-detail-meta .date::before {
            content: "📅";}
        .news-detail-meta .views::before {
            content: "👁";}
        .news-detail-meta .source::before {
            content: "📰";}
        .news-detail-content {
            font-size: 16px;
            line-height: 2;
            color: #444;
            margin-bottom: 40px;}
        .news-detail-content p {
            margin-bottom: 20px;
            text-indent: 2em;}
        .news-detail-content img {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            object-fit: contain;}
        .news-detail-content h3 {
            font-size: 22px;
            color: #333;
            margin: 30px 0 15px;
            padding-left: 15px;
            border-left: 4px solid #07ae71;}
        .news-detail-footer {
            padding-top: 30px;
            border-top: 1px solid #eee;}
        .news-detail-tags {
            margin-bottom: 20px;}
        .news-detail-tags span {
            display: inline-block;
            background: #f5f5f5;
            padding: 5px 15px;
            margin-right: 10px;
            border-radius: 3px;
            font-size: 14px;
            color: #666;}
        .news-detail-share {
            text-align: center;
            padding: 20px 0;}
        .news-detail-share .share-title {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;}
        .news-detail-share .share-buttons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #f5f5f5;
            color: #666;
            margin: 0 5px;
            border-radius: 50%;
            transition: all 0.3s;}
        .news-detail-share .share-buttons a:hover {
            background: #07ae71;
            color: #fff;}
        .news-navigation {
            padding: 30px 0;
            border-top: 1px solid #eee;}
        .news-navigation a {
            display: block;
            padding: 15px 0;
            color: #666;
            transition: all 0.3s;}
        .news-navigation a:hover {
            color: #07ae71;
            padding-left: 10px;}
        .news-navigation .label {
            font-size: 14px;
            color: #999;
            margin-right: 10px;}
        .related-news {
            margin-top: 60px;}
        .related-news-title {
            font-size: 24px;
            color: #333;
            font-weight: bold;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #07ae71;}
        .related-news-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;}
        .related-news-item {
            background: #fff;
            border: 1px solid #e5e5e5;
            transition: all 0.3s;}
        .related-news-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-color: #07ae71;}
        .related-news-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;}
        .related-news-item .item-content {
            padding: 20px;}
        .related-news-item h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;}
        .related-news-item:hover h4 {
            color: #07ae71;}
        .related-news-item .item-date {
            font-size: 13px;
            color: #999;}
        /* 默认占位图样式 */
        .news-detail-content img {
            background: #f5f5f5;}
        .related-news-item img {
            background: #f5f5f5;}
        /* 移动端响应式优化 */
        @media (max-width: 1024px) {
            .news-detail-page {
                max-width: 100%;
                padding: 0 20px;}
        }

        @media (max-width: 768px) {
            /* 头部区域 */
            .wrapper.header .inner {
                padding: 0 15px;}
            .head {
                flex-wrap: wrap;}
            .sitelogo img {
                max-width: 180px;
                height: auto;}

            /* 面包屑 */
            .breadcrumb {
                font-size: 13px;
                padding: 12px 0;
                margin-bottom: 20px;}
            .breadcrumb .inner {
                padding: 0 15px;}

            /* 详情页主容器 */
            .news-detail-page {
                padding: 0 15px;
                margin-bottom: 40px;}
            .news-detail-container {
                padding: 25px 20px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);}

            /* 详情页头部 */
            .news-detail-header {
                padding-bottom: 20px;
                margin-bottom: 20px;
                border-bottom: 2px solid #07ae71;}
            .news-detail-title {
                font-size: 22px;
                margin-bottom: 15px;
                line-height: 1.4;}
            .news-detail-meta {
                font-size: 13px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;}
            .news-detail-meta span {
                margin: 5px 10px 5px 0;}

            /* 详情正文 */
            .news-detail-content {
                font-size: 15px;
                line-height: 1.8;
                margin-bottom: 30px;
                word-wrap: break-word;
                overflow-wrap: break-word;}
            .news-detail-content p {
                margin-bottom: 15px;
                text-indent: 2em;}
            .news-detail-content h3 {
                font-size: 18px;
                margin: 20px 0 12px;
                padding-left: 12px;}
            .news-detail-content img {
                margin: 20px auto;
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block;}

            /* 标签 */
            .news-detail-tags {
                margin-bottom: 15px;}
            .news-detail-tags span {
                padding: 4px 12px;
                font-size: 13px;
                margin-right: 8px;
                margin-bottom: 8px;
                display: inline-block;}

            /* 分享 */
            .news-detail-share {
                padding: 15px 0;}
            .news-detail-share .share-title {
                font-size: 13px;
                margin-bottom: 8px;}
            .news-detail-share .share-buttons a {
                width: 38px;
                height: 38px;
                line-height: 38px;
                margin: 0 4px;}

            /* 上下篇导航 */
            .news-navigation {
                padding: 20px 0;}
            .news-navigation a {
                padding: 12px 0;
                font-size: 14px;
                line-height: 1.5;}
            .news-navigation .label {
                display: block;
                margin-bottom: 5px;}

            /* 相关新闻 */
            .related-news {
                margin-top: 40px;}
            .related-news-title {
                font-size: 20px;
                margin-bottom: 20px;
                padding-bottom: 12px;}
            .related-news-list {
                grid-template-columns: 1fr;
                gap: 15px;}
            .related-news-item {
                border-radius: 4px;
                overflow: hidden;}
            .related-news-item img {
                width: 100%;
                height: 180px;
                object-fit: cover;
                display: block;}
            .related-news-item .item-content {
                padding: 15px;}
            .related-news-item h4 {
                font-size: 15px;
                margin-bottom: 8px;}
            .related-news-item .item-date {
                font-size: 12px;}

            /* 底部 */
            .main6 .inner {
                flex-direction: column;
                padding: 30px 15px;}
            .main6 .link,
            .main6 .bq,
            .main6 .qrcode {
                width: 100%;
                margin-bottom: 20px;
                text-align: center;}
        }

        @media (max-width: 480px) {
            /* Logo */
            .sitelogo img {
                max-width: 150px;}

            /* 面包屑 */
            .breadcrumb {
                font-size: 12px;
                padding: 10px 0;}
            .breadcrumb span {
                margin: 0 5px;}

            /* 详情页 */
            .news-detail-page {
                padding: 0 10px;}
            .news-detail-container {
                padding: 20px 15px;}

            /* 标题 */
            .news-detail-title {
                font-size: 18px;
                line-height: 1.4;}
            .news-detail-meta {
                font-size: 12px;}
            .news-detail-meta span {
                margin: 4px 8px 4px 0;}

            /* 正文 */
            .news-detail-content {
                font-size: 14px;
                line-height: 1.7;}
            .news-detail-content p {
                margin-bottom: 12px;}
            .news-detail-content h3 {
                font-size: 16px;
                margin: 15px 0 10px;
                padding-left: 10px;}
            .news-detail-content img {
                margin: 15px auto;
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;}

            /* 标签 */
            .news-detail-tags span {
                padding: 3px 10px;
                font-size: 12px;}

            /* 分享按钮 */
            .news-detail-share .share-buttons a {
                width: 36px;
                height: 36px;
                line-height: 36px;
                font-size: 14px;}

            /* 导航 */
            .news-navigation a {
                font-size: 13px;
                padding: 10px 0;}

            /* 相关新闻 */
            .related-news {
                margin-top: 30px;}
            .related-news-title {
                font-size: 18px;
                margin-bottom: 15px;}
            .related-news-item img {
                width: 100%;
                height: 160px;
                object-fit: cover;
                display: block;}
            .related-news-item .item-content {
                padding: 12px;}
            .related-news-item h4 {
                font-size: 14px;}
        }

        @media (max-width: 375px) {
            .news-detail-title {
                font-size: 16px;}
            .news-detail-content {
                font-size: 13px;}
            .news-detail-content img {
                margin: 12px auto;}
            .related-news-item img {
                width: 100%;
                height: 140px;
                object-fit: cover;
                display: block;}
        }