#role_mid {
    width: 100vw;
    height: 100vh;
    background: url(../images/mengde.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

#role_mid_bg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: url(../images/rolebg.png) no-repeat;
    background-position: center;
    background-size: cover;
}

/* 左侧导航栏 */
#left_bar {
    position: absolute;
    left: 40px;
    top: 260px;
}

#left_bar ul li {
    margin-top: 30px;
}

#left_bar ul li a {
    color: #fff;
    display: block;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    background-position: left;
    padding-left: 40px;
    width: 160px;
}

#index_bar {
    background: url(../images/robg3.png) no-repeat;
}

#index_topbar {
    background: url(../images/robg2.png) no-repeat;
    background-size: 100%;
    padding-left: 80px !important;
    margin-left: -8px;
}

/* 立绘区域 */
#lihui {
    width: 740px;
    height: 605px;
}

#lihui ul {
    display: inline-block;
    font-size: 0px;
    width: 740px;
    overflow-x: hidden;
    height: 605px;
}

#lihui ul li {
    display: inline-block;
    overflow: hidden;
    width: 184px;
    height: 405px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}


#lihui ul li img {
    width: 160px;
    transition: all 0.2s;
    cursor: pointer;
}

#lihui ul li img:hover {
    width: 160px;
    transition: all 0.2s;
    transform: translate(0px, 0px) scale(1.4) rotate(0deg);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
    background: #C1BCB3;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1);
    border-radius: 10px;
    background: #2420209e;
}