/*工具栏*/
.tools {
    position: fixed;
    top: 4.24rem;
    right: 0.38rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.tool img {
    width: 1rem;
    height: 1rem;
}
.tools-box {
    transition: height 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.1rem 0.16rem;
    border-radius: 0.06rem;
    background: rgba(254, 242, 242, 1);
    box-shadow: 0rem 0.02rem 0.04rem rgba(235, 212, 213, 1);
    margin-top: -0.33rem;
    height: 0.41rem;
    /* height: 3.3rem; */
    overflow: hidden;
}

.tools-title {
    width: 0.96rem;
    height: 0.23rem;
    margin-bottom: 0.08rem;
}
.tools-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    border-top: 0.01rem solid #E7DDDD;
}

.tools-item img {
    width: 0.27rem;
    height: 0.27rem;
    margin-bottom: 0.06rem;
}

.tools-item span {
    font-size: 0.18rem;
    font-weight: 400;
    color: #333333;
}
/*工具栏 end*/