@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .card-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 95%;
            max-width: 1200px;
            overflow: hidden;
        }
        
        .header {
            background-color: #4a6fc9;
            color: white;
            text-align: center;
            padding: 20px -12px;
            font-size: 24px;
            font-weight: bold;
        }
        
        .content-wrapper {
            display: flex;
            padding: 20px;
            flex-wrap: wrap;
        }
        
        .settings-panel {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border-right: 1px solid #eee;
        }
        
        .result-panel {
            flex: 2;
            min-width: 300px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        
        .checkbox-group {
            display: flex;
            gap: 15px;
            margin-top: 5px;
        }
        
        .checkbox-container {
            display: flex;
            align-items: center;
        }
        
        .checkbox-container input[type="checkbox"] {
            margin-right: 5px;
        }
        
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .input-info {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .result-container {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
            background-color: #fafafa;
            position: relative;
        }
        
        .result-area {
            padding: 15px;
            font-family: monospace;
            font-size: 16px;
            line-height: 1.5;
            overflow-y: auto;
            max-height: 400px;
            white-space: pre-wrap;
        }
        
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 10;
            display: none;
        }
        
        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top-color: #4a6fc9;
            animation: spin 1s ease-in-out infinite;
            margin-bottom: 15px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .button-group {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            padding: 20px;
            background-color: #f5f7fa;
            border-top: 1px solid #eee;
        }
        
        .btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .btn-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #2ecc71;
            color: white;
            border-radius: 50%;
            padding: 5px 9px;
            font-size: 12px;
            font-weight: bold;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.4s ease;
        }
        
        .btn-badge.show {
            opacity: 1;
            transform: scale(1);
        }
        
        .btn-generate {
            background-color: #8e44ad;
        }
        
        .btn-generate:hover {
            background-color: #7d3c98;
        }
        
        .btn-copy {
            background-color: #27ae60;
        }
        
        .btn-copy:hover {
            background-color: #219653;
        }
        
        .btn-deduplicate {
            background-color: #3498db;
        }
        
        .btn-deduplicate:hover {
            background-color: #2980b9;
        }
        
        .btn-save {
            background-color: #1abc9c;
        }
        
        .btn-save:hover {
            background-color: #16a085;
        }
        
        .btn-clear {
            background-color: #e74c3c;
        }
        
        .btn-clear:hover {
            background-color: #c0392b;
        }
        
        .btn-text {
            margin-left: 8px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .settings-panel {
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            
            .result-area {
                max-height: 300px;
            }
            
            .btn {
                padding: 10px 15px;
                min-height: 45px;
            }
            
            .button-group {
                flex-wrap: wrap;
            }
            
            .button-group .btn {
                flex: calc(50% - 8px);
                max-width: calc(50% - 8px);
            }
        }

            .btn-ver {
                margin-top: 180px;
            }