/* 背景logo */
*
{
    border-style: solid;
    border-width: 1px;
}
#group
{
    width: 260px;
    height: 260px;
}
#group:hover #a
{
    transform: rotateY(180deg);
}
#group:hover #b
{
    transform: rotateY(0deg);
}
#group img {
    width: 250px;
    position:absolute;
    transition: transform 0.5s;
    backface-visibility: hidden;
}
#b
{
    transform: rotateY(-180deg);
}
ul {
    list-style: none;
}
ul img {
    /* display: inline-block; */
    /* width: 100px; */
    /* height:200px; */
    border: 3px;
    border-style: solid;
    position: absolute;
    background-color: gray;
}

/* 角色描述 */
#info {
    background-color: black;
    visibility: hidden;
    width: 500px;
    position: absolute;
    top: 300px;
}

#info h3, h4 {
    color: white;
}

#info #detail {
    font-size: 15px;
    color: gray;
}

#lava {
    position: absolute;
    left: 100px;
    /* background-image: url('img/lava.png');
    background-repeat: no-repeat;
    background-size: 100px 100px; */
}

#fire {
    left: 0px;
}

#close {
    font-size: 50px;
    color: gray;
    /* position: absolute; */
}
/* 阵营 */
#game_group li
{
    display: inline-block;
    height: 50px;
    padding: 50px;
    background-color:gray;
    font-style: oblique;
    position: relative;
    color:white;
}
#game_group li:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}
