
*{
    font-family: '微軟正黑體';
}

@keyframes bg-in {

    0% {background-position: top;}/*初始状态 透明度为0*/
    
    100% {background-position: center;}/*结束状态 透明度为1*/
    
}

html{
    width: 100%;
    height: 100%;
    /* background-image: url("../../img/sly/login-bg5.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: url("../img/sky.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
    /* transition: 3s ease-in-out; */
    background-color: rgb(65, 65, 65);
    /* -webkit-animation:bg-in 3s; */
    
}

@keyframes clear-in {

    0% {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter:blur(0px);
        
    }/*初始状态 透明度为0*/
    
    100% {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter:blur(10px);
    }/*结束状态 透明度为1*/
    
}

body{
    /* background-color: rgba(255, 255, 255, 0.141); */
    /* background : linear-gradient(rgb(126, 126, 126), rgb(79, 79, 79)); */
    width: 100%;
    height: 100%;
    margin: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:blur(10px);
    /* -webkit-animation:clear-in 5s; */
    
}

body::-webkit-scrollbar {
    width:5px;
    height:8px;
}

body::-webkit-scrollbar-thumb {
    /* border-radius:5px; */
    /* -webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2); */
    background:rgb(255, 132, 0);
}

@keyframes fade-in {

    0% {opacity: 0;}/*初始状态 透明度为0*/
    
    100% {opacity: 1;}/*结束状态 透明度为1*/
    
}

#login-interface{
    position: absolute;
    background: rgb(48,48,48,80%);
    /* background : linear-gradient(to bottom,rgb(255, 154, 45) 50%, rgba(255, 132, 0) 100%); */
    top: 50%;
    left: 50%;
    border-radius: 5px;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 2px 2px rgba(44, 44, 44, 0.6);
    /* backdrop-filter: blur(10px); */
    transform: fade-in;
    animation-duration: 3s;
    -webkit-animation:fade-in 3s;
}

.title{
    /* height: 120px; */
    line-height: 60px;
    color:white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    width: 400px;
    user-select: none;
}

div.title div{
    color: white;
    vertical-align: middle;
    font-weight: 900;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    font-size: 25px;
}

div.field{
    min-height: 100px;
    /* margin-bottom: 10px; */
    text-align: center;
    line-height: 100px;
}

/* form{
    height: 360px;
    width: 100%;
} */

.inputStyle{
    width:300px;
    /* margin-left: 20%; */
    height: 60px;
    padding: 3px 12px;
    font-size: 28px;
    line-height: 34px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
}

.inputStyle:focus{
    outline: 1px solid #1db954;
}

.buttonStyle{
    width: 326px;
    height: 60px;
    padding: 0px 6px;
    font-size: 25px;
    line-height: 26px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    background-color: #1db954;
    border:0;
    margin: 0 1px 0 1px;
    position: relative;
    background-image: none;
    border-radius: 10px;
    text-align:center;
    cursor: pointer;
    /* border: 2px solid rgb(61, 61, 61); */
}

.buttonStyle:hover{
    background-color: #25f06c;
}

.notice{
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.notice p{
    margin: 5px 0;
    color: white;
    text-shadow: 0 0 5px black;
}

input[type="radio"]{
    margin: 0 -26px 0 11px;
    display: none;
}
input[type="radio"] + label{
    user-select: none;
    margin: 0 10px;
    border-radius: 10px;
    font-size: 18px;
    /* line-height: 18px; */
    height: 100px;
    width: 100px;
    display: inline-block;
    background-color: #FFF;
    cursor: pointer;
    padding: 5px;
    border: #999 1px solid;
    font-weight: 900;
    transition: 1s;
}

label.mj{
    background-image: url("../../img/mjapp/mj.svg");
    background-size:100px;
    background-repeat: no-repeat;
    background-position-x: 7px;
    background-position-y: 3px;
    opacity: 0.4;
}
label.sly{
    background-image: url("../../img/sly/logo.png");
    background-size:100px;
    background-repeat: no-repeat;
    background-position-x: 5px;
    background-position-y: 6px;
    opacity: 0.4;
}

input[type="radio"] + label:hover{
    opacity: 1;
    transition: 1s;
}

input[type="radio"]:checked + label {
    opacity: 1;
    border: 5px solid #1db954;
}