.paper {

    width: 1100px;

    margin: 20px auto;

    background: #fff;

    padding: 20px;

    box-shadow: 0 0 8px rgba(0,0,0,.1);
}

.title {

    text-align: center;

    font-size: 32px;

    font-weight: bold;

    margin-bottom: 20px;
}

.customer-table {

    width: 100%;

    border-collapse: collapse;
}

.customer-table td {

    border: 1px solid #333;

    padding: 6px;

    vertical-align: middle;
}

.label {

    width: 90px;

    text-align: center;

    background: #fafafa;

    font-weight: 500;
}

.left-title {

    width: 120px;

    text-align: center;

    font-weight: bold;

    writing-mode: vertical-rl;

    letter-spacing: 5px;
}

.project-block {

    padding: 10px;
}

.project-row {

    margin-bottom: 12px;
}

.project-label {

    display: block;

    margin-bottom: 5px;

    font-weight: bold;
}

.ant-input,
.ant-input-number,
.ant-picker {

    border: none !important;

    box-shadow: none !important;
}

/* 工具栏样式 */
.zoom-controls {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}
.zoom-controls > * {
    margin-right: 8px;
}
.zoom-controls > *:last-child {
    margin-right: 0;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    background: #f0f0f0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.zoom-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-value {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    min-width: 50px;
    text-align: center;
}

.divider {
    width: 1px;
    height: 24px;
    background: #ddd;
    margin: 0 4px;
}

.save-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: #1890ff;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.save-btn:hover {
    background: #40a9ff;
    transform: scale(1.02);
}

.save-btn:active {
    transform: scale(0.98);
}

.save-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}