.layui-colorpicker-main{z-index:999999999999}
.modal-overlay12377 {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }
        
        .modal12377 {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            animation: modalAppear12377 0.5s ease-out;
        }
        
        @keyframes modalAppear12377 {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-icon12377 {
            font-size: 4rem;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        
        .modal12377 h2 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .modal12377 p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .url-box12377 {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .url-text12377 {
            font-family: monospace;
            word-break: break-all;
            color: #333;
            font-size: 0.9rem;
        }
        
        .copy-btn12377 {
            background: #6a11cb;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            margin-left: 10px;
            white-space: nowrap;
        }
        
        .copy-btn12377:hover {
            background: #1465ff;
        }
        
        .modal-btn12377 {
            background: linear-gradient(135deg, #3369c3 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 10px;
        }
        
        .modal-btn12377:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
        }
        
        /* 移动设备检测 */
        @media (max-width: 768px) {
            .modal-overlay12377 {
                display: flex;
            }
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-overlay.on1, .modal-overlay.on3 {
            justify-content: right;
        }
        
        .gradient-panel {
            background-color: white;
            width: 90%;
            max-width: 300px;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .modal-overlay.active .gradient-panel {
            transform: translateY(0);
        }
        .closebtn{
            position: absolute;
            right: 20px;
            top: 0px;
            font-size: 28px;
        }
        .panel-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: #333;
            font-weight: 600;
        }
        
        .color-control {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .color-control label {
            width: 80px;
            text-align: left;
            font-weight: 500;
            color: #555;
        }
        
        .color-input {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .color-preview {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            margin-right: 10px;
            border: 1px solid #ddd;
        }
        
        .color-picker {
            flex: 1;
            height: 40px;
            max-width: 100px;
            border: 1px solid #ddd;
            padding: 0 10px;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .angle-control {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .angle-control label {
            width: 80px;
            text-align: left;
            font-weight: 500;
            color: #555;
        }
        
        .angle-slider {
            flex: 1;
            margin-right: 15px;
        }
        
        .angle-value {
            width: 50px;
            text-align: center;
            font-weight: 500;
        }
        
        .preview-section {
            margin-bottom: 20px;
        }
        
        .preview-title {
            text-align: left;
            margin-bottom: 10px;
            font-weight: 500;
            color: #555;
        }
        
        .gradient-preview {
            width: 100%;
            height: 60px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .presets-section {
            margin-bottom: 25px;
        }
        
        .presets-title {
            text-align: left;
            margin-bottom: 10px;
            font-weight: 500;
            color: #555;
        }
        
        .preset-options {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .preset {
            height: 40px;
            border-radius: 6px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.2s, border-color 0.2s;
        }
        
        .preset:hover {
            transform: scale(1.05);
        }
        
        .preset.active {
            border-color: #4a6ee0;
        }
        
        .button-group {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        button {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
        }
        
        .cancel-btn {
            background-color: #f1f1f1;
            color: #555;
        }
        
        .cancel-btn:hover {
            background-color: #e5e5e5;
        }
        
        .confirm-btn {
            background-color: #4a6ee0;
            color: white;
        }
        
        .confirm-btn:hover {
            background-color: #3a5ed0;
        }
        
        button:active {
            transform: scale(0.98);
        }
        
        .code-preview {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            font-family: monospace;
            text-align: left;
            margin-top: 15px;
            font-size: 14px;
            color: #333;
        }
		.locked{
		  color:#2196f3
		}