<style>
.wap{
margin:0 auto;
width:955px;
}
.top{
height:150px;
padding-left:85px;
}
.middle{
height:296px;
background-color: rgba(134, 142, 140, 0.236);
height:296px;
position:relative;
width:955px;
}
.dl{
width:312px;
height:230px;
position:absolute;
right:60px;
top:30px
}
.dlti{
font-size:24px;
color:#333;
position:absolute;
top:5px;
}
.dlmi{
float:left;
width:312px;
line-height:20px;
font-size:17px;
color:#333;
position:absolute;
top:70px;
}
.dlmi input{
/* float:right; */
height:28px;
width:228px;
border:1px solid #DDDDDD;
/* position:absolute; */
left:60px;
}
.dlj{
color:#666;
position:absolute;
top:180px;
left:77px;
width: 113px;
}
.dlau{
position:absolute;
left:140px;
top:171px;
height:45px;
width:45px;
font-size:16px;
}
.dlaua{
position:absolute;
left: 200px;px;
top:171px;
height:45px;
width:45px;
font-size:16px;
}
.dlau a{
background:url(/xxgcxy_jsxsd/framework/images/index/dlau.gif) no-repeat;
display:block;
width:45px;
height:45px;
}
.dlau1{
position:absolute;
left:263px;
top:171px;
height:45px;
width:45px;
font-size:16px;
}
.dlau1 a{
/* background:url(./image/上传.svg) no-repeat; */
display:block;
width:45px;
height:45px;
}
.end{
position:absolute;
font-size:15px;
color:#999;
float:left;
width:809px;
left: 85px;
top: 304px;
}
.end span{
float:right;
}
.end span a{
color:#999;
text-decoration:none;
}
.a{
margin-left: 150px;
margin-top: 50px;
}
//init();//0001571
/*
function init(){
String login_username = getCookie("login_username");
if(login_username != ""){
document.getElementById("Form1").USERNAME.value = login_username;
}
}*/
function ReShowCode(){
var SafeCodeImg = document.getElementById('SafeCodeImg');
var url="/xxgcxy_jsxsd/verifycode.servlet?t="+Math.random();
SafeCodeImg.src = url;
}
function submitForm1(){
try{
var xh = document.getElementById("userAccount").value;
var pwd = document.getElementById("userPassword").value;
if(xh==""){
alert("用户名不能为空!");
return false;
}
if(pwd==""){
alert("密码不能为空!");
return false;
}
var account = encodeInp(xh);
var passwd = encodeInp(pwd);
var encoded = account+"%%%"+passwd;
document.getElementById("encoded").value = encoded;
var jzmmid = document.getElementById("Form1").jzmmid;
return true;
}catch(e){
alert(e.Message);
return false;
}
}
//根据用户帐号选择登录服务器
function selectServer(uName){
var enableServers = true;//是否启用多服务器 true/false
var serversArray = new Array();//服务器列表
var loginUrl = "xk/LoginToXk";
if(enableServers == true){
if(!/[^\d]/.test(uName)){//必须为数字
var modVal = eval(uName % serversArray.length);
loginUrl = serversArray[modVal] + loginUrl;
}else{
loginUrl = serversArray[0] + loginUrl;
}
}else{
loginUrl = "/xxgcxy_jsxsd"+ loginUrl;
}
return loginUrl;
}