.badges_hs{
    background-color:#909090;
}

.badges_red{
    background-color:red;
}
.badges_yellow{
    background-color: rgb(233, 140, 0);
}

.badges{
    font-family: 'Consolas';
    color:white;
    border-radius:5px;
    padding:2px 8px; 
}

body,html{
    width: 100%;
    background-color: #f2f4f7;
}

.body{
    width: 100%;
    margin:0px;
    padding:0px;
    background-color: #f2f4f7;
    position:absolute;
    top:0px;
    left:0px;
}



.main{
    background: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(237,238,240,0.50);
    border-radius: 8px;
    margin: 15px;
    height: 92%;
    animation-name:bodyload;
    animation-duration: 0.5s;
}

.main-body{
    height: 100%;
    width: 100%;
}

@keyframes bodyload {
    from{
        /*from表示动画开始位置*/
        opacity: 0;
        margin-left: 25px;
    }
    to{
        /*to动画的结束位置*/
        opacity: 1;
        margin-left: 15px;
    }
}

.Roundhead{
    border:1px rgb(85,85,82) solid;
    border-radius: 5px;
}

.button{
    background-color: #1e6fff;
    border:1px  #1168ff solid;
    border-radius: 15px;
    color: white;
    padding: 5px 32px;
    text-align: center;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
}

.button:hover{
    background-color: #5391ff;
}

.buttonL{
    width: 100%;
    background-color: rgba(255,255,255,0.4);
    border:1px  rgba(0,0,0,0.2) solid;
    border-radius: 15px;
    color: black;
    padding: 5px 32px;
    text-align: center;
    margin-top: 5px;
    margin-left: 5px;
    width: 250px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
    transition: all 0.4s;
}

.buttonL:hover{
    
    background-color: rgba(224, 224, 224,0.5);
}

.buttonCancel{
    background-color: #d6d6d6;
    border:#a7a7a7 1px solid;
}

.buttonCancel:hover{
    background-color: #e6e6e6;
}

.fl{
    float:left;
}

.fr{
    float: right;
}

.alert-danger{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-green{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert{
    position: absolute;
    right: 50px;
    top:50px;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: center;
    box-shadow: 0 2px 10px 0 rgba(201, 201, 201, 0.5);
}

.copyBy{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    color:rgb(153, 153, 153);
    background-color: #f6f6f6;
}

.backIcon{
    font-size: 20px;
    cursor: pointer;
    padding:0px 5px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.4s;
}
.backIcon:hover{
    background-color: rgb(218, 218, 218);
    transition: all 0.4s;
}

button:focus,input:focus {
    outline: none;
}