.two_about_2_box {
    width: 100%;
    padding-top: calc(10px + 3rem);
    padding-bottom: calc(15px + 5rem);
}

.two_about_2 {
    max-width: 1400px;
    width: 85%;
    margin: auto;
}

.two_about_2_title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two_about_2_title_box_left_subtitle {
    font-family: Source_Han_Bold;
    font-weight: 700;
    font-size: calc(6px + 1.5rem);
    color: #222222;
    line-height: calc(10px + 3rem);
    letter-spacing: 1px;

}

.two_about_2_title_box_right {
    width: calc(191px + 40rem);
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(8px + 0.5rem);
    color: #444444;
    line-height: calc(10px + 2rem);

}

.two_about_2_factory_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(5px + 1.5rem);
    margin-top: calc(13px + 3rem);
}

.two_about_2_factory_box .two_about_2_factory {
    width: 30.7143%;
    height: calc(22px + 15rem);
    overflow: hidden;
}

.two_about_2_factory_box .two_about_2_factory img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    cursor: pointer;
}
.two_about_2_factory_box .two_about_2_factory:hover img{
    transform: scale(1.1);
}

.two_about_2_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(8px + 2rem);
    margin-top: calc(20px + 4rem);
}

.two_about_2_list .two_about_2_item {
    display: flex;
    justify-content: space-between;
}

.two_about_2_list .two_about_2_item .two_about_2_item_pic {
    width: 40.2857%;
    height: calc(40px + 15rem);
}

.two_about_2_list .two_about_2_item .two_about_2_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.two_about_2_item_text{
    width: 55%;
}
.two_about_2_item_text .p1 {
    font-family: Source_Han_Bold;
    font-weight: 700;
    font-size: calc(10px + 1rem);
    color: #054191;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(9px + 3rem);
}

.two_about_2_item_text .p2 {
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(6px + 0.5rem);
    color: #222222;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(1px + 1rem);

}
@media (max-width: 1100px) {
    .two_about_2_title_box{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: calc(10px + 1rem);
    }
    .two_about_2_title_box_left_subtitle{
        font-size: calc(12px + 1rem);
        margin-top: calc(5px + 1rem);
    }
    .two_about_2_title_box_right{
        width: 100%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_about_2_factory_box .two_about_2_factory {
        width: 48.7143%;
        height: calc(55px + 15rem);
    }
    .two_about_2_list .two_about_2_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
        
    }
    .two_about_2_list .two_about_2_item .two_about_2_item_pic {
        width: 100%;
        height: calc(40px + 38rem);
    }
    .two_about_2_item_text{
        width: 100%;
    }
    .two_about_2_item_text .p1{
        font-size: calc(14px + 1rem);
    }
    .two_about_2_item_text .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_about_2_item:nth-of-type(2){
        margin-top: calc(10px + 3rem);
    }
}