/* *******************************************************
 * filename : common.css
 * description : 기본 레이아웃 및 컨텐츠 CSS
 * date : 2023-06-10
******************************************************** */

/* layout */
/*=======================================================================================*/

html {
    height: 100%;
    width: 100%;
    min-width: 1360px;
}

body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

#wrap, #app {
    width: 100%;
    height: 100%;
}

#header {
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 9;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);
    min-width: 1360px;
    border-bottom: 1px solid #e4e4e4;
}

.scroll_fixed {
    overflow: hidden;
}

/* scrollbar  */
/*=======================================================================================*/

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-thumb {
    background-color: #b3aba4;
    border-radius: 1px;
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

/* button setting  */
/*=======================================================================================*/

.btn {
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn:active::before {
    -webkit-box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.btn:disabled:active {
    transform: none;
}

/* button color  */
/*=======================================================================================*/

.color_charcoal {
    background: linear-gradient(217deg, #5d646b, #5b5e63);
    color: #fff;
}

.color_charcoal2 {
    background: linear-gradient(217deg, #767c84, #717880);
    color: #fff;
}

.color_brightgray {
    background: #eff0f2;
    border: 1px solid #bec2c5;
}

.color_brightgray2 {
    background: linear-gradient(217deg, #d5dade, #b9c6c8);
    color: #fff;
}

.color_red {
    background: linear-gradient(217deg, #f50a42, #cf0233);
    color: #fff;
}

.color_yellow {
    background: #ffc500;
}

.color_green {
    background: #58A500;
    color: #fff;
}

.color_blue {
    background: #156dd6;
    color: #fff;
}

.color_orange {
    background: linear-gradient(217deg, #e25c17, #ee8712);
    color: #fff;
}

.color_white {
    background: #f6f8fb;
    border: 2px solid #d5d9df;
    color: #67757e;
}


/* font color  */
/*=======================================================================================*/

.t_blue {
    color: #168eea;
}

.t_red {
    color: #e61d1c;
}

/* header  */
/*=======================================================================================*/
.header_inner {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.header_inner .logo {
    font-size: 0;
    line-height: 0;
    width: 90px;
}

/* container */
/*=======================================================================================*/
.container {
    padding-top: 50px;
    height: 100%;
    background: #f8f8f8;
    display: flex;
}

/* menu */
/*=======================================================================================*/
.menu {
    width: 200px;
    height: 100%;
    overflow-y: auto;
    background: #2e3033;
    position: relative;
    border-right: 1px solid #e4e4e4;
}

/* profile_wrap */
.profile_wrap {
    text-align: center;
    padding: 30px 20px;
}

.profile_wrap .pic {
    width: 88px;
    height: 88px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile_wrap .pic .border_line {
    width: 68px;
    height: 68px;
    border-radius: 30px;
    overflow: hidden;
    background: url(../images/BG_USER.png) no-repeat #fff;
}

.profile_wrap .pic .border_line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.profile_wrap .name {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.profile_wrap .email {
    color: #fff;
    margin-bottom: 10px;
}

.profile_wrap .email i {
    display: inline-block;
    vertical-align: middle;

    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}

.profile_wrap .email span {
    display: inline-block;
    vertical-align: middle;
    font-family: "Poppins", sans-serif;
}

.profile_wrap .last_date {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    font-size: 12px;
    margin-bottom: 10px;
}

.profile_wrap .btn_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile_wrap .btn_wrap .btn {
    flex: 1;
    height: 30px;
    line-height: 30px;
    border-radius: 6px;
    font-size: 12px;
}

/* menu */
.menu>ul {
    padding: 20px;
}

.menu>ul>li {
    color: #fff;
    font-size: 18px;
}

.menu>ul>li>a {
    display: block;
    color: #fff;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    position: relative;
}

.menu>ul>li.active>a {
    color: #308dff;
}

.menu>ul>li.active>a::after {
    font-family: "Font Awesome 6 pro";
    content: "\f105";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.menu>ul>li>a:active {
    transform: translateY(1px) scale(0.99);
}

.menu>ul>li>a>i {
    margin-right: 5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}

.menu>ul>li>a>.num {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #483e3c;
    font-size: 11px;
    font-weight: 600;
}

/* ic_new */
.ic_new {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    background: #e61e19;
    font-weight: 500;
    border-radius: 50%;
    margin-left: 5px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
}

.menu_bottom {
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    padding: 0 20px;
}

.menu_bottom .btn {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    height: 50px;
    line-height: 48px;
    color: #fff;
    box-sizing: border-box;
}

/* tab */
/*=======================================================================================*/
.tabs {
    display: flex;
    cursor: pointer;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* tabs_wrap - style01 */
/*=======================================================================================*/
.tabs_wrap {
    margin-left: -30px;
    margin-right: -30px;
    height: calc(100% - 118px);
}

.tabs_wrap .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #e4e4e4;
}

.tabs_wrap .tabs .tab-button {
    font-size: 15px;
    color: #889094;
    min-width: 160px;
    background: none;
    position: relative;
    height: 50px;
    line-height: 50px;
}

.tabs_wrap .tabs .tab-button::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #cccfd2;
}

.tabs_wrap .tabs .tab-button:last-child:after {
    display: none;
}

.tabs_wrap .tabs .tab-button i {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 45%;
    font-size: 10px;
    background: #889094;
    color: #fff;
    font-style: normal;
}

.tabs_wrap .tabs .tab-button.active {
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    color: #156dd6;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
}

.tabs_wrap .tabs .tab-button.active i {
    background: #156dd6;
}

.tabs_wrap .tabs .tab-button.active::after {
    display: none;
}

.tabs_wrap .tabs .tab-button.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background: #f4f8fc;
}

.tabs_wrap .tab-content {
    height: calc(100% - 21px);
}

/* basic_form_element_wrap */
/*=======================================================================================*/

.require::after {
    display: inline-block;
    vertical-align: middle;
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    content: "\f621";
    color: #e2065e;
    padding-left: 3px;
    font-size: 10px;
}

/* form_cont */
.form_wrap {
    margin-bottom: 10px;
}

.form_wrap h4 {
    margin-bottom: 6px;
}

.form_cont_wrap {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form_cont_wrap.nolabel {
    padding-left: 220px;
}

.form_cont_wrap>label {
    display: block;
    min-width: 220px;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}

.form_cont_wrap.nolabel {
    padding-left: 220px;
}

.form_cont_wrap>.form_element_wrap {
    flex: 1;
}

.form_cont_wrap>.form_element_wrap.half {
    flex: 0.5;
}

.form_cont_wrap>.form_element_wrap .form_input.w100 {
    flex: initial;
    width: 100px;
}

.form_element_wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 36px;
}

/* input */
.form_element_wrap .form_input {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    flex: 1;
    padding: 0 15px;
}

.form_element_wrap .form_input:focus {
    border-color: #156dd6;
}

.form_element_wrap .form_input::placeholder {
    color: #889094;
}

.form_element_wrap .form_input:read-only {
    background: #f8f8f8;
}

.form_element_wrap .validation_check_alram {
    border: 2px solid #e8352c;
}

.form_element_wrap .btn {
    height: 36px;
    line-height: 36px;
    border-radius: 10px;
    padding: 0 15px;
}

.form_element_wrap>span {
    padding: 0 8px;
}

.form_element_wrap.iconSet>i {
    font-size: 15px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.form_element_wrap.iconSet .form_input {
    padding-left: 40px;
}

/* input_func */
.input_func {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.input_func>i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    cursor: pointer;
}

.input_func>.txt {
    border-radius: 8px;
    font-size: 12px;
    padding: 3px 8px;
}

.input_func>.txt.red {
    color: #e60c31;
    background: #ffdfdf;
}

/* select */
.form_element_wrap .form_select {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    flex: 1;
    padding-left: 15px;
}

.form_element_wrap.iconSet .form_select {
    padding-left: 40px;
}

.form_element_wrap .form_select:required:invalid {
    color: #889094;
}

.form_element_wrap .form_select option {
    color: #2b2c30;
}

.form_element_wrap .form_select option[value=""][disabled] {
    display: none;
}

.form_element_wrap .form_select:focus {
    border-color: #156dd6;
}

/* textarea */
.form_element_wrap>label {
    display: block;
    min-width: 150px;
    line-height: 1.2;
}

.form_element_wrap .form_textarea {
    flex: 1;
    border: 1px solid #cedde2;
    border-radius: 2px;
    background: #fff;
    padding: 10px 15px;
    box-sizing: border-box;
}

.form_element_wrap .form_textarea:read-only {
    background: #f2f2f2;
}

.form_element_wrap .form_textarea::placeholder {
    color: #bbb3b0;
}

/* validation_check_massage */
.validation_check_massage {
    position: absolute;
    right: 0;
    top: -28px;
    z-index: 99;
    background: #e8352c;
    font-size: 11px;
    color: #fff;
    padding: 3px 10px;
    border-radius: 8px;
}

.validation_check_massage:after {
    border-top: 8px solid #e8352c;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    top: 19px;
    right: 20px;
}

/* input_radio - 기본형 */
/*=======================================================================================*/
.input_radio {
    position: relative;
    display: inline-block;
}

.input_radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.input_radio input[type="radio"]+label {
    display: inline-block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input_radio input[type="radio"]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #726963;
    border-radius: 8px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input_radio input[type="radio"]+label:active:before,
.input_radio input[type="radio"]:checked+label:active:before {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.input_radio input[type="radio"]:checked+label:before {
    background: #e9ecee;
}

.input_radio input[type="radio"]:checked+label:after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #f30334;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* input_radio_button - 버튼형 */
/*=======================================================================================*/
.form_radio_button_wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input_radio_button {
    display: block;
}

.input_radio_button input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input_radio_button input[type="radio"]+label {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #ffffff;
    height: 36px;
    text-align: center;
    border: 1px solid #bccacf;
    box-sizing: border-box;
    min-width: 100px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input_radio_button:first-child input[type="radio"]+label {
    border-radius: 6px 0 0 6px;
}

.input_radio_button:last-child input[type="radio"]+label {
    border-radius: 0 6px 6px 0;
}

.input_radio_button input[type="radio"]:checked+label {
    background: #5c6167;
    border: 1px solid #5c6167;
    color: #fff;
}

/* input_check - 기본형 */
/*=======================================================================================*/
.input_checks {
    display: inline-block;
    vertical-align: middle;
}

.input_checks input {
    display: none;
}

.input_checks label {
    display: block;
    cursor: pointer;
}

.input_checks label em {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_checks label em::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/CHECK_OFF.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_checks input:checked~label em::before {
    background: url(../images/CHECK_ON.png) no-repeat;
    background-size: 100% 100%;
}

.input_checks label span {
    display: inline-block;
    vertical-align: bottom;
}

.input_checks label span.long {
    vertical-align: top;
}

/* contents */
/*=======================================================================================*/
.contents {
    padding: 30px;
    background: #fff;
    position: relative;
    flex: 1;
    height: 100%;
    overflow-y: auto;
}

.contents>.row {
    display: flex;
    gap: 25px;
    height: calc(100% - 453px);
}

.contents>.row>.column {
    flex: 1;
}

/* layer_pop_wrap */
/*=======================================================================================*/
.bg_overay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.layer_pop_wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 92;
    background: #fff;
    border-radius: 10px;
}

.layer_pop_wrap.w700 {
    min-width: 700px;
}

.layer_pop_wrap.w800 {
    min-width: 800px;
}

.layer_pop_wrap.w900 {
    min-width: 900px;
}

.layer_pop_wrap.w1000 {
    min-width: 1000px;
}

.layer_pop_wrap>.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    padding: 0 15px !important;
    border-bottom: 1px solid #e3ebee;
}

.layer_pop_wrap>.title h3 {
    font-size: 15px;
    font-weight: 500;
}

.layer_pop_wrap>.title h3 .ic_description {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
}

.layer_pop_wrap>.title .right .btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 6px;
    background: #e8e8e9;
}

.layer_pop_wrap>.cont {
    padding: 15px 20px;
}

.layer_pop_wrap > .cont > .row {
    display: flex;
    border-bottom: 1px solid #e3dedc;
    box-sizing: border-box;
}

.layer_pop_wrap>.cont>.row>.column {
    padding: 10px 20px;
    flex: 1;
}

.layer_pop_wrap .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    border-top: 1px solid #e3ebee;
}

.layer_pop_wrap .bottom .btn {
    height: 36px;
    line-height: 35px;
    border-radius: 10px;
    padding: 0 20px;
    min-width: 100px;
}

/* ic_favorite */
/*=======================================================================================*/
.ic_favorite {
    display: inline-block;
    color: #d2cdc1;
    cursor: pointer;
}

.ic_favorite.on {
    display: inline-block;
    color: #ffb507;
}

/* ic_description */
/*=======================================================================================*/
.ic_description {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: #156dd6;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    margin-left:5px;
}

.ic_description:active {
    transform: translateY(1px) scale(0.98);
}

/* sidePanel */
/*=======================================================================================*/
#sidePanel {
    position: fixed;
    top: 0;
    left: -20%;
    /* 화면의 1/3 만큼 숨김 */
    width: 20%;
    /* 화면의 1/3 만큼 차지 */
    height: 100%;
    background-color: #156dd6;
    box-shadow: 0px 0 16px rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    z-index: 999;
    color: #fff;
}

#sidePanel>.btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#sidePanel .inner h3 {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

#sidePanel .inner .cont {
    line-height: 1.6;
    word-break: keep-all;
}

/* form_file_uploader */
/*=======================================================================================*/
.form_file_uploader {
    flex: 1;
}

.form_file_uploader .file_uploader_inner {
    display: flex;
    align-items: center;
}

.form_file_uploader .file_uploader_inner input[type="file"] {
    display: none;
}

.form_file_uploader .file_uploader_inner .form_input {
    display: block;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    border: 1px solid #d2cecc;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    flex: .5;
    padding: 0 15px;
    color: #889094;
}

.form_file_uploader .file_uploader_inner .btn {
    height: 36px;
    line-height: 36px;
    border-radius: 10px;
    padding: 0 15px;
}

.form_file_uploader .file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 5px;
}

.form_file_uploader .file-list li {
    line-height: 30px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #d2cecc;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form_file_uploader .file-list li .btn_wrap .btn {
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 18px;
    height: 20px;
}


.modity_txt {
    background: #FFC401;
    border-radius: 4px;
}

/* page_title */
/*=======================================================================================*/
.page_title {
    display: flex;
    align-items: last baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.page_title h2 {
    font-size: 20px;
    font-weight: 500;
}

.page_title span {
    color: #889094;
}