b {
    font-weight: bold;
}

.orange {
    color: #ff8704;
}

[v-cloak]{
    display: none !important;
}

#app,
.container {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.input_container {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

header {
    width: 100%;
    height: 70px;
    background: #fff;
    text-align: center;
    line-height: 70px;
    box-sizing: border-box;
    padding: 0 20px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px #f0f1f2;
    position: relative;
    z-index: 2;
}

header .left_info,
header .right_user {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: rgb(119, 119, 119);
    font-size: 14px;
}
.right_user {
    /*cursor: pointer;*/
}
.right_user .btn_box {
    margin-right: 15px;
}
.ant-dropdown-link.ant-dropdown-trigger {
    height: 40px;
    line-height: 40px;
}
header .left_info .save_info {
    margin-left: 20px;
}

main {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.common_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% + 16px);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
    /*padding-left: 255px;*/
}

.common_nav {
    width: 260px;
    height: 100%;
    background: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*position: fixed;*/
    left: 0;
    z-index: 1;
    /*top: 70px;*/
    box-sizing: border-box;
    overflow-y: auto;
}

.admin_common_nav {
    width: 240px;
}

.left_info h1 {
    text-align: center;
    color: #10479e;
    font-weight: bold;
    font-size: 28px;
    cursor: default;
    font-family: arial;
    margin-left: 10px;
}

.left_info span {
    text-align: center;
    margin-left:30px;
    color: #fa8c16;
    font-weight: bold;
    font-size: 14px;
    cursor: default;
    font-family: arial;
}
.left_info img {
    height: 35px;
}
.nav_content {
    width: 100%;
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;    
}

.nav_link {
    background: rgb(242, 242, 242);
    height: 30px;
    box-sizing: border-box;
    padding-left: 20px;
    text-align: left;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6);
    width: 100%;
}

.nav_link:hover,
.nav_sub_link:hover {
    color: #1890FF;
}

.nav_sub_link {
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    padding-left: 20px;
    text-align: left;
    font-size: 14px;
    width: 100%;
    color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    position: relative;
}
.nav_sub_link svg {
    margin-right: 10px;
}
.nav_son_link {
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    padding-left: 60px;
    text-align: left;
    font-size: 14px;
    position: relative;
    width: 100%;
    color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    border-right: 3px transparent solid;
    text-overflow: ellipsis;
    overflow: hidden;
}

.nav_sub_link.choose,
.nav_son_link.choose {
    background: #e6f7ff;
    color: #1890FF;
}
.nav_sub_link.choose::after {
    position: absolute;
    content:'';
    right: -2px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #1890ff;
}
.common_content {
    width: calc(100% - 240px);
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 240px;
    box-sizing: border-box;
    padding: 10px;
    /* background: rgb(240, 242, 245); */
}

.admin_common_content {
    width: calc(100% - 260px);
    left: 240px;
}

.common_box {
    width: 100%;
    min-height: 100%;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px 30px 30px 10px;
}

.common_title {
    width: 100%;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    font-size: 20px;
    font-family: '思源黑体 CN Bold', '思源黑体 CN Regular', '思源黑体 CN';
    cursor: default;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    padding-left: 20px;
}

.common_sub_title {
    width: 100%;
    text-align: left;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 600;
    font-size: 14px;
    font-family: '思源黑体 CN Bold', '思源黑体 CN Regular', '思源黑体 CN';
    cursor: default;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    margin-top:16px;
    padding-left: 20px;
}

.common_form {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    display: flex;
}
.common_form_input_all {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.common_form_input_all>.common_form_label {
    width: 120px;
}

.common_form_input_all>.common_form_box {
    width: calc(100% - 120px);
    height: 32px;
}

.common_form_input_3 {
    width: 32%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_form_input_3_2 {
    width: 66%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.common_form_input_3_2>.common_form_label {
    width: 120px;
}
.common_form_input_3_2>.common_form_box {
    width: calc(100% - 120px);
    height: 32px;
}
.common_form_input_3_1 {
    width: 32%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.common_form_input_3_1>.common_form_label {
    width: 120px;
}
.common_form_input_3_1>.common_form_box {
    width: calc(100% - 120px);
    height: 32px;
}
.common_form_label {
    color: rgba(0, 0, 0);
    font-size: 14px;
    font-weight: 550;
    text-align: justify;
    font-style: normal;
    /* white-space: nowrap; */
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 15px;
    line-height: 22px;
}

.common_form_input_3>.common_form_label {
    width: 120px;
}

.common_form_label i:hover,
.special_i:hover {
    color: #1890FF;
    cursor: pointer;
}

.common_form_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.common_form_input_3>.common_form_box {
    width: calc(100% - 120px);
    height: 32px;
}

.common_form_input_2 {
    width: 49%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_form_input_2>.common_form_label {
    width: 140px;
}

.common_form_input_2>.common_form_box {
    width: calc(100% - 140px);
    height: 32px;
}



/* 输入框 2个 tips 和input 各50% begin */
.common_form_input_2extend {
    width: 49%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_form_input_2extend>.common_form_label {
    width: 250px;
}

.common_form_input_2extend>.common_form_box {
    width: calc(100% - 250px);
    height: 32px;
}
/* 输入框 2个 tips 和input 各50% end */

.common_form_input_sp {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_form_input_sp>.common_form_label {
    width: 140px;
}

.common_form_input_sp>.common_form_box {
    width: calc(100% - 140px);
    height: 32px;
}


.common_form_input_1 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.common_form_area {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    /*height: 165px;*/
    display: flex;
}

.common_form_input_1>.common_form_label {
    width: 100%;
    height: 48px;
    line-height: 48px;
}

.common_form_input_1>.common_form_box {
    width: 100%;
    padding-left: 20px;
}

.common_form_table {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    min-height: 125px;
    display: flex;
}

.common_form_table .common_form_box {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.special_form {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    display: flex;
}

.special_form_input {
    width: 49%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special_form_input>.common_form_label {
    width: 120px;
}

.special_form_input>.special_form_box {
    width: calc(100% - 120px);
    height: 32px;
}

.special_form_input>.special_form_box.special {
    width: calc(100% - 200px);
}

/*
.add_new_tr {
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    border: 1px dashed #ccc;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}

.add_new_tr:hover {
    border-color: skyblue;
    color: skyblue;
}
*/
/*
.add_new_tr {
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    border: 1px dashed #409EFF; 
    background-color: #ecf5ff;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #1890FF;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.add_new_tr:hover {
    border-color: #1890FF;
    background-color: #e8f4ff;
    color: #1069D9;
}
*/
.add_new_tr {
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    border: 1px dashed #ccc;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    
    /* 添加斜体 */
    font-style: italic;
}

.add_new_tr:hover {
    border-color: skyblue;
    color: skyblue;
}

.hr {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0 10px 0;
    box-sizing: border-box;
    padding-left: 20px;
    background-clip: content-box;
}

/*
.common_desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Microsoft YaHei Regular', 'Microsoft YaHei';
    font-weight: 400;
    line-height: 22px;
    cursor: default;
    margin-bottom: 10px;
    padding-left: 20px;
    box-sizing: border-box;
}
*/
.common_desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Microsoft YaHei Regular', 'Microsoft YaHei';
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.3px;
    cursor: default;
    margin-bottom: 12px;
    padding: 12px 24px;
    background-color: #f9f9f9;
    border-left: 4px solid #1890FF;
    border-radius: 4px;
    box-sizing: border-box;
}

.common_desc.with-icon {
    display: flex;
    align-items: start;
    gap: 10px;
    padding-left: 40px;
}

.common_desc .desc-icon {
    width: 16px;
    height: 16px;
    fill: #1890FF;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 可选：颜色变体 */
.common_desc.info { color: #1890FF; border-left-color: #1890FF; }
.common_desc.success { color: #52c41a; border-left-color: #52c41a; }
.common_desc.warning { color: #faad14; border-left-color: #faad14; }
.common_desc.danger { color: #ff4d4f; border-left-color: #ff4d4f; }

.common_upload {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 35px;
}

.common_upload>.common_form_label {
    width: 280px;
}

.common_upload>.common_form_label.special {
    width: 100%;
}

.common_dele {
    color: #ccc;
}

.common_dele:hover {
    color: red;
    cursor: pointer;
}

.ant-table-wrapper {
    width: 100%;
}

.apply_content {
    box-sizing: border-box;
    padding: 15px;
}

.tip_p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 25px !important;
}

.form-data-table {
    width: 100%;
    border-collapse: collapse;
}

.form-data-table th {
    font-size: 13px;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    padding: 10px 5px;
    vertical-align: middle;
    background: #fafafa;
}

.form-data-table td {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    padding: 5px 3px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.form-attachments-table {
    width: calc(100% - 20px);
    margin-left: 20px;
    line-height: 30px;
    font-size: 14px;
}

.form-attachments-table .status {
    text-align: center;
}

.form-attachments-table .operations {
    width: 100px;
    text-align: center;
}

.text-label {
    color: rgba(0, 0, 0, 0.847);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
    width:120px;
    padding-left: 20px;
    padding-right: 15px;
    line-height: 22px;
    text-align:justify;
    text-justify:distribute-all-lines;/*ie6-8*/
    text-align-last:justify;/* ie9*/
    -moz-text-align-last:justify;/*ff*/
    -webkit-text-align-last:justify;/*chrome 20+*/
}
@media screen and (-webkit-min-device-pixel-ratio:0){/* chrome*/
    .text-label:after{
        content:".";
        display: inline-block;
        width:100%;
        overflow:hidden;
        height:0;
    }
}

.search_box{
    display: flex;
    justify-content: flex-start;
    padding:10px 10px 0 10px;
}

.hint-text {
    font-size: 10px;
    color: grey;
}