/* 原始输入框容器 */

.big-input-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}



.big-close-btn {
    cursor: pointer;
}


.big-input-container input[type="text"].bigInput {
    width: 100%;
    padding: 8px 30px 8px 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0;
}

.big-input-expand-icon {
    position: absolute;
    right: 4px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    z-index: 2;
    pointer-events: auto;
}

/* Modal 遮罩 */
.big-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.big-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    overflow: hidden;
}

.big-modal-header {
    padding: 12px 16px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.big-modal-body {
    padding: 16px;
}

.big-modal-body textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

.big-modal-footer {
    padding: 12px 16px;
    text-align: right;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.big-btn {
    padding: 6px 12px;
    margin-left: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.big-btn-primary {
    background-color: #007bff;
    color: white;
}

.big-btn-secondary {
    background-color: #6c757d;
    color: white;
}