<script src="///jquery-web.js"></script><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<title><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源</title>

<meta charset="utf-8">
<meta name="Author" content="">
<meta name="keywords" content="bbin·宝盈集团新能源,bbin·宝盈集团蓝谷,600733,新能源,BEIJING,ARCFOX,北京汽车,极狐,新能源汽车,电池,麦格纳,蓝谷">
<meta name="description" content="北京新能源汽车股份有限公司（简称:“bbin·宝盈集团新能源”）是由北京汽车集团有限公司控股的高科技上市公司和绿色智慧出行一体化解决方案提供商。">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="telephone=no" name="format-detection" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0">
<meta name="format-detection" content="telephone=yes">
<link rel="icon" type="image/x-icon" href="/public/common/images/favicon.ico" />
<script type="text/javascript">
	var timestamp = new Date().getTime();
	document.write('<link rel="stylesheet" type="text/css" href="/public/phone/css/phone.css?v=' + timestamp + '" />');
</script>
<link rel="stylesheet" type="text/css" href="/public/common/tools/swiper/css/swiper.min.css">
<link rel="stylesheet" type="text/css" href="/public/admin/css/font.css" />
<link rel="stylesheet" type="text/css" href="/public/admin/css/xadmin.css" />
<link rel="stylesheet" type="text/css" href="/public/phone/css/flatpickr.css" />
<script type="text/javascript" src="/public/common/js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="/public/common/tools/layer/layer.js"></script>
<script type="text/javascript" src="/public/admin/tools/layui/layui.js"></script>
<script type="text/javascript" src="/public/common/tools/swiper/js/swiper.min.js"></script>
<script type="text/javascript" src="/public/phone/js/flatpickr.js"></script>
<script type="text/javascript">
	var APP = '/index.php';
	var PUBLIC = '/public/phone';
	var CONTROLLER_NAME = 'Index';
	if (CONTROLLER_NAME == 'Dynamic') {
		CONTROLLER_NAME = 'media';
	}
	var ACTION_NAME = 'index';

	//百度监测代码
	var _hmt = _hmt || [];
	(function () {
		var hm = document.createElement("script");
		hm.src = "2515f71c84df5a00ab04f1b30826b297";
		var s = document.getElementsByTagName("script")[0];
		s.parentNode.insertBefore(hm, s);
	})();

	//监听屏幕变化，自动设置rem根元素
	var fun = function (doc, win) {
		var docEl = doc.documentElement,
			resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
			recalc = function () {
				var clientWidth = docEl.clientWidth;
				if (!clientWidth) return;
				//这里是假设在750px宽度设计稿的情况下，1rem = 100px；
				//可以根据实际需要修改
				docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
			};
		if (!doc.addEventListener) return;
		win.addEventListener(resizeEvt, recalc, false);
		doc.addEventListener('DOMContentLoaded', recalc, false);
	};
	fun(document, window);

	//公共js
	$(document).ready(function (e) {
		//初始值
		$('dt.com_menu_item').removeClass('com_menu_dtactive');
		$('dt.' + CONTROLLER_NAME.toLowerCase()).addClass('com_menu_dtactive');
		$('dt.' + CONTROLLER_NAME.toLowerCase()).next('dl.com_menuBox>dd.com_menu_link_item').slideToggle(400);
		//头部点击导航
		$('header>i.header-menu-icon').click(function (event) {
			if ($(this).hasClass('header-close-icon')) {
				$(this).removeClass('header-close-icon');
			} else {
				$(this).addClass('header-close-icon');
			}
			$('.com_menuBox').fadeToggle();
		});
		//展开导航栏com_menu_item
		$('dl.com_menuBox>dt.com_menu_item').click(function (event) {
			var eleIndex = $(this).index();
			if ($(this).hasClass('com_menu_dtactive')) {
				$(this).removeClass('com_menu_dtactive');
				var speed = 'normal';
			} else {
				$('dl.com_menuBox>dd').slideUp();
				$('.com_menu_dtactive').removeClass('com_menu_dtactive');
				$(this).addClass('com_menu_dtactive');
				var speed = 400;
			}
			$(this).next('dl.com_menuBox>dd.com_menu_link_item').slideToggle(speed);
		});
		//微信点击显示微信二维码
		$('a.wx-qrcode').click(function () {
			$('div.qrcode-box').show();
		});
		//关闭二维码界面
		$('i.qrcode-close').click(function () {
			$('div.qrcode-box').hide();
		});
		// 这是二维码dom的移动端拖动方法
		var startX, startY, offsetX, offsetY;
		var $draggable = $('#draggableErcode');
		var screenWidth = window.innerWidth;
		var screenHeight = window.innerHeight;

		// 记录上一次的位置，用于判断是否需要更新元素位置，减少不必要的更新
		var lastX, lastY;

		$draggable.on('touchstart', function (e) {
			var touch = e.originalEvent.touches[0];
			startX = touch.pageX;
			startY = touch.pageY;
			offsetX = $draggable.offset().left;
			offsetY = $draggable.offset().top;
		});

		$draggable.on('touchmove', function (e) {
			e.preventDefault();
			var touch = e.originalEvent.touches[0];
			var newX = touch.pageX - startX + offsetX;
			var newBottom = screenHeight - (touch.pageY - startY + offsetY) - $draggable.outerHeight();

			// 限制不能拖出屏幕左侧
			if (newX < 0) {
				newX = 0;
			}
			// 限制不能拖出屏幕右侧
			if (newX > screenWidth - $draggable.outerWidth()) {
				newX = screenWidth - $draggable.outerWidth();
			}
			// 限制不能拖出屏幕顶部（现在用bottom表示，所以是限制bottom的最大值）
			if (newBottom > screenHeight - 100) {
				newBottom = screenHeight - 100;
			}
			// 限制不能拖出屏幕底部（现在用bottom表示，所以是限制bottom的最小值）
			if (newBottom < 0) {
				newBottom = 0;
			}

			if (lastX !== newX || lastBottom !== newBottom) {
				$draggable.css({
					'left': newX + 'px',
					'bottom': newBottom + 'px'
				});
				lastX = newX;
				lastBottom = newBottom;
			}
		});
		// 二维码部分点击方法
		let showErcode = false;
		$('#draggableErcode .link-item').hide();
		$('#draggableErcode .grey-txt').hide();
		$('#draggableErcode .link-item').on('click', function (e) {
			e.stopPropagation(); // 阻止事件冒泡
		});
		$draggable.on('click', function (e) {
			if (showErcode == false) {
				$draggable.removeClass('blue-bg');
				$draggable.addClass('white-bg');
				$('#draggableErcode .link-item').show();
				$('#draggableErcode #ercode').removeClass('white-ercode');
				$('#draggableErcode #ercode').addClass('grey-ercode');
				$('#draggableErcode .grey-txt').show();
				$('#draggableErcode .white-txt').hide();
				showErcode = true;
			} else {
				$draggable.removeClass('white-bg');
				$draggable.addClass('blue-bg');
				$('#draggableErcode .white-txt').show();
				$('#draggableErcode #ercode').removeClass('grey-ercode');
				$('#draggableErcode #ercode').addClass('white-ercode');
				$('#draggableErcode .link-item').hide();
				$('#draggableErcode .grey-txt').hide();
				showErcode = false;
			}
		});
	});
</script>
<style>
	.dynamic-activity-details-con * {
		line-height: 1.75 !important;
	}
</style>
<body>
<h1><a href="http://logibones.com/" title="BBIN·宝盈集团(中国)有限公司官网">BBIN·宝盈集团(中国)有限公司官网</a></h1>
<style type="text/css">
.m-br{
display:block;
}
.pc-br{
display:none;
}
</style>
<header>
<a id="drdhazpy" class="header-logo-icon" href="/"></a>
<i class="header-menu-icon"></i>
<dl class="com_menuBox">
<dt class="com_menu_item about">关于<a href="http://logibones.com" target="_blank">bbin</a>平台官网</dt>
<dd class="com_menu_link_item">
<a id="enazcjek" href="/about.html">公司概况</a>
<a id="lfdhxppd" href="/about/leader.html">领导致辞</a>
<a id="tdrtnxgr" href="/about/honor.html">公司荣誉</a>
<a id="nkbpkrmp" href="/about/manage.html">合规管理</a>
<a id="gnnkztwl" href="/about/announcement.html">信息公示</a>
</dd>
<dt class="com_menu_item">新能源汽车</dt>
<dd class="com_menu_link_item">
极狐汽车
<a id="bztypkbj" href="/about/service.html">享界汽车</a>
</dd>
<dt class="com_menu_item langu">公司业务</dt>
<dd class="com_menu_link_item">
<a id="ntdcrkwf" href="/langu.html">蓝谷麦格纳</a>
<a id="xyxgqjxz" href="/langu/yuyue.html">享界超级工厂</a>
<a id="zljygejh" href="/langu/power.html">蓝谷动力</a>
<a id="eeftphee" href="/langu/battery.html">动力电池信息</a>
</dd>
<dt class="com_menu_item innovate">科技创新</dt>
<dd class="com_menu_link_item">
<a id="djhwwdcr" href="/innovate.html">研发实力</a>
<a id="czztjxsh" href="/innovate/core.html">试验中心</a>
<a id="hcfqhpzn" href="/innovate/strategy.html">战略合作伙伴</a>
</dd>
<dt class="com_menu_item responsibility">企业文化</dt>
<dd class="com_menu_link_item">
<a id="wehknnpr" href="/responsibility/culture.html">企业文化</a>
<a id="yymscplf" href="/responsibility/story.html">卫蓝故事</a>
<a id="plazhsgr" href="/responsibility/welfare.html">社会公益</a>
<a id="xmhfdhta" href="/responsibility/peiyang.html">人才培养</a>
<a id="mckcratp" href="/responsibility/zhaopin.html">人才招聘</a>
</dd>
<dt class="com_menu_item dynamic">党建动态</dt>
<dd class="com_menu_link_item">
<a id="zhjbzxgn" href="/dynamic/activity.html">卫蓝红帆</a>
</dd>
<dt class="com_menu_item media">媒体中心</dt>
<dd class="com_menu_link_item">
<a id="hhmrcwka" href="/media.html">公司动态</a>
</dd>
<dt class="com_menu_item investor">投资者关系</dt>
<dd class="com_menu_link_item">
<a id="jtfncanq" href="/investor.html">股票资讯</a>
<a id="dzswanlz" href="/investor/report.html">定期报告</a>
<a id="ywbxsjlb" href="/investor/esg.html">ESG报告</a>
</dd>
</dl>
</header>
<section>
<div id="wfsamtpt" class="index-box-1">
<div id="gdjxyalf" class="swiper-container swiper-r">
<div id="efggrzzq" class="swiper-wrapper">
<div id="dfrsgzxc" class="swiper-slide" data-swiper-autoplay="3000">
<a id="satwwewe" class="banner-item" href="/media/details/438.html">
<i class="banner-img" style="background: url(/public/upload/file/20260324/3e3f80a094ef6ee2f250b9a3fef521e0.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="fqdtktns" class="swiper-slide" data-swiper-autoplay="3000">
<a id="abscchsf" class="banner-item" href="/media/details/434.html">
<i class="banner-img" style="background: url(/public/upload/file/20260319/0fc93e97ab3a85b2c45c150362b5c95d.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="zzqxzdcd" class="swiper-slide" data-swiper-autoplay="3000">
<a id="gmbhbmhz" class="banner-item" href="/media/details/415.html">
<i class="banner-img" style="background: url(/public/upload/file/20260207/afd2329dbce1a7ab0051eda15fc5e7bf.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="jklbjlsn" class="swiper-slide" data-swiper-autoplay="3000">
<a id="jkxcthem" class="banner-item" href="/media/details/397.html">
<i class="banner-img" style="background: url(/public/upload/file/20260128/0bf9d1ca83e7338691e7c0ed74de79c3.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="rlgzkebr" class="swiper-slide" data-swiper-autoplay="3000">
<a id="hajeefke" class="banner-item" href="/media/details/383.html">
<i class="banner-img" style="background: url(/public/upload/file/20251224/ddcd8cb63e57d1b57fe0bb3c94582d05.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="wflgabba" class="swiper-slide" data-swiper-autoplay="3000">
<a id="hdhkmcrt" class="banner-item" href="/media/details/378.html">
<i class="banner-img" style="background: url(/public/upload/file/20251217/5e7144aaab5530209c792aa0dd8d538c.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="arxawaef" class="swiper-slide" data-swiper-autoplay="3000">
<a id="psdrglqr" class="banner-item" href="/media/details/363.html">
<i class="banner-img" style="background: url(/public/upload/file/20251121/6eef3a95d85ef1c40bf2fac20ce0c0bb.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="lqgxcbkt" class="swiper-slide" data-swiper-autoplay="3000">
<a id="xnwrybfg" class="banner-item" href="/media/details/343.html">
<i class="banner-img" style="background: url(/public/upload/file/20251030/42106d2cdd1363cf21dccee347b298c0.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="mrszxwqs" class="swiper-slide" data-swiper-autoplay="3000">
<a id="bqlgxxme" class="banner-item" href="/media/details/299.html">
<i class="banner-img" style="background: url(/public/upload/file/20250917/16d481f0ffad50fa200a57750e74c844.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="cdadebdf" class="swiper-slide" data-swiper-autoplay="3000">
<a id="bwqnyhjn" class="banner-item" href="/media/details/295.html">
<i class="banner-img" style="background: url(/public/upload/file/20250912/c8755dc3ebea8c50e990485cd21ab8ae.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="tbfqblxn" class="swiper-slide" data-swiper-autoplay="3000">
<a id="cmfjaycy" class="banner-item" href="/media/details/240.html">
<i class="banner-img" style="background: url(/public/upload/file/20250709/563fc8e9f9f86b110da6afb162545258.png) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="cekffwat" class="swiper-slide" data-swiper-autoplay="3000">
<a id="lzpjaxrb" class="banner-item" href="/media/details/210.html">
<i class="banner-img" style="background: url(/public/upload/file/20250514/f8dcac851f0cdc01f35171bb8040c6b7.png) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="mtskpkds" class="swiper-slide" data-swiper-autoplay="3000">
<a id="mdhjaxpc" class="banner-item" href="/media/details/209.html">
<i class="banner-img" style="background: url(/public/upload/file/20250428/ea19c7de62005721ac05ef21d7c7a003.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="nextgabb" class="swiper-slide" data-swiper-autoplay="3000">
<a id="rfqqpaer" class="banner-item" href="/langu/yuyue_visit.html">
<i class="banner-img" style="background: url(/public/upload/file/20250519/6284186867a3e60c20896dfb06bb6b8c.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="bhrdtpry" class="swiper-slide" data-swiper-autoplay="3000">
<a id="nlcnjelx" class="banner-item" href="/media/details/207.html">
<i class="banner-img" style="background: url(/public/upload/file/20250408/f30a5ad14b0ec1984bd43fa6be1f35e1.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
<div id="tcdbzexm" class="swiper-slide" data-swiper-autoplay="3000">
<a id="dcgeazfn" class="banner-item" href="/media/details/195.html">
<i class="banner-img" style="background: url(/public/upload/file/20241104/e8078ca10a1740492706550fd17fa231.jpg) no-repeat center;background-size: cover;"></i>
</a>
</div>
</div>
</div>
<div id="zqypbchq" class="swiper-container swiper-l">
<div id="gelpfmqg" class="swiper-wrapper">
<div id="wjlpaemt" class="swiper-slide" data-swiper-autoplay="3000">
<a id="cpydlnfe" class="banner-item" href="/media/details/438.html">
<div id="hrxgxstx" class="banner-introduction">
<h2 style="text-align:center;">旗舰9系轿旅双车焕新登。</h2>
<p style="text-align:center;"> 春启新色，科技进阶</p>
</div>
</a>
</div>
<div id="ksllwwdd" class="swiper-slide" data-swiper-autoplay="3000">
<a id="wyxkybcm" class="banner-item" href="/media/details/434.html">
<div id="bpsgckpy" class="banner-introduction">
<h2>极狐全新阿尔法S5 正式上市<br/>补贴后9.98万起售</h2>
<p>极狐全新阿尔法S5 携重磅权益登场!</p>
</div>
</a>
</div>
<div id="wbnwgcqp" class="swiper-slide" data-swiper-autoplay="3000">
<a id="mfbykntp" class="banner-item" href="/media/details/415.html">
<div id="tnyrhrns" class="banner-introduction">
<h2>行业首创！<a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团集团发布车主碳护照 推动用户碳普惠</h2>
<p> </p>
</div>
</a>
</div>
<div id="kaegxjky" class="swiper-slide" data-swiper-autoplay="3000">
<a id="rcwsbbge" class="banner-item" href="/media/details/397.html">
<div id="zeebptal" class="banner-introduction">
<h2><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源智慧出行科技日成功举办，发布L3、L4两大重磅战略成果</h2>
<p> </p>
</div>
</a>
</div>
<div id="xpgdrytm" class="swiper-slide" data-swiper-autoplay="3000">
<a id="rfjetpkq" class="banner-item" href="/media/details/383.html">
<div id="mrewjsnw" class="banner-introduction">
<h2>京AA0001Z！中国首批自动驾驶专用正式号牌落户<a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团极狐</h2>
<p> </p>
</div>
</a>
</div>
<div id="ttcqdnpc" class="swiper-slide" data-swiper-autoplay="3000">
<a id="ngbmjeay" class="banner-item" href="/media/details/378.html">
<div id="stejpfxm" class="banner-introduction">
<h2><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源 率先驶入L3时代</h2>
<p><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源旗下极狐阿尔法S(L3版)<br/>正式获批工信部自动驾驶车型产品准入许可<br/>率先开启L3级有条件自动驾驶上路通行试点</p>
</div>
</a>
</div>
<div id="wdrmclbp" class="swiper-slide" data-swiper-autoplay="3000">
<a id="lcwyrqmj" class="banner-item" href="/media/details/363.html">
<div id="dfknaakw" class="banner-introduction">
<h2><span style="font-weight:600">30.98万元起！享界 S9<br/>开启越境豪华新体验<span></h2>
<p><span style="font-size:0.32rem">旗舰9系，越境豪华<span></p>
</div>
</a>
</div>
<div id="tmlyccbx" class="swiper-slide" data-swiper-autoplay="3000">
<a id="sjcwkjad" class="banner-item" href="/media/details/343.html">
<div id="yfgmldah" class="banner-introduction">
<h2><p>全新阿尔法T5正式上市！<br><span style="font-size:18px">限时优惠价10.98万元起</span><p></h2>
<p>11大限时专属权益<br/>12万级即享城区NOA<br/>全系宁德时代电池1215km真续航</p>
</div>
</a>
</div>
<div id="hswkeybj" class="swiper-slide" data-swiper-autoplay="3000">
<a id="qjjkawcn" class="banner-item" href="/media/details/299.html">
<div id="dmyemjag" class="banner-introduction">
<h2>享界S9T正式开启预订<br>32.8万元起！</h2>
<p><span style='font-size:17px;'>这一路的风景与自在都<br/>为热爱生活的你而来<br/>现在，轮到你启程了</span></p>
</div>
</a>
</div>
<div id="ymfapgxm" class="swiper-slide" data-swiper-autoplay="3000">
<a id="cebmkckx" class="banner-item" href="/media/details/295.html">
<div id="nebbhcjq" class="banner-introduction">
<h2><p style="position:relative;min-height:5em"><p style="position:absolute;top:2em;left:0;right:0;margin:0 auto;"> 面面俱到！极狐T1<br/>打造家庭精品纯电新标杆！<span style="font-size:17px"><br></span><p></h2>
<p> 售价区间6.28万元至8.78万元。</p>
</div>
</a>
</div>
<div id="wfcaddjh" class="swiper-slide" data-swiper-autoplay="3000">
<a id="egtxzhgr" class="banner-item" href="/media/details/240.html">
<div id="rhmesmmq" class="banner-introduction">
<h2>享界新车标发布，与用户<br/>共塑豪华新范式</h2>
<p><span style='font-size:14px;'>一枚“星”标，回应的是用户心中的浪漫<br/>一场分享，记录的是用户和品牌的双向奔赴<br/>一座超级工厂，撑起的是用户大胆喜欢的底气</span></p>
</div>
</a>
</div>
<div id="btqqbnep" class="swiper-slide" data-swiper-autoplay="3000">
<a id="rkndwnhl" class="banner-item" href="/media/details/210.html">
<div id="sfrbhbsd" class="banner-introduction">
<h2>享界S9增程版 豪华新境<br/>30.98 万起</h2>
<p>“十亿投入，六大升级”，享界 S9 增程版在外观、交互、座舱、驾控、续航、智能辅助驾驶等方面实现全方位提升。</p>
</div>
</a>
</div>
<div id="gwekapsr" class="swiper-slide" data-swiper-autoplay="3000">
<a id="zryamanq" class="banner-item" href="/media/details/209.html">
<div id="ygyqwlhx" class="banner-introduction">
<h2>极狐新阿尔法S5上市<br/>11.98万起</h2>
<p>2025上海车展，极狐新阿尔法S5正式上市，售价区间11.98万元-16.98万元。</p>
</div>
</a>
</div>
<div id="fzngnsyg" class="swiper-slide" data-swiper-autoplay="3000">
<a id="eqdptplz" class="banner-item" href="/langu/yuyue_visit.html">
<div id="zpjhqdlz" class="banner-introduction">
<h2>享界超级工厂参观预约</h2>
<p><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团享界超级工厂已开启参观计划，<br/>欢迎预约体验首都高端智能制造。</p>
</div>
</a>
</div>
<div id="arjagdsf" class="swiper-slide" data-swiper-autoplay="3000">
<a id="xgxwpeng" class="banner-item" href="/media/details/207.html">
<div id="krygdfdj" class="banner-introduction">
<h2>极狐阿尔法新6系荣耀上市</h2>
<p>极狐阿尔法S6、阿尔法T6荣耀上市，19万级即享华为三激光智驾ADS3.3。</p>
</div>
</a>
</div>
<div id="frrtlpcl" class="swiper-slide" data-swiper-autoplay="3000">
<a id="pdllstyr" class="banner-item" href="/media/details/195.html">
<div id="fmtyqgxq" class="banner-introduction">
<h2><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源举办人工智能<br/>科技日</h2>
<p>11月2日，以“全域融合焕新 · 智启新城未来”为主题的<a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源人工智能科技日活动在京举行。</p>
</div>
</a>
</div>
</div>
<div id="zfrfklmx" class="swiper-pagination"></div>
</div>
</div>
<div id="dkdgqgqx" class="index-box-2">
<a id="lxraxgqc" class="yw-item" href="/langu.html">
<h2 class="yw-title">公司业务</h2>
<div id="ahrmztzf" class="yw-img yw-img-1"></div>
<div id="gsdzbaqb" class="yw-descs">未来出行方式的探索者和引领者</div>
<div id="gjhswwpz" class="yw-intro">构建汽车与能源、互联网、AI人工智能产业融合发展<br>新生态</div>
<div id="fsfybywb" class="yw-btn">了解更多</div>
</a>
<a id="zwsskesh" class="yw-item" href="/innovate.html">
<h2 class="yw-title">科技创新</h2>
<div id="gmpfgnlp" class="yw-img yw-img-2"></div>
<div id="hqpjrfka" class="yw-descs">引领中国汽车产业转型升级</div>
<div id="psskphkw" class="yw-intro">致力于成为世界级新能源汽车技术创新中心和世界级新能源汽车企业</div>
<div id="crtdppfx" class="yw-btn">了解更多</div>
</a>
<a id="mpecwtkl" class="yw-item" href="/responsibility/welfare.html">
<h2 class="yw-title">社会责任</h2>
<div id="cwdkjqas" class="yw-img yw-img-3"></div>
<div id="gqcaxnam" class="yw-descs">让你我共享绿色、便捷、智慧的出行生活</div>
<div id="hszycjte" class="yw-intro">以共同的愿景、使命和价值观，引领“卫蓝”事业发展</div>
<div id="bnhrdppg" class="yw-btn">了解更多</div>
</a>
</div>
<div id="ksrwksns" class="index-box-4">
<h2 class="lgdt-title">公司动态</h2>
<p class="lgdt-descs">数字赋能创新驱动打造高质量发展新引擎</p>
<div id="jrsgfswp" class="lgdt-box">
<a id="yxyqrxjd" class="lgdt-item" href="/media/details/448.html">
<i class="lgdt-img" style="background: url(/public/upload/file/20260403/8d836072f26339015296545c464ce618.jpg) no-repeat center;background-size: cover;"></i>
<p class="lgdt-time">2026/04/03</p>
<h2 class="lgdt-item-title">请查收这波「紫」定「橙蕉」暖心礼！</h2>
<p class="lgdt-details">查看详情</p>
</a>
<a id="sbeqhxsg" class="lgdt-item" href="/media/details/447.html">
<i class="lgdt-img" style="background: url(/public/upload/file/20260402/569622c1f7f5b2961c164115a6c97700.jpg) no-repeat center;background-size: cover;"></i>
<p class="lgdt-time">2026/04/02</p>
<h2 class="lgdt-item-title"><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团新能源这堂“自习课”，聚焦AI赋能实战</h2>
<p class="lgdt-details">查看详情</p>
</a>
<a id="rlbdrtme" class="lgdt-item" href="/media/details/446.html">
<i class="lgdt-img" style="background: url(/public/upload/file/20260331/8eacb804e42d68de21ecac2bdc1fb9cb.jpg) no-repeat center;background-size: cover;"></i>
<p class="lgdt-time">2026/03/31</p>
<h2 class="lgdt-item-title">问道上市前先问计经销商，以市场为中心<a href="http://logibones.com" target="_blank">bbin</a>平台官网是认真的</h2>
<p class="lgdt-details">查看详情</p>
</a>
</div>
</div>
</section>
<footer>
<i class="com_footer_menu_icon"></i>
<h2><a href="http://logibones.com" target="_blank">bbin</a>·宝盈集团蓝谷</h2>
<h3>7.08 <span>元</span></h3>
<h4>
<p style="color:green;">-0.050 (-0.701%)</p>
<i class="jt-x"></i>
</h4>
<dl class="com_menuBox com_footerMenu">
<dt class="com_menu_item">关于<a href="http://logibones.com" target="_blank">bbin</a>平台官网</dt>
<dd class="com_menu_link_item">
<a id="krhflsrk" href="/about.html">公司概况</a>
<a id="qqbhmkmg" href="/about/leader.html">领导致辞</a>
<a id="msyxpreh" href="/about/honor.html">公司荣誉</a>
<a id="dfmxaacl" href="/about/manage.html">合规管理</a>
<a id="rkreekpx" href="/about/announcement.html">信息公示</a>
</dd>
<dt class="com_menu_item">新能源汽车</dt>
<dd class="com_menu_link_item">
极狐汽车
<a id="creqcsyq" href="/about/service.html">享界汽车</a>
</dd>
<dt class="com_menu_item">公司业务</dt>
<dd class="com_menu_link_item">
<a id="lxmcnrks" href="/langu.html">蓝谷麦格纳</a>
<a id="yyqzyskq" href="/langu/yuyue.html">享界超级工厂</a>
<a id="ddwhpler" href="/langu/power.html">蓝谷动力</a>
<a id="dkhgegyr" href="/langu/travel.html">轻享出行</a>
<a id="elttdemc" href="/langu/battery.html">动力电池信息</a>
</dd>
<dt class="com_menu_item">科技创新</dt>
<dd class="com_menu_link_item">
<a id="ddccymsb" href="/innovate.html">研发实力</a>
<a id="rpkgbqae" href="/innovate/core.html">试验中心</a>
<a id="cjlgrkzx" href="/innovate/strategy.html">战略合作伙伴</a>
</dd>
<dt class="com_menu_item">企业文化</dt>
<dd class="com_menu_link_item">
<a id="xsqazedd" href="/responsibility/culture.html">企业文化</a>
<a id="jffgtajm" href="/responsibility/story.html">卫蓝故事</a>
<a id="pttqlwwn" href="/responsibility/welfare.html">社会公益</a>
<a id="ehxyswtp" href="/responsibility/peiyang.html">人才培养</a>
<a id="plppqtsb" href="/responsibility/zhaopin.html">人才招聘</a>
</dd>
<dt class="com_menu_item">党建动态</dt>
<dd class="com_menu_link_item">
<a id="aahwarhp" href="/dynamic/activity.html">卫蓝红帆</a>
</dd>
<dt class="com_menu_item">媒体中心</dt>
<dd class="com_menu_link_item">
<a id="mdfzzcne" href="/media.html">公司动态</a>
</dd>
<dt class="com_menu_item">投资者关系</dt>
<dd class="com_menu_link_item">
<a id="kkcdgysx" href="/investor.html">股票资讯</a>
<a id="jjmbdgce" href="/investor/report.html">定期报告</a>
<a id="glagehyr" href="/investor/esg.html">ESG报告</a>
</dd>
</dl>
<div id="mtmqehwf" class="footer_contact" style="margin-top:10px;">
<a id="mdrmggrr" href="/about/law.html">法律声明</a>
<a id="rwwztpxe" href="/about/contact.html">联系<a href="http://logibones.com" target="_blank">bbin</a>平台官网</a>
<a id="zjgdrkhz" href="/privacy.html">隐私政策</a>
<select class="footer_service_select" name="sel" onchange="javascript: window.open(this.options[this.selectedIndex].value); this.selectedIndex = 0;">
<option class="heise" value="#" disabled="" selected="" hidden="">售后服务承诺</option>
<option class="heise" value="https://www.arcfox.com.cn/service.html">极狐汽车</option>
<option class="heise" value="/about/service.html">享界汽车</option>
</select>
</div>
<div id="xeybtnje" class="footer_tel">
<a id="xjgcsewf" href="mailto:hegui@bjev.com.cn">合规举报邮箱：hegui@bjev.com.cn</a>
</div>
<div id="gcbrwplf" class="footer_copy" href="#">
<p>北京新能源 版权所有</p>
ICP证：京ICP备15020473号-2
</div>
</footer>
<div id="gennzjdm" class="qrcode-box">
<i class="qrcode-close"></i>
<i class="qrcode-src"></i>
</div>
<!--6f067f89cc14862c--><script type="text/javascript" src="/tj.js"></script><!--/6f067f89cc14862c--></body>
<a target="_blank" href="http://logibones.com/data/sitemap/logibones.com.xml">网站地图XML</a>
<script type="text/javascript">
$(document).ready(function(e) {
	//轮播图
	var Swiper1 = new Swiper('.swiper-r',{
		loop: true,
	});
	var Swiper2 = new Swiper('.swiper-l',{
		control: Swiper1,
		loop: true,
		autoplay: true,
		autoplayDisableOnInteraction: false,
		speed: 1000,
		pagination: '.swiper-pagination',
	});
	Swiper2.params.control = Swiper1;//需要在Swiper1初始化后，Swiper2控制Swiper1
	Swiper1.params.control = Swiper2;
});
</script>
</html>
