#mid {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: url(../images/liyue.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

#mid_content {
    position: relative;
    text-align: center;
}

#word_text {
    margin-bottom: 30px;
}

#word_text p {
    color: #fff;
    line-height: 30px;
    font-size: 14px;
}

.liyue2 {
    width: 100px;
}

h2 {
    color: #fff;
    font-size: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

h2 img {
    height: 10px;
}

h2 span {
    margin: 0px 20px;
}

.liyuebg2 {
    transform: rotateZ(180deg);
}

#more_text {
    cursor: pointer;
}

#little_bar {
    position: absolute;
    right: 0px;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* 右侧导航栏样式 */
#little_bar_box {
    width: 130px;
    margin-right: 30px;
}

#little_bar_box ul {
    position: relative;
}

#little_bar_box li {
    position: relative;
    margin-top: 20px;
}



#little_bar_box li span {
    display: inline-block;
    text-align: right;
    line-height: 24px;
    width: 100px;
    padding-right: 5px;
}

#little_bar_box a {
    color: #fff;
    text-decoration: none;

}

/* 右侧块状样式 */
#right_box {
    position: absolute;
    right: 0px;
    width: 7px;
    height: 7px;
    top: 9px;
    background-color: #fff;
    transform: rotate(-45deg);
}

/* 当前伪类样式 */
.dangqian {
    background-color: #fff;
    line-height: 24px;
    color: black;
    z-index: 2;
}

#little_bar_box li:hover span {
    background-color: #fff;
    line-height: 24px;
    color: black;
    z-index: 2;
}

.dangqian_index {
    border: 3px solid #fff;
    background-color: black !important;
    z-index: 2;
    right: -3px !important;
    top: 7px !important;
}

/* 右侧线条 */
.left_Wire {
    width: 1px;
    height: 130px;
    position: absolute;
    right: 3px;
    background-color: rgba(255, 255, 255, 0.384);
    top: 9px;
    z-index: 1;
}

/* 蒙版层样式 */
#mengban {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.642);
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #fff;
    display: none;
}

#mengban_box {
    position: relative;
    width: 500px;
    margin-top: 100px;
    margin-bottom: 50px;
    overflow-x: hidden;
    padding-right: 30px;
}

h3 {
    font-size: 30px;
    border-bottom: 1px solid #CCA574;
    line-height: 50px;
    margin-bottom: 10px;
}

#mengban_box p {
    line-height: 30px;
}

#mengban_box img {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

#closure {
    position: absolute;
    right: 20px;
    top: 100px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.215);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
}

/* 滚动条样式 */
::-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;
}