.integral{
    background-color: white;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
    padding-bottom: 20px;
}
.tabs{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.tabs .item{
    font-family: 'phr';
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
}
.tabs .item>div{
    display: none;
    width: 100%;
    height: 2px;
    background-color: #003399;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.tabs .item.active{
    font-family: 'phb';
    color: #003399;
}
.tabs .item.active>div{
    display: block;
}
table{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
table tr{
    height: 45px;
}
table th{
    background-color: #EEF4FC;
    text-align: left;
    padding: 0 20px;
    font-family: 'phr';
    font-weight: normal;
    font-size: 12px;
    color: #333333;
}
table th:last-child{
    /* text-align: center; */
}
table td{
    padding-left: 20px;
    font-family: 'phr';
    font-size: 12px;
    color: #333333;
    border-bottom: 1px solid #F3F3F3;
}
.noResult{
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
}
.noResult>div{
    width: 40px;
    height: 40px;
    background: url('../../images/noIntegral.png') center no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-bottom: 10px;
}
.noResult>p{
    width: 100%;
    font-family: 'phr';
    font-size: 12px;
    line-height: 16px;
    color: #666666;
    text-align: center;
}

.jifenStatus{
    padding-right: 20px;
}
.jifenStatus>div{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.jifenStatus>div>p{
    font-family: 'phr';
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}
.jifenStatus>div>div{
    width: 16px;
    height: 16px;
    margin-left: 5px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    position: relative;
    background: url('../../images/help1.png') center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.jifenStatus>div>div:hover{
    background: url('../../images/help2.png') center no-repeat;
    background-size: 100% 100%;
}
.jifenStatus>div>div>span{
    display: none;
    width: 16px;
    height: 16px;
    background: url('../../images/tri.png') center bottom no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 20;
}
.jifenStatus>div>div>p{
    display: none;
    width: 240px;
    padding: 10px 16px;
    background-color: #FFF7D6;
    font-family: 'phr';
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    position: absolute;
    right: -10px;
    top: 32px;
    z-index: 20;
}
.jifenStatus>div>div:hover>span{
    display: block;
}
.jifenStatus>div>div:hover>p{
    display: block;
}