.product_list_box {
    width: 100%;
    padding: calc(30px + 5rem) 0;
}

.product_list {
    max-width: 1420px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.product_list_left {
    width: 20.1408%;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 4px rgba(147, 147, 147, 0.1);

}

.product_list_nav_title {
    width: 100%;
    line-height: calc(17px + 3rem);
    background: #E5793B;
    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(4px + 1.5rem);
    color: #FFFFFF;
    padding-left: calc(5px + 1rem);

}

.product_nav_box {
    width: calc(36px + 10rem);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(2px + 0.25rem);
    padding-top: calc(5px + 0.5rem);
    padding-bottom: calc(20px + 3rem);
}

.product_nav {
    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    border-bottom: 1px solid #C8C8C8;
    padding: calc(2px + 1rem) 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1px + 0.25rem);
    cursor: pointer;
}

.product_nav:hover {
    color: #E5793B;
}

.product_nav:hover .pro_nav_icon {
    border: 1px solid #E5793B;
}

.product_nav:hover .pro_nav_icon div {
    display: block;
}

.pro_nav_icon {
    width: calc(2px + 1rem);
    height: calc(2px + 1rem);
    border: 1px solid #A3A7A6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro_nav_icon div {
    width: calc(5px + 0.25rem);
    height: calc(5px + 0.25rem);
    background: #E5793B;
    display: none;
}

.product_list_right {
    width: 74.6%;
    height: calc(100px + 40rem);
    overflow-y: scroll;

    
}
*::-webkit-scrollbar {
    width: 3px;
    border-radius: 1.5px;
}

*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent;
}



.product_list_right_box {
    display: flex;
    justify-content: flex-start;
    gap: calc(8px + 1rem);
    flex-wrap: wrap;
}

.pro_list_box {
    width: calc(33px + 15rem);
}

.pro_pic {
    width: 100%;
    height: calc(62px + 15rem);
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 4px rgba(205, 205, 205, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pro_pic img {
    width: calc(20px + 15rem);
    height: calc(20px + 15rem);
    object-fit: cover;
    transition: .5s;
}

.pro_pic img:hover {
    transform: scale(1.2);
}

.pro_list_box p {
    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(2px + 1rem);
    color: #333333;
    line-height: calc(10px + 1rem);
    text-align: center;
    margin-top: calc(2px + 1rem);
    margin-bottom: calc(8px + 0.5rem);
}

.product_nav_box .pro_active {
    color: #E5793B;
}

.product_nav_box .pro_active .pro_nav_icon {
    border: 1px #E5793B solid;
}

.product_nav_box .pro_active .pro_nav_icon div {
    display: block;
}


.banner1{
    position: relative;
}

.banner1 .pro_banner_more{
    width: calc(40px + 5rem);
    height: calc(15px + 2rem);
    background-color: #E5793B;
    border-radius: calc(7px + 1.5rem);
    position: absolute;
    top: 63%;
    left: 13%;
    font-size: calc(8px + 0.5rem);
    color: #ffffff;
    font-family: PINGFANG;
    display: flex;
    justify-content: center;
    
    align-items: center;
    gap: calc(1px + 0.5rem);
}
.banner1 .pro_banner_more img{
    width: calc(5px + 0.25rem);
}