CINXE.COM

中华全国专利代理师协会

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="IE=7.0000" http-equiv="X-UA-Compatible" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>中华全国专利代理师协会</title> <meta name="keywords" content="中华全国专利代理师协会" /> <meta name="description" content="中华全国专利代理师协会" /> <link rel="stylesheet" type="text/css" href="/resources/agent/index/css/w2012_global.css" media="screen" /> <link rel="stylesheet" type="text/css" href="/resources/agent/index/css/w2012_skin.css" media="screen" /> <link rel="stylesheet" type="text/css" href="/resources/agent/index/css/agent_form.css" /> <STYLE> .flex-control-nav{width:170px;position:absolute;right:0;bottom:0px;_bottom:8px;text-align:center;z-index:3;} .flex-control-nav li{margin:0 5px;display:inline-block;zoom:1;*display:inline;} .flex-control-paging li a{display:block;height:18px;overflow:hidden;width:16px;cursor:pointer;color:#de781f;} .flex-control-paging li a.flex-active{color:#ffffff;} .flexslider .slides li {position:relative;width:555px;height:285px;overflow:hidden;} .flexslider .slides li .titBg{background:#000;position:absolute;height:36px;width:660px;bottom:0;z-index:1;} .flexslider .slides li .tit{position:absolute;height:36px;line-height:36px;overflow:hidden;width:400px;padding-left:20px;bottom:0;z-index:2;color:#ffffff;font-size:14px;} .flexslider .slides li .tit a{color:#ffffff;}/* 首页新闻轮播图样式表结束 */ .toutiao{margin-top:20px !important;margin-bottom:20px !important;width: 1000px;margin: 0 auto;border: 1px solid #fbfcfd;box-shadow: #e6e6e6 0px 0px 15px;-webkit-box-shadow: #e6e6e6 0px 0px 15px;background-color: #fff;padding: 20px;} .toutiao h3 { font-size: 30px; text-align: center; white-space: nowrap; margin: 0; font-weight: 600; } .toutiao a:hover{ text-decoration:underline;color: #FF5907; } .toutlist { overflow: hidden; margin-top: 8px; text-align: center; } .toutlist li { display: inline-block; color: #265b97; font-size: 22px; padding-right: 5px; } .toutlist a:hover{ text-decoration:underline;color: #FF5907; } </STYLE> </head> <!--主菜单--> <body> <div id="head" align="center"> <div id="w2012_body_in" class="w2012_body_in"> <link href="/resources/agent/css/updatePass.css" rel="stylesheet" type="text/css" /> <link href="/resources/shop/css/common_note.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="/resources/agent/index/scripts/swfobject_modified.js"></script> <script type="text/javascript" src="/resources/admin/js/jquery.js"></script> <script type="text/javascript" src="/resources/admin/js/jquery-migrate.min.js"></script> <script type="text/javascript" src="/resources/admin/js/jquery.validate.js"></script> <script type="text/javascript" src="/resources/shop/js/jsbn.js"></script> <script type="text/javascript" src="/resources/shop/js/prng4.js"></script> <script type="text/javascript" src="/resources/shop/js/rng.js"></script> <script type="text/javascript" src="/resources/shop/js/rsa.js"></script> <script type="text/javascript" src="/resources/shop/js/base64.js"></script> <script type="text/javascript" src="/resources/admin/js/common.js"></script> <script type="text/javascript" src="/resources/admin/js/input.js"></script> <script type="text/javascript" src="/resources/agent/js/updatePass.js"></script> <script> (function($) { $(document).ready(function() { $.ajax({ type: "get", dataType: "json", async: false, url: "/view/hits.jhtml", success: function(data) { $("#hids").append("<br>您是第 " + data.hits + " 位访客!</br>"); } }); var $headerUsername = $("#headerUsername"); var username = getCookie("username"); $("#login").hide(); if (username!=null) { $headerUsername.text("您好, " + username); $("#nologin").hide(); $("#login").show(); } $(".w2012_nav_title a").mouseover(function() { $(".w2012_nav_title a").attr("class", ""); if(this.id != null){ $("#" + this.id).attr("class", "actived"); } var currentMenuNo = parseInt(this.id); $(".w2012_nav_secondNav div").each(function() { $(this).hide(); $("#w2012_nav_subNav" + currentMenuNo).show(); }); }); var $articleSearchForm = $("#articleSearchForm"); var $keyword = $("#keyword"); var defaultKeyword = "文章搜索"; $keyword.focus(function() { if ($keyword.val() == defaultKeyword) { $keyword.val(""); } }); $keyword.blur(function() { if ($keyword.val() == "") { $keyword.val(defaultKeyword); } }); $articleSearchForm.submit(function() { if ($.trim($keyword.val()) == "" || $keyword.val() == defaultKeyword) { return false; } }); var $loginForm = $("#loginForm"); var $username = $("#username"); var $password = $("#password"); var $submit = $(":submit"); // 表单验证、记住用户名 $loginForm.validate({ rules: { username: "required", password: "required", captcha: "required" }, submitHandler: function(form) { $.ajax({ url: "/common/public_key.jhtml", type: "GET", dataType: "json", cache: false, async:false, beforeSend: function() { $submit.prop("disabled", true); }, success: function(data) { var rsaKey = new RSAKey(); rsaKey.setPublic(b64tohex(data.modulus), b64tohex(data.exponent)); var enPassword = hex2b64(rsaKey.encrypt($password.val())); var enUsername = hex2b64(rsaKey.encrypt($username.val())); //增加判断用户是否修改过密码的ajax,如果已修改过,正常登录,未修改过,弹出弹窗强制要求修改密码 var changedPass = false; $.ajax({ url: "/login/checkChangePass.jhtml", type: "POST", data: { username:enUsername, enPassword: enPassword }, dataType: "json", cache: false, async: false, success: function(message) { //只有错误才需要处理,正常不用处理,继续下面的登录逻辑 if (message.type == "error") { if(message.content == "未修改"){ $('#dialogOverlay').show(); $('#dialog').show(); }else{ //显示错误信息,允许再次点击登录 $submit.prop("disabled", false); $.message(message); } }else{ changedPass = true; } } }); //只有修改过密码后才能正常登录 if(changedPass){ //通过公私钥增加安全性 $.ajax({ url: "/common/public_key.jhtml", type: "GET", dataType: "json", cache: false, async: false, success: function(data) { var rsaKey = new RSAKey(); rsaKey.setPublic(b64tohex(data.modulus), b64tohex(data.exponent)); var enPassword = hex2b64(rsaKey.encrypt($password.val())); var enUsername = hex2b64(rsaKey.encrypt( $username.val())); $.ajax({ url: "/login/indexSubmit.jhtml", type: "POST", data: { username: enUsername, enPassword: enPassword }, dataType: "json", async: false, cache: false, success: function(message) { addCookie("memberUsername", $username.val(), {expires: 7 * 24 * 60 * 60}); $submit.prop("disabled", false); if (message.type == "success") { //增加验证是否已申请入会,如果没有跳转到入会申请页面,已申请则正常跳转 $.ajax({ url: "/member/agencyApplication/check.jhtml", type: "POST", data: {}, dataType: "json", cache: false, success: function(message) { if (message.appCheck == "false") { location.href = "/"+message.url; } else { location.href = "/"; } } }); } else { $.message(message); } } }); } }) } } }); } }); }); })(jQuery); </script> <!--顶端条--> <div id="dialogOverlay" class="dialogOverlay"></div> <div class="w2012_mininav"> <div class="w2012_layin"> <div class="row_l w2012_mininav_l" id="nologin" > <form id="loginForm" action="/login/indexSubmit.jhtml" method="post"> 用户名: <input type="text" id="username" name="username" class="text" maxlength="20" style="height:19px; width:99px; background-image:url(/resources/agent/index/images/button/tit_buttonbg01.png); "/>&nbsp; 密码: <input type="password" id="password" name="password" class="text" maxlength="20" style="height:19px; width:99px; background-image:url(/resources/agent/index/images/button/tit_buttonbg01.png); "/>&nbsp; <input type="submit" class="button" value="登录" style="height:20px; width:66px; background-image:url(/resources/agent/index/images/button/tit_buttonbg.png); " />&nbsp; <input class="button" type="button" value="忘记密码" onclick="window.location.href='/forget/forgetPassword.jhtml'" /> </form> </div> <div id="login" class="row_l w2012_mininav_l"> <span id="headerUsername" style="height:19px; width:66px;"></span> <a href="/logout.jhtml">[退出]</a> <!--<a href="/member/index.jhtml">[会员中心]</a>--> <a href="/view/memberCenter.jhtml">[会员中心]</a> </div> <div class="row_r w2012_mininav_r"> <a href="/english/">English</a>  </div> </div> </div> <!--迷你导航end--> <div class="w2012_banner"> <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1000" height="187"> <param name="movie" value="/resources/agent/index/images/banner.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="swfversion" value="6.0.65.0" /> <!-- 此 param 标签提示使用 Flash Player 6.0 r65 和更高版本的用户下载最新版本的 Flash Player。如果您不想让用户看到该提示,请将其删除。 --> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- 下一个对象标签用于非 IE 浏览器。所以使用 IECC 将其从 IE 隐藏。 --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="/resources/agent/index/images/banner.swf" width="1000" height="187"> <!--<![endif]--> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="swfversion" value="6.0.65.0" /> <param name="expressinstall" value="/resources/agent/index/scripts/expressInstall.swf" /> <!-- 浏览器将以下替代内容显示给使用 Flash Player 6.0 和更低版本的用户。 --> <div> <h4>此页面上的内容需要较新版本的 Adobe Flash Player。</h4> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="获取 Adobe Flash Player" width="112" height="33" /></a></p> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> <!--主导航--> <div class="w2012_layout w2012_nav"> <div class="w2012_nav_title" style="float:left;"> <div class="row_l"> <a id="4" href="/" target=_parent><span>首页</span></a> <a id="21" href="/article/single/9.jhtml" target=_parent><span>协会介绍</span></a> <a id="22" href="/article/list/18.jhtml" target=_parent><span>会员管理</span></a> <a id="100" href="/shop/bid/list.jhtml" target=_parent><span>党建工作</span></a> <a id="23" href="/article/list/30.jhtml" target=_parent><span>教育培训</span></a> <a id="24" href="/article/list/35.jhtml" target=_parent><span>国际交流</span></a> <a id="25" href="/article/list/41.jhtml" target=_parent><span>信息技术</span></a> <a id="26" href="/article/list/44.jhtml" target=_parent><span>法律法规</span></a> <a id="28" href="/article/single/22.jhtml" target=_parent><span>办事服务</span></a> <a href="/view/presidentBox.jhtml">&nbsp;&nbsp;&nbsp;</a> <div style="margin-top:2px; margin-left:740px; line-height:26px; height:30px; border:0px;float:left;"> <form id="articleSearchForm" action="/article/search.jhtml" method="get"> <input type="text" id="keyword" name="keyword" value="" width="396px" height="31px" style="line-height:23px; z-index:9999; background-image:url(/resources/agent/index/images/jiansuo_bg01.png);border:0; width:196px; height:21px;background-color: transparent;" />&nbsp; <input type="submit" style="z-index:9999; background-image:url(/resources/agent/index/images/jiansuo_bg02.png);border:0; cursor:pointer;height:21px; width:39px;background-color: transparent; color:#FFF;" width="39px" height="21px" value="检索" /> </form> </div> </div><!--add by gsf 20150619 检索部分 有增加按钮背景图--> </div> <div class="w2012_nav_secondNav" style="text-align:left;"> <div id="w2012_nav_subNav4" class=w2012_nav_subNav style="margin-top:2px"> 当前位置:首页 </div> <div id="w2012_nav_subNav21" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/single/9.jhtml" target=_parent>协会简介</a>&nbsp; <a href="/article/single/10.jhtml" target=_parent>协会章程</a>&nbsp; <a href="/article/single/24.jhtml" target=_parent>理事会负责人</a>&nbsp; <a href="/article/single/89.jhtml" target=_parent>常务理事</a>&nbsp; <a href="/article/single/90.jhtml" target=_parent>理事</a>&nbsp; <a href="/article/single/54.jhtml" target=_parent>协会秘书长</a>&nbsp; <a href="/article/single/21.jhtml" target=_parent>协会组织机构</a>&nbsp; <a href="/article/single/22.jhtml" target=_parent>秘书处信息</a>&nbsp; </div> <div id="w2012_nav_subNav22" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/list/18.jhtml" target=_parent>最新通知</a>&nbsp; <a href="/article/list/19.jhtml" target=_parent>会员活动</a>&nbsp; <a href="http://www.acpaa.cn/front/special/promiselist/71.jhtml" target=_parent>行业自律</a>&nbsp; <a href="/article/list/91.jhtml" target="_blank">会员考核信息</a>&nbsp; </div> <div id="w2012_nav_subNav100" class=w2012_nav_subNav style="margin-top:2px"> </div> <div id="w2012_nav_subNav23" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/list/30.jhtml" target=_parent>最新通知</a>&nbsp; <a href="/article/list/31.jhtml" target=_parent>培训活动</a>&nbsp; <a href="http://ycjy.acpaa.cn/" target="_blank">远程教育</a>&nbsp; <a href="/member/trainRecord/list.jhtml" target=_parent>培训记录查询</a>&nbsp; <a href="/article/uploadlist/33.jhtml" target=_parent>下载专区</a>&nbsp; <a href="/view/notelist.jhtml" target=_parent>反馈平台</a>&nbsp; <a href="/member/trainRecord/addTrainApply.jhtml" target="_blank">申报课时</a>&nbsp; <a href="http://ycjy.acpaa.cn/000/office/login.asp" target="_blank">诉讼代理人专栏</a>&nbsp; <a href="/article/list/106.jhtml" target=_parent>培训教材</a>&nbsp; </div> <div id="w2012_nav_subNav24" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/list/35.jhtml" target=_parent>国际交流通知</a>&nbsp; <a href="/article/list/36.jhtml" target=_parent>国际交流活动</a>&nbsp; <a href="/article/list/37.jhtml" target=_parent>考察交流资料</a>&nbsp; <a href="/article/list/39.jhtml" target=_parent>WIPO观察员</a>&nbsp; <a href="/article/list/40.jhtml" target=_parent>译文天地</a>&nbsp; </div> <div id="w2012_nav_subNav25" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/list/41.jhtml" target=_parent>最新通知</a>&nbsp; <a href="/article/list/42.jhtml" target=_parent>信息活动</a>&nbsp; <a href="/article/list/46.jhtml" target=_parent>专利全流程服务管理系统</a>&nbsp; <a href="/article/list/57.jhtml" target=_parent>电子申请FAQ</a>&nbsp; <a href="http://www.acpaa.cn/article/list/41.jhtml" target=_parent>信息安全</a>&nbsp; <a href="http://cponline.cnipa.gov.cn/" target="_blank">电子申请网</a>&nbsp; </div> <div id="w2012_nav_subNav26" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/list/44.jhtml" target=_parent>行业规章制度</a>&nbsp; <a href="/article/list/49.jhtml" target=_parent>知识产权法律法规</a>&nbsp; <a href="/article/list/50.jhtml" target=_parent>相关法律</a>&nbsp; <a href="/article/list/51.jhtml" target=_parent>国家知识产权局规章</a>&nbsp; <a href="/article/list/52.jhtml" target=_parent>有关司法解释</a>&nbsp; </div> <div id="w2012_nav_subNav28" class=w2012_nav_subNav style="margin-top:2px"> <a href="/article/single/22.jhtml" target=_parent>秘书处信息</a>&nbsp; <a href="/article/single/104.jhtml" target=_parent>会员相关</a>&nbsp; <a href="/article/single/102.jhtml" target=_parent>培训相关</a>&nbsp; <a href="/article/single/95.jhtml" target=_parent>EAC申请流程</a>&nbsp; <a href="/article/single/124.jhtml" target=_parent>信访指南</a>&nbsp; </div> </div><!--secondNav--> </div><!--w2012_nav--> <!--主导航end--> <!--修改密码弹窗start--> <div id="dialog" style="display:none" class="popup-pwd"><div class="box"> <p class="popup-tit">修改密码</p> <div class="pwd-form"><form> <p class="tips">您当前密码使用的是弱口令,为保障系统安全,请修改为含数字、大写字母、小写字母、特殊字符且长度8-16位的新密码。</p> <p style="display:none;color:red">请注意!!!新密码长度8-16位,且必须由数字、大写字母、小写字母、特殊字符组成。</p> <div class="item"> <label class="label"><i class="star">*</i>原密码:</label> <input id="oldpassword" class="text" type="password" name="oldpassword" maxlength="20" placeholder="请输入原密码确认身份"> </div> <div class="item"> <label class="label"><i class="star">*</i>新密码:</label> <input id="newpassword" class="text" type="password" name="newpassword" maxlength="16" placeholder=""> <p class="pwd-degree"> <span class="c-default" id="pwd-level1">弱</span> <span class="c-default" id="pwd-level2">中</span> <span class="c-default" id="pwd-level3">强</span> </p> </div> <div class="item"> <label class="label"><i class="star">*</i>确认新密码:</label> <input id="repassword" class="text" type="password" name="repassword" maxlength="16" placeholder=""> </div> <div class="item btn"> <button class="btn-submit" type="button" onclick="changePass();">确定</button> </div> </form></div> </div></div> <!--修改密码弹窗end--> </div> </div><div class="w2012_main"> <div class="toutiao"> <div> <h3> <a target="_blank" style="color:#265b97;font-size:26px;font-family:'微软雅黑';margin-left:-36px;" href="https://www.gov.cn/yaowen/liebiao/202502/content_7002744.htm" title="第九届亚洲冬季运动会在哈尔滨隆重开幕 习近平出席开幕式并宣布本届亚冬会开幕">第九届亚洲冬季运动会在哈尔滨隆重开幕 习近平出席开幕式并宣布本届亚冬会开幕</a> </h3> <ul class="toutlist"> <li style="padding-right:0px;margin-left:-36px;width:96%;"> <a target="_blank" style="color:#666666;font-size:18px;background-color:transparent;font-family:'微软雅黑';" href="https://www.gov.cn/yaowen/liebiao/202502/content_7002625.htm" title="习近平和彭丽媛为出席哈尔滨第九届亚洲冬季运动会开幕式的国际贵宾举行欢迎宴会">习近平和彭丽媛为出席哈尔滨第九届亚洲冬季运动会开幕式的国际贵宾举行欢迎宴会</a> <span style="display:inline-block;color:#333;padding-left:5px;">|</span> <a target="_blank" style="color:#666666;font-size:18px;background-color:transparent;font-family:'微软雅黑';padding-left:5px;" href="https://www.gov.cn/yaowen/liebiao/202502/content_7002627.htm" title="致辞全文">致辞全文</a> <!--<span style="display:inline-block;color:#333;padding-left:5px;">|</span><a target="_blank" style="color:#666666;font-size:16px;background-color:transparent;font-family:'微软雅黑';" href="https://www.gov.cn/yaowen/liebiao/202407/content_6962423.htm" title="联合声明">联合声明</a>--> </li> </ul> </div> </div> <!-- <div class="buttoncontent" style="height:139PX">[!-- 中华全国专利代理师协会党史学习教育专题 --] <a href="/shop/historyArticle/index.jhtml"><IMG border=0 src="/resources/agent/history_article/images/history.jpg" width=1000 height=139></a> </div> --> <div class="buttoncontent" style="height:139PX"><!-- 深入学习贯彻党的二十大精神专题 --> <a href="/shop/20dArticle/index.jhtml"><IMG border=0 src="/resources/agent/20d/images/title-bar.png" width=1000 height=139></a> </div> <div class="buttoncontent" style="height:139PX"><!-- 知识产权强国纲要 --> <a href="http://www.cnipa.gov.cn/col/col2741/index.html"><IMG border=0 src="/upload/image/jsgy2035.png" width=1000 height=139></a> </div><!--按钮区 end--> <!--主体--> <div class="colum-01"><!--新闻轮播图--> <div class="left-box"> <div id="demo01" class="flexslider"> <ul class="slides"> <li> <div class="img"><a href="/shop/talkArticle/index.jhtml" target="_blank"><img src="/resources/agent/25talk_article/images/25talk.png" width="556px" height="285px" /></a></div> <div class="titBg"></div> <div class="tit"><a href="/shop/talkArticle/index.jhtml" target="_blank">学习贯彻习近平总书记在中央政治局第二十五次集体学习时...</a></div> </li> <li> <div class="img"><a href="/column/szk/list/138.jhtml" target="_blank"><img src="/resources/agent/index/images/zx_xsd.jpg" width="556px" height="285px" /></a></div> <div class="titBg"></div> <div class="tit"><a href="/column/szk/list/138.jhtml" target="_blank">学习贯彻习近平新时代中国特色社会主义思想</a></div> </li> <li> <div class="img"><a href="https://www.cnipa.gov.cn/col/col2757/index.html" target="_blank"><img src="/upload/image/145.png" width="556px" height="285px" /></a></div> <div class="titBg"></div> <div class="tit"><a href="https://www.cnipa.gov.cn/col/col2757/index.html" target="_blank">“十四五”国家知识产权保护和运用规划</a></div> </li> <!-- <li> <div class="img"><a href="https://www.cnipa.gov.cn/col/col769/index.html" target="_blank"><img src="/resources/team/images/zhyq.png" width="556px" height="285px" /></a></div> <div class="titBg"></div> <div class="tit"><a href="https://www.cnipa.gov.cn/col/col769/index.html" target="_blank">战疫情,我们在行动</a></div> </li> --> <li> <div class="img"><a href="/article/content/202406/6179/1.html" target="_blank"><img src="/upload/image/202406/77460e70-18bf-4517-8022-3a403eddd0f7.png" width="556px" height="285px" /></a></div> <div class="titBg"></div> <div class="tit"><a href="/article/content/202406/6179/1.html" target="_blank" class=a01>中华全国专利代理师协会第十一次全国会员代表大会...</a></div> </li> </ul> </div> </div><!--新闻轮播图end--> <div class="right-box"><!--轮播图右侧,新闻活动区--> <!-- 按钮跳转JS --> <script> $().ready(function(){ var speed=40; demo2.innerHTML=demo1.innerHTML; demo3.innerHTML=demo1.innerHTML; function Marquee(){ if(demo2.offsetHeight-demo.scrollTop<=0) demo.scrollTop-=demo1.offsetHeight; else{ demo.scrollTop++ } } var MyMar=setInterval(Marquee,speed); demo.onmouseover=function() {clearInterval(MyMar)}; demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)} }); function Show_dk(dkid_num, dknum) { for(var i = 0; i < 2; i++) { document.getElementById("dkcontent_" + dkid_num + i).style.display = "none"; } for(var i = 0; i < 2; i++) { document.getElementById("dkmenu_" + dkid_num + i).className = "dkoff"; } document.getElementById("dkmenu_" + dkid_num + dknum).className = "dk"; document.getElementById("dkcontent_" + dkid_num + dknum).style.display = "block"; } </script><!-- 按钮跳转JS END--> <div class="qh"><!-- 新闻活动区内容--> <ul> <li class="dk" id="dkmenu_10"><a onMouseOver="setTimeout('Show_dk(1,0)',50);"><span><div style="margin-top:5px;">重要通知</div></span></a></li> <li class="dkoff" id="dkmenu_11"><a onMouseOver="setTimeout('Show_dk(1,1)',50);"><span><div style="margin-top:5px;">协会活动</div></span></a></li> </ul> <div id="dkcontent_10"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table01" style="float:left"> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202410/6393/1.html">国家知识产权局局长申长雨在中华全国专利代理师...</a></td> <td> </td> <td><a href="/article/content/202410/6393/1.html">2024-09-03</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202405/6156/1.html">学习贯彻习近平新时代中国特色社会主义思想</a></td> <td> </td> <td><a href="/article/content/202405/6156/1.html">2024-05-22</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202502/6589/1.html">关于再次启动2024年度专利代理师远程继续教育培...</a></td> <td> <a href="/article/content/202502/6589/1.html"><img src="/resources/agent/index/images/topnew.gif" width="32" height="12" /></a> </td> <td><a href="/article/content/202502/6589/1.html">2025-02-11</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202502/6583/1.html">中华全国专利代理师协会全国典型发明专利撰写案...</a></td> <td> <a href="/article/content/202502/6583/1.html"><img src="/resources/agent/index/images/topnew.gif" width="32" height="12" /></a> </td> <td><a href="/article/content/202502/6583/1.html">2025-02-05</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6575/1.html">中华全国专利代理师协会全国典型发明专利撰写案...</a></td> <td> </td> <td><a href="/article/content/202501/6575/1.html">2025-01-21</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6565/1.html">中华全国专利代理师协会全国典型发明专利撰写案...</a></td> <td> </td> <td><a href="/article/content/202501/6565/1.html">2025-01-13</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6564/1.html">转发关于印发《专利商标代理服务政府采购需求标准...</a></td> <td> </td> <td><a href="/article/content/202501/6564/1.html">2025-01-10</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6563/1.html">《专利代理委托合同示范文本》《商标代理委托合同示...</a></td> <td> </td> <td><a href="/article/content/202501/6563/1.html">2025-01-10</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6562/1.html">转发国家知识产权局办公室关于印发专利、商标代理...</a></td> <td> </td> <td><a href="/article/content/202501/6562/1.html">2025-01-10</a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6561/1.html">关于专利全流程服务管理系统优化升级的通知</a></td> <td> </td> <td><a href="/article/content/202501/6561/1.html">2025-01-09</a></td> </tr> </table> <div align="right" class="more01"><a href="/article/taglist.jhtml?tagIds=1&tagname=%E9%87%8D%E8%A6%81%E9%80%9A%E7%9F%A5" id="dkmenu_more"><font color="#0C59A3">更多>></font></a></div> </div> <div id="dkcontent_11" style="display:none;"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="table01" style="float:left"> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202410/6394/1.html"><font style="font-size:12px">国家知识产权局局长申长雨在中华全国专利代理师...</font></a></td> <td> </td> <td><a href="/article/content/202410/6394/1.html"><font style="font-size:12px">2024-09-03</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/201911/4771/1.html"><font style="font-size:12px">申长雨一行赴桑植县调研局定点扶贫工作</font></a></td> <td> </td> <td><a href="/article/content/201911/4771/1.html"><font style="font-size:12px">2019-11-22</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202406/6179/1.html"><font style="font-size:12px">中华全国专利代理师协会第十一次全国会员代表大...</font></a></td> <td> </td> <td><a href="/article/content/202406/6179/1.html"><font style="font-size:12px">2024-06-12</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202302/5689/1.html"><font style="font-size:12px">国家知识产权局党组成员、副局长卢鹏起赴代理师协...</font></a></td> <td> </td> <td><a href="/article/content/202302/5689/1.html"><font style="font-size:12px">2023-02-10</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202003/4862/1.html"><font style="font-size:12px">国家知识产权局局长申长雨在中华全国专利代理人...</font></a></td> <td> </td> <td><a href="/article/content/202003/4862/1.html"><font style="font-size:12px">2020-03-06</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6582/1.html"><font style="font-size:12px">代理师协会党总支部开展“新年新气象 红色电影铭...</font></a></td> <td> </td> <td><a href="/article/content/202501/6582/1.html"><font style="font-size:12px">2025-01-24</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6581/1.html"><font style="font-size:12px">代理师协会组织观看《榜样》专题节目</font></a></td> <td> </td> <td><a href="/article/content/202501/6581/1.html"><font style="font-size:12px">2025-01-24</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6577/1.html"><font style="font-size:12px">代理师协会组织学习全国宣传部长会议精神</font></a></td> <td> </td> <td><a href="/article/content/202501/6577/1.html"><font style="font-size:12px">2025-01-22</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6559/1.html"><font style="font-size:12px">代理师协会召开2025年元旦、春节期间廉洁教育会议...</font></a></td> <td> </td> <td><a href="/article/content/202501/6559/1.html"><font style="font-size:12px">2025-01-09</font></a></td> </tr> <tr style="line-height:20PX;"> <td><img src="/resources/agent/index/images/point02.png" width="22" height="22" /></td> <td width="297"><a href="/article/content/202501/6547/1.html"><font style="font-size:12px">专利代理机构管理经验交流培训班成功在郑州举办...</font></a></td> <td> </td> <td><a href="/article/content/202501/6547/1.html"><font style="font-size:12px">2025-01-06</font></a></td> </tr> </table> <div align="right" class="more01"><a href="/article/taglist.jhtml?tagIds=2&tagname=%E5%8D%8F%E4%BC%9A%E6%B4%BB%E5%8A%A8" id="dkmenu_more"><font color="#0C59A3">更多>></font></a></div> </div><!-- 新闻活动区内容end--> </div> </div><!--轮播图右侧,新闻活动区end--> </div><!-- 新闻轮播图区 第一排 结束--> <div class="buttoncontent"><!-- 按钮区 --> <table class="table02"> <tr height="12px"><td colspan="7"></td></tr> <tr> <td><a href="/view/memberCenter.jhtml"><img src="/resources/agent/index/images/button/table02001a.png" border="0" onMouseOver="this.src='/resources/agent/index/images//button/table02001b.png'" onMouseOut="this.src='/resources/agent/index/images//button/table02001a.png'" width="89" height="88" /></a></td> <td><a href="/view/patentAgenctSearch.jhtml"><img src="/resources/agent/index/images/button/table02002a.png" border="0" onMouseOver="this.src='/resources/agent/index/images//button/table02002b.png'" onMouseOut="this.src='/resources/agent/index/images//button/table02002a.png'" width="89" height="88" /></a></td> <td><a href="/member/trainRecord/list.jhtml"><img src="/resources/agent/index/images/button/table02003a.png" border="0" onMouseOver="this.src='/resources/agent/index/images//button/table02003b.png'" onMouseOut="this.src='/resources/agent/index/images//button/table02003a.png'" width="89" height="88" /></a></td> <td><a href="/front/special/promiselist/71.jhtml"><img src="/resources/agent/index/images/button/table02001a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/table02001b.png'" onMouseOut="this.src='/resources/agent/index/images/button/table02001a.png'" width="89" height="88" /></a></td> <td><a href="/view/memberFees.jhtml"><img src="/resources/agent/index/images/button/table02006a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/table02006b.png'" onMouseOut="this.src='/resources/agent/index/images/button/table02006a.png'" width="89" height="88" /></a></td> <td><a href="/view/recordCat.jhtml"><img src="/resources/agent/index/images/button/table02007a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/table02007b.png'" onMouseOut="this.src='/resources/agent/index/images/button/table02007a.png'" width="89" height="88" /></a></td> <td><a href="/font/register_order/onlineRegister.jhtml?catId=4"><img src="/resources/agent/index/images/button/table02008a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/table02008b.png'" onMouseOut="this.src='/resources/agent/index/images/button/table02008a.png'" width="89" height="88" /></a></td> </tr> <tr> <td><a href="/view/memberCenter.jhtml">会员中心</a></td> <td><a href="/view/patentAgenctSearch.jhtml">专利代理机构<br/>和专利代理师查询</a></td> <td><a href="/member/trainRecord/list.jhtml">专利代理师<br/>培训记录查询</a></td> <td><a href="/front/special/promiselist/71.jhtml" >专利代理<br/>诚信信息</a></td> <td><a href="/view/memberFees.jhtml">会费缴纳系统</a></td> <td><a href="/view/recordCat.jhtml">实习备案</a></td> <td><a href="/font/register_order/onlineRegister.jhtml?catId=4">在线报名</a></td> </tr> <tr><td colspan="7">&nbsp;</td></tr> </table> </div><!--按钮区 end--> <div class="buttoncontent" style="height:140PX"><!-- 横幅活动专区--> <!-- <a href="https://www.cnipa.gov.cn/col/col2770/index.html" ><img src="/resources/agent/images/subject/wz.jpg" border="0" width="329" height="88" /></a> <a href="/article/teamIndex.jhtml" ><img src="/resources/agent/images/subject/chx.png" border="0" width="329" height="88" /></a> <a href="/article/bbsIndex.jhtml" ><img src="/resources/agent/images/subject/lt.png" border="0" width="329" height="88" /></a> --> <a href="/column/congress11/index.jhtml" ><img src="/resources/column/congress11/image/entrance.png" border="0" width="1000" height="140" /></a> </div><!--按钮区 end--> <div class="buttoncontent" style="height:140PX"><!-- 横幅活动专区--> <a href="/shop/hyhfArticle/index.jhtml" ><img src="/resources/agent/hyhf/images/entrance.png" border="0" width="495" height="140" /></a> <a href="/orgItem/index.jhtml" style="float:right;"><img src="/resources/column/hygzlfz/images/entrance.png" border="0" width="495" height="140" /></a> </div> <div class="colum-02"><!--下排三列开始--> <div class="left01-box"><!--下排三列左部分 开始--> <div class="box01" style="height:298px"> <div class="tit01"> <div class="tit01a">网站公告</div> <div class="tit01b"><a href="/article/taglist.jhtml?tagIds=3&tagname=%E7%BD%91%E7%AB%99%E5%85%AC%E5%91%8A"><font color="#0c59a3">更多>></font></a></div> </div> <div class="news_list"> <ul> <div id="demo" style="overflow:hidden; width:320px; height:220px;"> <div id="demo1"> <li> <a href="/article/content/202112/5305/1.html">中华全国专利代理师协会基本服务项目 </a> </li> <li> <a href="/article/content/202112/5304/1.html">中华全国专利代理师协会培训收费方案 </a> </li> <li> <a href="/article/content/202112/5303/1.html">中华全国专利代理师协会关于专利代理师参... </a> </li> <li> <a href="/article/content/202112/5302/1.html">中华全国专利代理师协会诉讼代理管理办法... </a> </li> <li> <a href="/article/content/202112/5301/1.html">中华全国专利代理人协会诚信承诺书 </a> </li> <li> <a href="/article/content/202102/5072/1.html">专利代理师诉讼业务培训课时管理办法 </a> </li> <li> <a href="/article/content/202102/5071/1.html">中华全国专利代理师协会专利代理培训教师... </a> </li> <li> <a href="/article/content/202102/5069/1.html">中华全国专利代理师协会年度执业培训课时... </a> </li> </div> <div id="demo2"></div> <div id="demo3"></div> </div> </ul> </div> </div> <div class="box01" style="height:298px"> <div class="tit01"> <div class="tit01a">视频资料</div> <div class="tit01b"><a href="/article/vidio/48.jhtml"><font color="#0c59a3">更多>></font></a></div> </div> <style> .ck-slide { width: 326px; height: 236px; margin-left:10px; margin-top:8px;}<!-- change by gsf 20150617--> </style> <div class="ck-slide"> <ul class="ck-slide-wrapper"> <li> <a href="/upload/media/202404/03_wmf.mp4"><img src="/upload/image/202404/1cf119c2-c758-4a28-9ad1-7ae472415af5.png" alt="" width="326px" height="236px" /></a> </li> <li style="display:none"> <a href="/upload/media/202404/02_wm.mp4"><img src="/upload/image/202404/93f06b99-9e0c-447c-b0b0-524101e704c8.png" alt="" width="326px" height="236px" /></a> </li> <li style="display:none"> <a href="/upload/media/202404/01_zb.mp4"><img src="/upload/image/202404/ee1188b5-c99b-4444-9cfb-bedeed8a1852.png" alt="" width="326px" height="236px" /></a> </li> <li style="display:none"> <a href="/videoLesson/202208/20220802ppt.mp4"><img src="/upload/image/202208/4be86476-d006-4e32-a964-c735b458d24e.jpg" alt="" width="326px" height="236px" /></a> </li> <li style="display:none"> <a href="/videoLesson/20220728/20220728ppt.mp4"><img src="/upload/image/202207/ee5a3c82-a7f5-4733-b8f9-4fde13e653f5.png" alt="" width="326px" height="236px" /></a> </li> </ul> <div class="ck-slidebox"> <div class="slideWrap"> <ul class="dot-wrap"> <li class="current"><em>1</em></li> <li><em>2</em></li> <li><em>3</em></li> <li><em>4</em></li> <li><em>5</em></li> </ul> </div> <!-- js --> <script src="/resources/agent/index/js/flexslider.js" type="text/javascript"></script> <script src="/resources/agent/index/js/slide.js" type="text/javascript"></script> <script> $('.ck-slide').ckSlide({ autoPlay: true }); </script> </div> </div> </div> <div class="box01" style="height:178px"> <div class="picture_menu"> <ul> <li> <!-- <a href="/font/agentBatch/list.jhtml"><img src="/resources/agent/index/images/picture_menu01_1.jpg" width="180" height="67" /></a> --> <a href="/shop/jobArticle/list.jhtml"><img src="/resources/agent/index/images/picture_menu01_2.jpg" width="316" height="67" /></a> </li> <li><a href="/view/complaintlist.jhtml"><img src="/resources/agent/index/images/picture_menu01.png" width="316" height="67" /></a></li> </ul> </div> </div> </div><!--下排三列左部分 end--> <div class="mid01-box"><!--下排三列中部分 开始--> <div class="box02"> <div class="tit02"> <div class="tit02a">行业动态</div> <div class="tit02b"><a href="/article/list/53.jhtml"><font color="#0c59a3">更多>></font></a></div> </div> <table class="table03"> <tr> <td rowspan="2"><img src="" width="155px" height="97px" onerror="this.src='/resources/agent/images/nopic1.jpg'" /></td> <td width="5px"></td> <td><a href="/article/content/202502/6596/1.html"><font color="#0c59a3">[转发] 湖北省专利代理行业协会推动行业高质量...</font><img src="/resources/agent/index/images/topnew.gif" width="32" height="12" /></a></td> <td width="10px"></td> </tr> <tr> <td width="5px"></td> <td>  为进一步规范专利代理市场秩序,提升专利代理服务质量,促进专利代理行业高质量发展,中华全国专利代理师... <br /> <div align="right"> <a href="/article/content/202502/6596/1.html"><font color="#0c59a3">详细>></font></a> </div> </td> <td width="10px"></td> </tr> </table> &nbsp;<img src="/resources/agent/index/images/table_pic02.jpg" width="380" height="1" />&nbsp; <table class="table05"> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td><a href="/article/content/202502/6595/1.html">[转发上海市知识产权服务行业协会]《推动上海市...</a></td> <td>&nbsp;2025-02-12</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td><a href="/article/content/202502/6594/1.html">[转发广东专利代理协会]推动专利代理行业高质...</a></td> <td>&nbsp;2025-02-12</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td><a href="/article/content/202502/6593/1.html">[转发]福建省专利代理人协会“推动专利代理行业...</a></td> <td>&nbsp;2025-02-12</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td><a href="/article/content/202501/6571/1.html">[转发]广东专利代理协会召开第六届第四次会长...</a></td> <td>&nbsp;2025-01-16</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td><a href="/article/content/202501/6570/1.html">[转发]安徽省专利代理师协会召开 第三次会员代...</a></td> <td>&nbsp;2025-01-15</td> </tr> </table> </div> <div class="box04" style="height:486px;margin-top:10PX;"> <div class="tit02"> <div class="tit02a">法律法规</div> <div class="tit02b"><a href="/article/list/44.jhtml"><font color="#0c59a3">更多>></font></a></div> </div> <table class="table06"> <tr> <td colspan="4"><a href="/article/list/44.jhtml"><font color="#0c59a3">行业规章制度</font>&nbsp;<img src="/resources/agent/index/images/box4point.png" width="10" height="10" /></a></td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202112/5305/1.html">中华全国专利代理师协会基本服务项目</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2021-12-10</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202112/5304/1.html">中华全国专利代理师协会培训收费方案</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2021-12-10</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202112/5303/1.html">中华全国专利代理师协会关于专利代理师参与司...</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2021-12-10</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202112/5302/1.html">中华全国专利代理师协会诉讼代理管理办法</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2023-02-06</td> </tr> </table> <table class="table06"> <tr> <td colspan="4"><a href="/article/list/49.jhtml"><font color="#0c59a3">知识产权法律法规</font>&nbsp;<img src="/resources/agent/index/images/box4point.png" width="10" height="10" /></a></td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202004/4885/1.html">专利代理条例(2018年)</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2020-04-07</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202004/4925/1.html">中华人民共和国著作权法实施条例(2013年修订)...</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2020-04-20</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202004/4924/1.html">中华人民共和国著作权法(2010年修正)</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2020-04-20</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202004/4923/1.html">中华人民共和国植物新品种保护条例(2013年修订...</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2020-04-20</td> </tr> </table> <table class="table06"> <tr> <td colspan="4"> <a href="/article/list/51.jhtml"><font color="#0c59a3">国家知识产权局规章</font>&nbsp;<img src="/resources/agent/index/images/box4point.png" width="10" height="10" /></a> </td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202404/6115/1.html">《专利产业化促进中小企业成长计划实施方案》解...</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2024-03-18</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202404/6114/1.html">2024年专利代理师资格考试常见问题解答</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2024-03-15</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/202404/6113/1.html">第三批知识产权行政保护指导案例(9-11号)理...</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2024-02-06</td> </tr> <tr> <td><img src="/resources/agent/index/images/point02.png" width="10" height="10" /></td> <td width="276px"><a href="/article/content/201904/4544/1.html">专利代理管理办法</a></td> <td width="25px">&nbsp;&nbsp;</td> <td>2019-04-19</td> </tr> </table> </div> </div><!--下排三列中部分 end--> <div class="right01-box"><!--下排三列右部分 开始--> <!--change by gsf 20150617 开始--> <div class="box05" style="height:297px;"> <div class="picture_menu05"> <ul> <li style="margin-top:2px;"><a href="https://ggfw-dljg.cnipa.gov.cn/poam" target="_blank"><img src="/resources/agent/index/images/button/glxt1.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/glxt2.png'" onMouseOut="this.src='/resources/agent/index/images/button/glxt1.png'" width="232" height="58" /></a></li> <!-- <li style="margin-top:2px;"><a href="http://dlgl.cnipa.gov.cn/" target="_blank"><img src="/resources/agent/index/images/button/box05pic05a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic05b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic05a.png'" width="232" height="58" /></a></li> <li><a href="http://www.pppas.net/" target="_blank"><img src="/resources/agent/index/images/button/box05pic02a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic02b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic02a.png'" width="232" height="58" /></a></li> --> <li style="margin-top:2px;"><a href="http://ycjy.acpaa.cn/" target="_blank"><img src="/resources/agent/index/images/button/box05pic03a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic03b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic03a.png'" width="232" height="58" /></a></li> <li style="margin-top:2px;"><a href="http://ycjy.acpaa.cn/000/office/login.asp" target="_blank"><img src="/resources/agent/index/images/button/box05pic01a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic01b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic01a.png'" width="232" height="58" /></a></li> <!-- <li><a href="http://www.ficpi-china.com/" target="_blank"><img src="/resources/agent/index/images/button/box05pic06a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic06b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic06a.png'" width="232" height="58" /></a></li> --> <li style="margin-top:2px;"><a href="/font/agentBatch/list.jhtml" target="_blank"><img src="/resources/agent/index/images/button/box05pic08a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic08b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic08a.png'" width="232" height="58" /></a></li> <li style="margin-top:2px;"><a href="/shop/bid/list.jhtml" target="_blank"><img src="/resources/agent/index/images/button/box05pic07a.png" border="0" onMouseOver="this.src='/resources/agent/index/images/button/box05pic07b.png'" onMouseOut="this.src='/resources/agent/index/images/button/box05pic07a.png'" width="232" height="58" /></a></li> </ul> </div> </div> <!--change by gsf 20150617 结束--> <div class="box06" style="height:483px;"> <div class="picture_menu02"> <ul> <!--<li style="height:19%;padding-bottom:2px"><a href="/view/caselist.jhtml"><img src="/resources/agent/index/images/button/box06pic04.png" width="203" height="69" /></a></li>--> <!--change by zhoujiubo 20220606--> <li style="height:19%;padding-bottom:2px"><a href="/shop/subjectLink/index.jhtml"><img src="/resources/agent/index/images/button/lsztzl.jpg" width="203" height="69" /></a></li> <!--<li style="height:19%;padding-bottom:2px"><a href="/front/special/index.jhtml"><img src="/resources/agent/index/images/button/unlicensedAgency.jpg" width="203" height="69" /></a></li>--> <li style="height:19%;padding-bottom:2px"><a href="/shop/viparticle/list.jhtml"><img src="/resources/agent/index/images/button/box06pic05.png" width="203" height="69" /></a></li> <li style="height:19%;padding-bottom:2px"><a href="/view/essay.jhtml"><img src="/resources/agent/index/images/button/box06pic01.png" width="203" height="69" /></a></li> <li style="height:19%;padding-bottom:2px"><a href="/font/journal/list.jhtml"><img src="/resources/agent/index/images/button/box06pic02.png" width="203" height="69" /></a></li> <li style="height:19%;padding-bottom:2px"><a href="/view/people.jhtml" target="_blank"><img src="/resources/agent/index/images/button/box06pic03.png" width="203" height="69" /></a></li> </ul> </div> </div> </div><!--下排三列右部分 end--> </div><!--下排三列end--> <div class="colum-03"><!--友情链接 开始--> <div class="yqlj01"> <table> <tr> <td>友情链接:&nbsp;&nbsp;&nbsp;&nbsp;</td> <td> <select name="patent" style="width:150px;" onchange=jumpMenu(this)> <option>--知识产权--</option> <option value="http://www.cnipa.gov.cn/">国家知识产权局</option> <option value="http://www.ciptc.org.cn/">中国知识产权培训中心</option> <option value="http://www.cnipr.com/">中国知识产权网</option> <option value="https://www.zgrzbj.com/">中规(北京)认证有限公司</option> <option value="http://aippi.org/">AIPPI</option> <option value="http://www.icdpaso.org/">国际商事争端预防与解决组织</option> <option value="http://ggfw.cnipa.gov.cn:8010">国家知识产权公共服务网</option> </select> </td> <td>&nbsp;&nbsp;</td> <td> <select name="agent" style="width:150px;" onclick="window.open(this.value,'_blank')"> <option value="/friend_link/lawsuitList.jhtml">--事务所链接--</option> </select> </td> <td>&nbsp;&nbsp;</td> <td> <select name="apply" style="width:150px;" onchange="jumpMenu(this)"> <option value="1">--电子申请--</option> <option value="http://cponline.cnipa.gov.cn/?ivk_sa=1024320u">中国电子申请网</option> <option value="http://cpservice.cnipa.gov.cn/index.jsp">专利事务服务系统</option> <option value="http://fee.cnipa.gov.cn/">专利缴费信息网上补充及管理系统</option> </select> </td> <td>&nbsp;&nbsp;</td> <td> <select name="abc" style="width:150px;" onchange="jumpMenu(this)"> <option value="1">--法律网站--</option> <option value="http://www.chinaiprlaw.cn/">中国知识产权司法保护</option> <option value="http://ipr.court.gov.cn/">中国知识产权裁判文书网</option> </select> </td> </tr> </table> </div> </div><!--友情链接 end--> <div class="w2012_main"> <div class="colum-05"><!--底部导航 开始--> <div class="bmenu"> <table class="table07"> <tr> <td><a href="/article/single/9.jhtml">关于我们</a></td> <td width="60px">&nbsp;</td> <td><a href="#">版权声明</a></td> <td width="60px">&nbsp;</td> <td><a href="#">网站律师</a></td> <td width="60px">&nbsp;</td> <td><a href="/article/single/22.jhtml">联系我们</a></td> <td width="60px">&nbsp;</td> <td><a href="http://old.acpaa.cn" target="_blank">旧版回顾</a></td> </tr> </table> </div> </div><!--底部导航 end--> <div class="colum-06" ><!--底部 开始--> <div class="aboutus" id="hids"> <br /> 版权归有:中华全国专利代理师协会 京备12047258 技术支持:知识产权出版社有限责任公司 <br /> </div> </div><!--底部 end--> </div> </div><!--主体end--> <map name="Map" id="Map"> <area shape="rect" coords="0,0,160,94" href="http://www.sipo.gov.cn" /> <area shape="rect" coords="360,0,160,92" href="http://www.baidu.com" /> </map> <script> $(function() { $('#demo01').flexslider({ animation: "slide", direction:"horizontal", easing:"swing" }); $(".colum-02 .con-box:eq(1)").css({"margin-left":"9px","margin-right":"9px"}); $(".colum-02 .con-box:eq(4)").css({"margin-left":"9px","margin-right":"9px"}); $(".slides li .titBg,.zlz_top .bg").css({"opacity":0.6}); $(".tabmenu li").mouseover(function() { index = $(".tabmenu li").index(this); $(this).addClass("selected").siblings().removeClass("selected"); $(".tab_content .subcon").eq(index).show().siblings().hide(); }); }); function jumpMenu(obj) { var url = obj.options[obj.selectedIndex].value; if (url + "" != "") window.open(url); obj.selectedIndex = 0; } </script> <img src="/resources/agent/index/images/weixin.png" style="position:absolute;top:60px;right:25px;width:86px;height:86px" /> <img src="/resources/agent/index/images/2wm.jpg" style="position:absolute;top:156px;right:25px;width:86px;height:86px" /> <div id="J_floatAd" class="duilian dlRight"> <a class=close onclick=dlRight_close() href="javascript:void(0);">关闭</a> <dl> <dd> <a href="https://www.cnipa.gov.cn/col/col3122/index.html" target="_blank"><img src="/resources/agent/images/ywblzl.png" style="width:165px;height:94px" /></a> </dd> <dd> <a href="/shop/hyhfArticle/content.jhtml?id=5535" target="_blank"><img src="/resources/agent/index/images/hygy-jgml.png" style="width:165px;height:94px" /></a> </dd> <dd> <a href="/article/content/202208/5462/1.html"><img src="/upload/image/202210/b8c6490e-15c2-453d-a9ac-06683b536e3e.png" style="width:165px;height:94px" /></a> </dd> </dl> </div> <script type="text/javascript"> function dlRight_close() { $(".dlRight").hide(); } function floatAd() { this.ad = document.getElementById('J_floatAd'); this.lastScrollY = 0; this.minScreen = 1024; this.timer = null; } floatAd.prototype = { init: function() { var _this = this; this.ad.style.top = '250px'; if (window.screen.width < this.minScreen) { this.ad.style.display = 'none'; } this.timer = setInterval(function() {_this.scroll();}, 10); }, scroll: function() { var diffY; if (document.documentElement && document.documentElement.scrollTop) { diffY = document.documentElement.scrollTop; } else { diffY = document.body.scrollTop; } percent = 0.03 * (diffY - this.lastScrollY); if (percent > 0) { percent = Math.ceil(percent); } else { percent = Math.floor(percent); } this.ad.style.top = parseInt(this.ad.style.top) + percent + "px"; this.lastScrollY = this.lastScrollY + percent; } }; var my_float_ad = new floatAd(); my_float_ad.init(); swfobject.registerObject("FlashID"); </script> <div id="J_floatAd_left" class="duilian dlLeft"> <a class=close onclick=dlLeft_close() href="javascript:void(0);">关闭</a> <dl> <dd> <a href="/shop/jobArticle/list.jhtml"><img src="/resources/agent/index/images/hyzp.png" style="width:165px;height:94px" /></a> </dd> <!-- <dd> <a href="http://ycjy.acpaa.cn/videoLesson/2022course/2022tz1/video/index.html" target="_blank"><img src="/resources/agent/index/images/hygy-jgmd.jpg" style="width:165px;height:94px" /></a> </dd> <dd> <a href="/article/content/202405/6157/1.html"><img src="/resources/agent/index/images/2024gkzp.png" style="width:165px;height:94px" /></a> </dd>--> <dd> <a href="/article/content/202412/6536/1.html"><img src="/upload/image/202412/9a98bfea-50e1-4306-bc2e-6fbe2bd90a20.png" style="width:165px;height:94px" /></a> </dd> <dd> <a href="/article/content/202409/6371/1.html"><img src="/upload/image/202409/a2d43d0d-e789-4177-a23c-1b12ae7abfc4.png" style="width:165px;height:94px" /></a> </dd> <dd> <a href="/article/content/202402/6072/1.html"><img src="/upload/image/202402/8992e899-01d5-4e3c-a67e-70e166ac243c.png" style="width:165px;height:94px" /></a> </dd> </dl> </div> <script type="text/javascript"> function dlLeft_close() { $(".dlLeft").hide(); } function floatAd() { this.ad = document.getElementById('J_floatAd_left'); this.lastScrollY = 0; this.minScreen = 1024; this.timer = null; } floatAd.prototype = { init: function() { var _this = this; this.ad.style.top = '250px'; if (window.screen.width < this.minScreen) { this.ad.style.display = 'none'; } this.timer = setInterval(function() {_this.scroll();}, 10); }, scroll: function() { var diffY; if (document.documentElement && document.documentElement.scrollTop) { diffY = document.documentElement.scrollTop; } else { diffY = document.body.scrollTop; } percent = 0.03 * (diffY - this.lastScrollY); if (percent > 0) { percent = Math.ceil(percent); } else { percent = Math.floor(percent); } this.ad.style.top = parseInt(this.ad.style.top) + percent + "px"; this.lastScrollY = this.lastScrollY + percent; } }; var my_float_ad = new floatAd(); my_float_ad.init(); swfobject.registerObject("FlashID"); </script> </body> </html>

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