.main {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #EAEAEA;
    position: relative;
    zoom: 1;
}
.detail_wrapper {
    padding: 150px 20% 40px 20%;
}
.product_introduction_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.product_introduction_image_wrapper {
    width: 50%;
    position: relative;
    height: 300px;
}
.product_introduction_image {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product_introduction_desc_wrapper {
    width: 50%;
}
.product_introduction_desc {
    margin: 0 auto;
    width: fit-content;
}
.product_introduction_detail {
    border-left: 2px solid #BF0017;
    padding-left: 24px;
    font-size: 16px;
}
.product_introduction_name {
    color: #414245;
}
.product_introduction_function, .product_introduction_price {
    margin-bottom: 24px;
}
.product_introduction_function, .product_introduction_type, .product_introduction_price {
    color: #979797;
}
.product_introduction_learn_more {
    width: 75px;
    background-color: #BF0017;
    color: #fff;
    border-radius: 12px;
    margin-left: 24px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    padding: 2px;
    margin-top: 24px;
}
.product_detail_content_images {
    width: 100%;
}

@media (max-width: 767px) {
    .detail_wrapper {
        padding: 150px 24px 40px 24px;
    }
}