CINXE.COM

中国兵器工业集团有限公司

<!DOCTYPE html> <html lang="zh"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <meta name="format-detection" content="telephone=no" /> <meta name="renderer" content="webkit|ie-comp|ie-stand"> <meta charset="UTF-8"><script language="javascript" src="/module/jslib/jquery/jquery.js"></script> <script language="javascript" src="/module/jslib/urite/urite.min.js"></script> <link href="/module/jslib/tag/css/infotag.css" type=text/css rel=stylesheet> <meta name='WebId' content='1'> <meta name="description" content="中国兵器工业集团有限公司,是陆军武器装备研制发展主体和三军毁伤与信息化装备研制发展的骨干力量,以服务国家国防安全和国家经济发展为使命,以提升自主创新能力、提高发展质量、履行社会责任为三大任务,坚持技术地位决定市场地位、市场地位决定企业地位,坚持资本、技术、人才与文化底蕴同步积累,坚持顺应市场的力量、发挥机制的力量、培育文化的力量,坚持以技术创新和管理创新为根本动力,坚持人才是事业发展的决定性因素,坚持求真务实、开放发展,坚持技术相关的军民融合发展,坚持政治责任、经济责任与社会责任统筹兼顾,在建设高科技国际化兵器工业,打造有抱负、负责任、受尊重国家战略团队,建设国际一流防务集团和国家重型装备、特种化工、光电信息重要产业基地的实践中,努力建设与我国国际地位相适应的兵器工业!"> <meta name="keywords" content="兵器工业,中国兵器,兵工集团,兵器集团"> <title>中国兵器工业集团有限公司</title> <meta name="Keywords" content="中国兵器工业集团公司,兵器,中国兵器工业集团有限公司"> <meta name="Titles" content="中国兵器工业集团有限公司"> <meta name='Maketime' content='2025-04-08 18:59:47'> <meta name="SiteName" content="中国兵器工业集团有限公司"> <meta name="SiteDomain" content="www.norincogroup.com.cn"> <meta name="SiteIDCode" content=""> <meta name="siteurl" content="http://www.norincogroup.com.cn/index.html"> <meta name="guild" content=""> <meta name="district" content=""> <meta name="sitecatalog" content=""> <link rel="stylesheet" type="text/css" href="/images/1026/main.css" /> <script type="text/javascript" src="/images/1026/jquery.min.js"></script> <script type="text/javascript" src="/images/1026/jquery.slide-zool.js"></script> <script type="text/javascript" src="/images/1026/koala.min.1.5.js"></script> <script type="text/javascript" src="/images/1026/superfish.js"></script> <script type="text/javascript" src="/images/1026/lanrenzhijia.js"></script> <script type="text/javascript" src="/images/1026/jquery.SuperSlide.2.1.js"></script> <script type="text/javascript" charset="utf-8"> /** * parallelRoll 左右无缝滚动 * boxName : 最外层盒子类名 * tagName : 滚动标签元素 * time : 滚动间隔时间 * direction : 滚动方向 right-->向右 left-->向左 * visual : 可视数 * prev : 上一张 * next : 下一张 * */ (function($) { $.fn.parallelRoll = function(options) { var opts = $.extend({}, $.fn.parallelRoll.defaults, options); var _this = this; var l = _this.find(opts.tagName).length; var autoRollTimer; var flag = true; // 防止用户快速多次点击上下按钮 var arr = new Array(); /** * 如果当 (可视个数+滚动个数 >滚动元素个数) 时 为不出现空白停顿 将滚动元素再赋值一次 * 同时赋值以后的滚动元素个数是之前的两倍 2 * l. * */ if (opts.amount + opts.visual > l) { _this[0].innerHTML += _this[0].innerHTML; l = 2 * l; } else { l = l; } var w = $(opts.tagName).outerWidth(true); //计算元素的宽度 包括补白+边框 _this.css({ width: (l * w) + 'px' }); // 设置滚动层盒子的宽度 return this.each(function() { _this.closest('.' + opts.boxName).hover(function() { clearInterval(autoRollTimer); }, function() { switch (opts.direction) { case 'left': autoRollTimer = setInterval(function() { left(); }, opts.time); break; case 'right': autoRollTimer = setInterval(function() { right(); }, opts.time); break; default: alert('参数错误!'); break; } }).trigger('mouseleave'); $('.' + opts.next).on('click', function() { flag ? left() : ""; }); $('.' + opts.prev).on('click', function() { flag ? right() : ""; }); }); function left() { flag = false; _this.animate({ marginLeft: -(w * opts.amount) }, 1000, function() { _this.find(opts.tagName).slice(0, opts.amount).appendTo(_this); _this.css({ marginLeft: 0 }); flag = true; }); }; function right() { flag = false; arr = _this.find(opts.tagName).slice(-opts.amount); for (var i = 0; i < opts.amount; i++) { $(arr[i]).css({ marginLeft: -w * (i + 1) }).prependTo(_this); } _this.animate({ marginLeft: w * opts.amount }, 1000, function() { _this.find(opts.tagName).removeAttr('style'); _this.css({ marginLeft: 0 }); flag = true; }); }; }; //插件默认选项 $.fn.parallelRoll.defaults = { boxName: 'box', tagName: 'dd', time: 3000, // direction: 'left', // 滚动方向 visual: 2, //可视数 prev: 'prev', next: 'next', amount: 1 // 滚动数 默认是1 }; })(jQuery); $(document).ready(function() { $("#roll").parallelRoll({ amount: 1 }); }); </script> <style type="text/css"> * { margin: 0; padding: 0; } html, body { font: 12px/24px "微软雅黑"; } .box { height: 142px; overflow: hidden; width: 385px; position: relative; } #roll { width: 200%; } #roll dd { width: 105px; height: 140px; float: left; margin: 0px 0px 0px 20px; } #roll dd img { width: 95px; height: 140px; } .box span { position: absolute; bottom: 40%; display: inline-block; width: 20px; text-align: center; cursor: pointer; background: #efefef; z-index: 90; color: #a9a9a9; font-size: 30px; } .box .prev{ height:20px; background: url(/images/1026/sle.png) center center no-repeat; } .box .next{ height:20px; background: url(/images/1026/sri.png) center center no-repeat; } .box .next { right: -2px; } .indexShowBox a{ display: block; width: 100%; height: 400px; position: relative; } .indexShowBox a div{ width: 100%; height: 400px; position: absolute; left: 0; top: 0; z-index: 99; } .tab-hd-con{ border-bottom: 1px solid #d7d7d7; } .current1{ border: 1px solid #d7d7d7; border-bottom: 1px solid #fff; } .tab-main .tab-bd, .tab-sub .tab-bd, .tab-product .tab-bd, .tab-area .tab-bd{ border-top:none !important; } /* 本例子css */ .fullSlide{ width:100%; position:relative; height:400px; } .fullSlide .bd{width:100%; margin:0 auto; position:relative; z-index:0; overflow:hidden; } .fullSlide .bd ul{ width:100% !important; } .fullSlide .bd li{ width:100% !important; height:400px; overflow:hidden; text-align:center; } .fullSlide .bd li a{ display:block; height:400px; } .fullSlide .hd{ width:100%; position:absolute; z-index:1; bottom:0; left:0; height:30px; line-height:30px; } .fullSlide .hd ul{ text-align:center; } .fullSlide .hd ul li{cursor: pointer;display:inline-block; *display:inline; zoom:1; background: url(/images/1026/dot2.png) no-repeat; width: 18px; height: 18px;margin: 0 5px;overflow: hidden;filter:alpha(opacity=50);opacity:0.5; line-height:999px; } .fullSlide .hd .on{ background: url(/images/1026/dot1.png) no-repeat; } .fullSlide .prev, .fullSlide .next { width: 36px; height: 70px; margin: -60px 0 0; display: none; background: url(/images/1026/sl.png) no-repeat center center; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; filter:alpha(opacity=20);opacity:0.2; } .fullSlide .prev { left: 19%; } .fullSlide .next { background: url(/images/1026/sr.png) no-repeat center center;right: 19%; } .fullSlide .prev:hover, .fullSlide .next:hover { filter:alpha(opacity=50) !important;opacity:0.5 !important; } .column .list-main-normal li:hover span{ color:#256b9c; } .column .list-main-normal li:hover a{ color:#256b9c; } .box7:hover a{color:#256b9c !important;} .box20 li{padding-left:0 !important;width: 100%;} </style> <script type="text/javascript" src="/images/1026/hoverIntent.js"></script> <script type="text/javascript" src="/images/1026/supersubs.js"></script> </head> <body style="min-width: 1340px;"> <!-- 头部:logo,nav,images_loop --> <div class="header"> <!-- 顶部--> <div class="top"> <script src="/script/0/1707041357597751.js"></script> <script src="/script/12/2004032342062887.js"></script> <style type="text/css"> .jqtk { display: none !important;} .box5 { height: 60px !important;} .box6 { height: 60px !important;} </style> </div> <!-- 顶部 END--> </div> <!-- 导航 --> <div class="nav"> <div class="nav-n"> <script src="/script/0/1707041357599209.js"></script> <script src="/script/0/1707041357596242.js"></script> </div> </div> <div class="longbox w1003"> <div class="fullSlide"> <div class="bd"> <ul style="position: relative; width: 1903px; height: 357px;"> <li style="background:url(/picture/0/3bdea5bc273e48fbb7e46d2d831a2ef5.jpg) no-repeat 50% 0px;"></li><li style="background:url(/picture/0/1704171832567366134.png) no-repeat 50% 0px;"></li><li style="background:url(/picture/0/1702231959186146649.jpg) no-repeat 50% 0px;"></li><li style="background:url(/picture/0/479ea63c7fd946deb2ee98617e46b39a.jpg) no-repeat 50% 0px;"></li><li style="background:url(/picture/0/1702231959192236424.jpg) no-repeat 50% 0px;"></li> </ul> </div> <div class="hd"><ul><li class="on">1</li><li class="">2</li><li class="">3</li><li class="">4</li><li class="">5</li></ul></div> <span class="prev" style="opacity: 0.5; display: none;"></span> <span class="next" style="opacity: 0.5; display: none;"></span> </div> <script type="text/javascript"> /* 控制左右按钮显示 */ jQuery(".fullSlide").hover(function(){ jQuery(this).find(".prev,.next").stop(true,true).fadeTo("show",0.5) },function(){ jQuery(this).find(".prev,.next").fadeOut() }); /* 调用SuperSlide */ jQuery(".fullSlide").slide({ titCell:".hd ul", mainCell:".bd ul", effect:"fold", autoPlay:true, autoPage:true, trigger:"click", startFun:function(i){ var curLi = jQuery(".fullSlide .bd li").eq(i); /* 当前大图的li */ if( !!curLi.attr("_src") ){ curLi.css("background-image",curLi.attr("_src")).removeAttr("_src") /* 将_src地址赋予li背景,然后删除_src */ } } }); </script> </div> <div class="tt_2024"> <style type="text/css"> .tt_2024 { width: 1180px; margin: 30px auto 0; overflow: hidden; text-align: center;} .tt_2024 h2 { width: 100%; overflow: hidden; text-align: center;} .tt_2024 h2 a { font-size: 25px; line-height: 200%; display: block; font-weight: bold; text-align: center; color:#333333;} .tt_2024 h2 a:hover { text-decoration: underline;} .tt_2024 p {font-size: 18px; line-height: 30px; color:#666;} .tt_2024 p a {font-size: 15px; line-height: 30px; color:#666; padding: 0 15px;} .tt_2024 p a:hover { text-decoration: underline;} .tt_2024 p b {font-size: 16px; line-height: 30px; color:#666;} </style> <h2><a target="_blank" title="擦亮新时代党的建设“金色名片”——以习近平同志为核心的党中央贯彻执行中央八项规定、推进作风建设纪实" href="https://www.gov.cn/yaowen/liebiao/202503/content_7015578.htm">擦亮新时代党的建设“金色名片”<br/>——以习近平同志为核心的党中央贯彻执行中央八项规定、推进作风建设纪实</a></h2> <p></p> </div> <div class="news-box" style="margin: 30px auto 0;"> <div class="news-box-left"> <!-- 代码 开始 --> <div id="fsD1" class="focus"> <div id="D1pic1" class="fPic"> <div class="fcon" style="display: none;"> <a target="_blank" href="/art/2025/3/27/art_96_517759.html"><img style="width:380px; height:285px; object-fit: cover; opacity: 1;" src="/picture/0/7f8405178fdb48e3955853aaa0efd769.jpg" ></a><span class="shadow"><a target="_blank" href="/art/2025/3/27/art_96_517759.html">兵器工业集团与中国银行签署战略合作伙...</a></span> </div> <div class="fcon" style="display: none;"> <a target="_blank" href="/art/2025/3/24/art_96_517758.html"><img style="width:380px; height:285px; object-fit: cover; opacity: 1;" src="/picture/0/s_d64b0d8dfc3d46168198bc13168e945e.jpg" ></a><span class="shadow"><a target="_blank" href="/art/2025/3/24/art_96_517758.html">兵器工业集团与上海电气举行工作会谈</a></span> </div> <div class="fcon" style="display: none;"> <a target="_blank" href="/art/2025/3/24/art_96_517757.html"><img style="width:380px; height:285px; object-fit: cover; opacity: 1;" src="/picture/0/s_90ca502dc9c64cd48f307f40ba746df1.jpg" ></a><span class="shadow"><a target="_blank" href="/art/2025/3/24/art_96_517757.html">程福波到江山重工研究院、北化研究院集...</a></span> </div> <div class="fcon" style="display: none;"> <a target="_blank" href="/art/2025/3/24/art_96_517756.html"><img style="width:380px; height:285px; object-fit: cover; opacity: 1;" src="/picture/0/93ad50e5b8ac4391b166e57dc0ca6172.png" ></a><span class="shadow"><a target="_blank" href="/art/2025/3/24/art_96_517756.html">马云双到华安集团、和平重工集团调研</a></span> </div> <div class="fcon" style="display: none;"> <a target="_blank" href="/art/2025/3/17/art_96_516791.html"><img style="width:380px; height:285px; object-fit: cover; opacity: 1;" src="/picture/0/9245cb2a53894216874965ae738a4171.png" ></a><span class="shadow"><a target="_blank" href="/art/2025/3/17/art_96_516791.html">马云双到北化研究院集团、兵器四院调研</a></span> </div> </div> <div class="fbg"> <div class="D1fBt" id="D1fBt"> <a href="javascript:void(0)" hidefocus1="true" target="_self" class=""><i>1</i></a> <a href="javascript:void(0)" hidefocus1="true" target="_self" class=""><i>2</i></a> <a href="javascript:void(0)" hidefocus1="true" target="_self" class="current"><i>3</i></a> </div> </div> <span class="prev"></span> <span class="next"></span> </div> <script type="text/javascript"> Qfast.add('widgets', { path: "/images/1026/terminator2.2.min.js", type: "js", requires: ['fx'] }); Qfast(false, 'widgets', function() { K.tabs({ id: 'fsD1', //焦点图包裹id conId: "D1pic1", //** 大图域包裹id tabId: "D1fBt", tabTn: "a", conCn: '.fcon', //** 大图域配置class auto: 1, //自动播放 1或0 effect: 'fade', //效果配置 eType: 'click', //** 鼠标事件 pageBt: true, //是否有按钮切换页码 bns: ['.prev', '.next'], //** 前后按钮配置class interval: 3000 //** 停顿时间 }) }) </script> <!-- 代码 结束 --> <div class="area-sub"> <div id="layout-t" class="tab-product tab-sub-3 ui-style-gradient"> <h2 class="tab-hd"> <span class="tab-hd-con current1"><a href="/col/col84/index.html" target="_blank">集团新闻</a> </span> <span class="tab-hd-con"><a href="/col/col85/index.html" target="_blank">成员动态</a> </span> <span class="tab-hd-con"><a href="/col/col89/index.html" target="_blank">媒体聚焦</a> </span> <span class="tab-hd-con"><a href="/col/col86/index.html" target="_blank">国资动态</a> </span> </h2> <div class="tab-bd dom-display"> <div class="tab-bd-con" style="display: block;"> <div class="column"> <ul class="list-main-normal"> <li ><span>2025-01-20</span><a title="兵器工业集团2025年度工作会议:全面创新 全面转型 全面改革 加快建设具有全球竞争力的世界一流科技集团" href="/art/2025/1/20/art_84_508109.html" target="_blank">兵器工业集团2025年度工作会议:全面创新 全面...</a></li> <li ><span>2025-02-13</span><a title="兵器工业集团召开2025年度党的建设暨党风廉政建设和反腐败工作会议" href="/art/2025/2/13/art_84_514847.html" target="_blank">兵器工业集团召开2025年度党的建设暨党风廉政建...</a></li> <li ><span>2025-04-07</span><a title="程福波到驻四川兵工单位调研" href="/art/2025/4/7/art_84_518409.html" target="_blank">程福波到驻四川兵工单位调研</a></li> <li ><span>2025-04-07</span><a title="2025年国防科技工业新闻宣传与军工文化建设领导小组会议在京召开" href="/art/2025/4/7/art_84_518408.html" target="_blank">2025年国防科技工业新闻宣传与军工文化建设领导...</a></li> <li ><span>2025-04-03</span><a title="马云双到辽沈集团调研" href="/art/2025/4/3/art_84_518272.html" target="_blank">马云双到辽沈集团调研</a></li> <li ><span>2025-03-31</span><a title="兵器工业集团党组理论学习中心组举办深入贯彻中央八项规定精神学习教育联学会" href="/art/2025/3/31/art_84_518113.html" target="_blank">兵器工业集团党组理论学习中心组举办深入贯彻中央八...</a></li> <li ><span>2025-03-28</span><a title="马云双到导控所调研" href="/art/2025/3/28/art_84_517911.html" target="_blank">马云双到导控所调研</a></li> <li ><span>2025-03-27</span><a title="兵器工业集团与中国银行签署战略合作伙伴协议" href="/art/2025/3/27/art_84_517747.html" target="_blank">兵器工业集团与中国银行签署战略合作伙伴协议</a></li> </ul> </div> </div> <div class="tab-bd-con"> <div class="column"> <ul class="list-main-normal"> <li ><span>2025-04-08</span><a title="兵器工业集团各单位推动深入贯彻中央八项规定精神学习教育扎实有序开展" target="_blank" href="/art/2025/4/8/art_85_518641.html">兵器工业集团各单位推动深入贯彻中央八项规定精神学...</a></li> <li ><span>2025-04-08</span><a title="需求牵引·创新赋能:哈一机集团蟒式全地形车破局之路" target="_blank" href="/art/2025/4/8/art_85_518640.html">需求牵引·创新赋能:哈一机集团蟒式全地形车破局之...</a></li> <li ><span>2025-04-07</span><a title="清明祭忠魂,不负先烈遗志,牢记使命勇前行!" target="_blank" href="/art/2025/4/7/art_85_518411.html">清明祭忠魂,不负先烈遗志,牢记使命勇前行!</a></li> <li ><span>2025-04-07</span><a title="兵器工业集团各单位扎实开展深入贯彻中央八项规定精神学习教育" target="_blank" href="/art/2025/4/7/art_85_518410.html">兵器工业集团各单位扎实开展深入贯彻中央八项规定精...</a></li> <li ><span>2025-04-03</span><a title="兵器工业集团各单位确保深入贯彻中央八项规定精神学习教育扎实有序开展" target="_blank" href="/art/2025/4/3/art_85_518275.html">兵器工业集团各单位确保深入贯彻中央八项规定精神学...</a></li> <li ><span>2025-04-03</span><a title="兵器工业集团各单位扎实开展深入贯彻中央八项规定精神学习教育" target="_blank" href="/art/2025/4/3/art_85_518274.html">兵器工业集团各单位扎实开展深入贯彻中央八项规定精...</a></li> <li ><span>2025-04-03</span><a title="兵器工业集团多家单位获行业表彰" target="_blank" href="/art/2025/4/3/art_85_518273.html">兵器工业集团多家单位获行业表彰</a></li> <li ><span>2025-04-01</span><a title="材料院53所承担国家级检验检测机构能力验证项目" target="_blank" href="/art/2025/4/1/art_85_518115.html">材料院53所承担国家级检验检测机构能力验证项目</a></li> </ul> </div> </div> <div class="tab-bd-con"> <div class="column"> <ul class="list-main-normal"> <li ><span>2025-04-03</span><a title="学习强国平台:从“卡脖子”到国产化,兵器工业一机集团开启农耕新“耕”局" target="_blank" href="/art/2025/4/3/art_89_518277.html">学习强国平台:从“卡脖子”到国产化,兵器工业一机...</a></li> <li ><span>2025-04-03</span><a title="中国日报网 | 兵工物资集团北方云景:以大模型为翼加速数智化转型" target="_blank" href="/art/2025/4/3/art_89_518276.html">中国日报网 | 兵工物资集团北方云景:以大模型为...</a></li> <li ><span>2025-03-28</span><a title="国资委网站:兵器工业集团自主研发的电动轮矿卡实现规模化应用" target="_blank" href="/art/2025/3/28/art_89_517914.html">国资委网站:兵器工业集团自主研发的电动轮矿卡实现...</a></li> <li ><span>2025-03-28</span><a title="工人日报客户端:银光集团打造“职工小家”样板间" target="_blank" href="/art/2025/3/28/art_89_517913.html">工人日报客户端:银光集团打造“职工小家”样板间</a></li> <li ><span>2025-03-14</span><a title="国资委网站:兵器工业集团保障春耕化肥供应" target="_blank" href="/art/2025/3/14/art_89_516635.html">国资委网站:兵器工业集团保障春耕化肥供应</a></li> <li ><span>2025-03-11</span><a title="《工人日报》:【两会聚焦】让就业“引擎”更强劲 让产业工人更有奔头" target="_blank" href="/art/2025/3/11/art_89_516313.html">《工人日报》:【两会聚焦】让就业“引擎”更强劲 ...</a></li> <li ><span>2025-03-11</span><a title="中工网:绕指柔中见匠心 巾帼英姿分外红——北京市三八红旗集体北方导航电装班" target="_blank" href="/art/2025/3/11/art_89_516312.html">中工网:绕指柔中见匠心 巾帼英姿分外红——北京市...</a></li> <li ><span>2025-02-28</span><a title="国资委网站|兵器工业集团特能集团:“小支点”撬动基层党建“大升级”" target="_blank" href="/art/2025/2/28/art_89_515878.html">国资委网站|兵器工业集团特能集团:“小支点”撬动...</a></li> </ul> </div> </div> <div class="tab-bd-con"> <div class="column"> <ul class="list-main-normal"> <li ><span>2024-12-25</span><a title="国务院国资委召开中央企业负责人会议迎难进取真抓实干推进高质量发展 更好履行国资央企使命责任" target="_blank" href="/art/2024/12/25/art_86_505511.html">国务院国资委召开中央企业负责人会议迎难进取真抓实...</a></li> <li ><span>2024-11-06</span><a title="国务院国资委党委传达学习习近平总书记重要讲话精神和中央政治局会议精神推进巡视整改常态化长效化 筑牢国资央企高质量发展文化根基" target="_blank" href="/art/2024/11/6/art_86_500775.html">国务院国资委党委传达学习习近平总书记重要讲话精神...</a></li> <li ><span>2024-11-04</span><a title="国务院国资委党委传达学习习近平总书记在省部级主要领导干部学习贯彻党的二十届三中全会精神专题研讨班开班式上重要讲话精神勇担使命强化落实 奋力书写国资国企全面深化改革新答卷" target="_blank" href="/art/2024/11/4/art_86_500474.html">国务院国资委党委传达学习习近平总书记在省部级主要...</a></li> <li ><span>2024-03-14</span><a title="国务院国资委党委认真传达学习贯彻习近平总书记在全国两会期间的重要讲话精神和全国两会精神锚定目标拼搏进取 奋力谱写国资央企高质量发展新篇章" target="_blank" href="/art/2024/3/14/art_86_475342.html">国务院国资委党委认真传达学习贯彻习近平总书记在全...</a></li> <li ><span>2024-02-27</span><a title="国务院国资委党委深入学习习近平总书记近期重要讲话精神研究完善政策供给 全力推动国资央企落实党中央重大决策部署" target="_blank" href="/art/2024/2/27/art_86_473600.html">国务院国资委党委深入学习习近平总书记近期重要讲话...</a></li> <li ><span>2024-02-20</span><a title="国务院国资委党委深入学习习近平总书记近期重要讲话和重要文章精神奋进新征程勇担新使命 为推动经济持续回升向好作出国资央企更大贡献" target="_blank" href="/art/2024/2/20/art_86_473184.html">国务院国资委党委深入学习习近平总书记近期重要讲话...</a></li> <li ><span>2024-02-07</span><a title="国务院国资委党委召开学习贯彻习近平新时代中国特色社会主义思想主题教育总结会议切实把主题教育成果转化为推动国资央企高质量发展的强劲动力" target="_blank" href="/art/2024/2/7/art_86_472496.html">国务院国资委党委召开学习贯彻习近平新时代中国特色...</a></li> <li ><span>2024-01-30</span><a title="国务院国资委党委召开党风廉政建设和反腐败工作会议锐意进取担当作为 不断开创国资央企全面从严治党新局面" target="_blank" href="/art/2024/1/30/art_86_471457.html">国务院国资委党委召开党风廉政建设和反腐败工作会议...</a></li> </ul> </div> </div> </div> </div> </div> </div> <div class="news-box-right"> <!-- 代码 开始 --> <div class="box4"> <p style="font-size: 18px;line-height: 30px;height:30px;">专题专栏<a target="_blank" href="/col/col88/index.html" style="margin-left: 125px;"><img src="/picture/0/1610091647122417824.png" style="margin-bottom: 5px;"></a></p> </div> <div class="box5"> <a target="_blank" href="/col/col9029/index.html"><img src="/picture/0/01d6599a57ca417ca5c04f341d9bd5b0.png"></a> </div> <div class="box6"> <a target="_blank" href="/col/col9013/index.html"><img src="/picture/0/cff58e11258c4e09ad8828f994735dc5.jpg" width="280" height="60"></a> </div> <div class="box6"><a target="_blank" href="http://www.norincogroup.com.cn/col/col9000/index.html"><img src="/picture/0/6b804fa4029644ebb698a042bc0c003e.jpg" width="280" height="60"></a></div><div class="box6"><a target="_blank" href="http://www.norincogroup.com.cn/col/col8901/index.html"><img src="/picture/0/22e289595cb14dfeb8b16b48c8bfaf91.jpg" width="280" height="60"></a></div> </div> </div> <div class="content_con jqtk"> <div class="xxcon_imgs"> <ul> <li ><a href="http://www.norincogroup.com.cn/col/col8280/index.html" target="_blank"><img src="/picture/0/318db8712fa3498db1fdd717fd99c07f.jpg" width="384" height="90" style="margin-left:0;"></a></li> <li ><a href="http://www.norincogroup.com.cn/col/col3970/index.html" target="_blank"><img src="/picture/0/35b5d9b157ec436b968eb744cc6d124b.jpg" width="384" height="90" style="margin-left:0;"></a></li> <li ><a href="http://www.norincogroup.com.cn/col/col106/index.html" target="_blank"><img src="/picture/0/01828a22c8ce4459bc0af41f8f929f72.jpg" width="384" height="90" style="margin-left:0;"></a></li> </ul> </div> </div> <div class="box8"> <div class="box8-center"> <div class="box9"> <style type="text/css"> .box8 { height: 515px !important;} .box8-center { height: 515px !important;} .box9 { padding-top: 30px; } </style> <span style="font-size:35px;line-height: 65px; color: white;">全面创新 全面转型 全面改革<br />加快建设具有全球竞争力的世界一流科技集团</span> </div> <div class="box10" > <p style="margin-left: 0px;"><img src="/images/1026/junpin.png" /></p> <p style="font-size: 20px;color: #585858;">装备保障</p> <div class="box11"> <p style="font-size: 14px;margin-left: 30px;margin-right: 30px;color: #666666;">军品领域主要从事陆军武器装备和三军毁伤与信息化装备的研发,在国防现代化建设中发挥着重要作用。</p> </div> <div class="box12"> <a href="/col/col133/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </div> </div> <div class="box10" style="margin-left: 20px;"> <p style="margin-left: 0px;"><img src="/images/1026/wangyuanjing.png" /></p> <p style="font-size: 20px;color: #585858;">民品</p> <div class="box11"> <p style="font-size: 14px;margin-left: 30px;margin-right: 30px;color: #666666;">民品领域形成以重型装备、特种化工、光电信息、北斗产业为主要支撑的四大产业格局。</p> </div> <div class="box12"> <a href="/col/col134/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </div> </div> <div class="box10" style="margin-left: 20px;"> <p style="margin-left: 0px;"><img src="/images/1026/tadiao.png" /></p> <p style="font-size: 20px;color: #585858;">战略资源</p> <div class="box11"> <p style="font-size: 14px;margin-left: 30px;margin-right: 30px;color: #666666;">战略资源领域主要从事海外石油及稀有贵金属资源开发,海外资源储量不断增加。</p> </div> <div class="box12"> <a href="/col/col135/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </div> </div> <div class="box10" style="margin-left: 20px;"> <p style="margin-left: 0px;"><img src="/images/1026/qian.png" /></p> <p style="font-size: 20px;color: #585858;">流通服务</p> <div class="box11"> <p style="font-size: 14px;margin-left: 30px;margin-right: 30px;color: #666666;">流通服务领域主要包括贸易流通、物资流通、金融服务及工程建设,生产性服务保障能力持续提高。</p> </div> <div class="box12"> <a href="/col/col136/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </div> </div> </div> </div> <div class="boxkong"></div> <div class="box13"> <div class="box14"> <img src='/picture/0/1610091708303991921.png?cache=0.6183066042140126' width='390' height='150' border='0' > <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin-top:22px;">企业文化</p> <div class="box16"> <p style="font-size: 14px;margin-left: 20px;margin-right: 20px;margin-top: 5px;line-height: 23px;color:#666666;">始终坚持国家利益高于一切;始终坚持以科技创新和管理创新为动力;始终坚持把人才作为事业发展的解决因素。</p> <p style="margin-left: 260px;margin-top: 10px;"> <a href="/col/col27/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" style="margin-top: 23px;" /></a> </p> </div> </div> <div class="box15" style="margin-left: 4px;"> <img src='/picture/0/1612081729425376498.png?cache=0.3793572778813541' width='390' height='150' border='0' > <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin-top:22px;">社会责任</p> <div class="box17"> <p style="font-size: 14px;margin-left: 20px;margin-right: 20px;margin-top: 5px; line-height: 23px;color:#666666;">集团公司围绕文化引领、策划治理、沟通对话、机制融合、绩效评价和能力建设六大方面积极推进社会责任管理工作。</p> <p style="margin-left: 260px;margin-top: 10px;"> <a href="/col/col161/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </p> </div> </div> <div class="box14" style="margin-left: 4px;"> <img src='/picture/0/1610091708302745904.png?cache=0.6394251168239862' width='394' height='150' border='0' > <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin-top:22px;">科技创新</p> <div class="box16"> <p style="font-size: 14px;margin-left: 20px;margin-right: 20px;margin-top: 5px;line-height: 23px;color:#666666;">集团公司以战略性新兴产业、军民两用高新技术产业以及其他优势产业为代表的民品产业科技发展进入了重要成长期,成功研发一大批重大科技成果。</p> <p style="margin-left: 260px;margin-top: 10px;"> <a href="/col/col180/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </p> </div> </div> </div> <div class="box13"> <div class="box15"> <img src='/picture/0/1610131026530452898.png?cache=0.8064853646792471' width="390" height="150" border="0"> <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin-top:22px;">党群工作</p> <div class="box20"> <li><a href="/art/2025/3/31/art_126_518116.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">兵器工业集团党组理论学习中心组举办深入贯彻中...</a> </li> <li><a href="/art/2025/3/18/art_126_517015.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">兵器工业集团党组召开专题会议研究部署集团公司...</a> </li> <li><a href="/art/2025/3/17/art_126_516792.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">兵器工业集团党组认真传达学习贯彻全国两会精神</a> </li> <p style="margin-left: 260px;margin-top: 10px;"> <a href="/col/col126/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </p> </div> </div> <div class="box14" style="margin-left: 4px;"> <img src='/picture/0/2111251407205959421.jpg' width='390' height='150' border='0' > <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin-top:22px;">兵工文苑</p> <div class="box20"> <ul><li style="width: 358px;"><a href="/art/2025/4/3/art_30_518279.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">春天如约而至</a> </li> <li style="width: 358px;"><a href="/art/2025/4/3/art_30_518278.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">钢铁萌芽的春天</a> </li> <li style="width: 358px;"><a href="/art/2025/3/28/art_30_517915.html" style="font-size: 14px;margin-left: 20px;line-height: 27px;color:#666666;" target="_blank">试验场上的独白</a> </li> </ul> <p style="margin-left: 260px;margin-top: 10px;"> <a href="/col/col30/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" /></a> </p> </div> </div> <div class="box15" style="margin-left: 4px;"> <p> </p> <p style="margin-left: 20px;font-size: 20px;color: #3f79a3;margin:22px 0 46px 20px;">兵工刊物</p> <p> </p> <p> </p> <div class="box"> <span class="prev"> </span> <dl id="roll"> <dd><a target="_blank" ><img src="/picture/0/1612071429523912030.png" /></a></dd> <dd><a target="_blank" ><img src="/picture/0/s1704281903589679078.jpg" /></a></dd> <dd><a target="_blank" ><img src="/picture/0/1705251750362088286.jpg" /></a></dd> <dd><a target="_blank" ><img src="/picture/0/1612071429522859803.jpg" /></a></dd> <dd><a target="_blank" ><img src="/picture/0/1610251551335319892.jpg" /></a></dd> <dd><a target="_blank" ><img src="/picture/0/1705191807092181785.png" /></a></dd> </dl> <span class="next"> </span> </div> <a href="/col/col92/index.html" target="_blank"><img src="/picture/0/1610091647122417824.png" style="margin-left: 260px;margin-top: 52px;"/></a> </div> </div> <div class="boxkong"></div> <div style="margin: 0 auto;background: #efefef;border-top:5px solid #00a1e9;"> <div class="footer"> <script src="/script/0/1707041357595219.js"></script> </div> </div> <div class="foot-wx"> <script src="/script/0/1707041357591919.js"></script> <div id="pop2" style="display:block;"> <style type="text/css"> *{margin:0;padding:0;} #pop2{width:268px;font-size:12px;position: fixed;bottom:10px;z-index: 99;right: 10px;} #pop2Head{line-height:32px;position:relative;font-size:12px;padding:0 0 0 10px;} #pop2Head h2{font-size:14px;color:#666;line-height:32px;height:32px;} #pop2Head #pop2Close{position:absolute;right:10px;top:1px;} #pop2Head a#pop2Close:hover{color:#f00;cursor:pointer;} #pop2Content{padding:5px 10px;} #pop2Title a{line-height:24px;font-size:14px;font-family:'微软雅黑';color:#333;font-weight:bold;text-decoration:none;} #pop2Title a:hover{color:#f60;} #pop2Intro{text-indent:24px;line-height:160%;margin:5px 0;color:#666;} #pop2More{text-align:right;border-top:1px dotted #ccc;line-height:24px;margin:8px 0 0 0;} #pop2More a{color:#f60;} #pop2More a:hover{color:#f00;} #pop2Title{text-align: center;display: block;} </style> </div> </div> <style> *{ margin:0; paddding:0; font-family:"微软雅黑";} .cloud{position:fixed; top:0px; left:0px; z-index:999;} .cloud_close{ width:45px; height:25px; position:absolute; top:-25px; right:0px; font-size:12px; line-height:25px; color:#000; text-align:center; cursor:pointer; font-family:'微软雅黑';} .cloud_close:hover{ color:#000;} .test{ width:300px; height:200px; position:fixed; top:0px; left:0px; background-color:#0f0; z-index:998;} </style> <script> $(document).ready(function(){ /*初始设置*/ var f_speed = 20; /*漂浮速度*/ var fi_top=50,fi_left=20; /*初始位置:上、左*/ var $f_cloud = $("#cloud"); /*选定漂浮元素*/ //var $f_cloud = $(".test"); var f_top=0,f_left=0; var f_W = $(window).width()-$f_cloud.width(); var f_H = $(window).height()-$f_cloud.height(); function f_auto(){ if(fi_top>=0 && fi_top<f_H){ fi_top++; f_top = 1*fi_top; }else if(fi_top>=f_H && fi_top<2*f_H){ fi_top++; f_top = 2*f_H-fi_top; }else{ fi_top=0; fi_top++; f_top = 1*fi_top; } if(fi_left>=0 && fi_left<f_W){ fi_left++; f_left = 1*fi_left; }else if(fi_left>=f_W && fi_left<2*f_W){ fi_left++; f_left = 2*f_W-fi_left; }else{ fi_left=0; fi_left++; f_left = 1*fi_left; } $f_cloud.css({top:f_top,left:f_left}); } var f_cloud = setInterval(f_auto,f_speed); f_auto(); /*鼠标移入移出*/ $f_cloud.hover(function(){ clearInterval(f_cloud); },function(){ f_cloud = setInterval(f_auto,f_speed); }); /*自适应屏幕*/ $(window).resize(function(){ f_W = $(window).width()-$f_cloud.width(); f_H = $(window).height()-$f_cloud.height(); f_auto(); }); }); </script> <script type="text/javascript"> <!-- //切换到相关页 function gopage(n) { var tag = document.getElementById("menu").getElementsByTagName("li"); var taglength = tag.length; for (i = 1; i <= taglength; i++) { document.getElementById("m" + i).className = ""; document.getElementById("c" + i).style.display = 'none'; } document.getElementById("m" + n).className = "on"; document.getElementById("c" + n).style.display = ''; } //--> </script> <script type="text/javascript"> $(function() { var sWidth = $(".image-loop ul li").width(); //获取焦点图的宽度(显示面积) var len = $(".image-loop ul li").length; //获取焦点图个数 var index = 0; var picTimer; //以下代码添加数字按钮和按钮后的半透明条,还有上一页、下一页两个按钮 var btn = "<div class='btnBg'></div><div class='btn'>"; for (var i = 0; i < len; i++) { btn += "<span></span>"; } btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>"; $(".image-loop").append(btn); $(".image-loop .btnBg").css("opacity", 0.5); //上一页、下一页按钮透明度处理 $(".image-loop .preNext").css("opacity", 0.2).hover(function() { $(this).stop(true, false).animate({ "opacity": "0.5" }, 300); }, function() { $(this).stop(true, false).animate({ "opacity": "0.2" }, 300); }); //上一页按钮 $(".image-loop .pre").click(function() { index -= 1; if (index == -1) { index = len - 1; } showPics(index); }); //下一页按钮 $(".image-loop .next").click(function() { index += 1; if (index == len) { index = 0; } showPics(index); }); //本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度 $(".image-loop ul").css("width", sWidth * (len)); //显示图片函数,根据接收的index值显示相应的内容 function showPics(index) { //普通切换 var nowLeft = -index * (sWidth - 100); //根据index值计算ul元素的left值 $(".image-loop ul").stop(true, false).animate({ "left": nowLeft }, 0); //通过animate()调整ul元素滚动到计算出的position //$(".focus1 .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果 $(".image-loop .btn span").stop(true, false).animate({ "opacity": "0.4" }, 300).eq(index).stop(true, false).animate({ "opacity": "1" }, 300); //为当前的按钮切换到选中的效果 } }); </script> <script type="text/javascript"> //下拉菜单 // initialise plugins jQuery(function() { jQuery('ul.list-menu').superfish(); }); </script> <!-- visitcount Begin --><iframe src='./module/visitcount/visit.jsp?type=1&i_webid=1&i_columnid=1' name="vishidden" id="vishidden" frameborder="0" style="width:0; height:0; display:none"></iframe><!-- visitcount End --> <script language="javascript" src='/script/pagecontrol.js'></script><script language="javascript" src='/script/web_front.js'></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10