/*以下：主页登录、注册等模块，设置在界面右边*/
#option_area{
    position: absolute;
    right: 50px;
    top:150px;
    width: 650px;
    height: 300px; 
    align-items: center;
}

#option_area button{
    width: 270px;
    height: 80px;
    margin: 30px 20px;
    border-radius: 20px;
    background: url("../images/图标/button_home.png") no-repeat;
}

#option_area button h1{
    color:white;
}

#option_area button:hover {
    box-shadow: 16px 16px 16px 0 rebeccapurple;
    transform: translate(0,-5px);
    transition-duration: 300ms;
}
/**/

/*以下：'关于我们'的底部超链接*/
.bottom_area{
    position: absolute;
    height: 80px;
    width: 1000px;
    margin: 0 220px;
    text-align: center;
    bottom: 0%;
    color: white;
}

.bottom_area h2 a{
    text-decoration: none;
}
.bottom_area h2 a:link{
    color: white;
}
.bottom_area h2 a:visited{
    color: white;
}
.bottom_area h2 a:hover{
    color: #66ccff;
}
/**/

/*以下：'关于我们'中成员模块*/
#information{
    width: 200px;
    position: absolute;
    bottom: 10%;
    right: 300px;
    top: 10px;
    text-align: center;
}
#information h1{
    margin-top: 15px;
    margin-bottom: 15px;
}

[title=teamname]{
    font-size: 50px;
    color: white;
    font-family: 楷体;
    margin-top: 15px;
    margin-bottom: 15px;
    }

#information h1 a{
    text-decoration: none;
}
#information h1 a:link{
    color: white;
}
#information h1 a:visited{
    color: white;
}
#information h1 a:hover{
    color: #66ccff;
}
/**/

/*以下：注册界面*/
#register{
    position: relative;
    width: 400px;
    height: 300px;
    margin: 100px auto 0px;
    background-color: rgba(20, 20, 20, 0.5);
    color: white;
    align-items: center;
    border-radius: 20px;
}
/**/

/*以下：登录界面*/
#login{
    position: relative;
    width: 400px;
    height: 300px;
    margin: 100px auto 0px;
    background-color: rgba(20, 20, 20, 0.5);
    color: white;
    align-items: center;
    border-radius: 20px;
}