.nav-box {
    background-color: transparent !important;
}

.nav-box:hover {
    background-color: whitesmoke !important;
}

.content {
    padding: 1.5rem 0 1.5rem 0.8rem;
    transition: all 0.3s;
}

.content.content-about .about-section {
    padding-top: 0
}

.content-about .about-intro {
    width: 14rem;
}

.section-left {
    width: 4rem;
}

.section-right {
    position: relative;
    width: 10rem;
    padding-left: 1rem;
    transition: all 0s;
}

.product-list {
    position: relative;
    padding-right: 40px;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.product-list::-webkit-scrollbar {
    width: 0px;
}

.product-list li {
    font-size: 0.14rem;
    color: #888;
    padding: 10px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
}

.product-list li.active {
    color: #000;
    font-weight: 600;
}

.product-list-arrow {
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
}

.list-arrow-up,
.list-arrow-down {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-left: 2px solid #aaa;
    border-top: 2px solid #aaa;
}

.list-arrow-up:hover,
.list-arrow-down:hover {
    border-left: 2px solid #000 !important;
    border-top: 2px solid #000 !important;
}


.list-arrow-up {
    top: 18px;
    left: 10px;
    transform: rotate(45deg);
}

.list-arrow-down {
    top: 5px;
    left: 55px;
    transform: rotate(225deg);
}

.work-img {
    position: relative;
    width: 100%;
}

.work-img .img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    font-size: 0;
    letter-spacing: -0.31em;
    /* 根据实际情况调整 */
}

.img-wrap img {
    width: 100%;
    -webkit-user-drag: none;
    font-size: 16px;
    /* 重新设置字体大小 */
    letter-spacing: normal;
    user-select: none;
    margin-top: 1.5px;
}

.work-scroll {
    position: absolute;
    bottom: 0;
    left: 0.4rem;
    width: 20px;
    height: 300px;
}

.work-scroll-mouse {
    width: 100%;
    height: 40px;
    background: url("../../assets/images/mouse.png") no-repeat center center;
    background-size: 100% 100%;
}

.work-scroll-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 200px;
    background-color: #ccc;
}

.work-scroll-bar .scroll-bar-move {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    cursor: pointer;
    background-color: #000;
    -webkit-user-drag: none;
    user-select: none;
}