.fuli-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fuli-tip {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.fuli-result {
    margin-top: 1.5rem;
}

.fuli-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.fuli-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.2rem;
}

.fuli-card-main {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.fuli-card-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.fuli-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    word-break: break-all;
}

.fuli-card-main .fuli-card-value {
    color: #2563eb;
}

.fuli-profit {
    color: #059669;
}

.fuli-detail {
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.fuli-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.fuli-detail-row:last-child {
    border-bottom: none;
}

.fuli-detail-row strong {
    color: #0f172a;
}

.fuli-article p {
    margin: 0 0 1rem;
    color: #4b5563;
    line-height: 1.9;
}

.fuli-table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
}

.fuli-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.fuli-table th,
.fuli-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.fuli-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.fuli-table td {
    color: #475569;
}

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

@media (max-width: 640px) {
    .fuli-form,
    .fuli-result-grid {
        grid-template-columns: 1fr;
    }

    .fuli-card-value {
        font-size: 1.25rem;
    }

    .fuli-detail-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
