        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        
        body {
            background-color: #f5f5f5;
            padding: 12px;
            max-width: 100%;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
       @media (min-width: 768px) {
    body {
        max-width: 30%; /* 电脑端设置为50% */
        margin: 0 auto;
    }
} 
        
        
        /* Header Styles (same as before) */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            position: relative;
        }
        
        .logo {
            width: 100px;
            height: 40px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
               .search-area {
            display: flex;
            align-items: center;
            flex: 1;
            margin-left: 12px;
            position: relative;
        }
        
        .search-box {
            display: flex;
            flex: 1;
            position: relative;
        }
        
        .search-box input[type="text"] {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
            background-color: #f9f9f9;
            padding-right: 45px;
        }
        
        .search-box button[type="submit"] {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            font-size: 16px;
        }
        
        .menu-btn {
            margin-left: 10px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
            z-index: 100;
        }
        
        .menu-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            width: 200px;
            padding: 10px 0;
            z-index: 99;
            display: none;
        }
        
        .menu-dropdown.show {
            display: block;
        }
        
        .menu-category {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            transition: background-color 0.2s;
        }
        
        .menu-category:hover {
            background-color: #f5f5f5;
        }
        
       .slider-container {
            position: relative;
            width: 100%;
            height: 180px;
            margin-bottom: 16px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            text-align: center;
        }
        
        .slide-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            transform: translateY(-50%);
        }
        
        .slider-nav button {
            background-color: rgba(255,255,255,0.5);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .news-item {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            padding: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            text-decoration: none;
            color: inherit;
        }
        
        .news-image {
            width: 100px;
            height: 80px;
            border-radius: 8px;
            background-color: #e0e0e0;
            margin-right: 12px;
            flex-shrink: 0;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-title {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 6px;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            padding-bottom: 6px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .news-date {
            font-size: 12px;
            color: #999;
            display: flex;
            align-items: center;
        }
        
        .news-date::before {
            content: "📅";
            margin-right: 5px;
            font-size: 14px;
        }
        
        .read-more {
            background-color: #4a90e2;
            color: white;
            border: none;
            padding: 6px 15px;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            background-color: #3a7bc8;
            transform: translateY(-1px);
        }
        
        .more-news {
            display: block;
            width: 100%;
            text-align: center;
            padding: 12px;
            background-color: white;
            border-radius: 12px;
            color: #4a90e2;
            font-weight: bold;
            text-decoration: none;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        } 
        
        
        
        
        /* Article Content Styles */
        .article-container {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .article-header {
            margin-bottom: 20px;
        }
        
        .article-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #666;
            font-size: 14px;
        }
        
        .article-date::before {
            content: "📅";
            margin-right: 5px;
        }
        
        .article-author {
            margin-left: 15px;
        }
        
        .article-author::before {
            content: "👤";
            margin-right: 5px;
        }
        
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .article-content {
            line-height: 1.6;
            font-size: 16px;
            color: #444;
        }
        
        .article-content p {
            margin-bottom: 15px;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .tag {
            background-color: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            color: #666;
        }
        
        .related-articles {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .related-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .related-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .related-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.2s;
        }
        
        .related-item:hover {
            background-color: #f9f9f9;
        }
        
        .related-item img {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            object-fit: cover;
            margin-right: 12px;
        }
        
        .related-item-title {
            font-size: 14px;
            font-weight: 500;
            color: #333;
        }
        
        /* Footer Styles (same as before) */
        .footer {
            margin-top: auto;
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            font-size: 12px;
            color: #aaa;
        }
        .pages{width:100%;text-align:center}
.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px;}
.pagination>li{display:inline;}
.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px;}
.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px;}
.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px;}
.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd;}
.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default;}
.position {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.position a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}
.position a:hover {
    color: #e74c3c;
    text-decoration: underline;
}
.position > a:first-child {
    font-weight: bold;
}