.comb_box {
    width: 100%;
    background-color: #EEEEEE;
}

.comb {
    max-width: 1400px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comb_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.5rem);
}

.comb_left div {
    width: calc(5px + 1rem);
}

.comb_left div img {
    width: 100%;
}

.comb_left p {
    font-family: HelveticaCE-Regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #242424;
    opacity: 0.8;
}

.comb_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.comb_right p {
    width: calc(60px + 5rem);
    line-height: calc(20px + 2rem);
    text-align: center;
    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(8px + 0.5rem);
    color: #333333;

}

.comb .comb_right .comb_active {
    background-color: #629282;
    color: #ffffff;
}

.factory_pic_box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(0px + 1rem);
    margin-top: calc(10px + 1.5rem);
}

.factory_pic_box .factory_pic {
    width: 32.3571%;
    height: calc(1px + 15rem);
    overflow: hidden;
}

.factory_pic_box .factory_pic img{
    width: 100%;
    height: 100%;
    transition: .5s;
    cursor: pointer;
}
.factory_pic_box .factory_pic img:hover{
    transform: scale(1.2);
}

