@charset "utf-8";
@import url(../css/font.css);

*{
    box-sizing: border-box;
}

body { overflow: hidden; }

button{
    cursor: pointer;
}

body {
    width: 1960px;
    height: 1080px;
    background: url(../images/gery_back.png) repeat center center/37px 64px;
    transform: translate(-50%, -50%), scale(1);
    margin: 0px;
    left: 0px;
}

#container {
    /* background:url('../images/bg.png')no-repeat center center / contain; */
    font-family: 'NotoSansM';
    width: 1760px;
    height: 1068px;
    overflow: hidden;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content{
    width: 100%;
    height: 100%;
    background-color: #4972e4;
}


/* 상단 */
.header{
    /* border: 1px solid green; */
    height: 91px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.top_sel{
    width: 160px;
    height: 50px;
    border-radius: 50px;
    background: none; 
    color: #fff;   
    font-size: 28px;
    margin-right: 10px;
    cursor: pointer;
}

.top_sel.on{
    background: #fff;  
    color: #000;
}

.title{
    font-size: 36px;
    color: #fff;
    margin-left: -280px;
}

.closeBtn{
    width: 36px;
    height: 36px;
    background: url('../images/btn_close.png') no-repeat center center / contain;
    opacity: 0;
    pointer-events: none;
}

.dataroom .closeBtn{
    opacity: 1;
    pointer-events: auto;
}

/* 하단 */
.archiveWrap{
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    display: flex;
    height: 989px;
}

.archiveWrap>div{
    margin: 20px;
}

/* 왼쪽 */
.left_menu{
    width: 335px;
    border-radius: 30px 50px 30px 30px;
    background-color: #fff;
    box-shadow: 0px 6px 4px 1px rgba(0, 0, 0, 0.1);
}


.menu_top{
    width:100%;
    height: 75px;
    line-height: 75px;
    background-color: #335ac3;
    color: #fff;
    padding-left: 18px;
    font-size: 28px;
    border-radius: 30px 50px 0 0;
    vertical-align: middle;
}

.archive_icon{
    width:30px;
    height: 30px;
    display: inline-block;
    margin-right:20px;
    vertical-align: middle;
    background-image: url(../images/btn_gray.png);
    background-size: 30px 30px;
}
.conTap.on { pointer-events: none; }
.conTap.on .archive_icon { background-image: url(../images/btn_blue.png); }

.menu_list{
    width: 313px;
    height: 690px;
    margin: 50px auto;
}

.menu_list > li{
    height: 60px;
    line-height: 55px;
    border-radius: 40px;
    font-size: 30px;
    margin-bottom:10px;
    cursor: pointer;
}

.num_circle{
    display: inline-block;
    font-family: "MsredSansSerif";
    font-weight: 500;
    width: 45px;
    height: 45px;
    line-height: 42px;
    margin: 6.5px 10px;
    font-size: 30px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color:#16295d;
}

.menu_list > li.on{
    background-color: #e1eafb;
    color: #1c3c92;
    pointer-events: none;
}

.menu_list > li.on >.num_circle{
    background-color: #335ac3;
}

.dataBtn{
    display: block;
    background-color: #335ac3;
    margin: 5px auto;
    width: 313px;
    height: 74px;
    border-radius: 10px;
    color: #fff;
    font-size: 28px;
}

/* .dataBtn.on { color: #fff; } */


/* 오른쪽 */
.right_menu{
    width: 1348px;
}

.right_menu > div.on { display: block; }

.archive_title{
    height: 45px;
    line-height: 40px;
    font-size: 32px;
    margin-bottom: 25px;
}

.archive_title .num_circle{
    background-color: #335ac3;
    margin-right: 20px;
    margin-bottom: 0;
}

.archive_category{
    display: flex;
    height: 55px;
    line-height: 50px;
    font-size: 26px;
}

.archive_category > div{
    background-color: #c3cbdb;
    border-radius: 20px 20px 0 0 ;
    padding: 5px 15px;
    margin-right: 2px;
    cursor: pointer;
}

.archive_category > div.on{
    background-color: #fff;
    color:#2a53c1;
    box-shadow: -4px -2px 6px 0px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* 오른쪽 본문 내용 */
.archive_listTableWrap{
    box-shadow: 0px 3px 4px 3px rgba(0, 0, 0, 0.1);
    border-radius: 0px 50px 30px 30px;
    height: 825px;
}


.listTable_tap{
    width: 1284px;
    display: flex;
    font-size: 26px;
    justify-content: flex-start;
    margin: 0 auto;
    padding-left: 18px;
    gap: 66px;
}

.listTable_tap .conTap{
    margin: 5px 0 35px;
    height: 32px;
    line-height: 32px;
}

.conTap .archive_icon{
    margin-right: 5px;
}

.conTap p {
    display:inline-block;
    cursor: pointer;
    vertical-align: middle;
}


/* 목록 제목 */

.listTable{
    width: 1284px;
    margin: 0 auto;
    margin-bottom:50px;
    /* border-bottom: 1px solid gray; */
    font-size: 30px;
    overflow: hidden;
}
.listTable.multimedia{
    min-height: 880px;
}

.listTable_head{
    display: flex;
    width: 1284px;
    height: 60px;
    border-bottom: 1px solid gray;
    align-items: center;
    justify-content: space-between;
}

.listTable_body_Wrap{
    padding: 15px 0 0;
}

.checkbox{
    width: 30px;
    margin-top: 3px;
}
.checkbox span{
    display: block;
    width: 25px;
    height: 25px;
    background-color: #dbdfe6;
    border-radius: 5px;
    margin:0 auto;
    cursor: pointer;
    margin-left: 10px;
}

.titleCell{
    width: 1020px;
    text-align: center;
}

.num_font{
    font-family: "MsredSansSerif";
    font-weight:normal;
}

.downCell{
    width: 200px;
    text-align: center;
}

.scrapCell{
    width: 200px;
    text-align: center;
}



/* 테이블 본문 */
.listTable_body{
    display:flex;
    align-items: center;
    height: 60px;
    border-radius: 10px;
    justify-content: space-between;
}

.listTable:not(.multimedia) .listTable_body_Wrap > div:nth-child(even){
    background-color: #f9fbfe;
}


/* 목록 하단 */
.listTable_bottom{
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    display: flex;
    background: rgb(219 223 230 / 40%);
    height: 60px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 19px;
    font-size: 24px;
}

.select_down {
    background: #335ac3;
    border-radius: 70px;
    color: #fff;
    width: 120px;
    height: 45px;
    vertical-align: top;
}


/* 멀티미디어자료 */
.multimedia .listTable_body_Wrap{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.multimedia .listTable_head{
    height: 0;
}

.multimedia .listTable_body_Wrap .listTable_body{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    width: 321px;
    height: auto;
    padding: 10px;
}

.multimedia .listTable_body >div{
    width: 321px;
    margin-bottom: 30px;
}

.multimedia .listTable_body >div.thum_box{
    height: 227px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 썸네일 이미지 */
.multimedia .listTable_body .thum_box > img{
    width: 80%;
    height: auto;
    max-height: 227px;
    display: block;
}

/* 파일명 */
.multimedia .listTable_body .name_box{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}
.multimedia .listTable_body .name_box .titleCell{
    width: 279px;
    line-height:30px;
    font-size: 20px;
}

.multimedia .listTable_body .name_box .titleCell .letter_S{
    letter-spacing: -1.5px;
}

/* 버튼 */
.multimedia .downCell{
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* 멀티미디어자료 끝 */

/* 자료명 */
.listTable_body .titleCell{
    text-align: left;
    font-size: 24px;
    padding-left:10px;
}

.listTable_body .titleCell.textbook::before{
    content:"[교과서]"
}
.listTable_body .titleCell.t_textbook::before{
    content:"[교사용 교과서]"
}
.listTable_body .titleCell.manuduction::before{
    content:"[학습 지도안]"
}
.listTable_body .titleCell.conseptppt::before{
    content:"[개념 PPT]"
}

/* 평가자료 */
.listTable_body .titleCell.exambasic::before{
    content:"[기초 UP 문제]"
}

.listTable_body .titleCell.examhigh::before{
    content:"[실력 UP 문제]"
}

.listTable_body .titleCell.examunitall::before{
    content:"[대단원 종합 문제]"
}

.listTable_body .titleCell.examunittext::before{
    content:"[대단원 평가 문제]"
}

/* 애니메이션 자료 */
.listTable_body .titleCell.image::before{
    content:"[이미지]"
}

.listTable_body .titleCell.video::before{
    content:"[동영상]"
}

.listTable_body .titleCell.animation::before{
    content:"[애니메이션]"
}




/* 다운로드 */
.downCell button, .scrapCell button {
    width: 42px;
    height: 42px;
}
button[data-type="pdf"] {
    background: url('../images/btn_pdf.png') no-repeat center center / contain;
}

button[data-type="hwp"] {
    background: url('../images/btn_hwp.png') no-repeat center center / contain;
}
button[data-type="ppt"] {
    background: url('../images/btn_ppt.png') no-repeat center center / contain;
}
button[data-type="img"] {
    background: url('../images/btn_image.png') no-repeat center center / contain;
}
button[data-type="video"] {
    background: url('../images/btn_Video.png') no-repeat center center / contain;
}
button[data-type="ani"] {
    background: url('../images/btn_ani.png') no-repeat center center / contain;
}



/* 수업 담기 */
.scrapBtn {
    background: url('../images/btn_scrap.png') no-repeat center center / contain;
}

.listTable_body_Wrap div.checked {
    background-color: #e1eafb !important;
}
.checked .checkbox span, .checkbox.checked span{
    background: #4972e4 url('../images/check.png') no-repeat center center / 16px 14px; 
}



/* 유형별 탭 */
.archiveWrap.two_tab{
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.two_tab .content_wrap{
    display: flex;
    margin: 0 auto;
}

.two_tab ul{
    margin: 30px;
    width: 380px;
    height: max-content;
    /* border: 1px solid gray; */
    border-radius: 15px 15px 0 0 ;
    box-shadow: 0px 6px 4px 1px rgba(0, 0, 0, 0.1);
}
.two_tab ul li{
    width: 100%;
    height: 60px;
    font-size: 24px;
    text-align: left; 
    text-indent: 30px;
    line-height: 60px;
    border-bottom: 1px solid gray;
}

.two_tab ul li.title2{
    border-radius: 15px 15px 0 0;
    background-color: #335ac3;
    text-align: center;
    text-indent: 0;
    font-size: 24px;
    color: #fff;
}

.two_tab ul li:not(.title2){
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two_tab ul li:last-child{
    border-bottom: none;
}

.two_tab .classData button {
    width: 42px;
    height: 42px;
    margin-right: 20px;
}
.downBtn {
    background: url('../images/btn_down.png') no-repeat center center / contain;
}


/* 단원/유형 탭 */
[class$=tab]{
    display:none;
}

[class$=tab].on{
    display: block;
}



/* 단원별 탭 */

.right_menu > div {
    display:none;
}

.left_menu:has(.on)~.right_menu [clasS*=lesson].on{
    display:block;
}


/* zip 저장 확인 */
.zipSaveInputBox { position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.7); width: 100%; height: 100%; z-index: 99; display: none; }
.zipSaveInputBox.on { display: block; }
.zipSaveInputBox > div {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);background-color: #fff;width: 600px;height: 320px;text-align: center;border-radius: 30px;}
.zipSaveInputBox p { margin: 50px 0; font-size: 30px; }
.zipSaveInputBox input[type="text"] {width: 400px;font-size: 30px;padding: 10px 0;text-align: center;border: 1px solid #335ac3;border-radius: 5px;}
.zipSaveInputBox > div > div {display: inline-block;font-size: 20px;padding: 15px;position: absolute;bottom: 30px;border: 1px solid;cursor: pointer;border-radius: 30px;background: #335ac3;color: #fff;}
.zipSaveInputBox .saveOk { left: 200px; }
.zipSaveInputBox .saveCancel { right: 200px; }