/* 模态框样式 */
.yiguo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.yiguo-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.yiguo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.yiguo-modal-title {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.yiguo-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.yiguo-close:hover {
    color: #333;
}

.yiguo-form-group {
    margin-bottom: 15px;
}

.yiguo-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.yiguo-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.yiguo-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.yiguo-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.yiguo-btn-primary {
    background-color: #1890ff;
    color: white;
}

.yiguo-btn-primary:hover {
    background-color: #40a9ff;
}

.yiguo-btn-default {
    background-color: #f0f0f0;
    color: #333;
}

.yiguo-btn-default:hover {
    background-color: #e0e0e0;
}

/* 确认对话框样式 */
.yiguo-confirm-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.yiguo-confirm-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 350px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.yiguo-confirm-message {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.yiguo-confirm-actions {
    display: flex;
    justify-content: flex-end;
}