html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    font-family: "微软雅黑", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background: linear-gradient(to right bottom,#3f9be9,#2a7ed6,#3f9be9);
    padding: 0;
    margin: 0;
}

html, body {
    overflow-x: hidden;
    min-height: 100vh;!important;
}

a, a:hover, a:link, a:active {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

/*单行文字缩进*/
.txtHide {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.baseColor {
    color: #1ac78d;
}

.baseWhite {
    color: #FFFFFF;
}
.baseBlue{
    color: #287fd3;
}

._basePage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 90vh;
    position: relative;
}
._basePage ._logins{
    display: flex;
    align-items: center;
    min-width: 580px;
    box-shadow: 0 0 7px #287fd3;
    border-radius: 7px;
    animation: zooms 1s;
    overflow: hidden;
}
._logins ._leftLoginTitles{
    display: flex;
    flex-direction: column;
    flex-basis: 35%;
    background-color: #3f9be9;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}
._leftLoginTitles span{
    margin: 5px 0;
}
._logins ._rightLoginContents{
    display: flex;
    flex-direction: column;
    background-color: white;
    flex: 1;
    min-height: 380px;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
}
._rightLoginContents ._rightLoginTitle{
    font-size: 20px;
    font-weight: bold;
    margin: 10px;
}

._rightLoginContents ._loginInputs{
    display: flex;
    align-items: center;
    min-height: 35px;
    border: 0;
    width: 80%;
    border-bottom: 1px solid #dddddd;
    margin: 10px;
    font-size: 16px;
    transition:all .3s;
}
._rightLoginContents ._loginInputs:focus{
    border-color:transparent;
    outline:0;
    border-bottom: 1px solid blue;
}

._rightLoginContents ._loginOthers{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 30px 0;
    width: 80%;
}
._loginOthers ._loginOther{
    display: flex;
    align-items: center;
}
._loginOthers input[type="checkbox"]{
    width: 17px;
    height: 17px;
}

._logins .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 30px;
    padding: 0 10px;
    margin-top: 10px;
    background-color: #FFFFFF;
    border-radius: 5px;
}
._logins ._loginButton{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    background-color: #57a6ef;
    width: 80%;
    border: 0;
    border-radius: 25px;
    transition: all .3s;
}
._loginButton:active , ._loginButton:focus{
    outline: 0;
    background-color: #2c7ed4;
}
._loginButton:active{
    transform: scale(0.6);
}
._bottoms{
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 50px;
    align-items: center;
    line-height: 25px;

}
@keyframes zooms{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

