.feedback{
    position: relative;
    z-index: 1001;
    display: none;
}
.feedback .feedback-mask {
    background: #000;
    opacity: 0.5;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.feedback .feedback-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #ffffff;
    padding: 30px 50px;
    border-radius: 6px;
}

.feedback .close-btn {
    position: absolute;
    top: 25px;
    right: 50px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}
.feedback .close-btn img{
    width: 12px;
    height: 12px;
}
.feedback .tab {
    text-align: center;
    margin-bottom: 22px;
}

.feedback .tab .tab-item {
    display: inline-block;
    color: #000000;
    border-bottom: solid 3px #fff;
    margin: 0 21px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.feedback .tab .tab-item.active {
    color: #004787;
    border-bottom: solid 3px #004787;
}
.feedback .feedback-form-ovh{
    width: 710px;
    max-height: calc(100vh - 200px);
    overflow: hidden;
}
.feedback #feedback-form{
    width: 740px;
    overflow-y: scroll;
    position: relative;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
}
.feedback .feedback-form {
    margin-top: 18px;
    width: 660px;
}

.feedback .input-box {
    width: 100%;
    position: relative;
    margin-top: 14px;
}

.feedback .input-box .label {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    color: #000000;
    left: 0;
    top: 0;
    text-align: justify;
    width: 90px;
}

.feedback .input-box .label:after {
    content: ' ';
    display: inline-block;
    width: 100%;
}

.feedback .input-box .label .red {
    color: #e50011;
}

.feedback .input-box .value {
    margin-left: 100px;
    display: flex;
    flex-wrap: wrap;
}

.feedback .input-box .value .value-btn {
    display: inline-block;
    background: #eeeeee;
    color: #000000;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    border: solid 1px #eeeeee;
    height: 32px;
    line-height: 30px;
    margin-right: 21px;
    width: 131px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feedback .input-box .value .value-btn:nth-child(3n) {
    margin-right: 0;
}

.feedback .input-box .value .value-btn.active {
    color: #004787;
    border: solid 1px #004787;
    background: #ffffff;
}
.feedback .input-box .value .value-btn.active::before{
    width: 30px;
    height: 30px;
    background-color: #004787;
    content: ' ';
    transform: rotate(45deg);
    right: -15px;
    bottom: -15px;
    display: block;
    position: absolute;
}
.feedback .input-box .value .value-btn.active::after{
    content: ' ';
    background: url(../../img/feedback/icon-right.png) center center no-repeat;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: 3px;
    right: 2px;
    display: block;
}
.feedback .input-box .value .value-btn:last-child {
    margin-right: 0;
}

.feedback .input-box .value .input,
.feedback .input-box .value .textarea-box {
    width: 584px;
    padding: 6px 12px;
    line-height: 25px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #999999;
}

.feedback .input-box .value .textarea-box .textarea {
    font-size: 14px;
    outline: none;
    resize: none;
    border: none;
    width: 100%;
    height: 100px;
}

.feedback .input-box .value .textarea-box .textarea-tips {
    color: #999999;
    font-size: 14px;
    text-align: right;
}

.feedback .input-box .value .tips {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 25px;
    width: 100%;
}

.feedback .btn-box {
    margin-top: 26px;
    text-align: center;
}

.feedback .btn-box .cancel,
.feedback .btn-box .submit {
    background: #eeeeee;
    height: 36px;
    width: 120px;
    display: inline-block;
    margin: 0 25px;
    color: #000000;
    font-size: 14px;
    text-align: center;
    border: none;
    border-radius: 4px;
}

.feedback .btn-box .submit {
    background: #004889;
    color: #ffffff;
}

.feedback .feedback-table {
    width: 100%;
    border-collapse: collapse;
    line-height: 22px;
    font-size: 14px;
    min-width: 820px;
}

.feedback .feedback-table th {
    background: #eff1f2;
    color: #161718;
    padding: 12px 8px;
    font-weight: normal;
    border-right: 1px solid #eff1f2;
}

.feedback .feedback-table th:first-child {
    border-left: 1px solid #eff1f2;
}

.feedback .feedback-table tr td {
    border-bottom: 1px solid #c3c3c3;
    border-right: 1px solid #c3c3c3;
    padding: 12px 8px;
    text-align: center;
}

.feedback .feedback-table tr td .btn {
    cursor: pointer;
    color: #1677ff;
}

.feedback .feedback-table tr td .type-PENDING {
    color: #eda068;
}
.feedback .feedback-table td .content{
    width: 300px;
    display: -webkit-box;    
    -webkit-box-orient: vertical;    
    -webkit-line-clamp: 2;    
    overflow: hidden;
    position: relative;
}
.feedback .feedback-table td .content:hover{
    display: block;
    overflow: initial;
}
.feedback .feedback-table td .content:hover span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    width: 310px;
    z-index: 999;
    margin-top: -0.5px;
    box-shadow: 0 2px 3px 1px #eee;
}
.feedback .feedback-table td:first-child {
    border-left: 1px solid #c3c3c3;
}
.feedback .feedback-list .no-data{
    text-align: center;
    background-image: url(../../img/feedback/no-list.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    width: 628px;
    padding-top: 258px;
    font-size: 14px;
    color: #9e9e9e;
    margin: 0 auto;
}
.feedback .feedback-list-ovh .pages-box{
    position: absolute;
    bottom: 0;
    right: 0;
}
.feedback .feedback-list-ovh{
    max-height: calc(100vh - 200px);
    overflow: hidden;
    max-width: 820px;
    position: relative;
}
.feedback .feedback-list-ovh .pages-box {
    margin-top: 20px;
    text-align: right;
    display: none;
}
.feedback .feedback-list-box{
    overflow-y: scroll;
    padding-right: 30px;
    overflow-x: hidden;
    width: 837px;
    max-height: calc(100vh - 260px);
    margin-bottom: 60px;
}
.feedback .feedback-list-ovh .pages-box span {
    display: inline-block;
    margin-left: 8px;
    color: #999999;
}

.feedback .feedback-list-ovh .pages-box span.btn {
    cursor: pointer;
}

.feedback .feedback-list-ovh .pages-box span.btn,
.feedback .feedback-list-ovh .pages-box .input {
    border: 1px solid #c0c0c0;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 4px;
    font-size: 16px;
}

.feedback .feedback-list-ovh .pages-box span.pre,
.feedback .feedback-list-ovh .pages-box span.next {
    color: #161819;
}

.feedback .feedback-list-ovh .pages-box span.num.active {
    background: #004889;
    border: 1px solid #004889;
    color: #fff;
}

.feedback .feedback-list-ovh .pages-box .input {
    height: 34px;
    line-height: 34px;
    color: #004787;
}

.feedback .feedback-list-ovh .pages-box span.sumbit {
    color: #004889;
    border: 1px solid #004889;
    width: 61px;
}

.feedback .detail-hid{
    max-height: calc(100vh - 200px);
    overflow: hidden;
    width: 760px;
}
.feedback .detail-ovh{
    overflow-y: scroll;
    overflow-x: hidden;
    width: 777px;
    max-height: calc(100vh - 200px);
}
.feedback .detail-ovh .no-data{
    text-align: center;
    background-image: url(../../img/feedback/no-list.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-top: 258px;
    font-size: 14px;
    color: #9e9e9e;
    margin: 0 auto;
}
.feedback .detail .detail-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 10px;
}

.feedback .detail .detail-list .list-item {
    background: #f8f8f8;
    border-radius: 5px;
    padding: 15px 18px;
    font-size: 12px;
    color: #999999;
    position: relative;
    margin-left: 19px;
    margin-bottom: 14px;
    padding-right: 138px;
}

.feedback .detail .detail-list .list-item::before {
    content: ' ';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d3d3d3;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.feedback .detail .detail-list .list-item::after {
    content: ' ';
    clear: both;
    position: absolute;
    background: #004787;
    width: 1px;
    top: -14px;
    left: -14px;
    bottom: 0;
    border-radius: 0.5px;
}

.feedback .detail .detail-list .list-item:first-child::before {
    background: #004787;
}

.feedback .detail .detail-list .list-item:first-child::after {
    top: 0;
    background: linear-gradient(to bottom,#fff 0%, #fff 50%, #004787 50%,#004787 100%);
}
.feedback .detail .detail-list .list-item:last-child::after {
    background: linear-gradient(to bottom,#004787 0%, #004787 50%, #fff 50%,#fff 100%);
    bottom: -3px;
}
.feedback .detail .detail-list .list-item.one-child::after{
    display: none;
}
.feedback .detail .detail-list .list-item .name {
    color: #161819;
    font-size: 14px;
    display: inline-block;
    margin-right: 30px;
}

.feedback .detail .detail-list .list-item .time {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.feedback .detail .detail-lalbe .item {
    position: relative;
    margin-bottom: 8px;
    font-size: 13px;
}

.feedback .detail .detail-lalbe .item span {
    position: absolute;
    color: #999999;
    width: 52px;
    text-align: justify;
}

.feedback .detail .detail-lalbe .item span:after {
    content: ' ';
    display: inline-block;
    width: 100%;
}

.feedback .detail .detail-lalbe .item div {
    margin-left: 68px;
    color: #000000;
    min-height: 18px;
}

.feedback .detail .detail-lalbe .item div img {
    width: 68px;
    height: 68px;
    border-radius: 2px;
    margin-right: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.feedback .detail .btn-box {
    text-align: right;
}

.feedback .detail .btn-box .btn {
    cursor: pointer;
    height: 36px;
    padding: 0 18px;
    display: inline-block;
    margin: 0 25px;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background: #004889;
    color: #ffffff;
}

.feedback .upload-img {
    display: flex;
    align-items: center;
}

.feedback .upload-img .wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.feedback .upload-img .wrap .img-box {
    width: 116px;
    height: 116px;
    position: relative;
    text-align: center;
    border: 1px solid #999;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.feedback .upload-img .wrap .img-box .imgcont {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feedback .upload-img .wrap .img-box .removeImg-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.feedback .upload-img .upload-img-btn {
    width: 116px;
    height: 116px;
    position: relative;
    text-align: center;
    border: 1px solid #999;
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.feedback .total-fee {
    font-size: 14px;
    color: #e50011;
    line-height: 25px;
}

.feedback .upload-img .upload-img-btn #uploadImg,.feedback .upload-img .upload-img-btn #uploadImg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 116px;
    height: 116px;
    z-index: 2;
    opacity: 0;
}

.feedback .upload-img .upload-img-btn .icon {
    width: 18px;
    height: 18px;
    margin-top: 37px;
}

.feedback .upload-img .upload-img-btn .txt {
    font-size: 14px;
    color: #9e9e9e;
    width: 60px;
    margin-top: 5px;
}