
.pc_menu > li a {
    color: #343434;
}
.sub_main{
    display: flex;
    padding: 140px 20px 60px 20px;
    box-sizing: border-box;
    background-color: white;
    align-items: flex-start;
}

.sub_main nav{
    max-width: 300px;
}
nav{
 
}
nav.open{
    transform: translateX(-100%);
    transition: all 0.6s;
    display: none;
}
.nav_btn{
    position: absolute;
    top: 20%;
    left: -42px;
}
.nav_btn.open{
    left: -20px;
}
.left_nav {
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 260px;
    cursor: pointer;
}

.left_nav h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.menu > ul {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}
.menu > ul > li a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #343434;
    padding: 8px 16px;
    box-sizing: border-box;
    display: block;
}
.menu > ul > li a:hover {
    background-color: #e7f3ff;
    border-radius: 8px;
}
.sub_main .sub_cont_1{
    width: 100%;
    margin-left: 40px;
    flex: 1;
    position: relative;
    border-radius: 24px;
    background: #FFF;
    padding: 50px ;
    box-sizing: border-box;
}
.sub_main .sub_cont_1.open{
    margin-left: 0px;
}
.sub_main .sub_cont_1.p_0{
    padding: 0;
    border-radius: 34px;
}
.sub_cont_1 >h3{
    color: #343434;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 36px;
}
.sub_cont_1 .cont_1_layout{
    display: flex;
    flex-direction: column;
    gap: 36px;

}
.sub_box_layout{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.input_box{
    width: 100%;
}
.input_box >input{
    width: 100%;
    box-sizing: border-box;
}
.sub_box{}
.sub_box >h5{
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.sub_box >h5 >span{
    width: 6px;
    height: 6px;
    background-color: #FF3737;
    display: inline-block;
    border-radius: 100%;
    margin: 0 0 3px 5px;
}
.sub_box input[type="text"]{
    margin-top: 8px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    background: #FFF;
    padding: 16px 12px;
    box-sizing: border-box;
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; /* 125% */
    font-family: "Pretendard";
}
.sub_box input[type="date"]{
    margin-top: 8px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    background: #FFF;
    padding: 16px 12px;
    box-sizing: border-box;
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; /* 125% */
    background-image: none; /* 배경 이미지 제거 */
    -webkit-appearance: none; /* 아이콘 숨기기 */
    -moz-appearance: none;    /* 아이콘 숨기기 */
    appearance: none;         /* 아이콘 숨기기 */
    font-family: "Pretendard";
    outline: none;
}
.sub_box select{
    margin-top: 8px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    padding: 16px 12px;
    box-sizing: border-box;
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; /* 125% */
    font-family: "Pretendard";
    
}
.sub_box input[type="text"]::placeholder{
    color: #4b4b4b44;
}
.keyword_list{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.keyword_list >li{
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #91C7EE;
    background: #F1F6FC;
}
.keyword_list >li p{
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.keyword_box{
    position: relative;
}
#addKeyword{
    position: absolute;
    top: 22px;
    right: 10px;
    border: none;
    background-color: transparent;
}
.price_box{
    position: relative;
}
.price_box .price{
    position: absolute;
    top: 25px;
    right: 10px;
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.radio_list{
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.radio_list >li{
    display: flex;
    position: relative;
}
.radio_list >li input[type="radio"]{
    appearance: none;
}
.radio_list >li .one{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
    width: 24px;
    height: 24px;
    background-image: url(/public/img/b2b/radio_off.png);
}

.radio_list >li label{
    padding-left: 25px;
    cursor: pointer;
}
.radio_list >li input[type="radio"]:checked + .one{
    background-image: url(/public/img/b2b/radio_on.png);
}
.checkbox_box{
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.checkbox_box label{
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
    padding-left: 25px;
    cursor: pointer;
}
.checkbox_box  input[type="checkbox"]{
    appearance: none;
}
.checkbox_box .one2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
    width: 24px;
    height: 24px;
    background-image: url(/public/img/b2b/checkbox_off.png);
    border: solid 1px #ccc;
    border-radius: 4px;
    box-sizing: border-box;

}

.checkbox_box input[type="checkbox"]:checked + .one2{
    background-image: url(/public/img/b2b/checkbox_on.png);
}
.file_box{
    margin-top: 8px;
    min-height: 300px;
    border-radius: 8px;
    border: 1px dashed #9A9A9A;
    background: #F9F9F9;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;

}
/* 기본 input[type="file"] 숨기기 */
.file_box input[type="file"] {
    display: none; /* 파일 입력창 숨기기 */
}

/* 커스텀 label 스타일링 */
.file_box label {
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

/* 이미지와 텍스트 사이의 간격 */
.file_box label img {
    width: 24px; /* 이미지 크기 조정 */
    height: 24px;
    margin-right: 8px; /* 이미지와 텍스트 사이 간격 */
}

/* 텍스트 스타일링 */
.file_box label span {
    font-size: 14px;
    color: #333;
}

.border_box{
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    background: #FFF;
    padding: 36px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.notice_text{
    margin-top: 8px;
    color: #FF8846;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.normal_box{
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    background: #F9F9F9; 
    padding: 16px 12px;
    box-sizing: border-box;
}
.normal_box p{
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px; 
}
.edit_box{
    margin-top: 8px;
    
}
.edit_box .top{
    padding: 16px 12px;
    box-sizing: border-box;
    border-radius: 8px 8px 0px 0px;
    border: 1px solid #D7D7D7;
    border-bottom: 0;
    background: #FFF;
}
.icon_list{
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.icon_list >li{
    display: flex;
    gap: 12px;
    align-items: center;
    color: #4B4B4B;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}
.icon_list >li:after{
    content: "|";
    color: #D9D9D9;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.icon_list >li:last-child::after{
    display: none;
}
.edit_box >textarea{
    width: 100%;
    box-sizing: border-box;
    resize: none;
    min-height: 268px;
    border-radius: 0px 0px 8px 8px;
    border: 1px solid #D7D7D7;
    background: #FFF;
    margin-top: 0;
    outline: none;
    padding: 16px 12px;
    color: #4B4B4B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    font-family: "Pretendard";
}
.edit_box >textarea::placeholder{
    color: #4b4b4b41;
}
.submit_list{
    display: flex;
    gap: 8px;
}
.submit_list >li{
    width: calc(50% - 4px);
}
.submit_list >li input[type="reset"]{
    width: 100%;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    background: #FFF;
    padding: 16px 24px;
    box-sizing: border-box;
    color: #0F2641;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    cursor: pointer;
    font-family: "Pretendard";
}
.submit_list >li input[type="submit"]{
    width: 100%;
    border-radius: 8px;
    border: 1px solid #3787FF;
    background: #3787FF;
    padding: 16px 24px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    cursor: pointer;
    font-family: "Pretendard";
}
@media screen and (max-width: 1280px) {
    .left_nav{
        display: none;
    }
    .nav_btn{
        display: none;
    }
    .sub_main .sub_cont_1{
        margin-left: 0;
    }
}
@media screen and (max-width: 768px) {
    .sub_main{
        padding: 140px 0px 60px 0px;
    }
    .sub_main .sub_cont_1{
        padding: 30px 12px;
    }
    .sub_cont_1 >h3{
        margin-bottom: 20px;
        font-size: 24px;
    }
    .border_box{
        padding: 16px 8px;
    }
    .sub_cont_1 .cont_1_layout{
        gap: 24px;
    }
}

.sub_2_layout{
border-radius: 24px;
overflow: hidden;
}
.sub_2_layout .top{
    padding: 40px 60px;
    box-sizing: border-box;
    width: 100%;
    background-image: url(/public/img/b2b/sub_1_top_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    /* background-size: cover;     */
}
.text_price_box{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.text_price_box p{
    color: #343434;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; 
}
.text_price_box h6{
    color: #343434;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px; 
}
.sub_2_layout .top{
    display: flex;
    align-items: center;
}
.sub_2_layout .top >div{
    width: 25%;
    flex: 1 1 auto;
}
.go_btn{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    border-radius: 8px;
    background: #0075FF;
    padding: 12px 24px;
    box-sizing: border-box;
    display: inline-block;
}
.sub_2_box_layout{
    border-top: solid 1px #D7D7D7 ;
    padding: 36px 50px 80px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.sub_2_box_layout h4{
    color: #343434;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px; 
}
.padding_box{
    padding: 40px 50px;
    box-sizing: border-box;
}
.sub_2_box_layout .list_1{
    margin-top: 12px;
    display: flex;
    align-items: center;
    border: solid 1px #d7d7d7;
    border-radius: 8px;
}
.sub_2_box_layout .list_1 > div{
    width: 50%;
    border-right: solid 1px #d7d7d7;
}
.sub_2_box_layout .list_1 > div:last-child{
    border-right: 0;
}
.sub_2_box_layout .list_1_layout{
    display: flex;
    gap: 40px;
}
.sub_2_box_layout .list_1_layout >div{
    width: calc(50% - 20px);
    flex: 1;
}
@media screen and (max-width: 1500px) {
    .padding_box{
        padding: 20px 30px;
    }
}
@media screen and (max-width: 960px) {

    .padding_box{
        padding: 20px 30px;
    }
    .sub_2_box_layout .list_1_layout{
        flex-direction: column;
        gap: 24px;
    }
    .sub_2_box_layout .list_1_layout >div{
        width: 100%;
    }
    .text_price_box{
        gap: 4px;
    }
    .text_price_box p{
        font-size: 14px;
        line-height: 18px;
    }
    .text_price_box h6{
        font-size: 24px;
        line-height: 30px;
    }
    .sub_2_box_layout .list_1{
        flex-direction: column;

    }
    .sub_2_box_layout .list_1 > div{
        border-right: 0;
        border-bottom: solid 1px #d7d7d7;
        width: 100%;
    }
    .sub_2_box_layout .list_1 > div:last-child{
        border-bottom: 0;
    }
    .sub_2_box_layout{
        gap: 24px;
        padding: 30px 12px;
    }
    .sub_2_layout .top{
        position: relative;
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .sub_2_layout .top >div{
        width: 100%;
    }
    .sub_2_layout .top >div:nth-child(2){
        position: absolute;
        top: 34px;
        right: 12px;
        width: max-content;
    }
    .go_btn{
        font-size: 16px;
        line-height: 20px;
        padding: 12px 24px;
    }
}