<!DOCTYPE html>
<html>
<head lang="en">
    <include file="./Application/M/View/Common/head_include.html"/>
    <title>新闻详情</title>
    <link rel="stylesheet" type="text/css" href="/Public/static/home/m/css/shop_news.css"/>
    <link rel="stylesheet" type="text/css" href="/Public/static/home/m/css/news_center.css"/>
    <style type="text/css">
        .footer {
            margin-top: 0.8rem;
        }
    </style>
</head>
<body>
<include file="./Application/M/View/Common/head.html"/>
<div class="content">
    <div class="stores_top">
        <h2>新闻中心</h2>

        <h3>首页/新闻中心 </h3>
    </div>
    <div class="news_contain">
        <div class="news_cttl">
            <h3 class="ct_title">{$data['title']}</h3>

            <p>
                时间:<span class="nw_time">{:date('Y-m-d', strtotime($data['c_time']))}</span>&emsp; 来源:
                <span class="nw_from">{$data['source']}</span>&emsp; 作者:
                <span class="nw_author">{$data['author']}</span>
            </p>
        </div>
        <div class="news_ctct ">
            {:htmlspecialchars_decode($data['content'])}
        </div>
        <if condition="!empty($next)">
            <a href="{:U('m/about/new_detail', array('id' => $next['id'], 'type' => $type))}">
                <div class="re_nxbtn">
                    下一篇:<span>{$next['title']}</span>
                </div>
            </a>
        </if>
        <if condition="!empty($recommend)">
            <div class="news_recom">
                <div class="recom_title">推荐阅读</div>
                <div class="recom_ul">
                    <foreach name="recommend" item="v">
                        <div class="recom_li">
                            <div class="reli_img">
                                <a href="{:U('m/about/new_detail', array('id' => $v['id']))}">
                                    <img src="{$v['img']}"/>
                                </a>
                            </div>
                            <div class="reli_right">
                                <a href="{:U('m/about/new_detail', array('id' => $v['id']))}">
                                    <div class="retitle">{$v['title']}</div>
                                </a>

                                <div class="retime">{:date('Y-m-d', strtotime($v['c_time']))}</div>
                            </div>
                        </div>
                    </foreach>
                </div>
            </div>
        </if>
    </div>
    <include file="./Application/M/View/Common/footer.html"/>
</div>
<include file="./Application/M/View/Common/footer_include.html"/>
</body>
</html>