
@media all and (min-width:1260px){
   
    select:focus{
        outline:none;
    }

    .goods_category{
        width:100%;
        max-width:126rem;
        height:5rem;
        margin:auto;
        display:flex;
        align-items: center;
    }
    .goods_category .main_category{
        width:9rem;
        height:3rem;
    }
    .goods_category .main_category select{
        width:100%;
        height:100%;
        cursor:pointer;
        border:1px solid #eee;
        
    }
    .goods_category .sub_category{
        width:9rem;
        height:3rem;
    }
    .goods_category .sub_category select{
        width:100%;
        height:100%;
        cursor:pointer;
        border:1px solid #eee;
        
    }


    /* 상품 화면 */

    .product_main{
        width:100%;
        max-width:126rem;
        margin:auto;
        display:flex;
        justify-content: space-between;
         
        margin-top:5rem;
    }

    /* 데스크탑 상품 상단 왼쪽 */
    .product_main .product_main_first{
        width:60rem;
    }
    .product_main .product_main_first .main_image_box{
        width:100%;
        height:60rem;
    }
    .product_main .product_main_first .main_image_box .main_image{
        width:100%;
        height:100%;
        border:1px solid #EBEBEB;
    }
    .product_main .product_main_first .main_image_box .main_image img{
        width:100%;
        height:100%;
    }

    .product_main .product_main_first .sub_image_box{
        width:100%;
        height:8.4rem;
        display:flex;
        flex-flow:row;
        justify-content: space-between;
        margin-top:1rem;

    }
    .product_main .product_main_first .sub_image_box .sub_image{
        width:100%;
        height:100%;
        display:flex;
        overflow:hidden;
    }
    .product_main .product_main_first .sub_image_box .sub_image img{
        height:100%;
        width:auto;
        border:1px solid #eee;
        margin-right:1rem;
        margin-left:1rem;
    }
    .product_main .product_main_first .sub_image_box .sub_image .active{
        border:1px solid #999;
    }

    .product_main .product_main_first .sub_image_box .sub_image_left,
    .product_main .product_main_first .sub_image_box .sub_image_right{
        height:100%;
        display:flex;
        align-items: center;
        font-size:4rem;
        border:1px solid #eee;
    }

    /* 데스크탑 상품 상단 오른쪽 */

    /* 제목, 부제  */
    .product_main .product_main_second{
        width:60rem;
        margin-right:2rem;
    }
    .product_main .product_main_second .product_title{
        width:100%;
        font-size:2.4rem;
    }
    .product_main .product_main_second .product_sub_title{
        width:100%;
        font-size:1.5rem;
        color:#646464;
        
    }


    /* 가격 */

    .product_main .product_main_second .price_layout{
        margin-top:1.5rem;
        margin-bottom:1.5rem;
        position:relative;
    }

    .product_main .product_main_second .price_layout .original_price{
        font-size:1.4rem;
        color:#999;
        text-decoration:line-through
    }

    .product_main .product_main_second .price_layout .discounted_price{
        font-size:3.2rem;
        color:black;
        border-bottom:1px solid #EBEBEB;
        padding-bottom:2rem;
    }  


    /* 기타 정보 */

    .product_main .product_main_second .sub_info{
        width:100%;
        min-height:5rem;
    }

    .product_main .product_main_second .sub_info .sub_info_layout{
        width:100%;
        height:3.5rem;
        display:flex;
        align-items: center;
    }

    .product_main .product_main_second .sub_info .sub_info_layout .menu_text{
        width:9rem;
        font-size:1.4rem;
        color:black;
        
    }
    .product_main .product_main_second .sub_info .sub_info_layout .menu_info{
        font-size:1.4rem;
        color:#646464
        
    }

    .product_main .product_main_second .sub_info .sub_info_layout .price_section_wrap{
        display:flex;
        flex-flow:row;
    }

    .product_main .product_main_second .sub_info .sub_info_layout .probability_link{
        cursor:pointer;
    }
    .product_main .product_main_second .sub_info .sub_info_layout .probability_link:hover{
        color:black;
    }


    .product_main .product_main_second .sub_info .seller_info{
        width:100%;
        position:relative;
    }
    .product_main .product_main_second .sub_info .seller_info .seller_detail{
        position:absolute;
        top:0;
        right:0;
        height:100%;
        font-size:1.3rem;
        display:flex;
        align-items: center;
        cursor:pointer;
    }
    .product_main .product_main_second .sub_info .seller_info .seller_detail:hover{
        color:black;
    }


    .product_main .product_main_second  .buy_ui{
        width:100%;
        display:flex;
        flex-flow:wrap;
        justify-content: space-between;
    }



    .product_main .product_main_second  .buy_ui .total_price{
        width:100%;
        height:4rem;
        text-align:right;
        font-size:1.8rem;
        color:#646464
        
    }

    .product_main .product_main_second  .buy_ui .total_price .price_number{
        font-size:3.5rem;
        color:black;
        margin-left:1rem;
    }

    .product_main .product_main_second  .buy_ui .cart_in{
        width:49%;
        height:5rem;
        color:#646464;
        
        font-size:1.6rem;
        border:1px solid #EBEBEB;
        border-radius:5px;
        display:flex;
        align-items: center;
        justify-content: center;
        margin-top:2rem;
        cursor:pointer;
        
    }
    .product_main .product_main_second  .buy_ui .buy{
        width:49%;
        height:5rem;
        color:white;
        
        font-size:1.6rem;
        border:1px solid rgb(35,35,35);
        border-radius:5px;
        background:rgb(35,35,35);
        display:flex;
        align-items: center;
        justify-content: center;
        margin-top:2rem;
        cursor:pointer;
        
    }

    .product_main .product_main_second  .buy_ui .iron_box_free{
        width:49%;
        height:5rem;
        color:white;
        
        font-size:1.6rem;
        border:1px solid rgb(35,35,35);
        border-radius:5px;
        background:rgb(35,35,35);
        display:flex;
        align-items: center;
        justify-content: center;
        margin-top:2rem;
        cursor:pointer;
        
    }

    .product_main .transparency_explain{
        font-size:1.3rem;
        color:#646464;
        margin-top:2rem;
    }
    .product_main .transparency_explain .explain_size_up{
        color:black;
        font-size:1.4rem;
        margin-top:1rem;
    }

    /* 상품 개수 조정 */
    .count_option{
        width:100%;
        height:4rem;
        display:flex;
        margin-top:1rem;
    }
    .count_option .minus,
    .count_option .plus{
        width:4rem;
        height:4rem;
        display:flex;
        align-items: center;
        justify-content: center;
        cursor:pointer;
        font-size:1.2rem;
        
        border:1px solid #EBEBEB;
    }


    .count_option .minus{
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .count_option .plus{
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }


    .count_option .counting{
        width:4rem;
        height:4rem;
    }
    .count_option .counting input{
        width:100%;
        height:100%;
        border:1px solid #EBEBEB;
        border-left:none;
        border-right:none;
        text-align:center;
        margin:0;
        padding:0;
    }
    .count_option .counting input::-webkit-outer-spin-button,
    .count_option .counting input::-webkit-inner-spin-button {
        display: none;
    }
    .count_option .counting input:focus{
        outline:none;
    }

    /* 하단 UI 레이아웃 */
    .product_buy_comment{
        width:92%;
        max-width:126rem;
        margin:auto;
        
        margin-top:10rem;
    }
    .product_delivery{
        width:100%;
        max-width:126rem;
        margin:auto;
        
    }

    .product_buy_comment .not_exists{
        width:100%;
        min-height:20rem;
        border:1px solid #bbb;
        display:flex;
        flex-flow:column;
        align-items: center;
        justify-content: center;
    }

    .product_buy_comment .not_exists img{
        width:7rem;
    }
    .product_buy_comment .not_exists .not_exists_text{
        color:#888;
        margin-top:1rem;
    }

    .product_buy_comment .hashcomment_explain{
        width:100%;
        height:6rem;
        display:flex;
        align-items: center;
        justify-content: center;
        border:1px solid #EBEBEB;
        margin-top:2rem;
        font-size:1.6rem;
        

    }

    

    /* 교환/반품/배송 */
    .product_delivery .text-wrapper{
    }

    .product_delivery .text-wrapper .main_text{
        font-size:1.8rem;
        line-height:1.3rem;
        color:black;
        padding:30px 0 10px;
        
    }

    .product_delivery .text-wrapper .sub_text{
        white-space:pre-wrap;
        font-size:1.3rem;
        color:#646464;
        line-height:1.5
    }

    .product_delivery .text-wrapper .sub_text span{
        color:black;
        font-size:1.5rem;
        
    }



    .product_buy_comment .product_comment_title{
        width:100%;
        max-width:126rem;
        height:5rem;
        margin:auto;
        display:flex;
        align-items: center;
        justify-content: space-between;
        border-bottom:1px solid #EBEBEB;
        padding-bottom:1rem;

    }
    .product_buy_comment .product_comment_title .left_side{
        font-size: 2.4rem;
        color:#000;
        display:flex;
        flex-flow:row;
    }

    .product_buy_comment .product_comment_title .left_side .mobile_hidden{
        display:block;
        margin-right:0.5rem;
    }

    .product_buy_comment .product_comment_title .right_side{
        font-size:1.4rem;
        display:flex;
        
    }
    .product_buy_comment .product_comment_title .right_side .hashbox_pick{
        cursor:pointer;
        margin-right:1rem;
        
    }
    .product_buy_comment .product_comment_title .right_side .division{
        color:#969696
    }
    .product_buy_comment .product_comment_title .right_side .total_comment{
        cursor:pointer;
        margin-left:1rem;
        color:#969696
    }


    .product_comment_list{
        width:100%;
        min-height:108rem;
        display:flex;
        flex-flow:wrap;
        justify-content: space-between;
    }

    .product_comment_list .comment{
        width:23rem;
        display:flex;
        flex-flow:column;
        cursor:pointer;
        margin-top:2rem;
        margin-bottom:2rem;
        font-size:1.3rem;
    }
    .product_comment_list .comment:empty{
        width:23rem;
        height:0;
        margin:0;
    }

    .product_comment_list .comment .comment_product_image{
        width:23rem;
        height:23rem;
        display:flex;
        align-items: center;
        justify-content: center;
        overflow:hidden;
        border:1px solid #EBEBEB;
        position: relative;
    }
    .product_comment_list .comment .comment_product_image .comment_pass_sticker{
        position: absolute;
        width: 7rem;
        height: 7rem;
        right: .5rem;
        top: -.2rem;
        filter: drop-shadow(2px 4px 2px #00000040);
        z-index: 1;
        image-rendering: -webkit-optimize-contrast;
        transform: translateZ(0);
    }
    .product_comment_list .comment .comment_product_image.skeleton{
        width:23rem;
        height:23rem;
        border:1px solid #FAFAFA;
        animation: skeleton 1.5s ease-in-out infinite alternate;
        will-change: background-color;
    }
    .product_comment_list .comment .comment_product_image img{
        height:100%;
        width:auto;
    }
    .product_comment_list .comment .ground_a{
        box-shadow: 0px 0px 10px rgb(126,49,142);
    }
    .product_comment_list .comment .ground_b{
        box-shadow:0px 0px 10px rgb(230,55,40)
    }
    .product_comment_list .comment .ground_x{
        box-shadow:0px 0px 10px rgb(200,200,0)
    }

    .product_comment_list .comment .comment_product_name{
        width:100%;
        height:2.5rem;
        margin-top:1rem;
        display: flex;
        color:#969696;
        font-size:1.3rem;
    }
    .product_comment_list .comment .comment_product_name.skeleton{
        width:75%;
        height:1.7rem;
        margin-top:1.3rem;
        animation: skeleton 1.5s ease-in-out infinite alternate;
        background-color: #FAFAFA;
        will-change: background-color;
    }
    .product_comment_list .comment .comment_product_name .title_span{
        max-width:19rem;
        height:2.5rem;
        line-height:2.5rem;
        overflow: hidden;                   /* 넓이 86.66%를 넘는 내용에 대해 말줄임 */
        text-overflow: ellipsis;            /* 보여줄 내용이 길면 내용의 일부만 표여주고 ...표시 */
        white-space: normal;                /*  white-space와 overflow: hidden 제거되면 text-overflow가 적용되지 않음 */
        text-align: left;                   /* 텍스트 정렬*/
        word-wrap: break-word;              
        display: -webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical;          /* 보여주려는 줄 수 -> 실행되려면 위에 두줄이 필요함*/  
    }
    .product_comment_list .comment .comment_product_name .count_span{
        width:4rem;
        height:2.5rem;
        line-height:2.5rem;
    }
    .product_comment_list .comment .comment_product_content{
        width:100%;
        height:2.5rem;
        line-height:2.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        text-align: left;
        word-wrap: break-word;              
        display: -webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical;
        color:black;
        font-size:1.4rem;
    }
    .product_comment_list .comment .comment_product_content.skeleton{
        width:95%;
        height: 1.7rem;
        margin-top: .7rem;
        margin-bottom: .7rem;
        animation: skeleton 1.5s ease-in-out infinite alternate;
        background-color: #FAFAFA;
        will-change: background-color;
    }
    .product_comment_list .comment .comment_product_info{
        display:flex;
        height:2rem;
        margin-top:1rem;
        font-size:1.3rem;
        color:black;
    }
    .product_comment_list .comment .comment_product_info.skeleton{
        width:25%;
        height:1.7rem;
        margin-top:.8rem;
        animation: skeleton 1.5s ease-in-out infinite alternate;
        background-color: #FAFAFA;
    }
    .product_comment_list .comment .comment_product_info .user{
        margin-right:1rem;
    }

    .spinner_box{
        width:100%;
        display:none;
        justify-content: center;
    }
}


@media all and (min-width:1260px){
    .product_detail_info{
        width: 100%;
        margin-top:10rem;
    }
    
    .product_detail_info .product_image{
        width: 100%;
        max-width: 110rem;
        margin: auto;
        margin-bottom: 5rem;
    }

    .product_detail_info .product_image .product_image_web{
        display:block;
    }
    .product_detail_info .product_image .product_image_mobile{
        display:none;
    }
    

    .product_detail_info .product_image img{
        width: 100%;
        height: auto;
        margin: auto;
    }
    .product_detail_info .product_guide{
        display: none; /* 초기에 페이지 진입 후 곧바로 데이터를 로드하기에는 체감상 느려보여서 첫 진입에는 none 처리 */
        width:100%;
        max-width: 126rem;
        margin: auto;
        display: flex;
        flex-flow: column;
        align-items: center;
        background: rgb(250,250,250);
        padding-top:5rem;
    }
    .product_detail_info .product_guide .product_title{
        width: 100%;
        padding: 6rem 0 4rem 0;
        color: black;
        text-align: center;
        font-size:  3.5rem;
    }
    .product_detail_info .product_guide .product_title_m{
        display: none;
    }
    /*  1,2,3등 */
    .product_detail_info .product_guide .item_rank{
        width: 88.37%;
        max-width:85rem;
        margin-bottom: 2rem;
        display: flex;
        flex-flow: row;
        background: white;
        border-radius: 5px;
        cursor:pointer;
        border:1px solid #EBEBEB
    }
    .product_detail_info .product_guide .item_rank .item_img{
        width: 32.89%;
        height: auto;
        min-height: 25rem;
        margin: 2.5rem;
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .product_detail_info .product_guide .item_rank .item_img img{
        width: 100%;
    }
    .product_detail_info .product_guide .item_rank .item_information{
        width: 57.23%;
        height: auto;
        min-height: 25rem;
        margin: 2.5rem 2.5rem 2.5rem 0 ;
        color: black;
    }
    .product_detail_info .product_guide .item_rank .item_information .title_information{  
        height: 3rem;
        margin: 1rem 0 0 0;
        font-size: 2rem;
        
        
        overflow:hidden;

        max-width:44rem;
        text-overflow:ellipsis;
        line-height:3rem;
        overflow:hidden;
        white-space:nowrap;

        
    }
    .product_detail_info .product_guide .item_rank .item_information .price_information{
        height: 5rem;
        padding: 0 0 2rem 0;
        margin: 0 0 1rem 0;
        font-size: 2.4rem;
        
        
        border-bottom: 1px solid #EBEBEB;
    }
    .product_detail_info .product_guide .item_rank .item_information .detail_information{
        display: flex;
        
        font-size:1.4rem;
    }
    .product_detail_info .product_guide .item_rank .item_information .detail_information .detail_left{
        width: 20%;
        min-width: 6.5rem;
    }
    .product_detail_info .product_guide .item_rank .item_information .detail_information .detail_left .left{
        height: 2rem;
        min-width:5rem;
        margin: 0 0 0.5rem 0;
        color:black;
    }
    .product_detail_info .product_guide .item_rank .item_information .detail_information .detail_right{
        margin: 0 0 0 1rem;            
    }
    .product_detail_info .product_guide .item_rank .item_information .detail_information .detail_right .right{
        height: 2rem;
        margin: 0 0 0.5rem 0;    
        color:#646464;
        
        overflow: hidden;                   /* 넓이 86.66%를 넘는 내용에 대해 말줄임 */
        text-overflow: ellipsis;            /* 보여줄 내용이 길면 내용의 일부만 표여주고 ...표시 */
        white-space: normal;                /*  white-space와 overflow: hidden 제거되면 text-overflow가 적용되지 않음 */
                                            /* 공백문자가 있는 경우 줄바꿈하지 않고 한줄로 나오게 처리*/
        
        width: 100%;                        /* 라인 너비*/
        line-height: 2rem;                  /* 보여지는 줄 라인의 높이*/
        text-align: left;                   /* 텍스트 정렬*/
        word-wrap: break-word;              

        display: -webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical          /* 보여주려는 줄 수 -> 실행되려면 위에 두줄이 필요함*/  
    }
    /* 나머지 상품 */
    .product_detail_info .product_guide .item_rank_all_box{
        width: 88.37%;
        max-width:85rem;
        margin-bottom: 3rem;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .product_detail_info .product_guide .item_rank_all_box .small_box{
        width: 24%;
        height: 18rem;
        background: white;
        border-radius: 5px;
        margin: 0 0 1.5rem 0;
        cursor:pointer;
        border:1px solid #EBEBEB
    }



/* 툴팁 대체 css  ======================================================================================================= */
    .item_rank_all_box .small_box {
        position: relative;
        overflow: visible;
    }

    /* hover 시 표시 */
    .item_rank_all_box .small_box:hover::after,
    .item_rank_all_box .small_box:hover::before {
        opacity: 1;
    }

    /* 툴팁 본문 */
    .item_rank_all_box .small_box::after {
        content: attr(title);
        position: absolute;
        bottom: calc(100% + 6px);   /* 요소 위 */
        left: 50%;
        transform: translateX(-50%);

        background: #000;
        color: #fff;
        padding: 4px 8px;
        font-size: 1.4rem;
        border-radius: 4px;

        white-space: nowrap;
        pointer-events: none;
        opacity: 0;

        transition: opacity .2s ease;
        z-index: 1000;

        display: inline-block;
        width: max-content;        /* 글자 길이만큼 */
        max-width: 16rem;          /* 여기서만 제한 */
        text-align: center;

        white-space: normal;          /* 줄바꿈 허용 */
        overflow-wrap: break-word;    /* 긴 단어 줄바꿈 */
        word-break: break-word;       /* Safari 대응 */
    }

    /* 말풍선 화살표 */
    .item_rank_all_box .small_box::before {
        content: "";
        position: absolute;
        bottom: calc(100% + 2px);
        left: 50%;
        transform: translateX(-50%);

        border-width: 6px 6px 0;
        border-style: solid;
        border-color: #000 transparent transparent transparent;

        opacity: 0;
        transition: opacity .2s ease;
        z-index: 1000;
    }

    /* title 비어있는 복제용 box는 툴팁 제거 */
    .item_rank_all_box .small_box[title=""]::after,
    .item_rank_all_box .small_box[title=""]::before {
        display: none;
    }
/* 툴팁 대체 css  ======================================================================================================= */






    .product_detail_info .product_guide .item_rank_all_box .small_box:empty{
        width: 24%;
        height:0rem;
        background:transparent;
        border:none;
    }

    .product_detail_info .product_guide .item_rank_all_box .ground_b{
        width: 32.5%;
        height: 18rem;
        background: white;
        border-radius: 5px;
        margin: 0 0 1.5rem 0;
        cursor:pointer;
    }

    .product_detail_info .product_guide .item_rank_all_box .ground_b:empty{
        width: 32.5%;
        height:0;
        background: transparent;
        border-radius: 5px;
        margin: 0 0 1.5rem 0;
    }

    .product_detail_info .product_guide .item_rank_all_box .small_box .small_box_img{
        width: 100%;
        height: 10rem;
        margin: 1.5rem 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product_detail_info .product_guide .item_rank_all_box .small_box .small_box_img img{
        height: 100%;
    }
    .product_detail_info .product_guide .item_rank_all_box .small_box .small_box_title{
        width: 90%;
        height: 1.5rem;
        text-align: center;

        margin:auto;
        margin-top:1.5rem;
        text-overflow:ellipsis;
        line-height:1.5rem;
        overflow:hidden;
        white-space:nowrap;

        
        font-size:1.3rem;
        
    }

    .product_detail_info .product_guide .item_rank_all_box .small_box .ground_b_title{
        width: 100%;
        height: 1.5rem;
        text-align: center;
        font-size: 1.3rem;
        
        

        max-width:22rem;
        margin:auto;
        margin-top:1.5rem;
        text-overflow:ellipsis;
        line-height:1.5rem;
        overflow:hidden;
        white-space:nowrap
    }


    .product_detail_info .product_guide .item_rank_all_box .small_box .small_box_price{
        width: 100%;
        min-height: 2.5rem;
        margin: 0 0 1rem 0;

        display: flex;
        align-items: center;
        justify-content: center;
        
        
        font-size:1.5rem;
        
    }
    .product_detail_info .product_guide .item_rank_all_box .small_box .small_box_price .price_num{
        color:#BF1A20
    }

    .unboxing_text{
        width:100%;
        max-width:126rem;
        margin:auto;
        margin-bottom:1rem;
        margin-top:10rem;
        font-size: 2.4rem;
        
        color:#000;
    }
    .product_guide_text{
        width:100%;
        height:4rem;
        line-height:4rem;
        max-width:126rem;
        margin:auto;
        margin-top:2rem;
        font-size: 2.4rem;
        color:#000;
    }
    
    .product_sub_guide_text{
        width:100%;
        max-width:126rem;
        margin:auto;
        margin-bottom:1.5rem;
        font-size: 1.5rem;
        color:#646464;
    }
    
    .unboxing_display{
        width:100%;
        max-width:126rem;
        margin:auto;
        margin-bottom:2rem;
        display:flex;
        justify-content: center;
        background:black;
    }
    .unboxing_display video{
        width:100%;
        max-width:86rem;
    }

    

}



@media all and (min-width:700px){
    .comment_detail_modal{
        position:   fixed;
        z-index:    1001;
        top:        0;
        left:       0;
        height:     100%;
        width:      100%;
        background: rgba(0,0,0,.75);
        flex-flow:column;
        justify-content: center;
        align-items: center;
        overflow-y:auto;
        display:none;
        z-index:1002
    }

    .comment_detail_modal .comment_loading_spinner{
        width:100%;
        height:100%;
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .comment_detail_modal .modal_close_button{
        width:8rem;
        height:8rem;
        border-radius:50%;
        background:black;
        color:white;
        display:flex;
        align-items: center;
        justify-content: center;
        font-size:4rem;
        cursor:pointer;
        box-shadow:5px 5px 10px rgb(0,0,0,0.5);
        margin:auto;
        margin-bottom:3rem;
        margin-top:5rem;
        display:none;
        
    }

    .comment_detail_modal .comment_detail{
        width:92%;
        max-width:126rem;
        min-height:50rem;
        background:#fafafa;
        border:1px solid #EBEBEB;
        border-radius:10px;
        box-shadow:5px 5px 10px rgb(0,0,0,0.5);
        padding:4rem;
        margin:auto;
        margin-top:5rem;
        margin-bottom:10rem;
        display:none;
    }

    .comment_detail_modal .comment_detail .comment_top{
        width:100%;
        display:flex;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_main_image{
        width:16.67%;
        max-width:20rem;
        min-width:17rem;
        border-radius:5px;
        overflow:hidden;
        margin-right:2rem;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_main_image img{
        width:99%;
        height:auto;
        border:1px solid #EBEBEB;
        background:white;
        border-radius:5px;
    }

    .comment_detail_modal .comment_detail .comment_top .comment_info{
        width:83.3%;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .product_title{
        width:100%;
        font-size:1.4rem;
        height:2.5rem;
        color:rgb(150,150,150);
        margin-top:1rem;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .product_content{
        width:100%;
        margin-top:1rem;
        margin-bottom:2rem;
        font-size:1.5rem;
        
        white-space:pre-wrap;
    }

    .comment_detail_modal .comment_detail .comment_top .comment_info .hashbox_comment_image{
        width:100%;
        max-width:40rem;
        height:auto;
        margin-top:3rem;
        margin-bottom:3rem;
    }


    .comment_detail_modal .comment_detail .comment_top .comment_info .comment_registered{
        display:flex;
        font-size:1.4rem;
        
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .comment_registered .writer{
        margin-right:2rem;
    }

    .comment_detail_modal .comment_detail .comment_top .comment_info .hashbox_comment{
        width:100%;
        margin-top:1rem;
        display:none;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .hashbox_comment .hashbox_logo{
        height:4rem;
        display:flex;
        align-items: center;
        border-top:1px solid #EBEBEB;
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .hashbox_comment .hashbox_comment_content{
        font-size:1.3rem;
        
        white-space:pre-wrap;
    }

    .comment_detail_modal .comment_detail .comment_top .comment_info .point_reward_comment_alarm{
        font-size:1.3rem;
        
    }
    .comment_detail_modal .comment_detail .comment_top .comment_info .point_reward_comment_alarm_variable{
        margin-top:0.5rem;
    }

    .comment_detail_modal .comment_detail .comment_bottom{
        margin-top:3rem;
        
    }

    .comment_detail_modal .comment_detail .comment_bottom .unboxing_record_title{
        height:3rem;
        display:flex;
        align-items: center;
        font-size:1.6rem;
        
        
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records{
        min-height:4rem;
        background:white;
        border:1px solid #EBEBEB;
        border-radius:10px;
        display:flex;
        flex-flow:wrap;
        padding:2rem;
        padding-bottom:0;
        
    }

    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record{
        width:48%;
        display:flex;
        margin-bottom:2rem;

    }

    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .left_part{
        width:17.65%;
        max-width:10rem;
        min-width:8rem;
        height:10rem;
        
        border-radius:5px;
        overflow:hidden;
        margin-right:1.5rem;
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .left_part img{
        width:100%;
        border:1px solid #EBEBEB;
        border-radius:5px;
    }

    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part{
        width:82.34%;
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part .product_name{
        height:2rem;
        font-size:1.4rem;
        
        line-height:2rem;
        overflow: hidden;                   /* 넓이 86.66%를 넘는 내용에 대해 말줄임 */
        text-overflow: ellipsis;            /* 보여줄 내용이 길면 내용의 일부만 표여주고 ...표시 */
        white-space: normal;                /*  white-space와 overflow: hidden 제거되면 text-overflow가 적용되지 않음 */
                                            /* 공백문자가 있는 경우 줄바꿈하지 않고 한줄로 나오게 처리*/
        width: 100%;                        /* 라인 너비*/
        text-align: left;                   /* 텍스트 정렬*/
        word-wrap: break-word;              

        display: -webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical  
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part .original_price{
        height:2.5rem;
        font-size:1.8rem;
        color:rgb(183,62,49);
        
        
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part .blockchain_link{
        width:15.5rem;
        height:3.5rem;
        font-size:1.4rem;
        
        border-radius:5px;
        color:white;
        display:flex;
        align-items: center;
        justify-content: center;
        cursor:pointer;
        margin-top:1rem;
        background:transparent;
        border:1px solid #232323;
        color:black;
    }
    
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part .blockchain_link:hover{
        border:1px solid #BF1A20
    }
    .comment_detail_modal .comment_detail .comment_bottom .unboxing_records .blockchain_record .right_part .blockchain_link img{
        height:80%;
        width:auto;
        margin-right:0.5rem;
    }


    /* 증빙자료 */
    .comment_detail_modal .comment_detail .buy_record{
        margin-top:3rem;
        display:none
    }
    .comment_detail_modal .comment_detail .buy_record .buy_record_title{
        height:3rem;
        display:flex;
        align-items: center;
        font-size:1.6rem;
        
        
    }

    .comment_detail_modal .comment_detail .buy_record .evidence_box{
        background:white;
        border:1px solid #EBEBEB;
        border-radius:10px;
        overflow:hidden;
        text-align:center;
        display:flex;
        flex-flow:column;
        align-items: center;
        padding-top:5rem;
        padding-bottom:5rem;
    }
    .comment_detail_modal .comment_detail .buy_record .evidence_box img{
        width:100%;
        max-width:50rem;
    }


    .delivery_text{
        width:100%;
        height:5rem;
        max-width:126rem;
        margin:auto;
        margin-bottom:1rem;
        margin-top:10rem;
        font-size: 2.4rem;
        
        color:#000;
        display:flex;
        align-items: center;
        border-bottom:1px solid #EBEBEB;
    }

}