system-clients 3.2.1-6 → 3.2.1-9
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.
- package/package.json +1 -1
- package/src/components/server/Login.vue +616 -613
package/package.json
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
<div class="login-title-chi" style="white-space: nowrap;margin-right:-5%">
|
7
7
|
<img src="../../../static/newStyle/login-info.png"/>
|
8
8
|
<span @click="showus=true">关于我们</span>
|
9
|
-
<!-- <img src="../../../static/newStyle/login-con.png"/>-->
|
10
|
-
<!-- <span>联系我们</span>-->
|
9
|
+
<!-- <img src="../../../static/newStyle/login-con.png"/>-->
|
10
|
+
<!-- <span>联系我们</span>-->
|
11
11
|
</div>
|
12
12
|
</div>
|
13
13
|
</div>
|
@@ -113,645 +113,648 @@
|
|
113
113
|
</template>
|
114
114
|
|
115
115
|
<script>
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
116
|
+
import co from 'co'
|
117
|
+
import $ from 'jquery'
|
118
|
+
import Vue from 'vue'
|
119
|
+
import {HttpResetClass} from 'vue-client'
|
120
120
|
|
121
121
|
|
122
122
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
}
|
137
|
-
if(self.$appdataHeat){
|
138
|
-
yield self.$appdataHeat.load()
|
139
|
-
}
|
140
|
-
} catch (e) {
|
141
|
-
console.log('热力系统登陆失败!')
|
142
|
-
}
|
143
|
-
}
|
144
|
-
//吴小平
|
145
|
-
// yield self.$getConfig(self, 'Login')
|
146
|
-
console.log('登录配置', self.config)
|
147
|
-
if (self.config.isMac) {
|
148
|
-
// 获取该登录人分公司下的mac配置
|
149
|
-
let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
|
150
|
-
resolveMsg: null,
|
151
|
-
rejectMsg: null
|
152
|
-
}).catch(() => {
|
153
|
-
throw new Error('获取mac配置失败')
|
154
|
-
})
|
155
|
-
console.log('MAC地址信息', getMacs)
|
156
|
-
// 获取本地mac地址
|
157
|
-
let getLocalMac = yield self.$resetget('http://127.0.0.1:8003/loadmac', {
|
158
|
-
resolveMsg: null,
|
159
|
-
rejectMsg: null
|
160
|
-
}).catch(() => {
|
161
|
-
throw new Error('获取本地mac配置失败')
|
162
|
-
})
|
163
|
-
console.log('本地MAC地址信息', getLocalMac)
|
164
|
-
// 对Mac地址进行匹配
|
165
|
-
let macValidate = false
|
166
|
-
for (let i = 0; i < getLocalMac.data.mac.length; i++) {
|
167
|
-
for (let j = 0; j < getMacs.data.length; j++) {
|
168
|
-
if (getMacs.data[j].f_mac_number.toLocaleUpperCase() === getLocalMac.data.mac[i]) {
|
169
|
-
macValidate = true
|
170
|
-
}
|
171
|
-
}
|
123
|
+
let saveGen = function *(self) {
|
124
|
+
try {
|
125
|
+
if(self.$login){
|
126
|
+
yield self.$login.login(self.model.ename, self.model.password)
|
127
|
+
}
|
128
|
+
if(self.$appdata){
|
129
|
+
yield self.$appdata.load()
|
130
|
+
|
131
|
+
}
|
132
|
+
if (Vue.$heatCompatibility) {
|
133
|
+
try {
|
134
|
+
if(self.$loginHeat){
|
135
|
+
yield self.$loginHeat.login(self.model.ename, self.model.password)
|
172
136
|
}
|
173
|
-
if
|
174
|
-
|
137
|
+
if(self.$appdataHeat){
|
138
|
+
yield self.$appdataHeat.load()
|
175
139
|
}
|
140
|
+
} catch (e) {
|
141
|
+
console.log('热力系统登陆失败!')
|
176
142
|
}
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
143
|
+
}
|
144
|
+
//吴小平
|
145
|
+
// yield self.$getConfig(self, 'Login')
|
146
|
+
console.log('登录配置', self.config)
|
147
|
+
if (self.config.isMac) {
|
148
|
+
// 获取该登录人分公司下的mac配置
|
149
|
+
let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
|
150
|
+
resolveMsg: null,
|
151
|
+
rejectMsg: null
|
152
|
+
}).catch(() => {
|
153
|
+
throw new Error('获取mac配置失败')
|
154
|
+
})
|
155
|
+
console.log('MAC地址信息', getMacs)
|
156
|
+
// 获取本地mac地址
|
157
|
+
let getLocalMac = yield self.$resetget('http://127.0.0.1:8003/loadmac', {
|
158
|
+
resolveMsg: null,
|
159
|
+
rejectMsg: null
|
160
|
+
}).catch(() => {
|
161
|
+
throw new Error('获取本地mac配置失败')
|
162
|
+
})
|
163
|
+
console.log('本地MAC地址信息', getLocalMac)
|
164
|
+
// 对Mac地址进行匹配
|
165
|
+
let macValidate = false
|
166
|
+
for (let i = 0; i < getLocalMac.data.mac.length; i++) {
|
167
|
+
for (let j = 0; j < getMacs.data.length; j++) {
|
168
|
+
if (getMacs.data[j].f_mac_number.toLocaleUpperCase() === getLocalMac.data.mac[i]) {
|
169
|
+
macValidate = true
|
170
|
+
}
|
191
171
|
}
|
192
172
|
}
|
193
|
-
|
194
|
-
|
195
|
-
console.error('登录失败', ret)
|
196
|
-
let msg
|
197
|
-
if (ret instanceof Error) {
|
198
|
-
msg = ret
|
173
|
+
if (!macValidate) {
|
174
|
+
throw new Error('Mac地址验证失败, 请联系管理员!!')
|
199
175
|
}
|
200
|
-
if (ret.status === 0) {
|
201
|
-
msg = '服务连接错误,请确认服务状态'
|
202
|
-
} else if (ret.status === 401) {
|
203
|
-
msg = ret.data
|
204
|
-
} else if (ret.status === 710) {
|
205
|
-
msg = ret.data
|
206
|
-
}
|
207
|
-
self.createCode()
|
208
|
-
self.picLyanzhengma = ''
|
209
|
-
yield self.$showMessage(msg)
|
210
|
-
self.model.ename = ''
|
211
|
-
self.model.password = ''
|
212
|
-
self.login = false
|
213
|
-
$('form').fadeIn(500)
|
214
176
|
}
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
let http = new HttpResetClass()
|
221
|
-
let res = await http.load('POST', 'rs/sql/singleTable',
|
222
|
-
{data:{
|
223
|
-
tablename: 't_changedeclare',
|
224
|
-
condition: ` f_type ='变更通知' `
|
225
|
-
}
|
226
|
-
}, {resolveMsg: null, rejectMsg: null})
|
227
|
-
if(res.data.length>0){
|
228
|
-
console.log("---------------获取通知",res.data[0].f_change_message)
|
229
|
-
this.notice=res.data[0].f_change_message
|
230
|
-
}
|
231
|
-
}catch(e){}
|
232
|
-
|
233
|
-
this.loginother();
|
234
|
-
$('#login-button').click(function (event) {
|
235
|
-
event.preventDefault()
|
236
|
-
$('form').fadeOut(500)
|
177
|
+
// 弱口令验证
|
178
|
+
//跳转过来的不进行验证
|
179
|
+
if ((!self.otherLogin) && self.config.weakPassword && !(/^(?:(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[^A-Za-z0-9])).*$/.test(self.model.password))) {
|
180
|
+
self.$showMessage('登录系统: 此账户的密码过于简单,请修改密码后重新登陆!!!', ['confirm']).then((res) => {
|
181
|
+
self.modifyPwShow = true
|
237
182
|
})
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
}
|
250
|
-
},
|
251
|
-
data () {
|
252
|
-
return {
|
253
|
-
image:{
|
254
|
-
img1: '/images/newStyle/login-info.png',
|
255
|
-
img2: '/images/newStyle/login-con.png',
|
256
|
-
img3: '/images/newStyle/login-left.png',
|
257
|
-
img4: '/images/newStyle/login-user.png',
|
258
|
-
img5: '/images/newStyle/login-pwd.png',
|
259
|
-
img6: '/images/newStyle/login-check.png',
|
260
|
-
img7: '/images/newStyle/login-do.png',
|
261
|
-
},
|
262
|
-
config: {
|
263
|
-
isMac: false,
|
264
|
-
depPrompt: false,
|
265
|
-
weakPassword: false,
|
266
|
-
title: '燃气客服系统',
|
267
|
-
distanceLogin: false
|
268
|
-
},
|
269
|
-
otherLogin:false,
|
270
|
-
login: false,
|
271
|
-
depPromptShow: false,
|
272
|
-
model: {},
|
273
|
-
show: false,
|
274
|
-
checkCode: '',
|
275
|
-
login_do:true,
|
276
|
-
picLyanzhengma: '',
|
277
|
-
// 修改密码弹框展示
|
278
|
-
modifyPwShow: false,
|
279
|
-
logoandroid:false,
|
280
|
-
showus:false,
|
281
|
-
notice:'',
|
282
|
-
loginotherflag :true
|
183
|
+
} else if ((!self.otherLogin) && self.config.depPrompt) {
|
184
|
+
self.depPromptShow = true
|
185
|
+
} else {
|
186
|
+
self.$goto('home-page', {functions: self.$login.f})
|
187
|
+
// if (self.otherLogin){
|
188
|
+
// window.history.pushState(null,null,'')
|
189
|
+
// }
|
190
|
+
if (self.$login) {
|
191
|
+
console.log('登录信息', self.$login.f)
|
192
|
+
global.login=self.$login.f
|
193
|
+
console.log('登录信息', global.login)
|
283
194
|
}
|
284
|
-
}
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
195
|
+
}
|
196
|
+
|
197
|
+
} catch (ret) {
|
198
|
+
console.error('登录失败', ret)
|
199
|
+
let msg
|
200
|
+
if (ret instanceof Error) {
|
201
|
+
msg = ret
|
202
|
+
}
|
203
|
+
if (ret.status === 0) {
|
204
|
+
msg = '服务连接错误,请确认服务状态'
|
205
|
+
} else if (ret.status === 401) {
|
206
|
+
msg = ret.data
|
207
|
+
} else if (ret.status === 710) {
|
208
|
+
msg = ret.data
|
209
|
+
}
|
210
|
+
self.createCode()
|
211
|
+
self.picLyanzhengma = ''
|
212
|
+
yield self.$showMessage(msg)
|
213
|
+
self.model.ename = ''
|
214
|
+
self.model.password = ''
|
215
|
+
self.login = false
|
216
|
+
$('form').fadeIn(500)
|
217
|
+
}
|
218
|
+
}
|
219
|
+
export default {
|
220
|
+
title: '登录',
|
221
|
+
async ready () {
|
222
|
+
try{
|
223
|
+
let http = new HttpResetClass()
|
224
|
+
let res = await http.load('POST', 'rs/sql/singleTable',
|
225
|
+
{data:{
|
226
|
+
tablename: 't_changedeclare',
|
227
|
+
condition: ` f_type ='变更通知' `
|
299
228
|
}
|
300
|
-
}
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
229
|
+
}, {resolveMsg: null, rejectMsg: null})
|
230
|
+
if(res.data.length>0){
|
231
|
+
console.log("---------------获取通知",res.data[0].f_change_message)
|
232
|
+
this.notice=res.data[0].f_change_message
|
233
|
+
}
|
234
|
+
}catch(e){}
|
235
|
+
|
236
|
+
this.loginother();
|
237
|
+
$('#login-button').click(function (event) {
|
238
|
+
event.preventDefault()
|
239
|
+
$('form').fadeOut(500)
|
240
|
+
})
|
241
|
+
if (window.location.search && window.location.search.indexOf('af_key') !== -1&& window.location.search.indexOf('af_n') !== -1) {
|
242
|
+
const subUrl = window.location.search.replace('?af_key=','').split('&af_n=')
|
243
|
+
console.log(subUrl)
|
244
|
+
this.model.ename = window.atob(subUrl[0])
|
245
|
+
this.model.password = window.atob(subUrl[1])
|
246
|
+
console.log('this.model.ename',this.model.ename)
|
247
|
+
this.otherLogin = true
|
248
|
+
this.confirm()
|
249
|
+
}else{
|
250
|
+
//跳转不需要验证码
|
251
|
+
this.createCode()
|
252
|
+
}
|
253
|
+
},
|
254
|
+
data () {
|
255
|
+
return {
|
256
|
+
image:{
|
257
|
+
img1: '/images/newStyle/login-info.png',
|
258
|
+
img2: '/images/newStyle/login-con.png',
|
259
|
+
img3: '/images/newStyle/login-left.png',
|
260
|
+
img4: '/images/newStyle/login-user.png',
|
261
|
+
img5: '/images/newStyle/login-pwd.png',
|
262
|
+
img6: '/images/newStyle/login-check.png',
|
263
|
+
img7: '/images/newStyle/login-do.png',
|
308
264
|
},
|
309
|
-
|
310
|
-
|
265
|
+
config: {
|
266
|
+
isMac: false,
|
267
|
+
depPrompt: false,
|
268
|
+
weakPassword: false,
|
269
|
+
title: '燃气客服系统',
|
270
|
+
distanceLogin: false
|
311
271
|
},
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
272
|
+
otherLogin:false,
|
273
|
+
login: false,
|
274
|
+
depPromptShow: false,
|
275
|
+
model: {},
|
276
|
+
show: false,
|
277
|
+
checkCode: '',
|
278
|
+
login_do:true,
|
279
|
+
picLyanzhengma: '',
|
280
|
+
// 修改密码弹框展示
|
281
|
+
modifyPwShow: false,
|
282
|
+
logoandroid:false,
|
283
|
+
showus:false,
|
284
|
+
notice:'',
|
285
|
+
loginotherflag :true
|
286
|
+
}
|
287
|
+
},
|
288
|
+
methods: {
|
289
|
+
async loginother(){
|
290
|
+
if (this.config.distanceLogin) {
|
291
|
+
if (this.$login && this.$login.getUrlParames('name') ) {
|
292
|
+
let ename = this.$login.getUrlParames('name');
|
293
|
+
let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
|
294
|
+
if(logininfo.data){
|
295
|
+
if(logininfo.data.ename && logininfo.data.password){
|
296
|
+
this.model.ename = logininfo.data.ename
|
297
|
+
this.model.password =logininfo.data.password
|
298
|
+
let gen = saveGen(this)
|
299
|
+
return co(gen)
|
300
|
+
}
|
341
301
|
}
|
302
|
+
}
|
303
|
+
}
|
304
|
+
},
|
305
|
+
theme(){
|
306
|
+
// var elementList = document.querySelectorAll('body');
|
307
|
+
// console.log(elementList)
|
308
|
+
// document.querySelectorAll('body')[0].className='themeTwo'
|
309
|
+
// var elementList = document.querySelectorAll('body');
|
310
|
+
// console.log(elementList)
|
311
|
+
},
|
312
|
+
onReady () {
|
313
|
+
this.$emit('ready')
|
314
|
+
},
|
315
|
+
confirm (key) {
|
316
|
+
this.login_do=!this.login_do
|
317
|
+
// return
|
318
|
+
if (key == 'key') {
|
319
|
+
$('form').fadeOut(500)
|
320
|
+
}
|
321
|
+
this.login = true
|
322
|
+
// let gen = saveGen(this)
|
323
|
+
// return co(gen)
|
324
|
+
if((!this.otherLogin) && this.$login && this.$login.Verification){
|
325
|
+
console.log('跳转过来的不走验证')
|
326
|
+
if(this.picLyanzhengma == '') {
|
327
|
+
this.$showMessage("请输入验证码!").then(()=>{
|
328
|
+
this.login = false
|
329
|
+
$('form').fadeIn(500)
|
330
|
+
this.createCode()
|
331
|
+
})
|
332
|
+
}else if(this.picLyanzhengma.toUpperCase() != this.checkCode ) {
|
333
|
+
//若输入的验证码与产生的验证码不一致时
|
334
|
+
this.$showMessage("验证码不正确").then(()=>{
|
335
|
+
this.login = false
|
336
|
+
$('form').fadeIn(500)
|
337
|
+
this.createCode();//刷新验证码
|
338
|
+
this.picLyanzhengma = '';
|
339
|
+
})
|
342
340
|
}else {
|
343
341
|
this.login = true
|
344
342
|
let gen = saveGen(this)
|
345
343
|
return co(gen)
|
346
344
|
}
|
347
|
-
}
|
348
|
-
|
349
|
-
let
|
350
|
-
|
351
|
-
let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
|
352
|
-
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');//随机数
|
353
|
-
for (let i = 0; i < codeLength; i++) {
|
354
|
-
//循环操作
|
355
|
-
let index = Math.floor(Math.random() * 36);//取得随机数的索引(0~35)
|
356
|
-
code += random[index];//根据索引取得随机数加到code上
|
357
|
-
}
|
358
|
-
this.checkCode = code;//把code值赋给验证码
|
359
|
-
},
|
360
|
-
|
361
|
-
async depPromptConfirm () {
|
362
|
-
this.depPromptShow = false
|
363
|
-
return this.$goto('home-page', {functions: this.$login.f})
|
364
|
-
},
|
365
|
-
|
366
|
-
depPromptCancel () {
|
367
|
-
this.depPromptShow = false
|
368
|
-
this.createCode()
|
369
|
-
this.picLyanzhengma = ''
|
370
|
-
this.model.ename = ''
|
371
|
-
this.model.password = ''
|
372
|
-
this.login = false
|
373
|
-
$('form').fadeIn(500)
|
345
|
+
}else {
|
346
|
+
this.login = true
|
347
|
+
let gen = saveGen(this)
|
348
|
+
return co(gen)
|
374
349
|
}
|
375
350
|
},
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
351
|
+
createCode(){
|
352
|
+
let code = "";
|
353
|
+
let codeLength = 4;//验证码的长度
|
354
|
+
let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
|
355
|
+
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');//随机数
|
356
|
+
for (let i = 0; i < codeLength; i++) {
|
357
|
+
//循环操作
|
358
|
+
let index = Math.floor(Math.random() * 36);//取得随机数的索引(0~35)
|
359
|
+
code += random[index];//根据索引取得随机数加到code上
|
381
360
|
}
|
382
|
-
|
383
|
-
|
384
|
-
</script>
|
385
|
-
|
386
|
-
<style>
|
387
|
-
|
388
|
-
/*输入框样式*/
|
389
|
-
/*@import url(http://fonts.useso.com/css?family=Source+Sans+Pro:200,300);*/
|
390
|
-
* {
|
391
|
-
box-sizing: border-box;
|
392
|
-
margin: 0;
|
393
|
-
padding: 0;
|
394
|
-
font-weight: 400;
|
395
|
-
outline: none;
|
396
|
-
}
|
397
|
-
|
398
|
-
body {
|
399
|
-
font-family: 'Source Sans Pro', sans-serif;
|
400
|
-
color: white;
|
401
|
-
font-weight: 400;
|
402
|
-
}
|
403
|
-
|
404
|
-
body ::-webkit-input-placeholder {
|
405
|
-
/* WebKit browsers */
|
406
|
-
font-family: 'Source Sans Pro', sans-serif;
|
407
|
-
color: white;
|
408
|
-
font-weight: 400;
|
409
|
-
}
|
410
|
-
|
411
|
-
body :-moz-placeholder {
|
412
|
-
/* Mozilla Firefox 4 to 18 */
|
413
|
-
font-family: 'Source Sans Pro', sans-serif;
|
414
|
-
color: white;
|
415
|
-
opacity: 1;
|
416
|
-
font-weight: 400;
|
417
|
-
}
|
418
|
-
|
419
|
-
body ::-moz-placeholder {
|
420
|
-
/* Mozilla Firefox 19+ */
|
421
|
-
font-family: 'Source Sans Pro', sans-serif;
|
422
|
-
color: white;
|
423
|
-
opacity: 1;
|
424
|
-
font-weight: 400;
|
425
|
-
}
|
426
|
-
|
427
|
-
body :-ms-input-placeholder {
|
428
|
-
/* Internet Explorer 10+ */
|
429
|
-
font-family: 'Source Sans Pro', sans-serif;
|
430
|
-
color: white;
|
431
|
-
font-weight: 400;
|
432
|
-
}
|
433
|
-
|
434
|
-
.wrapper {
|
435
|
-
/*background: #2D83BA;
|
436
|
-
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
437
|
-
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
438
|
-
opacity: 0.8;*/
|
439
|
-
position: absolute;
|
440
|
-
top: 50%;
|
441
|
-
right: -60px;
|
442
|
-
width: 40%;
|
443
|
-
height: 400px;
|
444
|
-
margin-top: -150px;
|
445
|
-
overflow: hidden;
|
446
|
-
|
447
|
-
}
|
448
|
-
|
449
|
-
.wrapper.form-success .container h3 {
|
450
|
-
-webkit-transform: translateY(85px);
|
451
|
-
-ms-transform: translateY(85px);
|
452
|
-
transform: translateY(85px);
|
453
|
-
}
|
454
|
-
|
455
|
-
.container {
|
456
|
-
max-width: 350px;
|
457
|
-
margin: 0 auto;
|
458
|
-
padding: 30px 100px 50px 100px;
|
459
|
-
height: 400px;
|
460
|
-
text-align: center;
|
461
|
-
/*以下增加*/
|
462
|
-
background: #2D83BA;
|
463
|
-
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
464
|
-
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
465
|
-
opacity: 0.8;
|
466
|
-
}
|
467
|
-
|
468
|
-
.container h3 {
|
469
|
-
font-size: 40px;
|
470
|
-
-webkit-transition-duration: 1s;
|
471
|
-
transition-duration: 1s;
|
472
|
-
-webkit-transition-timing-function: ease-in-put;
|
473
|
-
transition-timing-function: ease-in-put;
|
474
|
-
font-weight: 200;
|
475
|
-
}
|
476
|
-
|
477
|
-
.form {
|
478
|
-
padding: 20px 0;
|
479
|
-
position: relative;
|
480
|
-
z-index: 2;
|
481
|
-
}
|
482
|
-
|
483
|
-
.form input {
|
484
|
-
-webkit-appearance: none;
|
485
|
-
-moz-appearance: none;
|
486
|
-
appearance: none;
|
487
|
-
outline: 0;
|
488
|
-
border: 1px solid #50ABE6;
|
489
|
-
background-color: #50ABE6;
|
490
|
-
width: 250px;
|
491
|
-
border-radius: 3px;
|
492
|
-
padding: 10px 15px;
|
493
|
-
margin: 0 auto 10px auto;
|
494
|
-
display: block;
|
495
|
-
text-align: center;
|
496
|
-
font-size: 18px;
|
497
|
-
color: white;
|
498
|
-
-webkit-transition-duration: 0.25s;
|
499
|
-
transition-duration: 0.25s;
|
500
|
-
font-weight: 400;
|
501
|
-
}
|
502
|
-
|
503
|
-
.form input:hover {
|
504
|
-
background-color: rgba(255, 255, 255, 0.4);
|
505
|
-
}
|
506
|
-
|
507
|
-
.form input:focus {
|
508
|
-
background-color: white;
|
509
|
-
width: 300px;
|
510
|
-
color: #53e3a6;
|
511
|
-
}
|
512
|
-
|
513
|
-
.usericon {
|
514
|
-
background-image: url(../../../static/usericon.png);
|
515
|
-
background-repeat: no-repeat;
|
516
|
-
background-size: 30px;
|
517
|
-
background-position-x: 8px;
|
518
|
-
background-position-y: 8px;
|
519
|
-
}
|
520
|
-
|
521
|
-
.psicon {
|
522
|
-
background-image: url(../../../static/psicon.png);
|
523
|
-
background-repeat: no-repeat;
|
524
|
-
background-size: 30px;
|
525
|
-
background-position-x: 8px;
|
526
|
-
background-position-y: 8px;
|
527
|
-
}
|
528
|
-
|
529
|
-
.form button {
|
530
|
-
-webkit-appearance: none;
|
531
|
-
-moz-appearance: none;
|
532
|
-
appearance: none;
|
533
|
-
outline: 0;
|
534
|
-
background-color: white;
|
535
|
-
border: 0;
|
536
|
-
padding: 10px 15px;
|
537
|
-
color: #253830;
|
538
|
-
border-radius: 3px;
|
539
|
-
width: 250px;
|
540
|
-
cursor: pointer;
|
541
|
-
font-size: 18px;
|
542
|
-
-webkit-transition-duration: 0.25s;
|
543
|
-
transition-duration: 0.25s;
|
544
|
-
}
|
545
|
-
|
546
|
-
.form button:hover {
|
547
|
-
background-color: #f5f7f9;
|
548
|
-
}
|
549
|
-
|
550
|
-
/*注册字体样式*/
|
551
|
-
.form span {
|
552
|
-
color: #fff;
|
553
|
-
display: table-footer-group;
|
554
|
-
position: absolute;
|
555
|
-
right: 10px;
|
556
|
-
margin-top: 10px;
|
557
|
-
cursor: pointer;
|
558
|
-
}
|
559
|
-
|
560
|
-
.logotitle {
|
561
|
-
color: #fff;
|
562
|
-
position: absolute;
|
563
|
-
top: 50px;
|
564
|
-
left: 50px;
|
565
|
-
font-size: 50px;
|
566
|
-
}
|
567
|
-
|
568
|
-
/*注册模态框界面样式*/
|
569
|
-
.modifystyle {
|
570
|
-
background: #FCFEEE;
|
571
|
-
}
|
572
|
-
|
573
|
-
.modifystyle div {
|
574
|
-
height: auto;
|
575
|
-
margin-bottom: 15px;
|
576
|
-
/*text-align: center;*/
|
577
|
-
/*margin-left: 20%;*/
|
578
|
-
}
|
579
|
-
|
580
|
-
/*bootstrap字体图标要手动调整,所以使用字体图标的span必须紧跟在input后面,负责会错位*/
|
581
|
-
.modifystyle div input + span {
|
582
|
-
top: 0 !important;
|
583
|
-
right: 32%;
|
584
|
-
}
|
585
|
-
|
586
|
-
.modifystyle span {
|
587
|
-
color: red;
|
588
|
-
}
|
589
|
-
|
590
|
-
/* 通告区内容 */
|
591
|
-
.notice-board {
|
592
|
-
height: auto;
|
593
|
-
position: absolute;
|
594
|
-
top: 50%;
|
595
|
-
margin-top: -150px;
|
596
|
-
margin-left: 100px;
|
597
|
-
color: #fff;
|
598
|
-
}
|
599
|
-
|
600
|
-
/*修改密码底部按钮部分样式*/
|
601
|
-
.footerbtn {
|
602
|
-
text-align: center;
|
603
|
-
padding: 15px;
|
604
|
-
}
|
605
|
-
|
606
|
-
.footerbtn button {
|
607
|
-
width: 100px;
|
608
|
-
margin-left: 20px;
|
609
|
-
}
|
610
|
-
|
611
|
-
.bg-bubbles {
|
612
|
-
position: absolute;
|
613
|
-
top: 0;
|
614
|
-
left: 0;
|
615
|
-
width: 100%;
|
616
|
-
height: 100%;
|
617
|
-
z-index: 1;
|
618
|
-
}
|
619
|
-
|
620
|
-
.bg-bubbles li {
|
621
|
-
position: absolute;
|
622
|
-
list-style: none;
|
623
|
-
display: block;
|
624
|
-
width: 40px;
|
625
|
-
height: 40px;
|
626
|
-
background-color: rgba(255, 255, 255, 0.15);
|
627
|
-
bottom: -160px;
|
628
|
-
-webkit-animation: square 25s infinite;
|
629
|
-
animation: square 25s infinite;
|
630
|
-
-webkit-transition-timing-function: linear;
|
631
|
-
transition-timing-function: linear;
|
632
|
-
}
|
633
|
-
|
634
|
-
.bg-bubbles li:nth-child(1) {
|
635
|
-
left: 10%;
|
636
|
-
}
|
637
|
-
|
638
|
-
.bg-bubbles li:nth-child(2) {
|
639
|
-
left: 20%;
|
640
|
-
width: 80px;
|
641
|
-
height: 80px;
|
642
|
-
-webkit-animation-delay: 2s;
|
643
|
-
animation-delay: 2s;
|
644
|
-
-webkit-animation-duration: 17s;
|
645
|
-
animation-duration: 17s;
|
646
|
-
}
|
647
|
-
|
648
|
-
.bg-bubbles li:nth-child(3) {
|
649
|
-
left: 25%;
|
650
|
-
-webkit-animation-delay: 4s;
|
651
|
-
animation-delay: 4s;
|
652
|
-
}
|
653
|
-
|
654
|
-
.bg-bubbles li:nth-child(4) {
|
655
|
-
left: 40%;
|
656
|
-
width: 60px;
|
657
|
-
height: 60px;
|
658
|
-
-webkit-animation-duration: 22s;
|
659
|
-
animation-duration: 22s;
|
660
|
-
background-color: rgba(255, 255, 255, 0.25);
|
661
|
-
}
|
662
|
-
|
663
|
-
.bg-bubbles li:nth-child(5) {
|
664
|
-
left: 70%;
|
665
|
-
}
|
666
|
-
|
667
|
-
.bg-bubbles li:nth-child(6) {
|
668
|
-
left: 80%;
|
669
|
-
width: 120px;
|
670
|
-
height: 120px;
|
671
|
-
-webkit-animation-delay: 3s;
|
672
|
-
animation-delay: 3s;
|
673
|
-
background-color: rgba(255, 255, 255, 0.2);
|
674
|
-
}
|
675
|
-
|
676
|
-
.bg-bubbles li:nth-child(7) {
|
677
|
-
left: 32%;
|
678
|
-
width: 160px;
|
679
|
-
height: 160px;
|
680
|
-
-webkit-animation-delay: 7s;
|
681
|
-
animation-delay: 7s;
|
682
|
-
}
|
683
|
-
|
684
|
-
.bg-bubbles li:nth-child(8) {
|
685
|
-
left: 55%;
|
686
|
-
width: 20px;
|
687
|
-
height: 20px;
|
688
|
-
-webkit-animation-delay: 15s;
|
689
|
-
animation-delay: 15s;
|
690
|
-
-webkit-animation-duration: 40s;
|
691
|
-
animation-duration: 40s;
|
692
|
-
}
|
693
|
-
|
694
|
-
.bg-bubbles li:nth-child(9) {
|
695
|
-
left: 25%;
|
696
|
-
width: 10px;
|
697
|
-
height: 10px;
|
698
|
-
-webkit-animation-delay: 2s;
|
699
|
-
animation-delay: 2s;
|
700
|
-
-webkit-animation-duration: 40s;
|
701
|
-
animation-duration: 40s;
|
702
|
-
background-color: rgba(255, 255, 255, 0.3);
|
703
|
-
}
|
361
|
+
this.checkCode = code;//把code值赋给验证码
|
362
|
+
},
|
704
363
|
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
-webkit-animation-delay: 11s;
|
710
|
-
animation-delay: 11s;
|
711
|
-
}
|
712
|
-
.logofooter{
|
713
|
-
font-size: 12px;
|
714
|
-
color:#fff;
|
715
|
-
width:150px;
|
716
|
-
margin-left: 17px;
|
717
|
-
}
|
718
|
-
.logocontent{
|
719
|
-
font-size: 14px;
|
720
|
-
color:#fff;
|
721
|
-
width:150px;
|
722
|
-
margin: 3px -15px;
|
723
|
-
}
|
724
|
-
.imglogo {
|
725
|
-
background:url(../../../static/logo.png);
|
726
|
-
background-size:100%;
|
727
|
-
}
|
728
|
-
.logoew {
|
729
|
-
width:120px;
|
730
|
-
height:120px;
|
731
|
-
float:right;
|
732
|
-
margin-right:8.5%;
|
733
|
-
margin-top:10px;
|
734
|
-
}
|
364
|
+
async depPromptConfirm () {
|
365
|
+
this.depPromptShow = false
|
366
|
+
return this.$goto('home-page', {functions: this.$login.f})
|
367
|
+
},
|
735
368
|
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
369
|
+
depPromptCancel () {
|
370
|
+
this.depPromptShow = false
|
371
|
+
this.createCode()
|
372
|
+
this.picLyanzhengma = ''
|
373
|
+
this.model.ename = ''
|
374
|
+
this.model.password = ''
|
375
|
+
this.login = false
|
376
|
+
$('form').fadeIn(500)
|
740
377
|
}
|
741
|
-
|
742
|
-
|
743
|
-
|
378
|
+
},
|
379
|
+
watch: {
|
380
|
+
'modifyPwShow' (val){
|
381
|
+
if (!val) {
|
382
|
+
window.location.reload()
|
383
|
+
}
|
744
384
|
}
|
745
385
|
}
|
386
|
+
}
|
387
|
+
</script>
|
746
388
|
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
389
|
+
<style>
|
390
|
+
|
391
|
+
/*输入框样式*/
|
392
|
+
/*@import url(http://fonts.useso.com/css?family=Source+Sans+Pro:200,300);*/
|
393
|
+
* {
|
394
|
+
box-sizing: border-box;
|
395
|
+
margin: 0;
|
396
|
+
padding: 0;
|
397
|
+
font-weight: 400;
|
398
|
+
outline: none;
|
399
|
+
}
|
400
|
+
|
401
|
+
body {
|
402
|
+
font-family: 'Source Sans Pro', sans-serif;
|
403
|
+
color: white;
|
404
|
+
font-weight: 400;
|
405
|
+
}
|
406
|
+
|
407
|
+
body ::-webkit-input-placeholder {
|
408
|
+
/* WebKit browsers */
|
409
|
+
font-family: 'Source Sans Pro', sans-serif;
|
410
|
+
color: white;
|
411
|
+
font-weight: 400;
|
412
|
+
}
|
413
|
+
|
414
|
+
body :-moz-placeholder {
|
415
|
+
/* Mozilla Firefox 4 to 18 */
|
416
|
+
font-family: 'Source Sans Pro', sans-serif;
|
417
|
+
color: white;
|
418
|
+
opacity: 1;
|
419
|
+
font-weight: 400;
|
420
|
+
}
|
421
|
+
|
422
|
+
body ::-moz-placeholder {
|
423
|
+
/* Mozilla Firefox 19+ */
|
424
|
+
font-family: 'Source Sans Pro', sans-serif;
|
425
|
+
color: white;
|
426
|
+
opacity: 1;
|
427
|
+
font-weight: 400;
|
428
|
+
}
|
429
|
+
|
430
|
+
body :-ms-input-placeholder {
|
431
|
+
/* Internet Explorer 10+ */
|
432
|
+
font-family: 'Source Sans Pro', sans-serif;
|
433
|
+
color: white;
|
434
|
+
font-weight: 400;
|
435
|
+
}
|
436
|
+
|
437
|
+
.wrapper {
|
438
|
+
/*background: #2D83BA;
|
439
|
+
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
440
|
+
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
441
|
+
opacity: 0.8;*/
|
442
|
+
position: absolute;
|
443
|
+
top: 50%;
|
444
|
+
right: -60px;
|
445
|
+
width: 40%;
|
446
|
+
height: 400px;
|
447
|
+
margin-top: -150px;
|
448
|
+
overflow: hidden;
|
449
|
+
|
450
|
+
}
|
451
|
+
|
452
|
+
.wrapper.form-success .container h3 {
|
453
|
+
-webkit-transform: translateY(85px);
|
454
|
+
-ms-transform: translateY(85px);
|
455
|
+
transform: translateY(85px);
|
456
|
+
}
|
457
|
+
|
458
|
+
.container {
|
459
|
+
max-width: 350px;
|
460
|
+
margin: 0 auto;
|
461
|
+
padding: 30px 100px 50px 100px;
|
462
|
+
height: 400px;
|
463
|
+
text-align: center;
|
464
|
+
/*以下增加*/
|
465
|
+
background: #2D83BA;
|
466
|
+
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
467
|
+
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
468
|
+
opacity: 0.8;
|
469
|
+
}
|
470
|
+
|
471
|
+
.container h3 {
|
472
|
+
font-size: 40px;
|
473
|
+
-webkit-transition-duration: 1s;
|
474
|
+
transition-duration: 1s;
|
475
|
+
-webkit-transition-timing-function: ease-in-put;
|
476
|
+
transition-timing-function: ease-in-put;
|
477
|
+
font-weight: 200;
|
478
|
+
}
|
479
|
+
|
480
|
+
.form {
|
481
|
+
padding: 20px 0;
|
482
|
+
position: relative;
|
483
|
+
z-index: 2;
|
484
|
+
}
|
485
|
+
|
486
|
+
.form input {
|
487
|
+
-webkit-appearance: none;
|
488
|
+
-moz-appearance: none;
|
489
|
+
appearance: none;
|
490
|
+
outline: 0;
|
491
|
+
border: 1px solid #50ABE6;
|
492
|
+
background-color: #50ABE6;
|
493
|
+
width: 250px;
|
494
|
+
border-radius: 3px;
|
495
|
+
padding: 10px 15px;
|
496
|
+
margin: 0 auto 10px auto;
|
497
|
+
display: block;
|
498
|
+
text-align: center;
|
499
|
+
font-size: 18px;
|
500
|
+
color: white;
|
501
|
+
-webkit-transition-duration: 0.25s;
|
502
|
+
transition-duration: 0.25s;
|
503
|
+
font-weight: 400;
|
504
|
+
}
|
505
|
+
|
506
|
+
.form input:hover {
|
507
|
+
background-color: rgba(255, 255, 255, 0.4);
|
508
|
+
}
|
509
|
+
|
510
|
+
.form input:focus {
|
511
|
+
background-color: white;
|
512
|
+
width: 300px;
|
513
|
+
color: #53e3a6;
|
514
|
+
}
|
515
|
+
|
516
|
+
.usericon {
|
517
|
+
background-image: url(../../../static/usericon.png);
|
518
|
+
background-repeat: no-repeat;
|
519
|
+
background-size: 30px;
|
520
|
+
background-position-x: 8px;
|
521
|
+
background-position-y: 8px;
|
522
|
+
}
|
523
|
+
|
524
|
+
.psicon {
|
525
|
+
background-image: url(../../../static/psicon.png);
|
526
|
+
background-repeat: no-repeat;
|
527
|
+
background-size: 30px;
|
528
|
+
background-position-x: 8px;
|
529
|
+
background-position-y: 8px;
|
530
|
+
}
|
531
|
+
|
532
|
+
.form button {
|
533
|
+
-webkit-appearance: none;
|
534
|
+
-moz-appearance: none;
|
535
|
+
appearance: none;
|
536
|
+
outline: 0;
|
537
|
+
background-color: white;
|
538
|
+
border: 0;
|
539
|
+
padding: 10px 15px;
|
540
|
+
color: #253830;
|
541
|
+
border-radius: 3px;
|
542
|
+
width: 250px;
|
543
|
+
cursor: pointer;
|
544
|
+
font-size: 18px;
|
545
|
+
-webkit-transition-duration: 0.25s;
|
546
|
+
transition-duration: 0.25s;
|
547
|
+
}
|
548
|
+
|
549
|
+
.form button:hover {
|
550
|
+
background-color: #f5f7f9;
|
551
|
+
}
|
552
|
+
|
553
|
+
/*注册字体样式*/
|
554
|
+
.form span {
|
555
|
+
color: #fff;
|
556
|
+
display: table-footer-group;
|
557
|
+
position: absolute;
|
558
|
+
right: 10px;
|
559
|
+
margin-top: 10px;
|
560
|
+
cursor: pointer;
|
561
|
+
}
|
562
|
+
|
563
|
+
.logotitle {
|
564
|
+
color: #fff;
|
565
|
+
position: absolute;
|
566
|
+
top: 50px;
|
567
|
+
left: 50px;
|
568
|
+
font-size: 50px;
|
569
|
+
}
|
570
|
+
|
571
|
+
/*注册模态框界面样式*/
|
572
|
+
.modifystyle {
|
573
|
+
background: #FCFEEE;
|
574
|
+
}
|
575
|
+
|
576
|
+
.modifystyle div {
|
577
|
+
height: auto;
|
578
|
+
margin-bottom: 15px;
|
579
|
+
/*text-align: center;*/
|
580
|
+
/*margin-left: 20%;*/
|
581
|
+
}
|
582
|
+
|
583
|
+
/*bootstrap字体图标要手动调整,所以使用字体图标的span必须紧跟在input后面,负责会错位*/
|
584
|
+
.modifystyle div input + span {
|
585
|
+
top: 0 !important;
|
586
|
+
right: 32%;
|
587
|
+
}
|
588
|
+
|
589
|
+
.modifystyle span {
|
590
|
+
color: red;
|
591
|
+
}
|
592
|
+
|
593
|
+
/* 通告区内容 */
|
594
|
+
.notice-board {
|
595
|
+
height: auto;
|
596
|
+
position: absolute;
|
597
|
+
top: 50%;
|
598
|
+
margin-top: -150px;
|
599
|
+
margin-left: 100px;
|
600
|
+
color: #fff;
|
601
|
+
}
|
602
|
+
|
603
|
+
/*修改密码底部按钮部分样式*/
|
604
|
+
.footerbtn {
|
605
|
+
text-align: center;
|
606
|
+
padding: 15px;
|
607
|
+
}
|
608
|
+
|
609
|
+
.footerbtn button {
|
610
|
+
width: 100px;
|
611
|
+
margin-left: 20px;
|
612
|
+
}
|
613
|
+
|
614
|
+
.bg-bubbles {
|
615
|
+
position: absolute;
|
616
|
+
top: 0;
|
617
|
+
left: 0;
|
618
|
+
width: 100%;
|
619
|
+
height: 100%;
|
620
|
+
z-index: 1;
|
621
|
+
}
|
622
|
+
|
623
|
+
.bg-bubbles li {
|
624
|
+
position: absolute;
|
625
|
+
list-style: none;
|
626
|
+
display: block;
|
627
|
+
width: 40px;
|
628
|
+
height: 40px;
|
629
|
+
background-color: rgba(255, 255, 255, 0.15);
|
630
|
+
bottom: -160px;
|
631
|
+
-webkit-animation: square 25s infinite;
|
632
|
+
animation: square 25s infinite;
|
633
|
+
-webkit-transition-timing-function: linear;
|
634
|
+
transition-timing-function: linear;
|
635
|
+
}
|
636
|
+
|
637
|
+
.bg-bubbles li:nth-child(1) {
|
638
|
+
left: 10%;
|
639
|
+
}
|
640
|
+
|
641
|
+
.bg-bubbles li:nth-child(2) {
|
642
|
+
left: 20%;
|
643
|
+
width: 80px;
|
644
|
+
height: 80px;
|
645
|
+
-webkit-animation-delay: 2s;
|
646
|
+
animation-delay: 2s;
|
647
|
+
-webkit-animation-duration: 17s;
|
648
|
+
animation-duration: 17s;
|
649
|
+
}
|
650
|
+
|
651
|
+
.bg-bubbles li:nth-child(3) {
|
652
|
+
left: 25%;
|
653
|
+
-webkit-animation-delay: 4s;
|
654
|
+
animation-delay: 4s;
|
655
|
+
}
|
656
|
+
|
657
|
+
.bg-bubbles li:nth-child(4) {
|
658
|
+
left: 40%;
|
659
|
+
width: 60px;
|
660
|
+
height: 60px;
|
661
|
+
-webkit-animation-duration: 22s;
|
662
|
+
animation-duration: 22s;
|
663
|
+
background-color: rgba(255, 255, 255, 0.25);
|
664
|
+
}
|
665
|
+
|
666
|
+
.bg-bubbles li:nth-child(5) {
|
667
|
+
left: 70%;
|
668
|
+
}
|
669
|
+
|
670
|
+
.bg-bubbles li:nth-child(6) {
|
671
|
+
left: 80%;
|
672
|
+
width: 120px;
|
673
|
+
height: 120px;
|
674
|
+
-webkit-animation-delay: 3s;
|
675
|
+
animation-delay: 3s;
|
676
|
+
background-color: rgba(255, 255, 255, 0.2);
|
677
|
+
}
|
678
|
+
|
679
|
+
.bg-bubbles li:nth-child(7) {
|
680
|
+
left: 32%;
|
681
|
+
width: 160px;
|
682
|
+
height: 160px;
|
683
|
+
-webkit-animation-delay: 7s;
|
684
|
+
animation-delay: 7s;
|
685
|
+
}
|
686
|
+
|
687
|
+
.bg-bubbles li:nth-child(8) {
|
688
|
+
left: 55%;
|
689
|
+
width: 20px;
|
690
|
+
height: 20px;
|
691
|
+
-webkit-animation-delay: 15s;
|
692
|
+
animation-delay: 15s;
|
693
|
+
-webkit-animation-duration: 40s;
|
694
|
+
animation-duration: 40s;
|
695
|
+
}
|
696
|
+
|
697
|
+
.bg-bubbles li:nth-child(9) {
|
698
|
+
left: 25%;
|
699
|
+
width: 10px;
|
700
|
+
height: 10px;
|
701
|
+
-webkit-animation-delay: 2s;
|
702
|
+
animation-delay: 2s;
|
703
|
+
-webkit-animation-duration: 40s;
|
704
|
+
animation-duration: 40s;
|
705
|
+
background-color: rgba(255, 255, 255, 0.3);
|
706
|
+
}
|
707
|
+
|
708
|
+
.bg-bubbles li:nth-child(10) {
|
709
|
+
left: 90%;
|
710
|
+
width: 160px;
|
711
|
+
height: 160px;
|
712
|
+
-webkit-animation-delay: 11s;
|
713
|
+
animation-delay: 11s;
|
714
|
+
}
|
715
|
+
.logofooter{
|
716
|
+
font-size: 12px;
|
717
|
+
color:#fff;
|
718
|
+
width:150px;
|
719
|
+
margin-left: 17px;
|
720
|
+
}
|
721
|
+
.logocontent{
|
722
|
+
font-size: 14px;
|
723
|
+
color:#fff;
|
724
|
+
width:150px;
|
725
|
+
margin: 3px -15px;
|
726
|
+
}
|
727
|
+
.imglogo {
|
728
|
+
background:url(../../../static/logo.png);
|
729
|
+
background-size:100%;
|
730
|
+
}
|
731
|
+
.logoew {
|
732
|
+
width:120px;
|
733
|
+
height:120px;
|
734
|
+
float:right;
|
735
|
+
margin-right:8.5%;
|
736
|
+
margin-top:10px;
|
737
|
+
}
|
738
|
+
|
739
|
+
@-webkit-keyframes square {
|
740
|
+
0% {
|
741
|
+
-webkit-transform: translateY(0);
|
742
|
+
transform: translateY(0);
|
743
|
+
}
|
744
|
+
100% {
|
745
|
+
-webkit-transform: translateY(-700px) rotate(600deg);
|
746
|
+
transform: translateY(-700px) rotate(600deg);
|
747
|
+
}
|
748
|
+
}
|
749
|
+
|
750
|
+
@keyframes square {
|
751
|
+
0% {
|
752
|
+
-webkit-transform: translateY(0);
|
753
|
+
transform: translateY(0);
|
754
|
+
}
|
755
|
+
100% {
|
756
|
+
-webkit-transform: translateY(-700px) rotate(600deg);
|
757
|
+
transform: translateY(-700px) rotate(600deg);
|
758
|
+
}
|
759
|
+
}
|
757
760
|
</style>
|