.inspection_box {
    width: 100%;
    padding: calc(20px + 3rem) 0;
}

.inspection {
    max-width: 1600px;
    width: 90%;
    margin: auto;
}

.inspection_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(20px + 2rem);
}

.inspection_top_left {
    width: 46%;
}

.inspection_top_left .p1 {
    width: max-content;
    font-size: calc(14px + 1rem);
    color: #333333;
    font-weight: bold;
    border-bottom: calc(1px + 0.1rem) #f7b014 solid;
    padding-bottom: calc(5px + 0.25rem);
}

.inspection_top_left_text {
    margin-top: calc(20px + 2rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(10px + 0.5rem);
}

.inspection_top_left_text p {
    font-size: calc(18px + 2rem);
    color: #f7b01420;
    font-weight: bold;
    font-style: italic;
}

.inspection_top_right {
    width: 48%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(5px + 0.5rem);
}

.inspection_top_right_item {
    width: 48%;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8px + 0.5rem);
}

.inspection_top_right_item::before {
    content: " ";
    width: calc(5px + 0.25rem);
    height: calc(5px + 0.25rem);
    background-color: #f7b014;
    transform: rotate(45deg);
}

.inspection_list_swiper {
    width: 100%;
    margin-top: calc(10px + 2rem);
}

.inspection_swiper {
    width: 100%;
}

.inspection_item {
    width: 100%;
    height: calc(106px + 20rem);
}

.inspection_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ins_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(10px + 1rem);
    margin-top: calc(10px + 1.5rem);
}

.ins_btn div {
    width: calc(6px + 2rem);
    height: calc(6px + 2rem);
    border: 1px solid #DDD;
    background: #F1F1F1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ins_btn .next {
    transform: rotate(180deg);
}

.inspect_intro {
    max-width: 1600px;
    width: 90%;
    margin: auto;
    background-color: #ffffff !important;
    line-height: 2;
    border-bottom: 1px #dbdbdb solid;

}

.inspect_intro h1 {
    background-color: #ffffff !important;
}

.inspect_intro h2 {
    background-color: #ffffff !important;
}

.inspect_intro p {
    background-color: #ffffff !important;
}

.inspect_intro div {
    background-color: #ffffff !important;
}

.inspect_intro span {
    background-color: #ffffff !important;
}

.inspection_swiper_m{
    display: none;
}
.inspection_swiper{
    display: block;
}

@media screen and (max-width: 1100px){
    .inspection_top{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .inspection_top_left{
        width: 100%;
    }
    .inspection_top_right{
        width: 100%;
    }
    .inspection_top_right_item{
        font-size: calc(10px + 1rem);
    }
    .inspection_swiper_m{
        display: block;
    }
    .inspection_swiper{
        display: none;
    }
    .ins_btn div {
        width: calc(33px + 2rem);
        height: calc(33px + 2rem);
       
    }
}