收费管理系统

index.html 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html lang="ZH">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <!-- <title><%= htmlWebpackPlugin.options.title %></title> -->
  9. <title>后台收费管理系统</title>
  10. <style>
  11. /*
  12. * CSS样式表重置初始化样式,PC端
  13. */ html,body,#app{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. body,p,div,ul,li,form,input,td,tr,th,div{
  18. margin: 0;
  19. padding: 0;
  20. }
  21. body{
  22. position: relative;
  23. }
  24. ul,li{
  25. list-style: none;
  26. }
  27. img{
  28. border: none;
  29. /* vertical-align: top; */
  30. display: block;
  31. }
  32. a{
  33. text-decoration: none;
  34. color: #002be5;
  35. }
  36. a:hover{
  37. text-decoration: none;
  38. }
  39. a img{
  40. border: 0;
  41. }
  42. em{
  43. color: #e50000;
  44. font-style: normal;
  45. }
  46. button{
  47. cursor: pointer; /*鼠标光标的类型*/
  48. }
  49. input,textarea{
  50. outline: none;
  51. appearance: none;
  52. }
  53. textarea{
  54. resize: none;
  55. overflow: auto;
  56. }
  57. table{
  58. border-collapse: collapse;
  59. }
  60. em{
  61. font-style: normal;
  62. }
  63. </style>
  64. <script>
  65. var _hmt = _hmt || [];
  66. (function() {
  67. var hm = document.createElement("script");
  68. hm.src = "https://hm.baidu.com/hm.js?469b8e7d98f12c75e6be0b547061efea";
  69. var s = document.getElementsByTagName("script")[0];
  70. s.parentNode.insertBefore(hm, s);
  71. })();
  72. </script>
  73. </head>
  74. <body>
  75. <noscript>
  76. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  77. </noscript>
  78. <div id="app"></div>
  79. <!-- built files will be auto injected -->
  80. </body>
  81. </html>