 /* 全局样式*/
        * {
            /*margin: 0;
            padding: 0;2026-3-24
            box-sizing: border-box;*/
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        /*body {
            background: #f8f9fa;
            padding: 20px;2026-3-24
        }*/ 
        .page-title {
            color: #003366;
            margin-bottom: 20px;
            font-size: 22px;
        }
        /* 产品列表样式 - 表格布局更贴合列表场景 */
        .product-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .product-table th {
            background: #003366;
            color: #fff;
            padding: 12px 15px;
            text-align: left;
            font-weight: normal;
        }
        .product-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        .product-table tr:hover {
            background: #f5f8ff;
        }
        /* 询价按钮 - 列表专用样式 */
        .quote-btn {
            background: #fb670d;
            color: #fff;
            border: none;
            /*padding: 6px 12px; 2026-3-24*/
            padding: 9px 12px 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: background 0.2s;
        }
        .quote-btn:hover {
            background: #fb670d;
        }
        
         /* 询价按钮 - 列表专用样式 
        .quote-btn1 {
            background: #fb670d;
            color: #fff;
            border: none;
            padding: 9px 12px 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: background 0.2s;
        }
        .quote-btn1:hover {
            background: #fb670d;
        }*/
        /* 列表弹窗样式（适配列表页，尺寸更小） */
        .quote-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .quote-modal-content {
            width: 400px; /* 比通用弹窗更窄，适配列表页 */
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            /*position: relative; 2026-3-24*/
            position: fixed;
            top:200px;/*2026-3-24*/
        }
        .quote-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 18px;
            color: #999;
            cursor: pointer;
        }
        .quote-modal-close:hover {
            color: #333;
        }
        .quote-modal-title {
            color: #003366;
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }
        .quote-form-group {
            margin-bottom: 12px;
        }
        .quote-form-group label {
            display: inline-block;
            width: 70px;
            font-size: 13px;
            font-weight: 500;
        }
        .quote-form-group span {
            color: #0066cc;
            font-weight: bold;
            font-size: 13px;
        }
        .quote-form-group input {
            width: calc(100% - 75px);
            padding: 6px 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 13px;
        }
        .quote-form-group input:focus {
            outline: none;
            border-color: #0066cc;
        }
        .quote-modal-btn-group {
            margin-top: 15px;
            text-align: right;
        }
        .quote-modal-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            margin-left: 8px;
        }
        .quote-submit-btn {
            background: #0066cc;
            color: #fff;
        }
        .quote-close-btn {
            background: #e0e0e0;
            color: #333;
        }