
        /* 独立作用域容器，避免样式污染 */
        .brand-section {
            width: 100%;
            padding: 40px 20px;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
            background-color: #fff;
        }

        .brand-title {
            text-align: center;
            font-size: 56px;
            color: #333;
            margin-bottom: 40px;
        }

        /* 品牌网格布局 - 固定一行4个，响应式调整 */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            justify-items: center;
        }

        /* 单个品牌项样式 */
        .brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease; /* 过渡动画 */
            cursor: pointer;
            width: 100%; /* 让每个项占满列宽 */
        }

        /* 悬停放大效果 */
        .brand-item:hover {
            transform: scale(1.08); /* 微微放大 */
        }

        /* 品牌图标容器 */
        .brand-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 品牌图标图片样式 */
        .brand-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* 品牌名称样式 - 加粗+全大写 */
        .brand-name {
            font-size: 14px;
            text-align: center;
            font-weight: 600; /* 轻微加粗（400是常规，600是半粗，700是粗体） */
            text-transform: uppercase; /* 强制全大写 */
        }

        /* 适配移动端 */
        @media (max-width: 768px) {
            .brand-grid {
                /* 平板端一行3个 */
                grid-template-columns: repeat(3, 1fr);
            }
            .brand-icon {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .brand-grid {
                /* 手机端一行2个 */
                grid-template-columns: repeat(2, 1fr);
            }
        }
    