
        #quotation-container {
            --primary-dark: #1E5A8C;
            --primary-main: #2D7FB8;
            --primary-light: #5CA8E8;
            --accent: #A6D4FF;
            --light-bg: #F0F8FF;
            --text-dark: #0A2E4A;
            --text-light: #FFFFFF;
            --border: #B8D8F0;
            --export-btn: #D81B60; /* 紫红色 */
            --export-btn-hover: #AD1457; /* 深紫红色 */
            
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            width: 1200px;
            margin: 0 auto;
            box-sizing border-box;
            padding: 20px;
        }
        
        #quotation-container * {
            box-sizing: border-box;
        }
        
        .quote-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            table-layout: fixed;
            border: 1px solid var(--border);
            box-shadow: 0 4px 12px rgba(30, 90, 140, 0.1);
        }
        
        .quote-table th {
            background: linear-gradient(to bottom, var(--primary-light), var(--primary-main));
            color: var(--text-light);
            text-align: left;
            padding: 16px 10px;
            font-weight: 600;
            font-size: 0.95em;
            border-right: 1px solid rgba(255,255,255,0.2);
            position: relative;
        }
        
        .quote-table th:after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 1px;
            background: rgba(255,255,255,0.3);
        }
        
        .quote-table th:last-child:after {
            display: none;
        }
        
        .quote-table th:last-child {
            border-right: none;
        }
        
        .quote-table td {
            padding: 12px 10px;
            border-bottom: 1px solid var(--border);
            border-right: 1px solid var(--border);
            vertical-align: middle;
            font-size: 0.9em;
            background-color: white;
        }
        
        .quote-table td:last-child {
            border-right: none;
        }
        
        .quote-table tr:nth-child(even) td {
            background-color: var(--light-bg);
        }
        
        .quote-table tr:hover td {
            background-color: #E6F2FF;
        }
        
        .quote-table input, .quote-table select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 0.9em;
            background-color: white;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        
        .quote-table input:focus, .quote-table select:focus {
            outline: none;
            border-color: var(--primary-main);
            box-shadow: 0 0 0 2px rgba(45, 127, 184, 0.2);
        }
        
        .quote-table input[readonly] {
            background-color: #F5FAFF;
            color: var(--primary-dark);
            font-weight: 600;
            cursor: default;
        }
        
        /* 调整后的列宽设置 - Dimension调整为150px，其他列相应调整 */
        .part-col { width: 200px; } /* 保持不变 */
        .dimension-col { width: 150px; } /* 200px -> 150px */
        .layers-col { width: 70px; } /* 60px -> 70px */
        .color-col { width: 90px; } /* 80px -> 90px */
        .qty-col { width: 70px; } /* 60px -> 70px */
        .surface-col { width: 100px; } /* 90px -> 100px */
        .thick-col { width: 70px; } /* 60px -> 70px */
        .extprice-col { width: 90px; } /* 80px -> 90px */
        .unitprice-col { width: 90px; } /* 80px -> 90px */
        .na-col { width: 70px; } /* 60px -> 70px */
        .cost-col { width: 90px; } /* 80px -> 90px */
        
        /* 按钮组样式 - 移除上下横线 */
        .button-group {
            display: flex;
            gap: 15px;
            margin: 20px 0;
            padding: 10px 0;
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95em;
        }
        
        .btn-primary {
            background: linear-gradient(to bottom, var(--primary-light), var(--primary-main));
            color: white;
            box-shadow: 0 2px 4px rgba(30, 90, 140, 0.2);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to bottom, var(--primary-main), var(--primary-dark));
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(30, 90, 140, 0.3);
        }
        
        .btn-export {
            background: linear-gradient(to bottom, var(--export-btn), #AD1457);
            color: white;
            box-shadow: 0 2px 4px rgba(216, 27, 96, 0.2);
        }
        
        .btn-export:hover {
            background: linear-gradient(to bottom, #AD1457, #880E4F);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(216, 27, 96, 0.3);
        }
        
        /* 汇总区域样式 */
        .summary-section {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 30px 0;
            width: 1100px;
        }
        
        .summary-box {
            background: linear-gradient(135deg, var(--light-bg), white);
            padding: 18px;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 6px rgba(30, 90, 140, 0.1);
            width: 100%;
        }
        
        .summary-box label {
            display: block;
            font-size: 0.95em;
            margin-bottom: 10px;
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .summary-box select, .summary-box input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.95em;
            background-color: white;
            color: var(--text-dark);
        }
        
        .summary-box input[readonly] {
            background-color: #F5FAFF;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 1.1em;
        }
        
        .summary-box:last-child input {
            font-size: 1.1em;
            font-weight: 700;
            color: #1B5E20;
            background-color: #F1F8E9;
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            #quotation-container {
                width: 100%;
                padding: 15px;
            }
            
            .summary-section {
                width: 100%;
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .summary-section {
                grid-template-columns: 1fr;
            }
            
            .button-group {
                flex-wrap: wrap;
            }
        }
    