BasicInfor.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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">20.4</div>
  12. <div class="font">本年规划(亩)</div>
  13. </div>
  14. <div class='bottomIcon'>
  15. <div class="fontInfo">100</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: 220rem;
  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. margin-top:2%
  67. }
  68. .leftTitle {
  69. width: 200rem;
  70. display: inline-block
  71. }
  72. .topIcon {
  73. margin-top: 15rem;
  74. margin-left: 10rem;
  75. height: 44rem;
  76. width: 140rem;
  77. background: url('@/assets/images/icon.png') no-repeat;
  78. background-size: 35%, 100%;
  79. }
  80. .bottomIcon {
  81. margin-left: 10rem;
  82. margin-top: 15rem;
  83. height: 44rem;
  84. width: 140rem;
  85. background: url('@/assets/images/bottom.png') no-repeat;
  86. background-size: 35%, 100%;
  87. }
  88. .topRightIcon {
  89. margin-right: 10rem;
  90. margin-top: 15rem;
  91. height: 44rem;
  92. width: 140rem;
  93. background: url('@/assets/images/rightTop.png') no-repeat;
  94. background-size: 35%, 100%;
  95. }
  96. .bottomRightIcon {
  97. margin-right: 10rem;
  98. margin-top: 15rem;
  99. height: 44rem;
  100. width: 140rem;
  101. background: url('@/assets/images/rightBottom.png') no-repeat;
  102. background-size: 35%, 100%;
  103. }
  104. .rightTitle {
  105. float: right;
  106. display: inline-block
  107. }
  108. .fontInfo {
  109. height: 60%;
  110. font-size: 24rem;
  111. color: rgb(200, 250, 255);
  112. margin-left: 50rem;
  113. }
  114. .font {
  115. font-size: 14rem;
  116. color: rgb(200, 250, 255);
  117. margin-left: 50rem;
  118. }
  119. </style>