﻿*, body {
    font-family: 微软雅黑,"ProximaNovaRegular",Arial,sans-serif;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    outline: none;
}

* {
    scrollbar-shadow-color: #ffffff;
    scrollbar-highlight-color: #ffffff;
    scrollbar-face-color: #dedede;
    scrollbar-3dlight-color: #dedede;
    scrollbar-darkshadow-color: #dedede;
    scrollbar-track-color: #f1f1f1;
    scrollbar-arrow-color: #797979;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #a8a8a8;
    }

    ::-webkit-scrollbar-thumb:active {
        background-color: #787878;
    }

input:focus, input:hover {
    outline: none;
    border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

input::-webkit-input-placeholder, input::-moz-input-placeholder, input::-ms-input-placeholder {
    color: #ccc;
}

body {
    background-color: #145E79;
}

.loginPanel {
    width: 420px;
    height: 400px;
    margin: auto;
    margin-top: 10%;
}

    .loginPanel .title {
        color: white;
        font-size: 24px;
        text-align: center;
        margin-bottom: 50px;
    }

    .loginPanel ul {
        line-height: 64px;
    }

        .loginPanel ul li {
        }

.account, .password {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border: 1px solid white;
    padding: 3px;
    text-indent: 5px;
    font-size: 16px;
}

.btnLogin {
    width: 100%;
    height: 36px;
    line-height: 36px;
    color: white;
    border: 1px solid red;
    text-align: center;
    font-size: 16px;
    background: red;
    margin: auto;
    cursor: pointer;
}

.copyright {
    color: white;
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
    opacity: 0.6;
}