        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 5px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(255, 182, 193, 0.2);
        }
        .header {
            text-align: left;
            margin-bottom: 20px;
            padding: 5px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(255, 182, 193, 0.2);
        }
        .news-detail {
            padding: 5px;
        }
        .news-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
        }
        .news-meta {
            color: #666;
            font-size: 14px;
            text-align: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .news-type {
            display: inline-block;
            background-color: #ffb6c1;
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 14px;
            margin-right: 10px;
        }
        .news-content {
            line-height: 1.8;
            font-size: 16px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .news-content p {
            white-space: normal !important;
            text-wrap: wrap !important;
        }
        .news-content span {
            white-space: normal !important;
            display: inline;
        }
        .news-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 15px auto;
            border-radius: 5px;
        }
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .news-navigation a {
            color: #ff4757;
            text-decoration: none;
            max-width: 45%;
            padding: 8px 12px;
            border: 1px solid #ffb6c1;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .news-navigation a:hover {
            background-color: #ffebee;
            text-decoration: underline;
        }
        .back-link {
            display: block;
            text-align: center;
            margin-top: 20px;
        }
        .back-link a {
            color: #ff4757;
            text-decoration: none;
            font-size: 16px;
        }
        .back-link a:hover {
            text-decoration: underline;
        }
        .view-count {
            color: #888;
            font-size: 14px;
            margin-left: 15px;
        }
        .footer {
            font-size: 12px;
            color: #888;
            text-align: center;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        /* 热门资讯样式 */
        .hot-news {
            margin-top: 30px;
            border-top: 1px solid #eee;
            padding-top: 5px;
        }
        .hot-news h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }
        .hot-news ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .hot-news li {
            margin-bottom: 10px;
            padding: 1px 0;
            border-bottom: 1px dashed #eee;
        }
        .hot-news a {
            color: #000000;
            text-decoration: none;
            transition: all 0.3s;
        }
        .hot-news a:hover {
            color: #ff6b81;
            text-decoration: underline;
        }
        .hot-news-type {
            display: inline-block;
            background-color: #ffb6c1;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 12px;
            margin-right: 8px;
        }