@charset "utf-8";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/


/* 강조, 별모양 텍스트 */
.wp_solution .txt_bx {
}

.wp_solution .txt_bx > .txt_star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    color: #707070;
    font-size: 14px;
    font-weight: var(--font-w400);
}

.wp_solution .txt_bx > .txt_star::before {
    content: "*";
    color: #D90B0B;
    font-size: 16px;
}


/* 버튼 */
.wp_solution .btn_bx {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_solution .btn_bx > .btn_cm {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    width: 100%;
    height: 50px;
    font-size: 20px;
    font-weight: var(--font-w400);
    border-radius: 50px;
    border: 1px solid #ABABAB;
    background-color: #FFFFFF;
    transition: 0.25s ease-out;
}

.wp_solution .btn_bx > .btn_cm01 {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

.wp_solution .btn_bx > .btn_cm:hover {
    color: #fff;
    background: #ABABAB;
    border: 1px solid #ABABAB;
    transition: 0.3s ease-in;
}


/* Pager */
.wp_solution #wp_stn_pager {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.wp_solution #wp_stn_pager .pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_solution #wp_stn_pager .pager > a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    font-family: var(--font-prer);
    border-radius: 50%;
    background-color: #fff;
}

.wp_solution #wp_stn_pager .pager .wp_pg_num {
    transition: 0.2s;
}

.wp_solution #wp_stn_pager .pager .wp_pg_num.on {
    font-weight: var(--font-w900);
    /*background-color: #999999;*/
}

.wp_solution #wp_stn_pager .pager .wp_pg_num:hover {
    color: #fff;
    border-radius: 50%;
    background-color: #999999;
    transition: 0.3s;
}

.wp_solution #wp_stn_pager .pager .wp_pg_arrow {
    position: relative;
    color: #fff;
    font-size: 24px;
    font-weight: var(--font-w700);
    background: #999999;
}

.wp_solution #wp_stn_pager .pager .wp_pg_arrow01::before {
    position: absolute;
    left: 50%;
    top: 100%;
    display: block;
    content: "Prev";
    color: #272727;
    font-size: 16px;
    font-weight: var(--font-w400);
    transform: translateX(-50%);
}

.wp_solution #wp_stn_pager .pager .wp_pg_arrow02::before {
    position: absolute;
    left: 50%;
    top: 100%;
    display: block;
    content: "Next";
    color: #272727;
    font-size: 16px;
    font-weight: var(--font-w400);
    transform: translateX(-50%);
}


/* Write */
.wp_solution #wp_write_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}

.wp_solution #wp_write_list .wp_btn_wrt {
    max-width: 90px;
    width: 100%;
    height: 40px;
    color: #393939;
    font-size: 15px;
    font-weight: var(--font-w400);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ABABAB;
    background-color: #FFFFFF;
    transition: 0.3s ease-out;
}

.wp_solution #wp_write_list .wp_btn_wrt:hover {
    color: #fff;
    background: #393939;
    border: 1px solid #393939;
    transition: 0.3s ease-in;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE*/

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .wp_solution #wp_stn_pager .pager > a {
        width: 30px;
        height: 30px;
        font-size: 16px;
        border-radius: 50%;
    }

    .wp_solution #wp_stn_pager .pager .wp_pg_arrow {
        font-size: 18px;
    }

    .wp_solution #wp_stn_pager .pager .wp_pg_arrow01::before,
    .wp_solution #wp_stn_pager .pager .wp_pg_arrow02::before {
        font-size: 14px;
    }
    .wp_solution #wp_stn_pager{
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .wp_solution .txt_bx > .txt_star {
        font-size: 14px;
    }

    .wp_solution .btn_bx > .btn_cm {
        max-width: 130px;
        height: 40px;
        font-size: 16px;
    }
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/*  인풋 페이지 */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 인풋공통 */
.wp_solution .wpc_inp {
}

.wp_solution .wpc_inp .inp_cont {
}


/*상단*/
.wp_solution .wpc_inp .inp_cont > .hd {
    padding: 20px 0;
}


/*중간*/
.wp_solution .wpc_inp .inp_cont > .bd {
}

.wp_solution .inp_rows {
    border-top: 2px solid #000000;
}

.wp_solution .inp_rows .row {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    padding: 10px 30px;
    border-bottom: 1px solid #C4C4C4;
}

.wp_solution .inp_rows .row:last-child {
    border: none;
}

.wp_solution .inp_rows .row .col {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.wp_solution .inp_rows .row .col_sz01 {
    max-width: 330px;
    width: 100%;
}

.wp_solution .inp_rows .row .col_sz02 {
}

.wp_solution .inp_rows .row .col_sz03 {
}

.wp_solution .inp_rows .row .col > dt {
    min-width: 100px;
}

.wp_solution .inp_rows .row .col > dt > .txt_bx {
}

.wp_solution .inp_rows .row .col > dt > .txt_bx > .txt {
    color: #000;
    font-size: 16px;
    font-weight: var(--font-w500);
}

.wp_solution .inp_rows .row .col > dd {
    flex-grow: 1;
}

.wp_solution .inp_rows .row .col > dd > .inp_bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm {
    width: 100%;
}

.wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm > select,
.wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm > input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    outline: none;
    border: 1px solid #C4C4C4;
}

.wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm > textarea {
    width: 100%;
    min-height: 200px;
    padding-top: 15px;
    padding-left: 15px;
    outline: none;
    border: 1px solid #C4C4C4;
}


/*체크, 라디오 박스*/
.wp_solution .inp_rows .row .col > dd > .chk_bx {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}

.wp_solution .inp_rows .row .col > dd > .chk_bx > .chk_frm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wp_solution .inp_rows .row .col > dd > .chk_bx > .chk_frm > input[type=radio] {
    display: none;
}

.wp_solution .inp_rows .row .col > dd > .chk_bx > .chk_frm > input[type=radio] + label {
    min-width: 20px;
    width: 20px;
    height: 20px;
    background-image: url("/img/ico/ico_chk_off.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}

.wp_solution .inp_rows .row .col > dd > .chk_bx > .chk_frm > input[type=radio]:checked + label {
    background-image: url("/img/ico/ico_chk_on.png");
}

.wp_solution .inp_rows .row .col > dd > .chk_bx > .chk_frm > label.chk_txt {
    color: #707070;
    font-size: 16px;
    font-weight: var(--font-w400);
}


/*파일박스*/
.wp_solution .inp_rows .row .col_file {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_solution .inp_rows .row .col_file > dt {
}

.wp_solution .inp_rows .row .col_file > dt > .txt_bx {
}

.wp_solution .inp_rows .row .col_file > dt > .txt_bx > .txt {
    color: #707070;
    font-size: 15px;
    font-weight: var(--font-w500);
}

.wp_solution .inp_rows .row .col_file > dt > .txt_bx > .dg_txt {
    color: #D90B0B;
    font-size: 14px;
    font-weight: var(--font-w400);
}

.wp_solution .inp_rows .row .col_file > dd {
    width: 100%;
}

.wp_solution .inp_rows .row .col_file > dd > .file_bx {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wp_solution .inp_rows .row .col_file > dd > .file_bx > .file_frm {
    max-width: 210px;
    width: 100%;
    height: 30px;
    border: 1px solid #C4C4C4;
}

.wp_solution .inp_rows .row .col_file > dd > .file_bx > .file_frm > input[type=file] {
    width: 100%;
}

.wp_solution .inp_rows .row .col_file > dd > .file_bx > .file_frm > input[type=file]::file-selector-button {
    width: 90px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    background-color: #393939;
    border: none;
    outline: none;
}


/*하단*/
.wp_solution .wpc_inp .inp_cont > .ft {
    width: 100%;
    padding-top: 60px;
}

.wp_solution .wpc_inp .inp_cont > .ft > .btn_bx {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_solution .wpc_inp .inp_cont > .ft > .btn_bx > .btn_cm {

}


/*--------------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE*/

@media (max-width: 992px) {

    .wp_solution .inp_rows .row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wp_solution .inp_rows .row .col_sz01,
    .wp_solution .inp_rows .row .col_sz02
    .wp_solution .inp_rows .row .col_sz03 {
        max-width: unset;
    }

    .wp_solution .inp_rows .row {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm > select,
    .wp_solution .inp_rows .row .col > dd > .inp_bx > .inp_frm > input {
        height: 35px;
        padding-left: 10px;
    }

}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* LIST_PHOTO_TYPE */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE COMMON*/
.wp_solution .wpc_list_pht {
}

.wp_solution .wpc_list_pht .pht_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background-color: #F6F6F6;
    border-radius: 50px;
}


/*상단*/
.wp_solution .wpc_list_pht .pht_cont .pht_hd {
    width: 100%;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd form {
    width: 100%;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    max-width: 340px;
    width: 100%;
    height: 60px;
    padding: 20px 30px;
    background-color: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 30px;
    margin-left: auto;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp > .inp_bx {
    flex-grow: 1;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp > .inp_bx > input {
    width: 100%;
    font-size: 14px;
    outline: none;
    border: none;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp > .inp_bx > input::placeholder {
    color: #707070;
    font-size: 14px;
    font-weight: var(--font-w300);
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp > .inp_smt {
    background: unset;
}

.wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp > .inp_smt > img {
}

/*중간*/
.wp_solution .wpc_list_pht .pht_cont .pht_bd {
}

.wp_solution .wpc_pht_itms {
}

.wp_solution .wpc_pht_itms > li {
    width: 100%;
    cursor: pointer;
}

.wp_solution .wpc_pht_itms > li > .inp_bx {
}

.wp_solution .wpc_pht_itms > li > .inp_bx > input[type=checkbox] {
}

.wp_solution .wpc_pht_itms > li > .itm_ir {
    display: block;
    width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .img_bx {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .img_bx > .img_frm {
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .img_bx > .img_frm > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.wp_solution .wpc_pht_itms > li:hover > .itm_ir > .img_bx > .img_frm > img {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx {
    padding: 20px 20px 30px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .tit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: var(--font-w600);
    border-bottom: 1px solid #DDDDDD;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding-top: 10px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dt {
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dt > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: var(--font-w600);
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dt > .txt::before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #E97598;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dd {
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dd > .txt {
    color: #666666;
    font-size: 16px;
    font-weight: var(--font-w400);
    line-height: 24px;
}

/*하단*/
.wp_solution .wpc_list_pht .pht_cont .pht_ft {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE01*/
.wp_solution .wpc_list_pht01 {
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE02*/
.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    color: #000;
    background-color: #fff;
    padding: 20px 20px 30px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx02 > .min_tit {
    color: #E97598;
    font-size: 15px;
    font-weight: var(--font-w400);
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx02 > .tit {
    font-size: 20px;
    font-weight: var(--font-w500);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE03*/

.wp_solution .wpc_list_pht03 .wpc_pht_itms > li > .itm_ir {
    background-color: unset;
}

.wp_solution .wpc_list_pht03 .wpc_pht_itms > li > .itm_ir > .img_bx {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx03 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    color: #000;
    padding: 20px 0px 30px;
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx03 > .tit {
    color: #393939;
    font-size: 24px;
    font-weight: var(--font-w600);
}

.wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx03 > .des {
    color: #707070;
    font-size: 14px;
    font-weight: var(--font-w400);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE*/
@media (max-width: 1400px) {
    .wp_solution .wpc_pht_itms > li > .itm_ir > .img_bx {
        height: auto;
    }
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp {
        max-width: 300px;
        width: 100%;
        height: 50px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .wp_solution .wpc_list_pht .pht_cont .pht_hd .hd_ir > .hd_inp {
        max-width: 260px;
        width: 100%;
        height: 45px;
        padding: 5px 10px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx {
        padding: 10px 10px 20px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .tit {
        font-size: 18px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dd > .txt {
        font-size: 14px;
    }

    /*photo02*/
    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx02 {
        padding: 10px 10px 20px;
        gap: 5px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx02 > .tit {
        font-size: 18px;
    }


}

@media (max-width: 576px) {
    .wp_solution .wpc_list_pht .pht_cont {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir {
        border-radius: 20px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .tit {
        font-size: 16px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm {
        gap: 10px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dt > .txt {
        font-size: 14px;
    }

    .wp_solution .wpc_pht_itms > li > .itm_ir > .txt_bx > .txt_frm > .des_frm > dd > .txt {
        font-size: 13px;
    }
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* LIST_TYPE */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE COMMON*/
.wp_solution .wpc_list {
}

.wp_solution .wpc_list .list_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background-color: #F6F6F6;
    border-radius: 50px;
}


/*상단*/
.wp_solution .wpc_list .list_cont .list_hd {
    width: 100%;
}

.wp_solution .wpc_list .list_cont .list_hd form {
    width: 100%;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    max-width: 340px;
    width: 100%;
    height: 60px;
    padding: 20px 30px;
    background-color: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 30px;
    margin-left: auto;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp > .inp_bx {
    flex-grow: 1;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp > .inp_bx > input {
    width: 100%;
    font-size: 14px;
    outline: none;
    border: none;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp > .inp_bx > input::placeholder {
    color: #707070;
    font-size: 14px;
    font-weight: var(--font-w300);
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp > .inp_smt {
    background: unset;
}

.wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp > .inp_smt > img {
}

/*중간*/
.wp_solution .wpc_list .list_cont .list_bd {
    width: 100%;
}

.wp_solution .wpc_list_itms {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.wp_solution .wpc_list_itms > li {
    width: 100%;
    cursor: pointer;
}

.wp_solution .wpc_list_itms > li > .inp_bx {
}

.wp_solution .wpc_list_itms > li > .inp_bx > input[type=checkbox] {
}

.wp_solution .wpc_list_itms > li > .itm_ir {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 30px;
    background: #fff;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease-in-out;
    box-sizing: border-box;
}

.wp_solution .wpc_list_itms > li:hover > .itm_ir {
    color: #8775B4;
    transition: 0.4s ease-in-out;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
    order: 2;
    max-width: 345px;
    width: 100%;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .img_bx > .img_frm {
    width: 100%;
    height: 100%;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .img_bx > .img_frm > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-out;
}

.wp_solution .wpc_list_itms > li:hover > .itm_ir > .img_bx > .img_frm > img {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx {
    width: calc(100% - 345px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    order: 1;
    padding: 20px 20px 30px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
    display: block;
    width: 100%;
    font-size: 30px;
    font-weight: var(--font-w600);
    margin-bottom: 10px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
    color: #292929;
    font-size: 20px;
    font-weight: var(--font-w400);
    line-height: 31px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .nm_txt {
    color: #292929;
    font-size: 20px;
    font-weight: var(--font-w500);
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .date {
    color: #ABABAB;
    font-size: 16px;
    font-weight: var(--font-w400);
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > i {
    font-size: 20px;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > i.xi-eye-o {
    color: #BBBABA;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > i.xi-heart-o {
    color: #E61818;
}

.wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .num {
    color: #747474;
    font-size: 16px;
    font-weight: var(--font-w500);
}

/*하단*/
.wp_solution .wpc_list .list_cont .list_ft {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE01*/


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE02*/


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE03*/
.wp_solution .wpc_list03 .wpc_list_itms > li > .itm_ir > .txt_bx {
    justify-content: center;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE*/

@media (max-width: 1200px) {
    .wp_solution .wpc_list_itms > li > .itm_ir {
        padding: 20px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
        font-size: 26px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
        font-size: 18px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .wp_solution .wpc_list .list_cont {
        padding: 30px 20px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir {
        padding: 15px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx {
        padding: 5px 10px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
        font-size: 22px;
        margin-bottom: unset;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
        font-size: 16px;
        line-height: 24px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .wp_solution .wpc_list .list_cont {
        padding: 20px 15px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir {
        padding: 10px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx {
        padding: 5px 10px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
        font-size: 18px;
        margin-bottom: unset;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
        font-size: 14px;
        line-height: 20px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .num,
    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .date,
    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .nm_txt {
        font-size: 14px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > i {
        font-size: 18px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
        max-width: 165px;
        min-width: 120px;
    }

    .wp_solution .wpc_list .list_cont .list_hd .hd_ir > .hd_inp {
        height: 50px;
        padding: 10px 20px;

    }
}

@media (max-width: 576px) {

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
        font-size: 16px;
        margin-bottom: unset;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
        font-size: 13px;
        line-height: 20px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .date {
        font-size: 13px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
        max-width: 100px;
        min-width: 100px;
    }
}

@media (max-width: 420px) {

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .tit {
        font-size: 14px;
        margin-bottom: unset;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_frm > .des {
        font-size: 11px;
        line-height: 16px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .txt_bx > .txt_info > li > .date {
        font-size: 11px;
    }

    .wp_solution .wpc_list_itms > li > .itm_ir > .img_bx {
        max-width: 100px;
        min-width: 100px;
    }
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* MODAL_TYPE*/
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE COMMON*/
.wp_solution .mdl_type {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 29, 0.92);
    z-index: 9999;
}

.wp_solution .mdl_type .mdl_wrap {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_solution .mdl_type .mdl_ir {
    position: relative;
    max-width: 1260px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.wp_solution .mdl_type .mdl_ir > .btn_type_cls01 {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #7B7B7B;
    font-size: 15px;
    font-weight: var(--font-w300);
    background-color: unset;
}

.wp_solution .mdl_type .mdl_ir > .btn_type_cls01 > i {
}

.wp_solution .mdl_type .mdl_ir > .img_bx {
    width: 45%;
}

.wp_solution .mdl_type .mdl_ir > .img_bx > .img_frm {
    width: 100%;
    height: 100%;
}

.wp_solution .mdl_type .mdl_ir > .img_bx > .img_frm > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:20px;
    width: 55%;
    padding: 60px 40px 40px 60px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-bottom: 30px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx::after {
    position: absolute;
    left: 0;
    top: 100%;
    display: block;
    content: "";
    width: 50px;
    height: 1px;
    background-color: #707070;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx > .tit {
    font-size: 24px;
    font-weight: var(--font-w600);
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx > .nm_txt {
    color: #ABABAB;
    font-size: 16px;
    font-weight: var(--font-w500);
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dt {
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dt > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: var(--font-w600);
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dt > .txt::before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #E97598;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dd {
    padding-left: 15px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dd > .txt {
    color: #666666;
    font-size: 20px;
    font-weight: var(--font-w400);
    line-height: 32px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des {
    font-size: 20px;
    font-weight: var(--font-w400);
    line-height: 32px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .eye_cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #BBBABA;
    font-size: 23px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .eye_cont > i {
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .eye_cont > .num {
    color: #747474;
    font-size: 16px;
    font-weight: var(--font-w500);
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .ht_cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #E61818;
    font-size: 23px;
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .ht_cont > i {
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .ht_cont > .num {
    color: #747474;
    font-size: 16px;
    font-weight: var(--font-w500);
}

.wp_solution .mdl_type .mdl_ir > .txt_bx > .info_frm .date {
    color: #ABABAB;
    font-size: 16px;
    font-weight: var(--font-w400);
    margin-left: auto;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE01*/
.wp_solution #mdl_type01 .mdl_ir .txt_bx {
    background-image: url("/img/common/logo.png");
    background-repeat: no-repeat;
    background-position: 90% 90%;
    background-size: 300px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE02*/


/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE03*/


/*--------------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE*/
@media (max-width: 1200px) {
    .wp_solution .mdl_type .mdl_ir > .txt_bx {
        padding: 60px 20px 100px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx {
        padding-bottom: 20px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm {
        gap: 20px;
    }

}

@media (max-width: 992px) {
    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx > .tit {
        font-size: 22px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dt > .txt {
        font-size: 18px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dd > .txt {
        font-size: 18px;
    }
    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .wp_solution .mdl_type .mdl_ir {
        flex-direction: column;
    }

    .wp_solution #mdl_type01 .mdl_ir .txt_bx {
        background-size: 200px;
    }

    .wp_solution .mdl_type .mdl_ir > .btn_type_cls01 {
        padding: 5px 10px;
        color: #000;
        background: #fff;
        border-radius: 50px;
    }

    .wp_solution .mdl_type .mdl_ir > .img_bx {
        width: 100%;
        height: 300px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx {
        width: 100%;
        padding: 20px 20px 100px;
    }
    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {

    .wp_solution .mdl_type .mdl_ir > .txt_bx {
        width: 100%;
        padding: 20px 20px 60px;
        background-position: 83% 95%;
    }

    .wp_solution .mdl_type .mdl_ir > .btn_type_cls01 {
        right: 15px;
        top: 10px;
    }

    .wp_solution .mdl_type .mdl_ir > .img_bx {
        height: 220px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx {
        padding-bottom: 10px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .tit_bx > .tit {
        font-size: 18px;
    }

    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dd > .txt,
    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des_bx > dt > .txt {
        font-size: 14px;
        line-height: 22px;
    }
    .wp_solution .mdl_type .mdl_ir > .txt_bx > .txt_frm > .des_cont > .des {
        font-size: 14px;
        line-height: 20px;
    }
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* LIST_MAP_TYPE*/
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/*TYPE COMMON*/
.wp_solution .wpc_list_map {
}

.wp_solution .wpc_list_map .map_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}


/*상단*/
.wp_solution .wpc_list_map .map_cont .lm_hd {
    width: 100%;
    border-top: 2px solid #000000;
}

.wp_solution .wpc_list_map .map_cont .lm_hd form {
    width: 100%;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    background-color: #F3F3F3;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm {
    flex-grow: 1;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm:nth-child(1) {
    max-width: 390px;

}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm:nth-child(2) {
    max-width: 800px;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm > select {
    width: 100%;
    height: 55px;
    padding-left: 20px;
    border: 1px solid #DDDDDD;
    appearance: none;
    -webkit-appearance: none; /* 사파리, 크롬 하위버전용 */
    -moz-appearance: none; /* 사파리, 크롬 하위버전용 */
    background-image: url("/img/ico/ico_sel_dwn.png");
    background-repeat: no-repeat;
    background-position: 95% center;
    outline: none;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm > input[type=text] {
    width: 100%;
    height: 55px;
    padding-left: 20px;
    border: 1px solid #DDDDDD;
    outline: none;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .btn_lm_shc {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 55px;
    color: #fff;
    border-radius: 27px;
    background-color: #000000;
}

.wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .btn_lm_shc:hover {
    color: #fff;
    background-color: #eb7498;
    transition: 0.4s ease-in-out;
}


/*중간*/
.wp_solution .wpc_list_map .map_cont .lm_bd {
    width: 100%;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt {
    width: 100%;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms {
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
    padding: 30px;
    border-bottom: 1px solid #DDDDDD;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dt {
    font-size: 24px;
    font-weight: var(--font-w600);
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dd {
    color: #707070;
    font-size: 18px;
    font-weight: var(--font-w400);
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv {
    max-width: 190px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90px;
    width: 100%;
    height: 38px;
    font-size: 16px;
    font-weight: var(--font-w400);
    border: 1px solid #000000;
    border-radius: 19px;
    transition: 0.4s ease-in-out;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv01 {
    color: #fff;
    background-color: #000000;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv02 {
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv:hover {
    color: #fff;
    background-color: #eb7498;
    border: 1px solid #eb7498;
    transition: 0.4s ease-in-out;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .rt {
    height: 700px;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .rt > .map_frm {
    width: 100%;
    height: 100%;
}

.wp_solution .wpc_list_map .map_cont .lm_bd > .rt > .map_frm .root_daum_roughmap .wrap_map {
    height: 100%;
}

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont .section.lst {
    display: none;
}


/*하단*/
.wp_solution .wpc_list_map .map_cont .lm_ft {
    width: 100%;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* TYPE01*/

/*--------------------------------------------------------------------------------------------------------------------*/
/*반응형*/
@media (max-width: 992px) {
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt {
        order:2;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .rt {
        height: 300px;
        order:1;
    }
}

@media (max-width: 768px) {
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm > select,
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm > input[type=text]{
        height: 45px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .btn_lm_shc{
        width: 100px;
        height: 45px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li{
        padding:20px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dt{
        font-size: 22px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dd{
        font-size: 16px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv{
        font-size: 14px;
    }
}


@media (max-width: 576px) {
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx{
        flex-direction: column;
        gap:10px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm:nth-child(1),
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .inp_frm:nth-child(2){
        max-width: unset;
        width: 100%;
    }
    .wp_solution .wpc_list_map .map_cont .lm_hd .hd_ir > .inp_bx > .btn_lm_shc {
        max-width: 320;
        width: 100%;
        height: 45px;
    }

    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li{
        flex-direction: column;
        gap:20px;
        padding: 15px 10px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info{
        width: 100%;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv {
        max-width: 100%;
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dt{
        font-size: 18px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_info > dd{
        font-size: 14px;
    }
    .wp_solution .wpc_list_map .map_cont .lm_bd > .lt > .map_itms > li > .itm_mv > .btn_mv {
        max-width: 80px;
        height: 30px;
        font-size: 13px;
    }
}

/**********************************************************************************************************************/

