/* 目录按钮样式 */
.yang-catalog {
    position: fixed;
    z-index: 10000;
    bottom: 50px;
    right: 20px;
    width: 65px;
    height: 65px;
    font-size: 12px;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
}
.yang-catalog span{
    font-size: 10px;
}
.yang-close-btn {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 65px;
    height: 65px;
    font-size: 12px;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
}
.yang-close-btn span{
    font-size: 10px;
}


/* 目录菜单样式 */
.yang-popup {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    /* top: 50%; */
    top: 0px;
    right: -100%;
    /* transform: translateY(-50%); */
    /* transition: right 0.3s ease-out; */
    /* border: 1px solid #000; */
    /* padding: 20px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    text-align: center;
}
.yang-popup p{
    padding: 5px;
}
.yang-popup a{
    color:white;
}

.yang-show-popup {
    right: 0px;
}

/* .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
} */