/* fund-management.css - 资金管理页面专属样式 */
.main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 资金核心数据展示样式 */
.fund-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.fund-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.fund-item label {
    color: #7f8c8d;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.fund-value {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.fund-value.big-text {
    font-size: 24px;
}

/* 资金操作区域样式 */
.fund-operation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.fund-form {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.operation-title {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.fund-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.in-btn {
    background-color: #27ae60;
}

.in-btn:hover {
    background-color: #219653;
}

.out-btn {
    background-color: #e74c3c;
}

.out-btn:hover {
    background-color: #c0392b;
}

/* 提示弹窗样式 */
.tip-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.tip-modal.show {
    display: block;
}

.tip-modal p {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.tip-modal .confirm-btn {
    padding: 8px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}