071463b312e88dbf09a7ba9c06f07e45.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html>
  2. <html lang="zh-CN" style="background:#fff;">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
  8. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
  9. <link rel="stylesheet" type="text/css" href="/Public/Static/css/base2.css" />
  10. <link rel="stylesheet" type="text/css" href="/Public/Static/css/nologed.css" />
  11. <link rel="stylesheet" href="/Public/Static/Icoinfont/iconfont.css">
  12. <script src="/Public/Static/Icoinfont/iconfont.js"></script>
  13. <title><?php echo ($webname); ?></title>
  14. <style>
  15. ::-webkit-input-placeholder {color: #b5b5b5;font-size: 12px;}
  16. ::-moz-placeholder {color: #b5b5b5;font-size: 12px;}
  17. input:focus{background:#f5f5f5;outline: 1px solid #f5f5f5;}
  18. a:hover,a:link,a:visited,a:active{color:#707A8A;text-decoration:none;}
  19. .no_header{position: fixed;z-index: 9999;padding:0px 10px;top:0px;line-height: 50px;background:#fff;}
  20. .lbox{width:100%;height:50px;}
  21. .lboxc{width:100%;padding:15px 0px;}
  22. .lbox_l{width:20%;height:50px;line-height:50px;float:left;text-align:left;}
  23. .lbox_r{width:80%;height:50px;line-height:50px;float:right;text-align:right;}
  24. .infobox{width:100%;height:400px;padding:5px 20px;margin-top:50px;}
  25. .infotbox{width:100%;height:50px;line-height:50px;border-bottom:1px solid #f5f5f5;}
  26. .overflow{overflow: hidden;text-overflow:ellipsis;white-space: nowrap;width:100%;height:35px;line-height:35px;}
  27. </style>
  28. </head>
  29. <body style="background:#fff;">
  30. <div class="container-fluid " style="padding:0px;width:100vw;">
  31. <div class="no_header">
  32. <div class="fl allhg txtl">
  33. <i class="bi bi-arrow-left fcc fw" onclick="goback()" style="font-size: 24px;"></i>
  34. </div>
  35. <div class="fr allhg txtr" style="line-height:50px;width:10%;"></div>
  36. </div>
  37. <div class="infobox">
  38. <div class="infotbox">
  39. <span class="fcy" style="font-size:24px;font-weight:bold;"><?php echo ($info["title"]); ?></span>
  40. </div>
  41. <?php if($info['imgs'] != ''){?>
  42. <div style="width:100%;">
  43. <img src="/Upload/article/<?php echo $info['imgs'];?>" style="width:100%;" />
  44. </div>
  45. <?php }?>
  46. <div class="lboxc">
  47. <span><?php echo ($info["content"]); ?></span>
  48. </div>
  49. <div class="lbox">
  50. <div class="lbox_l">
  51. <span class="fcc fzmm"><?php echo L('时间');?></span>
  52. </div>
  53. <div class="lbox_r">
  54. <span class="fch fzmm"><?php echo ($info["addtime"]); ?></span>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </body>
  60. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  61. <script type="text/javascript" src="/Public/Static/js/layer/layer.js" ></script>
  62. <script type="text/javascript">
  63. function goback(){
  64. window.history.go(-1);
  65. }
  66. </script>
  67. </html>