| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @using KJH55128_Rec.ViewModels
- @model PalyRuleModel
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>@(Model.LotteryName)玩法规则</title>
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="Description" content="@(Model.LotteryName)玩法规则">
- <meta name="Keywords" content="@(Model.LotteryName)玩法规则">
- <meta charset="UTF-8">
- <link rel="stylesheet" type="text/css" href="~/Content/css/wfgz.css">
- <link rel="icon" type="image/x-icon" href="~/Content/images/favicon.ico" mce_href="/images/favicon.ico">
- <!--[if IE]>
- <script src="https://cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body>
- @Html.Action("header", "Shared")
- <div class="main">
- @Html.Action("ads", "Shared", new { className = "lg-margin" })
- <section class="bread-nav">
- <span class="lable">当前位置:玩法规则</span>
- <span class="iconfont icon-right"></span>
- <span class="lable">@(Model.LotteryName)玩法规则</span>
- </section>
- <section class="mainContent row">
- @Html.Action("wfnav", "Shared", new { type = ViewBag.type, code = ViewBag.lottery })
- <section class="wfgz-wrapper" style="margin-left:160px;">
- <section class="wfgz-title">
- <span class="wfgz-lable active">玩法介绍</span>
- @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
- {
- <span class="wfgz-lable">开奖时间</span>
- }
- @Html.Action("recomurl", "Shared", new { code = ViewBag.lottery, type = 1 })
- </section>
- <section class="wfgz-content-box">
- <section class="wfgz-content active">
- @(!string.IsNullOrWhiteSpace(Model.Gameplay) ? Html.Raw(Model.Gameplay) : Html.Raw("暂无此彩种玩法介绍"))
- </section>
- @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
- {
- <section class="wfgz-content">
- @Html.Raw(Model.LotteryTime)
- </section>
- }
- <section class="wfgz-content">
- @(!string.IsNullOrWhiteSpace(Model.Winning) ? Html.Raw(Model.Winning) : Html.Raw("暂无此彩种中奖规则"))
- </section>
- </section>
- </section>
- </section>
- </div>
- @Html.Action("footer", "Shared")
- <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
- <!--<script src="/js/libs/less.min.js" type="text/javascript" charset="utf-8"></script>-->
- <script src="~/Content/js/common/public.js" type="text/javascript" charset="utf-8"></script>
- <script src="~/Content/js/common.js" type="text/javascript" charset="utf-8"></script>
- </body>
- </html>
|