BasicInfor.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <div class="Background">
  3. <div class="imgback"></div>
  4. <div class="ref000" style="font-size: 10rem; ">
  5. 系统建设应坚持“先进、可靠、实用、落地”的原则,实行“整体规划、分步实施;统一标准、加强管理;先进实用、政策落地”的建设方针。
  6. </div>
  7. </div>
  8. <div class="Titles">
  9. <div class="leftTitle">
  10. <div class='topIcon'>
  11. <div class="fontInfo">100</div>
  12. <div class="font">地块数量(块)</div>
  13. </div>
  14. <div class='bottomIcon'>
  15. <div class="fontInfo">20.4</div>
  16. <div class="font">投资额度(万元)</div>
  17. </div>
  18. </div>
  19. <div class="rightTitle">
  20. <div class='topRightIcon'>
  21. <div class="fontInfo">121.94</div>
  22. <div class="font">已完成(亩)</div>
  23. </div>
  24. <div class='bottomRightIcon'>
  25. <div class="fontInfo">112.92</div>
  26. <div class="font">累计面积(亩)</div>
  27. </div>
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. </script>
  33. <style scoped>
  34. .imgback {
  35. background: url('@/assets/images/basic.png') no-repeat;
  36. background-size: 100% 100%;
  37. width: 100rem;
  38. height: 100rem;
  39. display: inline-block;
  40. position: absolute;
  41. top: 0;
  42. left: 0;
  43. }
  44. .Background {
  45. margin-top: 10rem;
  46. margin-left: 5rem;
  47. font-size: 14rem;
  48. height: 100rem;
  49. width: 345rem;
  50. position: relative;
  51. }
  52. .ref000 {
  53. position: absolute;
  54. height: 100rem;
  55. width: 235rem;
  56. right: 0;
  57. top: 0;
  58. text-indent: 30rem;
  59. /* margin-left: 100rem; */
  60. display: inline-block;
  61. text-align: left;
  62. font-size: 14rem !important;
  63. overflow-y:auto
  64. }
  65. .Titles{
  66. width: 100%;
  67. }
  68. .leftTitle {
  69. width: 170rem;
  70. display: inline-block;
  71. }
  72. .topIcon {
  73. margin-top: 15rem;
  74. height: 44rem;
  75. width: 170rem;
  76. background: url('@/assets/images/icon.png') no-repeat;
  77. background-size: 30%, 30%;
  78. }
  79. .bottomIcon {
  80. margin-top: 15rem;
  81. height: 44rem;
  82. width: 170rem;
  83. background: url('@/assets/images/bottom.png') no-repeat;
  84. background-size: 30%, 30%;
  85. }
  86. .topRightIcon {
  87. margin-top: 15rem;
  88. height: 44rem;
  89. width: 170rem;
  90. background: url('@/assets/images/rightTop.png') no-repeat;
  91. background-size: 30%, 30%;
  92. }
  93. .bottomRightIcon {
  94. margin-top: 15rem;
  95. height: 44rem;
  96. width: 170rem;
  97. background: url('@/assets/images/rightBottom.png') no-repeat;
  98. background-size: 30%, 30%;
  99. }
  100. .rightTitle {
  101. width: 170rem;
  102. float: right;
  103. display: inline-block
  104. }
  105. .fontInfo {
  106. height: 60%;
  107. font-size: 24rem;
  108. color: rgb(200, 250, 255);
  109. margin-left: 40rem;
  110. font-weight: bold;
  111. }
  112. .font {
  113. font-size: 16rem;
  114. color: rgb(200, 250, 255);
  115. margin-left: 40rem;
  116. }
  117. </style>