/* 头部 */
header{
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 88px;
    background: #982D30;
    box-sizing: border-box;
    padding: 0 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo-box{
    height: 48px;
    width: 437px;
}
header .user-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
header .avatar{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 4px;
}
header .user-box a{
    margin-left: auto;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
/* 内容区域 */
.login-container{
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: #FAF8F2;
}
.bg-left{
    width: 516px;
    height: 1033px;
    position: absolute;
    left: 0;
    top: -88px;
}
.bg-right{
    width: 516px;
    height: 1000px;
    position: absolute;
    right: 0;
    top: -88px;
}
.login-wrap{
    width: 516px;
    height: 516px;
    background-color: #fff;
    border-radius: 8px;
    margin: 148px auto 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 48px;
}
.login-title{
    margin: 0 auto 44px;
    font-weight: bold;
    font-size: 24px;
    color: #0E121B;
    text-align: center;
}
.login-form .form-item{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E2E4E9;
    border-radius: 4px;
    position: relative;
    box-sizing: border-box;
    padding: 16px;
    margin-bottom: 24px;
}
.login-form .form-right{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.login-form .input-box{
    display: flex;
    align-items: center;
    flex:1;
}
.login-form .input-box .input-icon{
    width: 24px;
    height: 24px;
    margin-right: 14px;
}
.login-form .input-box input::placeholder{
    font-weight: 400;
    font-size: 18px;
    color: #999999;
}
.login-form .input-box input{
    font-weight: 400;
    font-size: 18px;
    color: #333;
}
.code-btn{
    font-weight: 400;
    font-size: 18px;
    color: #043995;
    cursor: pointer;
}
.error-info{
    position: absolute;
    height: 24px;
    font-size: 14px;
    color: red;
    bottom: -24px;
    left: 54px;
    line-height: 24px;
    display: none;
}
.error-left-16{
    left: 16px;
}
.error-info.show{
    display: block;
}
.login-form .code-img{
    width: 90px;
    height: 30px;
}
.refresh-btn{
    display: flex;
    align-items: center;
}
.refresh-btn .icon-refresh{
    width: 15px;
    height: 15px;
    margin: 0 12px;
    cursor: pointer;
}
.refresh-btn span{
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
}
.login-submit-btn{
    width: 100%;
    height: 68px;
    background-color: #7C3030;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    border-radius: 4px;
    margin-top: 44px;
    cursor: pointer;
}
/* 内容 */
.container{
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 88px;
    padding-bottom: 88px;
}
.info-top{
    display: flex;
    align-items: center;
    height: 156px;
    margin: 24px 0;
}
.info-top .info-avatar{
    width: 256px;
    height: 156px;
    margin-right: 12px;
}
.info-top .title{
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}
.info-top .sub-title{
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}
.step-list{
    width: 1200px;
    height: 72px;
    display: flex;
    align-items: center;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}
.step-arrow{
    position: relative;
    width: 12px;
    height: 48px;
    overflow: hidden;
}
.step-arrow::before{
    content:"";
    position: absolute;
    width: 1px;
    height: 48px;
    background: #EAEAEA;
    right: 0;
    bottom:24px;
    transform: rotate(-26deg);
    transform-origin: right bottom;
}
.step-arrow::after{
    content:"";
    position: absolute;
    width: 1px;
    height: 48px;
    background: #EAEAEA;
    right: 0;
    top:24px;
    transform: rotate(26deg);
    transform-origin: right top;
}
.step-item{
    height: 48px;
    width: 288px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-item .number{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    box-sizing: border-box;
    border: 1px solid #999999;
}
.step-item .number.active{
    background-color: #7C3030;
    color: #fff;
    border: none;
}
.step-item .step-title{
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    margin-left: 12px;
}
.step-form{
    width: 700px;
    margin: 0 auto;
}
.step-form .form-title{
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-title-left{
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}
.form-title-right{
    font-weight: 400;
    font-size: 14px;
    color: #7C3030;
}
.step-form .form-item{
    display: flex;
    align-items: center;
    margin-bottom: 54px;
    height: 36px;
}
.step-form .form-item-text{
    display: flex;
    align-items: center;
    margin-bottom: 54px;
    height: 36px;
}
.step-form .form-label{
    width: 136px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    text-align: right;
    position: relative;
    margin-right: 25px;
}
.step-form .form-input,.step-form .form-text{
    min-width: 320px;
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid #E2E4E9;
    border-radius: 3px;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 8px;
    position: relative;
    flex:1;
}
.step-form .form-text{
    border: none;
    padding-left: 0;
}
.form-item-tip{
    position: absolute;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    top: 44px;
    left: 0;
}
.step-form .form-input input::placeholder,.step-form .form-input .placeholder,.step-form .form-input input:disabled{
    font-size: 14px;
    color: #999999;
    font-weight: 400;
}
.step-form .form-input input,.step-form .form-input .input,.step-form .form-text{
    font-size: 14px;
    color: #333;
    font-weight: 400;
    flex:1;
}
/* 不通过样式 */
.step-form .form-text .reject{
    color: #7C3030;
}
/* 审核中样式 */
.step-form .form-text .auditing{
    color: #C38602;
}
/* 审核通过样式 */
.step-form .form-text .success{
    color: #177F5A;
}
.step-form .form-input .input.success{
    color: #043995;
}
.step-form .form-input input[type=file]{
    display: none;
}
.icon-success{
    position: absolute;
    right: 8px;
    width: 16px;
    height: 16px;
    display: none;
}
.form-label::after{
    content:"*";
    color: #7C3030;
    position: absolute;
    right: -8px;
}
.step-form .form-right{
    margin-right: auto;
    margin-left: 16px;
    flex:1;
    display: flex;
    align-items: center;
}
.upload-btn{
    width: 88px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #E2E4E9;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    margin-right: 16px;
}
.upload-btn.hide{
    display: none;
}
.del-btn-text{
    font-weight: 400;
    font-size: 14px;
    color: #043995;
    cursor: pointer;
    outline: none;
    border: none;
    background: none;
    display: none;
}
.del-btn-text.show{
    display: block;
}
.step-submit-box{
    border-top: 1px solid #EAEAEA;
    width: 1200px;
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-table-box{
    display: flex;
}
.form-table{
    width: 513px;
    border-collapse: collapse;
}
.form-table th{
    height: 44px;
    border: 1px solid #E1E4EA;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    text-align: center;
    padding: 0 24px;
}
.form-table td{
    height: 44px;
    border: 1px solid #E1E4EA;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    text-align: center;
    padding: 0 24px;
}
.audit-title-box{
    height: 150px;
    width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #EAEAEA;
}
.audit-title{
    font-weight: bold;
    font-size: 24px;
    color: #333;
    height: 36px;
}
.audit-sub-title{
    height: 25px;
    font-weight: 400;
    font-size: 17px;
    color: #999999;
}
.table-tab-box{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.audit-table{
    width: 1200px;
    border-collapse: collapse;
}

.audit-table th{
    font-weight: 400;
    font-size: 16px;
    color: #999;
}
.audit-table td{
    font-weight: 400;
    font-size: 16px;
    color: #333;
}
.audit-table th,.audit-table td{
    border: 1px solid #E1E4EA;
    height: 44px;
    line-height: 44px;
    text-align: center;
}
.audit-table .progress-text{
    color: #7C3030;
}
.audit-table .audit-btn{
    color: #043995;
    cursor: pointer;
}
.audit-table .audit-status{
    position: relative;
}
.audit-table .audit-status::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C38602;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}
.audit-table .audit-status-end::after{
    background: #7C3030;
}

/* 审核页面*/
.auditing-title-box{
    height: 132px;
    display: flex;
    align-items: center;
}
.auditing-title{
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}
.auditing-tag{
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    box-sizing: border-box;
    padding: 4px 10px;
    background:#7C3030;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}
.audit-cutdown{
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}
.audit-cutdown span{
    margin-left: 10px;
}
.audit-cutdown .time{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EDE7E7;
    color: #7C3030;
    font-size: 40px;
    font-weight: bold;
    padding: 10px;
}
.page-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}
.page-info-box{
    display: flex;
    align-items: center;
}
.page-info-box span{
    font-weight: 400;
    font-size: 16px;
    color: #999999;
}
.page-info-box .brown-text{
    color: #7C3030;
    margin-right: 16px;
}
.colon{
    margin:0 4px;
}
.page-info-box .black-text{
    color: #333333;
}
.page-num-box{
    display: flex;
    align-items: center;
}
.current-page{
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}
.page-btn-box{
    margin-left: 24px;
    color: #999;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.page-btn-box .pageNum{
    border: 1px solid #E7E7E7;
    width: 48px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin: 0 8px;
}
.pageNum::placeholder{
    color: #999;
}
.auditing-table{
    width: 960px;
    margin: 0 auto 48px;
}
.auditing-item{
    height: 56px;
    display: flex;
    align-items: center;
}

.auditing-left{
    width: 192px;
    height: 56px;
    border: 1px solid #E1E4EA;
    border-right: none;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    box-sizing: border-box;
}
.auditing-left .required{
    position: relative;
}
.auditing-left .required::after{
    content: '*';
    position: absolute;
    right: -7px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7C3030;
}
.auditing-item .auditing-left.black{
    color: #333;
}
.auditing-right{
    flex:1;
    height: 56px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 24px;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    border: 1px solid #E1E4EA;
    border-bottom: none;
}
.auditing-item .auditing-right.center{
    text-align: center;
    justify-content: center;
}
.auditing-item-end{
    border-bottom:1px solid #E1E4EA;
}
.auditing-reason-item{
    height: 104px;
    border-bottom: 1px solid #E1E4EA;
}
.auditing-reason-item .auditing-left{
    height: 100%;
}
.auditing-reason-item .auditing-right{
    padding: 16px 24px;
    height: 100%;
}
.auditing-right a{
    font-weight: 400;
    font-size: 16px;
    color: #043995;
}
.input-radio-box{
    height: 100%;
    display: flex;
    align-items: center;
}
.input-radio-item{
    margin-right: 24px;
    display: flex;
    align-items: center;
}
.input-radio-item input{
    opacity: 0;
}
.input-radio-item input:checked + label::after{
    display: block;
}
.input-radio-item label{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-left: 8px;
    cursor: pointer;
    position: relative;
}
.input-radio-item label::before{
    content:"";
    position: absolute;
    width: 16px;
    height: 16px;
    left: -24px;
    border: 2px solid #7C3030;
    border-radius: 50%;
    box-sizing: border-box;
    top:50%;
    transform: translateY(-50%);
}
.input-radio-item label::after{
    content:"";
    position: absolute;
    width: 8px;
    height: 8px;
    left: -20px;
    top:50%;
    transform: translateY(-50%);
    background-color: #7C3030;
    border-radius: 50%;
    display: none;
}
.reason-box{
    width: 100%;
    height: 100%;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    outline: none;
    border: none;
    resize: none;
}
.reason-box::placeholder{
    color: #999999;
}
.auditing-btn-box{
    width: 100%;
    height: 88px;
    position: fixed;
    bottom: 0;
    background: #FFFFFF;
    box-shadow: 0px -2px 4px 0px rgba(14,18,27,0.03), 0px -6px 10px 0px rgba(14,18,27,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}
.auditing-prev-btn,.auditing-next-btn{
    width: 170px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #982D30;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
}
.auditing-prev-btn{
    color: #982D30;
    border: 1px solid #982D30;
}
.auditing-next-btn{
    background: #982D30;
    color: #FFFFFF;
    margin-left: 48px;
}
.auditing-back-btn{
    width: 170px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
    color: #982D30;
    border: 1px solid #982D30;
    margin-left: 48px;
}
.auditing-rule{
    height: 74px;
    width: 960px;
    margin: 48px auto 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #982D30;
    box-sizing: border-box;
    padding: 0 24px;
}
.auditing-rule-title{
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}
.auditing-sm{
    font-weight: 400;
    font-size: 12px;
    color: #333;
    margin-right: auto;
}
.auditing-form{
    width: 960px;
    margin: 0 auto;
    padding-bottom: 32px;
}
.auditing-form-item{
    border-bottom: 1px solid #E1E4EA;
    margin-bottom: 32px;
    padding-bottom: 32px;
}
.auditing-form-item:last-child{
    border-bottom: none;
    padding-bottom:0;
}
.auditing-item-title{
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    padding-left: 11px;
    position: relative;
    display: flex;
    align-items: center;
}
.auditing-item-title::before{
    content:"";
    position: absolute;
    width: 3px;
    height: 16px;
    background: #982D30;
    left: 0;
    top:50%;
    transform: translateY(-50%);
}
.auditing-input-box{
    margin: 20px 0;
    display: flex;
    align-items: center;
    height: 36px;
}
.auditing-input-label{
    width: 56px;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-right: 16px;
}
.auditing-input{
    width: 200px;
    height: 36px;
    border: 1px solid #E1E4EA;
    border-radius: 4px;
    padding-left: 12px;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}
.auditing-input::placeholder{
    color: #999999;
}
.auditing-input-unit{
    margin-left: 12px;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}
.auditing-item-rule{
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    display: flex;
}
.auditing-rule-label{
    margin-right: 16px;
}
.auditing-rule-item{
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.auditing-rule-scare{
    position: relative;
    margin-right:10px;
    width: 82px;
    border-right: 1px solid #EDE7E7;
}
.auditing-input-box-block{
    margin-bottom: 0;
}
.auditing-input-block{
    width: 100%;
}
.step-submit-btn:disabled{
    background-color: #999;
}
.auditing-sum-score{
    font-size: 20px;
    color: #DF2C42;
    margin: 0 60px 0 20px;
}



/* 分页组件 */
.page-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 0;
}

.page-box .input {
    width: 50px;
    height: 30px;
}

.page-box .select {
    width: 100px;
    height: 30px;
}

.page-left {
    display: flex;
    align-items: center;
}

.page-right {
    display: flex;
    align-items: center;
}

.page-left-num {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #333;
    background-color: #FBF3F3;
    cursor: pointer;
}

.page-left-num.active {
    background-color: #982D30;
    color: #fff;
}

.page-arrow-left, .page-arrow-right {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #333;
    background-color: #FBF3F3;
    position: relative;
}

.page-arrow-right::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.page-arrow-left::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-top: 2px solid #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.page-box .select-option-box {
    top: 0;
    transform: translateY(calc(-100% - 10px));
}

.audit-back{
    position: absolute;
    width: 1200px;
    text-align: right;
    color: #979797;
    font-size: 16px;
}
.audit-back .back-btn{
    padding: 8px 20px;
    background-color: #982D30;
    color: #FFFFFF;
    font-size: 14px;
}