footer.jsx 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import React from 'react';
  2. import './portal.less';
  3. const Footer = React.createClass({
  4. render() {
  5. return (
  6. <footer>
  7. <div className="container">
  8. <div className="friendship_link">
  9. <div className="friendship_link_tit">
  10. <h4>友情链接<span>显示全部</span></h4>
  11. </div>
  12. <div className="friendship_link_content">
  13. <a href="http://www.hnst.gov.cn/">湖南省科技厅</a>
  14. <a href="http://www.cssti.cn/">长沙市科技局</a>
  15. <a href="http://www.cast.org.cn/">中国科学技术协会</a>
  16. <a href="http://www.chinatorch.gov.cn/">科技部火炬中心</a>
  17. <a href="http://www.nosta.gov.cn/web/index.aspx">国家科技成果奖励办</a>
  18. <a href="http://www.nast.org.cn/portal.php">国家科技成果网</a>
  19. <a href="http://www.hnast.org.cn/portal/comm/index.action">湖南省科学技术协会</a>
  20. <a href="http://www.hncgw.gov.cn/">湖南省科技成果转化公共服务平台</a>
  21. <a href="http://www.hnjxw.gov.cn/">湖南省经济信息化委员会</a>
  22. <a href="http://kyy.hnu.cn/">湖南大学科学技术研究院</a>
  23. </div>
  24. <div className="friendship_link_content">
  25. <a href="http://www.gxst.gov.cn/">广西省科技厅</a>
  26. <a href="http://www.cssti.cn/">内蒙古自治区科技厅</a>
  27. <a href="http://www.cshtz.gov.cn/">长沙高新区管委会</a>
  28. <a href="http://www.jxas.ac.cn/">江西省科学院</a>
  29. <a href="http://www.cnic.cn/">中科院计算机网络信息中心</a>
  30. <a href="http://kxyjb.csu.edu.cn/">中南大学科学研究部</a>
  31. <a href="http://www.scei.org.cn/">中国科协创新创业服务中心</a>
  32. <a href="http://www.hbstd.gov.cn/">湖北省科技厅</a>
  33. <a href="http://www.gdstc.gov.cn/">广东省科技厅</a>
  34. <a href="http://www.hnkjt.gov.cn/">河南省科技厅</a>
  35. </div>
  36. </div>
  37. <div className="footer_contact">
  38. <div className="address">
  39. <p>湖南省长沙市营盘东路19号金山大厦八楼</p>
  40. </div>
  41. <div className="tel">
  42. <p>合作电话:0731-89907207 400-8800-962</p>
  43. </div>
  44. <div></div>
  45. </div>
  46. </div>
  47. <div className="company_link">
  48. <a href="http://www.kedexinxi.com/about/?49.html">关于公司</a>
  49. <a href="#">联系我们</a>
  50. </div>
  51. <div className="container support">
  52. <a href="#">Copyright © 2016-2024 科德集团 版权所有</a>
  53. <a href="#">技术支持:湖南科德信息咨询集团有限公司</a>
  54. </div>
  55. </footer >
  56. )
  57. }
  58. });
  59. export default Footer;