.tool-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
}
.calc-card {
    background: #ffffff;
    padding: 35px;
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
}
.title-h2 {
    font-size: 22px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 22px;
}
.form-item {
    flex: 1;
    min-width: 240px;
}
.form-item label {
    display: block;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-item input,
.form-item select {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.25s ease;
    background: #f9fafb;
}
.form-item input:focus,
.form-item select:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
    outline: none;
}
.calc-btn {
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 0 30px;
}
.calc-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59,130,246,0.25);
}
/* 精美结果区域 */
.result-wrap {
    background: linear-gradient(135deg, #f0f7ff 0%, #eef6ff 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #dbeafe;
}
.result-title {
    font-size: 18px;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.result-title::before {
    content: "";
    width: 4px;
    height: 18px;
    background: #3b82f6;
    margin-right: 10px;
    border-radius: 2px;
}
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.result-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.result-item .label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}
.result-item .val {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}
/* 最终到手工资单独高亮 */
.result-final {
    margin-top: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 22px 25px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result-final .text {
    font-size: 16px;
    opacity: 0.95;
}
.result-final .money {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}
.desc-tip {
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
    .calc-card {
        padding: 25px 20px;
    }
}