
.factory_box{
    width: 100%;
    padding: calc(20px + 5rem) 0;
}

.factory{
    max-width: 1400px;
    width: 85%;
    margin: auto;
}

.factory_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.factory_nav a {
    width: 48.7142%;
    line-height: calc(10px + 3rem);
}

.factory_nav .factory_item {
    width: 100%;
    line-height: calc(10px + 3rem);
    background: #EFEFEF;
    border-radius: calc(1px + 0.25rem);
    text-align: center;
    font-family: OPPOSans-M;
    font-weight: normal;
    font-size: calc(4px + 1rem);
    color: #333333;

}

.factory_nav .factory_item_act {
    background-color: #295C95;
    color: #ffffff;
}

.factory_list_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(10px + 2rem);
    margin-top: calc(2px + 5rem);
}

.factory_list_item {
    width: 48.4286%;

}

.factory_item_pic {
    width: 100%;
    height: calc(40px + 20rem);
    border: calc(0px + 0.1rem) solid #E5E5E5;
    border-radius: calc(5px + 0.25rem);
    overflow: hidden;
}

.factory_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(5px + 0.25rem);
    transition: .5s;
}

.factory_list_item p {
    font-family: OPPOSans-M;
    font-weight: normal;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 3rem);
    text-align: center;
    margin-top: calc(9px + 1rem);
}

.factory_list_item:hover .factory_item_pic img{
    transform: scale(1.1);
}
.factory_list_item:hover p{
    color: #295C95;
}