1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=11" />
- <title>@ViewBag.Title</title>
- <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
- <meta name="viewport" content="width=device-width,height=device-height, user-scalable=no,initial-scale=1, minimum-scale=1, maximum-scale=1 "/>
- @Styles.Render("~/Content/css")
- @Scripts.Render("~/bundles/modernizr")
- @Scripts.Render("~/bundles/jquery")
- <script type="text/javascript" src="~/Scripts/bs-common.js"></script>
- <script type="text/javascript">
- var rootPath = "@(Url.Content("~/").TrimEnd('/'))";
- var emisWeb = "@(System.Configuration.ConfigurationManager.AppSettings["EMISUrl"])";
- var emisReportWeb = "@(System.Configuration.ConfigurationManager.AppSettings["EMISReportUrl"])";
- $(function () {
- $("#body").height($(window).height());
- });
- function showError(message) {
- $("#pageContent").hide();
- $("#errorMessage #errorTitle").html(message);
- $("#errorMessage").show();
- }
- function goHome() {
- location.href = "@Url.Content("~/Home/screensaver")";
- }
- </script>
- @RenderSection("scripts", required: false)
- </head>
- <body style="padding: 0;margin: 0; border:0; height: 100%;overflow:hidden;">
- <div id="loading" class="window-mask" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 999;
- background: #ccc; filter: alpha(opacity=40); opacity: 0.40; -moz-opacity: 0.4; font-size: 1px; *zoom: 1;
- overflow: hidden; display: none;">
- <img src="~/Content/themes/base/images/timg.gif" alt="" style="top: 50%; left: 50%; transform: translate(-50%,-50%); position: absolute;" />
- </div>
- <div id="body" style="width: 100%; height: 100%; text-align: center; background-image:url(/Content/themes/base/images/background.png); background-repeat:no-repeat; background-size:100% 100%;-moz-background-size:100% 100%;">
- <div style="float:left; height:50%; margin-bottom:-147px;"></div>
- <div id="container" style="position:relative; top: 53%; transform: translate(0,-50%); display: inline-block; width: auto; margin: 0 auto; clear:both; max-width: 1280px; min-width: 430px; height: 279px; background-position: center center; background-image:url(/Content/themes/base/images/sub-background.png); background-repeat:no-repeat; background-size: cover; ">
- <div id="errorMessage" style="padding-left: 10px; padding-right: 10px; font-size: 30px; color: White; font-family: 微软雅黑; font-weight: bold; text-shadow: 1px 1px #000; text-align: center; height: 279px; line-height: 279px; max-width: 1280px; min-width: 430px; display: none;">
- <div id="errorTitle" style="height: 114px; line-height: normal; padding-top: 66px; word-break: keep-all; vertical-align: middle;"></div>
- <div style="text-align: center; line-height: normal;"><img src="@Url.Content("~/Content/themes/base/images/btn-return.png")" style="cursor: pointer; border: 0px;" onclick="goHome();" /></div>
- </div>
- <div id="pageContent" style="padding-left: 10px; padding-right: 10px; min-width: 430px; max-width: 1280px; width: auto;">
- @RenderBody()
- </div>
- </div>
- </div>
- </body>
- </html>
|