       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* 头部导航 */
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3498db;
        }

        .logo span {
            color: #2ecc71;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }

        /* 主内容区 */
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        .generator-container {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        h1 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        /* 上传和预览区域 */
        .upload-area {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .upload-box {
            flex: 1;
            min-width: 300px;
        }

        .preview-box {
            flex: 1;
            min-width: 300px;
        }

        .upload-zone {
            border: 2px dashed #3498db;
            border-radius: 8px;
            padding: 3rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background-color: #f8fafc;
        }

        .upload-zone:hover {
            background-color: #e8f4fc;
            border-color: #2980b9;
        }

        .upload-zone i {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 1rem;
        }

        .upload-zone p {
            color: #666;
        }

        #imageUpload {
            display: none;
        }

        .cropper-container {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .image-preview {
            width: 100%;
            height: 300px;
            overflow: hidden;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .preview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 1rem;
        }

        .preview-item {
            text-align: center;
        }

        .preview-item img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border: 2px solid #ddd;
            border-radius: 4px;
        }

        /* 控制选项 */
        .controls {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .control-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        label {
            font-weight: 600;
            color: #2c3e50;
        }

        select, input[type="range"] {
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .size-options {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .size-btn {
            padding: 0.5rem 1rem;
            border: 2px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .size-btn.active {
            background: #3498db;
            color: white;
        }

        .format-options {
            display: flex;
            gap: 0.5rem;
        }

        .format-btn {
            padding: 0.5rem 1rem;
            border: 2px solid #2ecc71;
            background: white;
            color: #2ecc71;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .format-btn.active {
            background: #2ecc71;
            color: white;
        }

        .generate-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 2rem;
        }

        .generate-btn:hover {
            background: #2980b9;
        }

        /* 文章区域 */
        .articles-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .article-column {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .article-column h3 {
            color: #2c3e50;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #3498db;
        }

        .article-list {
            list-style: none;
        }

        .article-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }

        .article-list li:last-child {
            border-bottom: none;
        }

        .article-list a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-list a:hover {
            color: #3498db;
        }

        /* 友情链接 */
        .links-section {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin: 2rem 0;
        }

        .links-section h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
        }

        .links-grid a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #f8f9fa;
            border-radius: 4px;
            color: #3498db;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
        }

        .links-grid a:hover {
            background: #3498db;
            color: white;
        }

        /* 页脚 */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .copyright {
            margin-top: 1rem;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .upload-area {
                flex-direction: column;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .articles-section {
                grid-template-columns: 1fr;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .preview-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .links-grid {
                grid-template-columns: 1fr;
            }
        }






        .page-header {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            text-align: center;
        }

        .page-header h1 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 文章列表 */
        .articles-container {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .category-filter {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 0.5rem 1.5rem;
            border: 2px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .category-btn.active {
            background: #3498db;
            color: white;
        }

        .category-btn:hover:not(.active) {
            background: #e8f4fc;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .article-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            background: white;
        }

        .article-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.9rem;
        }

        .article-category {
            background: #e8f4fc;
            color: #3498db;
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            font-size: 0.85rem;
        }

        .article-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .article-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-title a:hover {
            color: #3498db;
        }

        .article-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .read-more:hover {
            background: #2980b9;
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .page-btn {
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .page-btn.active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }

        .page-btn:hover:not(.active) {
            border-color: #3498db;
            color: #3498db;
        }

        /* 侧边栏 */
        .sidebar {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .sidebar h3 {
            color: #2c3e50;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #3498db;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }

        .sidebar li:last-child {
            border-bottom: none;
        }

        .sidebar a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sidebar a:hover {
            color: #3498db;
        }

        .recent-articles li {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .recent-icon {
            width: 40px;
            height: 40px;
            background: #3498db;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        /* 内容布局 */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }









        /* 文章内容区域 */
        .article-detail {
            background: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .article-header {
            margin-bottom: 2rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 2rem;
        }

        .article-category {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .article-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-featured-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        /* 文章内容样式 */
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-content h2 {
            color: #2c3e50;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
        }

        .article-content h3 {
            color: #2c3e50;
            margin: 1.5rem 0 0.8rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .article-content ul, .article-content ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: 0.8rem;
        }

        .article-content blockquote {
            border-left: 4px solid #3498db;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #f8fafc;
            font-style: italic;
        }

        .article-content code {
            background: #f1f1f1;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
        }

        .article-content pre {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 1.5rem;
            border-radius: 8px;
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .tip-box {
            background: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }

        .tip-box strong {
            color: #2c3e50;
        }

        /* 文章标签 */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .article-tags a {
            padding: 0.4rem 1rem;
            background: #f8f9fa;
            color: #3498db;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .article-tags a:hover {
            background: #3498db;
            color: white;
        }

        /* 分享按钮 */
        .share-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }

        .share-btn {
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.3s;
        }

        .share-btn:hover {
            opacity: 0.9;
        }

        .share-twitter {
            background: #1DA1F2;
        }

        .share-facebook {
            background: #4267B2;
        }

        .share-linkedin {
            background: #0077b5;
        }

        /* 上一篇/下一篇导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: #2c3e50;
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s;
            max-width: 45%;
        }

        .nav-link:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .nav-link .nav-arrow {
            font-size: 1.5rem;
            color: #3498db;
        }

        .nav-link .nav-text {
            display: flex;
            flex-direction: column;
        }

        .nav-link .nav-label {
            font-size: 0.9rem;
            color: #666;
        }

        .nav-link .nav-title {
            font-weight: 500;
            line-height: 1.4;
        }

        /* 相关文章 */
        .related-articles {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin: 2rem 0;
        }

        .related-articles h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #3498db;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .related-item {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .related-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .related-item h3 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }

        .related-item h3 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .related-item h3 a:hover {
            color: #3498db;
        }

        .related-item .related-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.8rem;
        }

        .related-item .related-category {
            background: #e8f4fc;
            color: #3498db;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.8rem;
        }

        .related-item p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* 评论区域 */
        .comments-section {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin: 2rem 0;
        }

        .comments-section h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #3498db;
        }

        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }

        .comment-submit {
            padding: 0.8rem 2rem;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .comment-submit:hover {
            background: #2980b9;
        }


A.logo:link , A.logo:visited, A.logo:hover   {FONT-SIZE: 50px; COLOR: #fff; TEXT-DECORATION: none;}
A.listt:link , A.listt:visited, A.listt:hover   {COLOR: #8E2434; TEXT-DECORATION: none;}
A.bai:link , A.bai:visited, A.bai:hover   { COLOR: #fff; TEXT-DECORATION: none;}
A.hei:link , A.hei:visited, A.hei:hover   { COLOR: #000; TEXT-DECORATION: none;}
A.n1:link , A.n1:visited, A.n1:hover   { COLOR: #8e2434; TEXT-DECORATION: none;}
		
a.ff:link, a.ff:visited { color: #8E2434; text-decoration: none; font-size: 0.8rem; }
a.ff:hover { text-decoration: underline; }

.detail { text-align: left;}
.detail img{max-width: 90%;height: auto;width: auto\9;}
.detail a{  text-decoration: none;}