| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | import React from 'react';import './portal.less';const Footer = React.createClass({    render() {        return (            <footer>                <div className="container">                    <div className="friendship_link">                        <div className="friendship_link_tit">                            <h4>友情链接<span>显示全部</span></h4>                        </div>                        <div className="friendship_link_content">                            <a href="http://www.hnst.gov.cn/">湖南省科技厅</a>                            <a href="http://www.cssti.cn/">长沙市科技局</a>                            <a href="http://www.cast.org.cn/">中国科学技术协会</a>                            <a href="http://www.chinatorch.gov.cn/">科技部火炬中心</a>                            <a href="http://www.nosta.gov.cn/web/index.aspx">国家科技成果奖励办</a>                            <a href="http://www.nast.org.cn/portal.php">国家科技成果网</a>                            <a href="http://www.hnast.org.cn/portal/comm/index.action">湖南省科学技术协会</a>                            <a href="http://www.hncgw.gov.cn/">湖南省科技成果转化公共服务平台</a>                            <a href="http://www.hnjxw.gov.cn/">湖南省经济信息化委员会</a>                            <a href="http://kyy.hnu.cn/">湖南大学科学技术研究院</a>                        </div>                        <div className="friendship_link_content">                            <a href="http://www.gxst.gov.cn/">广西省科技厅</a>                            <a href="http://www.cssti.cn/">内蒙古自治区科技厅</a>                            <a href="http://www.cshtz.gov.cn/">长沙高新区管委会</a>                            <a href="http://www.jxas.ac.cn/">江西省科学院</a>                            <a href="http://www.cnic.cn/">中科院计算机网络信息中心</a>                            <a href="http://kxyjb.csu.edu.cn/">中南大学科学研究部</a>                            <a href="http://www.scei.org.cn/">中国科协创新创业服务中心</a>                            <a href="http://www.hbstd.gov.cn/">湖北省科技厅</a>                            <a href="http://www.gdstc.gov.cn/">广东省科技厅</a>                            <a href="http://www.hnkjt.gov.cn/">河南省科技厅</a>                        </div>                    </div>                    <div className="footer_contact">                        <div className="address">                            <p>湖南省长沙市营盘东路19号金山大厦八楼</p>                        </div>                        <div className="tel">                            <p>合作电话:0731-89907207 400-8800-962</p>                        </div>                        <div></div>                    </div>                </div>                <div className="company_link">                    <a href="http://www.kedexinxi.com/about/?49.html">关于公司</a>                    <a href="#">联系我们</a>                </div>                <div className="container support">                    <a href="#">Copyright © 2016-2017 阿凡提 版权所有</a>                    <a href="#">技术支持:湖南阿凡提科技有限公司</a>                </div>            </footer >        )    }});export default Footer;
 |