body {
    margin: 0; /* 移除页面的默认边距 */
    background-color: rgb(239, 214, 214);
    padding: 0; /* 移除外部的padding */
  }
.banner{
    height: 160px;
    width: 100%;
    background-image: url("../../../../home/backgroundPhotos/banner.png");
}
.main{
    /* min-height: 75vh; */
    margin: 0 10vw;
}

::selection{
    background-color: tomato;
    color: white;
  }

.userInfo{
    
    /* max-width: 200px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}
.UID{
    font-size: 40px;
    color:green;
    border-top: 1px solid green;
    border-bottom: 1px solid green;
    
}
.UID:hover{
    color: white;
    
}
.avater{
    width: 180px;
    border-radius: 50%;
    transition: transform 1s ease;
}
.avater:hover{
    transform: rotate(360deg);
}
.username{
    font-size: 50px;
    color: tomato;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
}
.username:hover{
    color: white;
}

.button-container{
    display: flex;
    justify-content: center;
}
.passBTN{
    background-color: tomato;
    border-radius: 5px;
    
    font-size: 25px;
    width: 50%;
    height: 5vh;
    transition: background-color 1s,color 1s;
}
.passBTN:hover{
    background-color: red;
    color: white;
}