        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* 头部导航 */
        header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1.2rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .logo-icon {
            font-size: 1.8rem;
            background: white;
            color: #6a11cb;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* 主要内容区域 */
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            flex-grow: 1;
        }
        
        .page-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #3498db;
        }
        
        .page-header h1 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .page-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        .page-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #2c3e50;
        }
        
        .page-title h1 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }
        
        .page-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* 生成器容器 */
        .generator-container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            margin-bottom: 2.5rem;
        }
        
        .generator-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        /* 图片上传和裁剪区域 */
        .upload-section {
            flex: 1;
            min-width: 300px;
        }
        
        .upload-area {
            border: 2px dashed #3498db;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            background-color: #f8fafc;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .upload-area:hover {
            border-color: #2980b9;
            background-color: #e8f4fc;
        }
        
        .upload-icon {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 1rem;
        }
        
        .upload-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 1rem;
        }
        
        .upload-btn:hover {
            background-color: #2980b9;
        }
        
        #imageInput {
            display: none;
        }
        
        /* 裁剪区域 */
        .crop-container {
            width: 100%;
            height: 300px;
            margin-top: 1.5rem;
            display: none;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f1f5f9;
        }
        
        #imagePreview {
            max-width: 100%;
            max-height: 100%;
            display: block;
            margin: 0 auto;
        }
        
        /* 控制面板 */
        .controls-section {
            flex: 1;
            min-width: 300px;
        }
        
        .control-group {
            margin-bottom: 1.8rem;
        }
        
        .control-group h3 {
            margin-bottom: 0.8rem;
            color: #2c3e50;
            font-size: 1.2rem;
        }
        
        .options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        
        .option-btn {
            padding: 0.7rem 1.2rem;
            background-color: #ecf0f1;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .option-btn:hover {
            background-color: #d5dbdb;
        }
        
        .option-btn.active {
            background-color: #3498db;
            color: white;
        }
        
        
        .countdown-title {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        #countdown {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        /* 文章版块 */
        .articles-section {
            margin: 3rem 0;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        
        .articles-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .article-box {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .article-list {
            list-style-type: none;
        }
        
        .article-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            transition: all 0.2s ease;
        }
        
        .article-list li:last-child {
            border-bottom: none;
        }
        
        .article-list li:hover {
            background-color: #f8f9fa;
            padding-left: 10px;
        }
        
        .article-list a {
            text-decoration: none;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .article-list a:hover {
            color: #3498db;
        }
        
        .article-icon {
            color: #3498db;
            font-size: 0.9rem;
        }
        
        /* 生成按钮 */
        .generate-btn {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
            box-shadow: 0 4px 12px rgba(106, 17, 203, 0.2);
        }
        
        .generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(106, 17, 203, 0.3);
        }
        
        /* 预览区域 */
        .preview-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
            display: none;
        }
        
        .preview-title {
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        .preview-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        
        .icon-preview {
            text-align: center;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            min-width: 150px;
        }
        
        .icon-preview img {
            width: 64px;
            height: 64px;
            margin-bottom: 0.8rem;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 5px;
        }
        
        .download-btn {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 0.5rem;
            display: inline-block;
            text-decoration: none;
        }
        
        .download-btn:hover {
            background-color: #27ae60;
        }
        
        /* 友情链接 */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem;
        }
        
        .footer-sections {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
        }
        
        .links-list {
            list-style-type: none;
        }
        
        .links-list li {
            margin-bottom: 0.8rem;
        }
        
        .links-list a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .links-list a:hover {
            color: #3498db;
        }
        
        /* 版权信息 */
        .copyright {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }


        /* 面包屑导航 */
        .breadcrumb {
            background-color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #95a5a6;
        }
        /* 文章列表容器 */
        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .article-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .article-thumbnail {
            flex: 0 0 150px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        
        .article-content {
            flex: 1;
            min-width: 300px;
        }
        
        .article-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #2c3e50;
        }
        
        .article-content h3 a {
            color: inherit;
            text-decoration: none;
        }
        
        .article-content h3 a:hover {
            color: #3498db;
        }
        
        .article-excerpt {
            color: #7f8c8d;
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        .article-category {
            background-color: #e8f4fc;
            color: #3498db;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            gap: 0.5rem;
        }
        
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .pagination a {
            background-color: white;
            color: #2c3e50;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background-color: #3498db;
            color: white;
        }
        
        .pagination a.active {
            background-color: #3498db;
            color: white;
        }
        
        .pagination .disabled {
            color: #bdc3c7;
            cursor: not-allowed;
        }
        
        /* 侧边栏 */
        .sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .sidebar h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #2c3e50;
            padding-bottom: 0.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;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .sidebar a:hover {
            color: #3498db;
        }



.text-center {text-align: center;}
		
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;}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                width: 100%;
            }
            
            .articles-container {
                grid-template-columns: 1fr;
            }
            
            .generator-wrapper {
                flex-direction: column;
            }
            
            .footer-sections {
                flex-direction: column;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 2rem;
            }
            
            .nav-menu {
                display: none;
                width: 100%;
            }
            
            .nav-menu.show {
                display: block;
            }
			
			
			@media (min-width: 992px) {
            .main-with-sidebar {
                display: grid;
                grid-template-columns: 1fr 300px;
                gap: 2rem;
            }
            
            .articles-container {
                grid-column: 1;
            }
            
            .sidebar-container {
                grid-column: 2;
            }
        }
