
        /* 悬停放大+变色核心样式 */
        .hover-line {
            cursor: pointer; /* 鼠标指针变为手型，提升交互感 */
        }
        .hover-line:hover {
            transform: scale(1.1); /* 放大1.1倍，可调整数值（如1.05=放大5%） */
            display: inline-block; /* 保证放大效果不影响整体布局 */
        }
        /* 每行自定义悬停颜色 */
        .line-1:hover { color: #3498db !important; }
        .line-2:hover { color: #2ecc71 !important; }
        .line-3:hover { color: #9b59b6 !important; }
        .line-4:hover { color: #f1c40f !important; }
        .line-5:hover { color: #1abc9c !important; }
        .line-6:hover { color: #e67e22 !important; }
        .line-7:hover { color: #34495e !important; }
        .line-8:hover { color: #27ae60 !important; }
        .line-9:hover { color: #e74c3c !important; }
        .line-10:hover { color: #8e44ad !important; }
        .line-11:hover { color: #d35400 !important; }
        .line-12:hover { color: #c0392b !important; transform: scale(1.15) !important; } /* 最后一行放大比例更高，突出重点 */
        
        /* 原有响应式适配 */
        @media (max-width: 768px) {
            .pcba-promotion-section h2 {
                font-size: 24px !important;
            }
            .pcba-advantages, .pcba-business {
                font-size: 16px !important;
            }
            .pcba-brand {
                font-size: 17px !important;
            }
            .pcba-brand p:last-child {
                font-size: 18px !important;
            }
            /* 移动端悬停放大比例降低，避免溢出 */
            .hover-line:hover {
                transform: scale(1.05) !important;
            }
            .line-12:hover {
                transform: scale(1.1) !important;
            }
        }
    