123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @using Models.Entity.LottomatBaseDB
- @model Base_Tools
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>彩吧助手 - 专业的彩票工具|彩票走势图|彩票遗漏统计</title>
- <meta name="keywords" content="彩吧助手,3D在线缩水,P3在线缩水,3D走势图,P3走势图,P5走势图,双色球走势图,大乐透走势图,22选5走势图,七乐彩走势图,3D遗漏分析,P3遗漏分析,双色球遗漏分析">
- <meta name="description" content="中国彩吧的专业彩票工具|彩票走势图站点|彩票遗漏统计 - 彩吧助手">
- @*<link rel="stylesheet/less" type="text/css" href="~/Content/css/ss.less" />*@
- <link href="~/Content/miniCss/common/common.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
- <link href="~/Content/miniCss/common/header1.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
- </head>
- <body>
- <div style="width:100%;position:fixed;top:0;bottom:60px;z-index:999;background-color:#fff">
- <div style="z-index:999;top:0;left:0;position:fixed;background-color:#fff;width:100%;">
- @Html.Partial("header2", Model.Title)
- </div>
- <div style="width:100%;top:-4px;bottom:60px;position:fixed;z-index:0;">
- <iframe style="width:100%;height:100%;" frameborder=0 name="showHere" scrolling=auto src="@Model.ToolsUrl"></iframe>
- </div>
- @Html.Partial("_footer", "SS")
- </div>
- <script src="~/Content/lib/less.min.js"></script>
- <script src="~/Content/lib/jquery-3.2.1.min.js"></script>
- <script type="text/javascript">
- $(function () {
- $(".back").click(function () {
- if (window.history.back) {
- window.history.back();
- }
- else {
- var origin = window.location.origin;
- if (window.location.href.indexOf("SS") > -1) {
- window.location.href = origin + "/ss/index.html";
- }
- }
- })
- })
- </script>
- </body>
- </html>
|