

        .extractor-container {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .extractor-container {
                min-width: 560px;
            }
        }

        /* 提取配置项容器 */
        .extract-config-group {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        /* 标签输入框样式 */
        .tag-input-wrapper {
            flex: 1;
            min-width: 180px;
            position: relative;
        }

        #targetTag {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e0e6ed;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            background-color: #f8fafc;
            color: #333;
            transition: all 0.2s ease;
        }

        #targetTag:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            background-color: #fff;
        }

        #targetTag::placeholder {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* 去重开关样式 */
        .dedup-switch {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
        }

        .switch-label {
            font-size: 1rem;
            color: #666;
        }

        .switch-toggle {
            position: relative;
            width: 60px;
            height: 30px;
            background-color: #e0e6ed;
            border-radius: 15px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .switch-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 26px;
            height: 26px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.2s ease;
        }

        .switch-toggle.active {
            background-color: #3498db;
        }

        .switch-toggle.active::after {
            transform: translateX(30px);
        }

        /* 分隔符配置样式 */
        .separator-config {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
            min-width: 180px;
        }

        .separator-label {
            font-size: 1rem;
            color: #666;
        }

        #separator {
            width: 80px;
            padding: 0.6rem 0.8rem;
            border: 2px solid #e0e6ed;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            text-align: center;
            background-color: #f8fafc;
            transition: all 0.2s ease;
        }

        #separator:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            background-color: #fff;
        }

        .input-output-group {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            width: 100%;
            max-width: 800px;
        }

        @media (min-width:768px) {
            .input-output-group {
                min-width: 365px;
           }
         }

        .text-area {
            width: 100%;
            min-height: 180px;
            padding: 1.2rem;
            border: 2px solid #e0e6ed;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            resize: vertical;
            transition: all 0.2s ease;
            line-height: 1.6;
            background-color: #f8fafc;
            font-family: "Consolas", "Microsoft YaHei", Arial, sans-serif;
        }

        .text-area:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            background-color: #fff;
        }

        /* 按钮组样式 */
        .btn-group {
            display: flex;
            gap: 1.2rem;
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .action-btn {
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.25s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        #extractBtn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            flex: 1;
        }

        #extractBtn:hover {
            background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
        }

        #extractBtn:active {
            transform: translateY(0);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }

        #clearBtn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            flex: 1;
        }

        #clearBtn:hover {
            background: linear-gradient(135deg, #c0392b 0%, #a52e20 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
        }

        #clearBtn:active {
            transform: translateY(0);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }

        #copyBtn {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
            color: white;
            flex: 1;
        }

        #copyBtn:hover {
            background: linear-gradient(135deg, #219653 0%, #1e874b 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
        }

        #copyBtn:active {
            transform: translateY(0);
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }

        /* 占位符样式优化 */
        ::placeholder {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* XML提取工具专属移动端适配 */
        @media (max-width: 768px) {


            .extract-config-group {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .dedup-switch, .separator-config {
                justify-content: space-between;
            }

            .btn-group {
                flex-direction: column;
                gap: 1rem;
            }

            .action-btn {
                width: 100%;
                padding: 0.8rem 1rem;
            }

            .text-area {
                min-height: 140px;
                font-size: 0.95rem;
                padding: 1rem;
            }

            #separator {
                max-width: 228px;
                min-width: 80px;
                width: 30%;
            }
        }
