﻿.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: 5rem;
}

.section-right {
    position: relative;
    width: 9rem;
    padding-left: 1rem;
    transition: all 0s;
}

.work-tab {
    width: 100%;
    height: 120px;
}

.work-tablist {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px 0;
    gap: 0.2rem;
}

.work-tabitem {
    cursor: pointer;
    user-select: none;
    color: #888;
    font-size: 0.20rem;
}

.work-tabitem .active {
    color: #000;
    font-weight: 500;
}

.work-desc {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 2rem;
    max-height: 3rem;
    padding-bottom: 0.3rem;
    overflow: auto;
    background-color: #fff;
}

.work-desc::-webkit-scrollbar {
    width: 1px;
}

.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;
}

.product-list {
    position: relative;
    padding-top: 10px;
    height: calc(100% - 180px);
    overflow-y: auto;
}

.product-list::-webkit-scrollbar {
    width: 0px;
}

.product-list li {
    font-size: 0.13rem;
    color: #888;
    padding: 6px 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: 15px;
    height: 15px;
    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: 9px;
    left: 55px;
    transform: rotate(225deg);
}