:root{
    --myHeight: 38px;
    --myPadding: 10px 20px
}

.inner_mypage{
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.sc1{
    padding: 0;
    overflow: hidden;
}
.col_left{
    position: relative;
    width: 350px;
    padding: 80px 40px;
    background: #fff;
    border-left: 1px solid #ddd;
    box-shadow: rgba(99, 99, 99, 10) 10px 0px 10px 0px;
}

.col_left .my_head{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.col_left .my_head .name{
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -.67px;
    word-break: break-all;
}
.col_left .my_head .id {
    font-size: 15px;
    line-height: 19px;
    color: #929294;
    word-break: break-all;
}
.col_left .my_head .point {
    width: 100%;
    margin-top: 25px;
    padding: 20px;
    font-size: 15px;
    border: 1px solid #ffad8d;
    background: #fff7f0f5;
    color: var(--brandColor);
    border-radius: 4px;
}
.col_left .my_head .point p{
    margin-top: 10px;
    text-align: right;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}
.col_left .menu_list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.col_left .menu_list .menu_item .title{
    position: relative;
    font-size: 20px;
    font-weight: 400;
    padding: 10px 0;
    color: #444;
}
.col_left .menu_list .menu_item .title.on{
    font-weight: 600;
    color: #000;
}
.col_left .menu_list .menu_item .title.on::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

.col_left .link_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    color: #888;
}
.col_left .link_list .link_item a:hover{
    color: #444;

}




.col_right{
    position: relative;
    flex: 1;
    padding: 60px 60px;
    background: var(--brandColor3);
}
.col_right:after{
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--brandColor3);
}
.col_right .con_area{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.col_right .headline{
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.col_right .head_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}
.col_right .head_box h3{
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -.4px;
    color: #333;
}
.col_right .head_box a{
    position: relative;
    font-size: 13px;
    padding: 8px 15px;
    line-height: 1;
}
/* .col_right .head_box a::after{
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url(../img/plus.svg) no-repeat center/contain;
} */


.col_right .list{
    /* padding: 20px; */
    background: #fff;
}
.col_right .list .item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.col_right .list .item .wrap{
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: var(--myHeight);
    box-sizing:initial;
}
.col_right h4{
    min-width: 180px;
    padding: var(--myPadding);
    line-height: var(--myHeight);
    font-size: 14px;
    color: #666;
    /* background: #eee; */
}
.col_right .list .item .wrap span{
    /* padding: var(--myPadding); */
    line-height: var(--myHeight);
    flex: 1;
}
.col_right .list .item .wrap span{
    /* display: inline-block; */
}
.col_right .link_box{
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 15px;
}




/* 내정보 ================================================== */
.group_2 .headline_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col_right .list .item .wrap .edit_af{
    line-height: 1.3;
}

/* 수정 버튼 */
.group_2 .btn_box{
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn_adon, .btn_apply, .btn_adit {
    padding: 10px 18px;
    line-height: 1;
}
.group_2 .btn_adon{display: none;}
.group_2 .btn_apply{
    background: var(--brandColor2);
    color: #fff;
}
.group_2.on .btn_adon{display: block;}
.group_2.on .btn_adit{display: none;}


/* 변경 버튼 */
.btn_change.box3 {
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 300;
}


/* 수정 내용 */
.group_2 .edit_be{
    display: none;
}
.group_2.on .edit_be{
    display: flex;
    gap: 10px;
}

.group_2 .edit_af{
    flex: 1;
}
.group_2.on .edit_af{
    display: none;
}
.group_2 .edit_af a{
    flex: 1;
    word-break: break-all;
}

.group_2 .list .item .wrap .flex_wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}
.group_2 .edit_be input{
    background: #eee;
    padding: 0 10px;
    height: 100%;
    min-width: 300px;
    font-size: 15px;
    height: var(--myHeight);
}
.group_2 .edit_be .btn_change{
    height: var(--myHeight);
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    line-height: var(--myHeight);
    background: var(--brandColor);
    border-radius: 4px;
}

.group_2 .edit_be.nick{
    align-items: center;
}
.group_2 .edit_be.pw{
    flex-direction: column;
    align-items: end;
}
.group_2 .edit_be.phone, .group_2 .edit_be.email{
    align-items: center;
}
.group_2 .edit_be.phone input{
    min-width: auto;
    max-width: 150px;
}

.group_2 .edit_be.email input{
    max-width: 150px;
    min-width: auto;
}
.group_2 .edit_be.blog{
    flex: 1;
    padding-right: 20px;
}
.group_2 .edit_be.blog input{
    width: 100%;
    min-width: auto;
}

.group_2 .guide{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}
.group_2 .guide li .wrap {
    margin-top: 10px;
    padding: 10px;
    width: fit-content;
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.group_2 .guide li strong{
    display: block;
    font-weight: 600;
    padding-bottom: 10px;
    color: #333;
}
.group_2 .guide li p{
    font-size: 15px;
    line-height: 1.2;
    color: #444;
}
.group_2 .guide li span{
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    font-size: 14px;
    background: rgb(250, 204, 0);
    color: #1b1005;
    border-radius: 20px;
}
.desc{
    padding-right: 20px;
    font-size: 14px;
    color: #666;
}
  

.btn_cancel_account{
    margin-top: 30px;
    color: #666;
}

/* 팝업 */
.popup .con_wrap{
    padding: 20px;
    border: 1px solid #ddd;
}
.popup h3{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.popup .txt_box{
    padding-bottom: 30px;
}
.popup .txt_box p{
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.popup .input_wrap{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.popup .input_wrap .box{
    height: 40px;
}
.popup input, .popup select{
    border: 1px solid #ddd;
    padding: 0 8px;
}

.popup .btn_box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.popup .btn_box button{
    padding: 8px 20px;
}
.popup .btn_box button.btn_ok{
    background: var(--brandColor2);
    color: #fff;
    border: 1px solid var(--brandColor2);
}
.popup .btn_box button.btn_cencle{
    background: #fff;
    border: 1px solid #bbb;
    background: #eee;
}

/* 비밀번호 변경 팝업 */
.group_change_pw .input_wrap .input_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}


/* 회원탈퇴 팝업 */
.group_cancel_account .input_wrap .input_box, .group_change_phone .input_wrap .input_box{
    display: flex;
    align-items: center;
    gap: 15px;
}
.group_cancel_account .input_wrap label, .group_change_phone .input_wrap label{
    font-weight: 500;
}
.group_cancel_account .input_wrap .input_box .mobile_wrap, .group_change_phone .input_wrap .input_box .mobile_wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}
.group_cancel_account .input_wrap .input_box .mobile_text, .group_change_phone .input_wrap .input_box .mobile_text{
    min-width: auto;
    max-width: 70px;
}
.group_cancel_account .input_wrap .input_box .btn_check, .group_change_phone .input_wrap .input_box .btn_check{
    padding: 0 10px;
    font-size: 14px;
    background: var(--brandColor2);
    color: #fff;
    border: 0;
}



/* 표 */
.col_right .table_area{
    padding: 20px 0 40px;
}
.col_right .table_area .head_box{
    font-size: 17px;
    font-weight: 600;
}
.col_right .table_area .head_box h3{
    color: #444;
    font-size: 16px;
}
.col_right table{
    width: 100%;
    background: #fff;
    border-color: #ddd;
    font-size: 14px;
    text-align: center;
}
.col_right table thead{
    background: var(--brandColor3);
}
.col_right table tr th, .col_right table tr td{
    height: 36px;
    padding: 0 10px;
}
.col_right table tr .txt{
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.col_right table a{
    width: 100%;
    background: #fff;
    font-weight: 500;
    word-break: break-all;
}

/* 테이블 사이즈 */
.mypage_301 th:nth-child(1){width: 6%;}
.mypage_301 th:nth-child(2), .mypage_301 td:nth-child(2){text-align: left;}
.mypage_301 td:nth-child(3){width: 12%;}
.mypage_301 th:nth-child(4){width: 12%;}
.mypage_301 th:nth-child(5){width: 15%;}
/* 테이블 사이즈 */
.mypage_302 th:nth-child(1){width: 3%;}
.mypage_302 th:nth-child(2){width: 12%;}
.mypage_302 td:nth-child(3){width: 15%;}
.mypage_302 th:nth-child(4){}
.mypage_302 th:nth-child(5){width: 12%;}
.mypage_302 th:nth-child(6){width: 8%;}
/* 테이블 사이즈 */
.mypage_303 th:nth-child(1){width: 6%;}
.mypage_303 th:nth-child(2){width: 8%;}
.mypage_303 td:nth-child(3){}
.mypage_303 th:nth-child(4){width: 18%;}
.mypage_303 th:nth-child(5){width: 6%;}
.mypage_303 th:nth-child(6){width: 6%;}
.mypage_303 th:nth-child(7){width: 18%;}
.mypage_303 th:nth-child(8){width: 12%;}
.mypage_303 th:nth-child(9){width: 10%;}



/* 내 실적 ===================================================================== */
/* 표 _ 광고별현황 */
.col_right .table1 tr th:nth-child(1), .table1 tr td:nth-child(1){width: 8%; text-align: center;}
.col_right .table1 tr th:nth-child(5), .table1 tr td:nth-child(5){width: 20%; text-align: center;}
.table1 tr td:not(:nth-child(2)){font-size: 14px;}


/* 페이지네이션 */
.pagination{
    padding-top: 25px;
}
.pagination_list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pagination_list a{
    width: 23px;
    height: 23px;
    text-align: center;
    font-size: 13px;
    line-height: 23px;
    border-radius: 50%;
    color: #444;
}
.pagination_list a.active{
    background: var(--brandColor2);
    border: 1px solid var(--brandColor2);
    color: #fff;
}

.pagination_list .prev, .pagination_list .next{position: relative; width: 20px; height: 20px;}
.pagination_list .prev::before,
.pagination_list .next::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
}
.pagination_list .prev::before{
    background: url(../img/arrow_left.svg) no-repeat center/contain;
}
.pagination_list .next::before{
    background: url(../img/arrow_right.svg) no-repeat center/contain;
}


/* 출금신청 */
.withdraw_box .list .item:last-child{
    border-bottom: 1px solid #ddd;
}

.withdraw_box .list .input_item{
    background: #f3f3f3;
}
.withdraw_box .list .input_item .wrap{    
    padding: 30px 10px;
}
.withdraw_box .list .input_item .wrap p{
    line-height: 1.4;
    font-weight: 600;
}
.withdraw_box .list .input_item .wrap span{
    display: block;
    color: #666;
    font-size: 15px;
}
.withdraw_box .list .input_item .wrap > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.withdraw_box .list .input_item input{
    padding: 0 15px;
    min-height: var(--myHeight);
    background: #fff;
    border-bottom: 1px solid #bbb;
}


.withdraw_box .desc{
    padding-top: 20px;
    font-size: 15px;
    color: #ff4242;
    line-height: 1.6;
}
.withdraw_box .desc a{
    padding: 0px 6px;
    font-size: 14px;
    background: #eee;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: underline;
}
.withdraw_box .file_box{
    font-size: 14px;
}
.withdraw_box .btn_apply{
    display: block;
    margin: 30px auto 20px;
    padding: 12px 20px;
    background: var(--brandColor2);
    color: #fff;
    border-radius: 4px;
}




/* 내 광고 ===================================================================== */
.col_right .group_4 .list .item .list_sub{
    display: flex;
    flex-direction: column;
}
.mypage_303 #files{display: none;}
.mypage_303 .hidden_apply{display: none;}
.mypage_303 input{
    padding: 2px 10px;
    font-size: 15px;
    border-radius: 4px;
    color: #444;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
}
.mypage_303 .file{
    position: relative;
}
.mypage_303 .file::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: url(../img/file_n.png) no-repeat center/contain;
}
.mypage_303 .file.download::before{
    background: url(../img/file_y.png) no-repeat center/contain;
}

.mypage_303 .btn_apply{
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    background: var(--brandColor);
    color: #fff;
}
.mypage_303 .btn_apply.progress{
    
}