
body
{
    font-family: "微软雅黑";
    font-size: 12px;
    padding: 0;
    margin: 0;
}
body, html
{
    overflow: hidden;
}
a
{
    text-decoration: none;
}
ul, p, form
{
    padding: 0;
    margin: 0;
}
li
{
    list-style: none;
}
img
{
    border: 0;
}
.box-bg
{
    position: absolute;
    width: 100%;
    height: 100%;
}
.login-content
{
    background: rgba(255,255,255,.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff,endColorstr=#7fffffff);
    border-radius: 14px;
    width: 550px;
    height: 450px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -225px 0 0 -275px;
}
.login-a
{
    padding: 45px 75px;
}
.login-aa
{
    color: #0091ed;
    font-size: 30px;
    text-align: center;
}
.login-ab li
{
    position: relative;
    padding-top: 40px;
}
.login-ab1 li
{
    position: relative;
    padding-top: 20px;
}

.input-text
{
    font-family: "微软雅黑";
    border: 1px solid #9a9a9a;
    background: #fff;
    border-radius: 4px;
    width: 350px;
    height: 58px;
    line-height: 58px;
    font-size: 16px;
    padding-left: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.input-text::placeholder
{
    font-weight: 300;
    letter-spacing: 0.3px;
}

.input-text:focus
{
    border-color: #4a7cf7;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(74, 124, 247, 0.15);
}


.login-user
{
    background: url(../images/icon-user.png) no-repeat;
    position: absolute;
    width: 15px;
    height: 18px;
    left: 20px;
    margin-top: 22px;
}
.login-password
{
    background: url(../images/icon-password.png) no-repeat;
    position: absolute;
    width: 15px;
    height: 18px;
    left: 20px;
    margin-top: 22px;
}
.login-key
{
    background: url(../images/icon-key.png) no-repeat;
    position: absolute;
    width: 15px;
    height: 18px;
    left: 20px;
    margin-top: 22px;
}

.imgScr
{
    cursor: pointer;
    width: 100px;
    height: 58px;
}


/* 按钮 */
.submit-text
{
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #4a7cf7, #6c5ce7);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 6px 24px rgba(74, 124, 247, 0.35);
}
.submit-text:hover
{
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(74, 124, 247, 0.45);
    background: linear-gradient(135deg, #5a8cff, #7c6cf7);
}
.submit-text:active
{
    transform: translateY(1px);
    box-shadow: 0 4px 16px rgba(74, 124, 247, 0.3);
}
