|
@@ -75,7 +75,7 @@ export default {
|
75
|
75
|
mounted () {
|
76
|
76
|
var _this = this;
|
77
|
77
|
window.onscroll = function () {
|
78
|
|
- if (document.documentElement.scrollTop > 10) {
|
|
78
|
+ if (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop > 10) {
|
79
|
79
|
_this.toTopIsShow = true;
|
80
|
80
|
} else {
|
81
|
81
|
_this.toTopIsShow = false;
|
|
@@ -97,16 +97,19 @@ export default {
|
97
|
97
|
height: 80px;
|
98
|
98
|
cursor: pointer;
|
99
|
99
|
background: url("../../assets/image/program/toTop.png") no-repeat;
|
|
100
|
+ background-size: 100%;
|
100
|
101
|
/* overflow: hidden; */
|
101
|
102
|
}
|
102
|
103
|
.toTop:hover {
|
103
|
104
|
background: url("../../assets/image/program/toTop.png") no-repeat;
|
|
105
|
+ background-size: 100%;
|
104
|
106
|
}
|
105
|
107
|
.news {
|
106
|
108
|
width: 80px;
|
107
|
109
|
height: 80px;
|
108
|
110
|
cursor: pointer;
|
109
|
111
|
background: url("../../assets/image/program/news.png") no-repeat;
|
|
112
|
+ background-size: 100%;
|
110
|
113
|
}
|
111
|
114
|
.mask {
|
112
|
115
|
width: 100%;
|
|
@@ -180,7 +183,11 @@ color:rgba(0,0,0,1);
|
180
|
183
|
outline: none;
|
181
|
184
|
}
|
182
|
185
|
.company_inp {
|
183
|
|
- width: 450px;
|
|
186
|
+ font-size:18px;
|
|
187
|
+font-family:PingFangSC-Light;
|
|
188
|
+font-weight:300;
|
|
189
|
+color:rgba(0,0,0,1);
|
|
190
|
+ width: 462px;
|
184
|
191
|
border: none;
|
185
|
192
|
border-bottom: 1px solid rgba(187, 187, 187, 1);
|
186
|
193
|
outline: none;
|
|
@@ -219,8 +226,8 @@ color:rgba(0,0,0,1);
|
219
|
226
|
cursor: pointer;
|
220
|
227
|
}
|
221
|
228
|
.cancelImg{
|
222
|
|
- /* width: 40px;
|
223
|
|
- height: 40px; */
|
|
229
|
+ width: 80px;
|
|
230
|
+ height: 80px;
|
224
|
231
|
border-radius: 50%;
|
225
|
232
|
}
|
226
|
233
|
</style>
|