system-clients 3.2.4 → 3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/.eslintrc.js +16 -16
  2. package/SystemClient.iml +2 -5
  3. package/build/webpack.base.conf.js +21 -11
  4. package/package.json +6 -4
  5. package/src/App.vue +24 -24
  6. package/src/components/Main.vue +626 -476
  7. package/src/components/TabButton.vue +201 -0
  8. package/src/components/Tabs.vue +67 -0
  9. package/src/components/addressManage/AddressCascadingMenu.vue +145 -0
  10. package/src/components/equipment/EquipmentManage.vue +1 -1
  11. package/src/components/equipment/PcAdd.vue +5 -5
  12. package/src/components/equipment/PcList.vue +5 -5
  13. package/src/components/equipment/PhoneAdd.vue +26 -13
  14. package/src/components/equipment/PhoneList.vue +31 -21
  15. package/src/components/equipment/PosAdd.vue +231 -45
  16. package/src/components/equipment/PosList.vue +198 -68
  17. package/src/components/equipment/PosManage.vue +80 -9
  18. package/src/components/equipment/PosManageBoth.vue +125 -0
  19. package/src/components/equipment/PosParamAdd.vue +236 -0
  20. package/src/components/equipment/PosParamList.vue +121 -0
  21. package/src/components/equipment/PosParamManage.vue +51 -0
  22. package/src/components/parammanage/ParamManage.vue +2 -2
  23. package/src/components/parammanage/ParamPage.vue +30 -8
  24. package/src/components/parammanage/SinglePage.vue +4 -4
  25. package/src/components/server/ImageVieweTest.vue +56 -0
  26. package/src/components/server/ImageViewer.vue +350 -0
  27. package/src/components/server/LoadData.vue +21 -2
  28. package/src/components/server/Login.vue +889 -625
  29. package/src/components/server/ModifyPw.vue +12 -7
  30. package/src/components/server/PcdBuildingSelect.vue +241 -0
  31. package/src/components/server/ResSelect.vue +5 -0
  32. package/src/components/server/ResSelectGroup.vue +159 -103
  33. package/src/components/server/RightTree.vue +289 -204
  34. package/src/filiale/dongguan/Main.vue +715 -0
  35. package/src/filiale/dongguan/system.js +5 -0
  36. package/src/filiale/konggang/Login.vue +840 -0
  37. package/src/filiale/konggang/system.js +7 -0
  38. package/src/filiale/qianneng/ModifyPw.vue +107 -0
  39. package/src/filiale/qianneng/system.js +7 -0
  40. package/src/filiale/rizhao/LeftTree.vue +111 -0
  41. package/src/filiale/rizhao/Login.vue +791 -0
  42. package/src/filiale/rizhao/Main.vue +606 -0
  43. package/src/filiale/rizhao/system.js +14 -0
  44. package/src/filiale/yuchuan/Login.vue +889 -0
  45. package/src/filiale/yuchuan/Main.vue +773 -0
  46. package/src/filiale/yuchuan/system.js +10 -0
  47. package/src/plugins/EncryptUtil.js +53 -0
  48. package/src/plugins/GetLoginInfoService.js +76 -70
  49. package/src/plugins/HeatGetLoginInfoService.js +491 -0
  50. package/src/plugins/validation.js +9 -1
  51. package/src/stores/HeatAppData.js +38 -0
  52. package/src/styles/fonts/PINGFANG LIGHT.TTF +0 -0
  53. package/src/styles/fonts/PingFangSC-Regular.ttf +0 -0
  54. package/src/styles/fonts/glyphicons-halflings-regular.eot +0 -0
  55. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -0
  56. package/src/styles/fonts/glyphicons-halflings-regular.ttf +0 -0
  57. package/src/styles/fonts/glyphicons-halflings-regular.woff +0 -0
  58. package/src/styles/fonts/glyphicons-halflings-regular.woff2 +0 -0
  59. package/src/styles/fonts/pingfang-bold.ttf +0 -0
  60. package/src/styles/fonts/pingfang-medium.ttf +0 -0
  61. package/src/styles/fonts/pingfang-regular.ttf +0 -0
  62. package/src/styles/fonts/trendstrends.ttf +0 -0
  63. package/src/styles/fonts//346/261/211/344/273/252/350/217/261/345/277/203/344/275/223/347/256/200.ttf +0 -0
  64. package/src/styles/less/.csscomb.json +304 -0
  65. package/src/styles/less/.csslintrc +19 -0
  66. package/src/styles/less/alerts.less +73 -0
  67. package/src/styles/less/aofeng/animate.min.css +11 -0
  68. package/src/styles/less/aofeng/expandcss.less +569 -0
  69. package/src/styles/less/aofeng/standard.less +2507 -0
  70. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -0
  71. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -0
  72. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -0
  73. package/src/styles/less/aofeng/themeOne.less +17 -0
  74. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -0
  75. package/src/styles/less/aofeng/themeTwo.less +3 -0
  76. package/src/styles/less/badges.less +66 -0
  77. package/src/styles/less/bootstrap.less +66 -0
  78. package/src/styles/less/breadcrumbs.less +26 -0
  79. package/src/styles/less/button-groups.less +247 -0
  80. package/src/styles/less/buttons.less +172 -0
  81. package/src/styles/less/carousel.less +269 -0
  82. package/src/styles/less/close.less +34 -0
  83. package/src/styles/less/code.less +69 -0
  84. package/src/styles/less/component-animations.less +33 -0
  85. package/src/styles/less/dropdowns.less +216 -0
  86. package/src/styles/less/fonts-list.less +25 -0
  87. package/src/styles/less/forms.less +626 -0
  88. package/src/styles/less/glyphicons.less +305 -0
  89. package/src/styles/less/grid.less +84 -0
  90. package/src/styles/less/input-groups.less +167 -0
  91. package/src/styles/less/jumbotron.less +52 -0
  92. package/src/styles/less/labels.less +64 -0
  93. package/src/styles/less/list-group.less +141 -0
  94. package/src/styles/less/manageStyle/manageChile.less +180 -0
  95. package/src/styles/less/manageStyle/manageStyle/manageChile.less +180 -0
  96. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +1102 -0
  97. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +498 -0
  98. package/src/styles/less/manageStyle/manageStyle.less +1102 -0
  99. package/src/styles/less/manageStyle/safeStyle.less +498 -0
  100. package/src/styles/less/media.less +66 -0
  101. package/src/styles/less/mixins/alerts.less +14 -0
  102. package/src/styles/less/mixins/background-variant.less +9 -0
  103. package/src/styles/less/mixins/border-radius.less +18 -0
  104. package/src/styles/less/mixins/buttons.less +69 -0
  105. package/src/styles/less/mixins/center-block.less +7 -0
  106. package/src/styles/less/mixins/clearfix.less +22 -0
  107. package/src/styles/less/mixins/forms.less +90 -0
  108. package/src/styles/less/mixins/gradients.less +59 -0
  109. package/src/styles/less/mixins/grid-framework.less +92 -0
  110. package/src/styles/less/mixins/grid.less +122 -0
  111. package/src/styles/less/mixins/hide-text.less +21 -0
  112. package/src/styles/less/mixins/image.less +33 -0
  113. package/src/styles/less/mixins/labels.less +12 -0
  114. package/src/styles/less/mixins/list-group.less +30 -0
  115. package/src/styles/less/mixins/nav-divider.less +10 -0
  116. package/src/styles/less/mixins/nav-vertical-align.less +9 -0
  117. package/src/styles/less/mixins/opacity.less +8 -0
  118. package/src/styles/less/mixins/pagination.less +24 -0
  119. package/src/styles/less/mixins/panels.less +24 -0
  120. package/src/styles/less/mixins/progress-bar.less +10 -0
  121. package/src/styles/less/mixins/reset-filter.less +8 -0
  122. package/src/styles/less/mixins/reset-text.less +18 -0
  123. package/src/styles/less/mixins/resize.less +6 -0
  124. package/src/styles/less/mixins/responsive-visibility.less +15 -0
  125. package/src/styles/less/mixins/size.less +10 -0
  126. package/src/styles/less/mixins/tab-focus.less +9 -0
  127. package/src/styles/less/mixins/table-row.less +44 -0
  128. package/src/styles/less/mixins/text-emphasis.less +9 -0
  129. package/src/styles/less/mixins/text-overflow.less +8 -0
  130. package/src/styles/less/mixins/vendor-prefixes.less +227 -0
  131. package/src/styles/less/mixins.less +40 -0
  132. package/src/styles/less/modals.less +151 -0
  133. package/src/styles/less/navbar.less +660 -0
  134. package/src/styles/less/navs.less +285 -0
  135. package/src/styles/less/normalize.less +424 -0
  136. package/src/styles/less/pager.less +76 -0
  137. package/src/styles/less/pagination.less +89 -0
  138. package/src/styles/less/panels.less +275 -0
  139. package/src/styles/less/popovers.less +131 -0
  140. package/src/styles/less/print.less +101 -0
  141. package/src/styles/less/progress-bars.less +87 -0
  142. package/src/styles/less/responsive-embed.less +35 -0
  143. package/src/styles/less/responsive-utilities.less +194 -0
  144. package/src/styles/less/scaffolding.less +161 -0
  145. package/src/styles/less/stand.less +207 -0
  146. package/src/styles/less/tables.less +312 -0
  147. package/src/styles/less/theme.less +291 -0
  148. package/src/styles/less/thumbnails.less +36 -0
  149. package/src/styles/less/tooltip.less +102 -0
  150. package/src/styles/less/type.less +316 -0
  151. package/src/styles/less/utilities.less +55 -0
  152. package/src/styles/less/variables.less +899 -0
  153. package/src/styles/less/wells.less +29 -0
  154. package/src/system.js +34 -1
  155. package/src/util/Daiban.json +12 -0
  156. package/static/images/lefticon//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
  157. package/static/logo.png +0 -0
  158. package/static/newStyle/about-us.png +0 -0
  159. package/static/rizhao.png +0 -0
  160. package/yarn-error.log +6896 -0
  161. package/.gradle/3.5/file-changes/last-build.bin +0 -0
  162. package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
  163. package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
  164. package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
  165. package/.gradle/buildOutputCleanup/built.bin +0 -0
  166. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  167. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
@@ -0,0 +1,141 @@
1
+ //
2
+ // List groups
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Base class
7
+ //
8
+ // Easily usable on <ul>, <ol>, or <div>.
9
+
10
+ .list-group {
11
+ // No need to set list-style: none; since .list-group-item is block level
12
+ // margin-bottom: 20px;// 原本为20px
13
+ margin-bottom: 0px;
14
+ padding-left: 0; // reset padding because ul and ol
15
+ }
16
+
17
+
18
+ // Individual list items
19
+ //
20
+ // Use on `li`s or `div`s within the `.list-group` parent.
21
+
22
+ .list-group-item {
23
+ position: relative;
24
+ display: block;
25
+ padding: 10px 15px;
26
+ // Place the border on the list items and negative margin up for better styling
27
+ // margin-bottom: -1px;
28
+ background-color: @list-group-bg;
29
+ // border: 1px 0px 1px 0px solid @list-group-border;
30
+ // border: 1px 1px 1px 0px solid #fff;
31
+ border-bottom: 1px solid @list-group-border;
32
+ border-top: 1px solid @list-group-border;
33
+ // border-top: 1px solid #fff;
34
+
35
+ // Round the first and last items
36
+ // &:first-child {
37
+ // .border-top-radius(@list-group-border-radius);
38
+ // }
39
+ // &:last-child {
40
+ // margin-bottom: 0;
41
+ // .border-bottom-radius(@list-group-border-radius);
42
+ // }
43
+ }
44
+
45
+
46
+ // Interactive list items
47
+ //
48
+ // Use anchor or button elements instead of `li`s or `div`s to create interactive items.
49
+ // Includes an extra `.active` modifier class for showing selected items.
50
+
51
+ a.list-group-item,
52
+ button.list-group-item {
53
+ color: @list-group-link-color;
54
+
55
+ .list-group-item-heading {
56
+ color: @list-group-link-heading-color;
57
+ }
58
+
59
+ // Hover state
60
+ &:hover{
61
+ background-color: rgba(255,255,255,0.2);
62
+ text-decoration: none;
63
+ cursor: pointer;
64
+ }
65
+ &:focus {
66
+ text-decoration: none;
67
+ background-color: rgba(255,255,255,0.5);
68
+ // color: @list-group-link-hover-color;
69
+ // background-color: @list-group-hover-bg;
70
+ }
71
+ }
72
+
73
+ button.list-group-item {
74
+ width: 100%;
75
+ text-align: left;
76
+ }
77
+
78
+ .list-group-item {
79
+ // Disabled state
80
+ &.disabled,
81
+ &.disabled:hover,
82
+ &.disabled:focus {
83
+ background-color: @list-group-disabled-bg;
84
+ color: @list-group-disabled-color;
85
+ cursor: @cursor-disabled;
86
+
87
+ // Force color to inherit for custom content
88
+ .list-group-item-heading {
89
+ color: inherit;
90
+ }
91
+ .list-group-item-text {
92
+ color: @list-group-disabled-text-color;
93
+ }
94
+ }
95
+
96
+ // Active class on item itself, not parent
97
+ &.active,
98
+ &.active:hover,
99
+ &.active:focus {
100
+ z-index: 2; // Place active items above their siblings for proper border styling
101
+ color: @list-group-active-color;
102
+ // background-color: @list-group-active-bg;
103
+ background-color: rgba(255,255,255,0.5);
104
+ // border-color: @list-group-active-border;
105
+
106
+ // Force color to inherit for custom content
107
+ .list-group-item-heading,
108
+ .list-group-item-heading > small,
109
+ .list-group-item-heading > .small {
110
+ color: inherit;
111
+ }
112
+ .list-group-item-text {
113
+ color: @list-group-active-text-color;
114
+ }
115
+ }
116
+ }
117
+
118
+
119
+ // Contextual variants
120
+ //
121
+ // Add modifier classes to change text and background color on individual items.
122
+ // Organizationally, this must come after the `:hover` states.
123
+
124
+ .list-group-item-variant(success; @state-success-bg; @state-success-text);
125
+ .list-group-item-variant(info; @state-info-bg; @state-info-text);
126
+ .list-group-item-variant(warning; @state-warning-bg; @state-warning-text);
127
+ .list-group-item-variant(danger; @state-danger-bg; @state-danger-text);
128
+
129
+
130
+ // Custom content options
131
+ //
132
+ // Extra classes for creating well-formatted content within `.list-group-item`s.
133
+
134
+ .list-group-item-heading {
135
+ margin-top: 0;
136
+ margin-bottom: 5px;
137
+ }
138
+ .list-group-item-text {
139
+ margin-bottom: 0;
140
+ line-height: 1.3;
141
+ }
@@ -0,0 +1,180 @@
1
+
2
+
3
+ /*分辨率@1920*1080*/
4
+ @media screen and (max-width: 1920px) {
5
+
6
+ //====================================================
7
+ .text-user >
8
+ .text-1> .text-11 {
9
+ padding-top: 2%;
10
+ width: 100%;
11
+ height: 40%;
12
+ color: #95bad7;
13
+ }
14
+
15
+ .text-user> .text-1 >.text-11 table {
16
+ height: 100%;
17
+ }
18
+ .text-user> .text-1 >.text-11 table tr td{
19
+ width: 4%;
20
+
21
+ }
22
+ .text-user> .text-1>.text-11 table tr td span{
23
+ font-size: 2.6rem;
24
+ }
25
+
26
+ .text-user>.text-1> .text-12{
27
+ width: 100%;
28
+ height: 60%;
29
+ }
30
+
31
+ .text-sellgas> .text-1{
32
+ color: #95bad7;
33
+ }
34
+
35
+
36
+ //.text-sellgas> .text-1>table tr td .sell-img {
37
+ // width: 62%;
38
+ //}
39
+ .text-sellgas> .text-1 table tr td{
40
+ width: 4%;
41
+ padding: 6% 6% 0 6%;
42
+ }
43
+ .text-sellgas> .text-1 table tr td p{
44
+ font-size: 1.6rem;
45
+ }
46
+ .text-sellgas> .text-1 table tr td .sell-font{
47
+ font-size: 2rem;
48
+ }
49
+ .text-sellgas> .text-1 table tr td span{
50
+ font-size: 2.6rem;
51
+ }
52
+ .font-res{
53
+ font-size: 3.4rem!important;
54
+ }
55
+ .text-sellgas> .text-1 table tr td .sell-img0 {
56
+ width: 62%;
57
+ }
58
+ .text-sellgas> .text-1 table tr td .sell-img1 {
59
+ width: 73%;
60
+ }
61
+ .font-res1{
62
+ font-size: 34px!important;
63
+ }
64
+ .text-shanximap>.map-1{
65
+ padding-top: 6%;
66
+ text-align: center;
67
+ }
68
+ .text-shanximap>.map-1>.map-2{
69
+ height: 90%;
70
+ }
71
+ .text-shanximap>div>.map-bar{
72
+ background-image: url('../../../../static/NewManageHome/矩形11拷贝9.png');
73
+ background-repeat: no-repeat;
74
+ background-size: 100%;
75
+ width: 52%;
76
+ margin-left: 25%;
77
+ padding:1% 3% 0% 0%;
78
+ height: 8%;
79
+ font-size: 1.6rem;
80
+ color: #ffffff;
81
+ }
82
+
83
+ }
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ /*分辨率@1366*768*/
101
+ @media screen and (max-width: 1366px) {
102
+
103
+ //====================================================
104
+ .text-user >
105
+ .text-1> .text-11 {
106
+ padding-top: 2%;
107
+ width: 100%;
108
+ height: 40%;
109
+ color: #95bad7;
110
+ }
111
+
112
+ .text-user> .text-1 >.text-11 table {
113
+ height: 100%;
114
+ }
115
+ .text-user> .text-1 >.text-11 table tr td{
116
+ width: 4%;
117
+
118
+ }
119
+ .text-user> .text-1>.text-11 table tr td span{
120
+ font-size: 1.8rem;
121
+ }
122
+
123
+ .text-user>.text-1> .text-12{
124
+ width: 100%;
125
+ height: 60%;
126
+ }
127
+
128
+ .text-sellgas> .text-1{
129
+ color: #95bad7;
130
+ }
131
+
132
+
133
+ //.text-sellgas> .text-1>table tr td .sell-img {
134
+ // width: 62%;
135
+ //}
136
+ .text-sellgas> .text-1 table tr td{
137
+ width: 4%;
138
+ padding: 3% 3% 0 3%;
139
+ }
140
+ .text-sellgas> .text-1 table tr td p{
141
+ font-size: 1.1rem;
142
+ }
143
+ .text-sellgas> .text-1 table tr td .sell-font{
144
+ font-size: 1.4rem;
145
+ }
146
+ .text-sellgas> .text-1 table tr td span{
147
+ font-size: 1.8rem;
148
+ }
149
+ .font-res{
150
+ font-size: 2rem!important;
151
+ }
152
+ .text-sellgas> .text-1 table tr td .sell-img0 {
153
+ width: 62%;
154
+ }
155
+ .text-sellgas> .text-1 table tr td .sell-img1 {
156
+ width: 73%;
157
+ }
158
+ .font-res1{
159
+ font-size: 28px!important;
160
+ }
161
+ .text-shanximap>.map-1{
162
+ padding-top: 6%;
163
+ text-align: center;
164
+ }
165
+ .text-shanximap>.map-1>.map-2{
166
+ height: 90%;
167
+ }
168
+ .text-shanximap>div>.map-bar{
169
+ background-image: url('../../../../static/NewManageHome/矩形11拷贝9.png');
170
+ background-repeat: no-repeat;
171
+ background-size: 100%;
172
+ width: 52%;
173
+ margin-left: 25%;
174
+ padding:1% 3% 0% 0%;
175
+ height: 8%;
176
+ font-size: 1.1rem;
177
+ color: #ffffff;
178
+ }
179
+
180
+ }
@@ -0,0 +1,180 @@
1
+
2
+
3
+ /*分辨率@1920*1080*/
4
+ @media screen and (max-width: 1920px) {
5
+
6
+ //====================================================
7
+ .text-user >
8
+ .text-1> .text-11 {
9
+ padding-top: 2%;
10
+ width: 100%;
11
+ height: 40%;
12
+ color: #95bad7;
13
+ }
14
+
15
+ .text-user> .text-1 >.text-11 table {
16
+ height: 100%;
17
+ }
18
+ .text-user> .text-1 >.text-11 table tr td{
19
+ width: 4%;
20
+
21
+ }
22
+ .text-user> .text-1>.text-11 table tr td span{
23
+ font-size: 2.6rem;
24
+ }
25
+
26
+ .text-user>.text-1> .text-12{
27
+ width: 100%;
28
+ height: 60%;
29
+ }
30
+
31
+ .text-sellgas> .text-1{
32
+ color: #95bad7;
33
+ }
34
+
35
+
36
+ //.text-sellgas> .text-1>table tr td .sell-img {
37
+ // width: 62%;
38
+ //}
39
+ .text-sellgas> .text-1 table tr td{
40
+ width: 4%;
41
+ padding: 6% 6% 0 6%;
42
+ }
43
+ .text-sellgas> .text-1 table tr td p{
44
+ font-size: 1.6rem;
45
+ }
46
+ .text-sellgas> .text-1 table tr td .sell-font{
47
+ font-size: 2rem;
48
+ }
49
+ .text-sellgas> .text-1 table tr td span{
50
+ font-size: 2.6rem;
51
+ }
52
+ .font-res{
53
+ font-size: 3.4rem!important;
54
+ }
55
+ .text-sellgas> .text-1 table tr td .sell-img0 {
56
+ width: 62%;
57
+ }
58
+ .text-sellgas> .text-1 table tr td .sell-img1 {
59
+ width: 73%;
60
+ }
61
+ .font-res1{
62
+ font-size: 34px!important;
63
+ }
64
+ .text-shanximap>.map-1{
65
+ padding-top: 6%;
66
+ text-align: center;
67
+ }
68
+ .text-shanximap>.map-1>.map-2{
69
+ height: 90%;
70
+ }
71
+ .text-shanximap>div>.map-bar{
72
+ background-image: url('/static/NewManageHome/矩形11拷贝9.png');
73
+ background-repeat: no-repeat;
74
+ background-size: 100%;
75
+ width: 52%;
76
+ margin-left: 25%;
77
+ padding:1% 3% 0% 0%;
78
+ height: 8%;
79
+ font-size: 1.6rem;
80
+ color: #ffffff;
81
+ }
82
+
83
+ }
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ /*分辨率@1366*768*/
101
+ @media screen and (max-width: 1366px) {
102
+
103
+ //====================================================
104
+ .text-user >
105
+ .text-1> .text-11 {
106
+ padding-top: 2%;
107
+ width: 100%;
108
+ height: 40%;
109
+ color: #95bad7;
110
+ }
111
+
112
+ .text-user> .text-1 >.text-11 table {
113
+ height: 100%;
114
+ }
115
+ .text-user> .text-1 >.text-11 table tr td{
116
+ width: 4%;
117
+
118
+ }
119
+ .text-user> .text-1>.text-11 table tr td span{
120
+ font-size: 1.8rem;
121
+ }
122
+
123
+ .text-user>.text-1> .text-12{
124
+ width: 100%;
125
+ height: 60%;
126
+ }
127
+
128
+ .text-sellgas> .text-1{
129
+ color: #95bad7;
130
+ }
131
+
132
+
133
+ //.text-sellgas> .text-1>table tr td .sell-img {
134
+ // width: 62%;
135
+ //}
136
+ .text-sellgas> .text-1 table tr td{
137
+ width: 4%;
138
+ padding: 3% 3% 0 3%;
139
+ }
140
+ .text-sellgas> .text-1 table tr td p{
141
+ font-size: 1.1rem;
142
+ }
143
+ .text-sellgas> .text-1 table tr td .sell-font{
144
+ font-size: 1.4rem;
145
+ }
146
+ .text-sellgas> .text-1 table tr td span{
147
+ font-size: 1.8rem;
148
+ }
149
+ .font-res{
150
+ font-size: 2rem!important;
151
+ }
152
+ .text-sellgas> .text-1 table tr td .sell-img0 {
153
+ width: 62%;
154
+ }
155
+ .text-sellgas> .text-1 table tr td .sell-img1 {
156
+ width: 73%;
157
+ }
158
+ .font-res1{
159
+ font-size: 28px!important;
160
+ }
161
+ .text-shanximap>.map-1{
162
+ padding-top: 6%;
163
+ text-align: center;
164
+ }
165
+ .text-shanximap>.map-1>.map-2{
166
+ height: 90%;
167
+ }
168
+ .text-shanximap>div>.map-bar{
169
+ background-image: url('/static/NewManageHome/矩形11拷贝9.png');
170
+ background-repeat: no-repeat;
171
+ background-size: 100%;
172
+ width: 52%;
173
+ margin-left: 25%;
174
+ padding:1% 3% 0% 0%;
175
+ height: 8%;
176
+ font-size: 1.1rem;
177
+ color: #ffffff;
178
+ }
179
+
180
+ }