/* 存款计算器专用样式 */
.deposit-calculator {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.calc-input-group input,
.calc-input-group select {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.calc-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.calc-radio-item input[type="radio"]:checked + label {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

/* 计算结果样式 */
.result-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.result-item:last-child {
    border-bottom: none;
}

/* 利率参考表 */
.rate-reference {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.rate-reference h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.rate-table th {
    font-weight: 600;
    color: #4a5568;
    background: #fff;
}

.rate-table td {
    color: #718096;
}

.rate-table tr:last-child td {
    border-bottom: none;
}