
        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 全屏背景容器 */
        .pcb-banner {
            width: 100vw; /* 全屏宽度 */
            min-height: 400px; /* 最小高度，可根据需求调整 */
            background-color: #f5f8ff; /* 产品背景色，可替换为背景图：background: url('你的背景图地址') center/cover no-repeat; */
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* 标题样式 */
        .pcb-banner h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
        }

        /* 描述文本样式 */
        .pcb-banner .desc {
            font-size: 18px;
            color: #34495e;
            line-height: 1.6;
            max-width: 800px;
            margin-bottom: 30px;
        }

        /* 报价按钮样式 */
        .quote-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #2980b9;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            text-decoration: none;
            border-radius: 5px;
            margin-bottom: 30px;
            transition: background-color 0.3s;
        }

        .quote-btn:hover {
            background-color: #1f618d;
        }

        /* 联系方式容器 */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            font-size: 16px;
            color: #2c3e50;
        }

        /* 单个联系方式样式 */
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 图标样式 */
        .contact-item i, .quote-btn i {
            font-size: 20px;
        }

        /* 响应式适配（手机端） */
        @media (max-width: 768px) {
            .pcb-banner h2 {
                font-size: 22px;
            }
            .pcb-banner .desc {
                font-size: 16px;
            }
            .quote-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            .contact-info {
                flex-direction: column;
                gap: 15px;
                font-size: 14px;
            }
            .contact-item i, .quote-btn i {
                font-size: 18px;
            }
        }
    