       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: #333;
            background: #f5f7fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .sitemap-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        .sitemap-section h2 {
            color: #667eea;
            font-size: 1.8em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #667eea;
        }

        .sitemap-section h3 {
            color: #764ba2;
            font-size: 1.3em;
            margin: 20px 0 10px;
        }

        .sitemap-list {
            list-style: none;
            padding-left: 0;
        }

        .sitemap-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .sitemap-list li:last-child {
            border-bottom: none;
        }

        .sitemap-list a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .sitemap-list a:hover {
            color: #667eea;
            background: #f0f4ff;
            transform: translateX(5px);
        }

        .sitemap-list a::before {
            content: "→";
            margin-right: 10px;
            color: #667eea;
            font-weight: bold;
        }

        .column-tree {
            list-style: none;
            padding-left: 0;
        }

        .column-tree > li {
            margin-bottom: 15px;
        }

        .column-tree li {
            padding: 8px 0;
        }

        .column-tree > li > a {
            font-weight: 600;
            font-size: 1.1em;
            color: #764ba2;
        }

        .column-children {
            list-style: none;
            padding-left: 30px;
            margin-top: 10px;
        }

        .column-children li {
            padding: 5px 0;
        }

        .column-children a {
            color: #555;
            font-size: 0.95em;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
        }

        .stat-card h3 {
            color: #667eea;
            font-size: 2em;
            margin-bottom: 5px;
        }

        .stat-card p {
            color: #666;
            font-size: 0.9em;
        }

        .download-links {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: #f0f4ff;
            border-radius: 10px;
        }

        .download-links h3 {
            color: #333;
            margin-bottom: 15px;
        }

        .download-links a {
            display: inline-block;
            margin: 0 10px;
            padding: 10px 20px;
            background: #667eea;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .download-links a:hover {
            background: #764ba2;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .empty-message {
            text-align: center;
            color: #999;
            padding: 20px;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }

            .sitemap-section {
                padding: 20px;
            }

            .sitemap-section h2 {
                font-size: 1.4em;
            }

            .column-children {
                padding-left: 20px;
            }
        }
		
		.copy_l{width:100%; text-align:center; margin:20px 0}
		
		
        .breadcrumb {
            background: white;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #409eff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .agreement-container {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
        }
        .agreement-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }
        .agreement-title {
            font-size: 32px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        .agreement-meta {
            color: #999;
            font-size: 14px;
        }
        .agreement-content {
            font-size: 16px;
            line-height: 2;
            color: #333;
        }
        .agreement-content h1,
        .agreement-content h2,
        .agreement-content h3,
        .agreement-content h4,
        .agreement-content h5,
        .agreement-content h6 {
            margin: 30px 0 20px;
            font-weight: bold;
            color: #1a1a1a;
        }
        .agreement-content h1 { font-size: 28px; }
        .agreement-content h2 { font-size: 24px; }
        .agreement-content h3 { font-size: 20px; }
        .agreement-content h4 { font-size: 18px; }
        .agreement-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .agreement-content ul,
        .agreement-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        .agreement-content li {
            margin-bottom: 10px;
        }
        .agreement-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .agreement-content table th,
        .agreement-content table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .agreement-content table th {
            background-color: #f5f7fa;
            font-weight: bold;
        }
        .agreement-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
        }
        .agreement-footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #f0f0f0;
            text-align: center;
            color: #999;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            .agreement-container {
                padding: 20px;
            }
            .agreement-title {
                font-size: 24px;
            }
            .agreement-content {
                font-size: 14px;
            }
        }