
#top_box{
    position: fixed;
    z-index: 999999;
    width: 100%;
}
#showimage{
    overflow: hidden;
    position: relative;
    width: 100%;
/*    height: 70px;*/
    padding: 17px 0;
    background-color: #1a477c;
    text-align: center;
    left: 0;
    top: 0;
    z-index: 9999;
}
#showimage .center1{
    position: relative;
    height: 100%;
}
.pop_inner{
    height: 100%;
}
.pop_con{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.check_pop{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0 5px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.check_pop label{
    display: flex;
    align-items: center;
    gap: 0 5px;
}

/* sub1_2 */
.s1_2_popup{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999999999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    display: none;
}
.s1_2_pop_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 800px;
    background-color: #fff;
    border-top: 1pt solid #000000;
    padding: 40px 40px 20px; 
    overflow-y: auto; 
    height: 85vh;
}
.s1_2_pop_title{
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1pt solid #000000;
}
.s1_2_pop_title i{
    cursor: pointer;
}
.s1_2_pop_con{
    margin-top: 30px;
}
.s1_2_pop_con>span{
    padding: 10px 0 10px 20px;
    display: block;
    background-color: #0075ff;   
}
.s1_2_pop_con p{
    padding: 10px 0 10px 20px;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 0 60px;
    border-bottom: 1pt solid #d7d7d7;
}
.s1_2_pop_con p strong{
    width: 15%;
}
.s1_2_pop_con p span{
    width: 80%;
    display: block;
}

/* mobile */
@media screen and (max-width: 767px){
    
    #showimage .center1{
        position: unset;
    }
    .pop_con {
        justify-content: flex-start;
    }
    .check_pop{
        transform: unset;
        top: unset;
        bottom: 0px;
    }

    /* sub1_2 */
    .s1_2_pop_box{
        width: 85%;
        padding: 20px;
    }
    .s1_2_pop_con {
        margin-top: 20px;
    }
    .s1_2_pop_con>span {
        padding: 5px 0 5px 10px;
    }
    .s1_2_pop_con p {
        gap: 0 25px; 
        padding: 5px 0 5px 10px;
    }
    .s1_2_pop_con p strong {
        width: 25%;
    }

}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    
    #showimage .center1{
        position: unset;
    }
    
    .check_pop{
        transform: unset;
        top: unset;
        bottom: 5px;
    }

    /* sub1_2 */
    .s1_2_pop_box{
        width: 85%;
        padding: 20px;
    }
    .s1_2_pop_con {
        margin-top: 25px;
    }
    .s1_2_pop_con>span {
        padding: 10px 0 10px 15px;
    }
    .s1_2_pop_con p {
        gap: 0 30px; 
        padding: 10px 0 10px 15px;
    }
    .s1_2_pop_con p strong {
        width: 25%;
    }
}