/* 蓝白扁平风格基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #eef8fe;
            min-height: 80vh;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .container {
            width: 100%;
            max-width: 1000px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
            overflow: hidden;
            padding: 10px;
        }
        
        header {
            background: linear-gradient(90deg, #1a78d4, #0069ac);
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 12px 12px 0 0;
            margin: -20px -20px 20px -20px;
        }
        
        .header-title {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
        }
        
        .subtitle {
            font-size: 16px;
            opacity: 0.9;
            color: #e0f7fa;
        }
        
        .example-container {
            background-color: #f0f9ff;
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0 20px 0;
            border-left: 4px solid #1e88e5;
        }

        .example-item {
            color: #008080;
			font-size:14px;
        }
		
        .section-title {
            font-size: 18px;
            color: #1e88e5;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .input-area, .output-area {
            margin-bottom: 20px;
        }
        
        .input-wrapper, .output-wrapper {
            position: relative;
            border: 1px solid #b3e0ff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
        }
        
        /* 输入框样式 - 高度较小 */
        #input-text {
            width: 100%;
            min-height: 150px;
            max-height: 200px;
            padding: 15px;
            border: none;
            resize: vertical;
            font-family: Consolas, Monaco, 'Courier New', monospace;
            background-color: white;
            outline: none;
            font-size: 14px;
            line-height: 1.5;
        }
		
        /* 输入框样式 - 高度较小 */
        #inputText, .input {
            width: 100%;
            min-height: 150px;
            max-height: 200px;
            padding: 15px;
            border: none;
            resize: vertical;
            font-family: Consolas, Monaco, 'Courier New', monospace;
            background-color: white;
            outline: none;
            font-size: 14px;
            line-height: 1.5;
        }
		
        /* 输入框样式 - 高度较小 */
        #input {
            width: 100%;
            min-height: 150px;
            max-height: 200px;
            padding: 15px;
            border: none;
            resize: vertical;
            font-family: Consolas, Monaco, 'Courier New', monospace;
            background-color: white;
            outline: none;
            font-size: 14px;
            line-height: 1.5;
        }
        /* 输出框样式 - 高度较大 */
        #output {
            width: 100%;
            min-height: 200px;
            max-height: 250px;
            padding: 15px;
            border: none;
            resize: vertical;
            font-family: Consolas, Monaco, 'Courier New', monospace;
            background-color: #f8fdff;
            outline: none;
            font-size: 14px;
            line-height: 1.5;
        }

  
        /* 输出框样式 - 高度较大 */
        #output-text {
            width: 100%;
            min-height: 200px;
            max-height: 250px;
            padding: 15px;
            border: none;
            resize: vertical;
            font-family: Consolas, Monaco, 'Courier New', monospace;
            background-color: #f8fdff;
            outline: none;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .button-group {
            display: flex;
            gap: 10px;
            margin: 20px 0 30px 0;
            flex-wrap: wrap;
        }
        
        button {
            padding: 14px 20px;
            border: none;
            border-radius: 10px;   /* 按钮圆角 */
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            min-width: 140px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: white;
            font-size: 16px;
        }
        
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        button:active {
            transform: translateY(1px);
        }
        
        #xml-btn {
            background: linear-gradient(90deg, #1e88e5, #1565c0);
        }

        #convertBtn {
            background: linear-gradient(90deg, #1e88e5, #1565c0);
        }

		
        #json-btn {
            background: linear-gradient(90deg, #4caf50, #2e7d32);
        }

        #exampleBtn {
            background: linear-gradient(90deg, #ff9800, #f57c00);
        }      
        #example-btn {
            background: linear-gradient(90deg, #ff9800, #f57c00);
        }

        #copyBtn {
            background: linear-gradient(90deg, #9c27b0, #7b1fa2);
        }       
        #copy-btn {
            background: linear-gradient(90deg, #9c27b0, #7b1fa2);
        }

        #refreshBtn {
            background: linear-gradient(90deg, #f44336, #d32f2f);
        }       
        #refresh-btn {
            background: linear-gradient(90deg, #f44336, #d32f2f);
        }
        
        .format-hint {
            background-color: #fff8e1;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #ff9800;
            font-size: 16px;
            color: #d32f2f;
            font-weight: 500;
        }

        .output-hint {
            background-color: #fff8e1;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #ff9800;
            font-size: 16px;
            color: #d32f2f;
            font-weight: 500;
        }
		
        footer {
            text-align: center;
            padding: 15px;
            color: #64b5f6;
            font-size: 14px;
            border-top: 1px solid #e0f2ff;
            margin: 0 -20px -20px -20px;
        }
        
        @media (max-width: 768px) {
            .button-group {
                flex-direction: column;
            }
            
            button {
                width: 100%;
            }
            
            .header-title {
                font-size: 24px;
            }
        }
