/* 新闻详情 */
section.detail {
    background: #F3F3F3;
    padding: .4rem .3rem .3rem .3rem;
    box-sizing: border-box;
}

.text-info {
    font-size: .22rem;
    font-family: PingFang-SC-Medium;
    font-weight: 500;
    color: #666666;
    text-align: center;
    margin-bottom: .15rem;
}

.text-info .text-title {
    font-size: .28rem;
    font-family: PingFang-SC-Bold;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: .15rem
}

#article {
    font-size: .24rem;
    font-family: PingFang-SC-Regular;
    color: #333333;
}

.detail-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .3rem;
}

.detail-btns a {
    display: block;
    width: 2.42rem;
    height: .63rem;

    border-radius: .08rem;
    font-size: .3rem;
    font-family: MicrosoftYaHei;
    color: #000;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(227, 184, 115, 1) 0%, rgba(230, 202, 162, 1) 100%);
}


.detail-btns a:nth-child(1) {
    margin-right: .4rem;
    background: linear-gradient(0deg, rgba(152, 96, 83, 1) 0%, rgba(128, 50, 74, 1) 100%);
    color: #fff;
}


/* 鉴定评估 */
section.appraisal {
    padding-top: .4rem;
    padding-bottom: .4rem;
}

section.appraisal .appraisal-container {
    /* margin-top: .35rem; */
    margin: .35rem .4rem 0 .4rem;
    display: flex;
    justify-content: space-between;
}

.appraisal-container .appraisal-item {
    width: 1.61rem;
    height: 2.16rem;
    position: relative;
    z-index: 1;
}

.appraisal-container .appraisal-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: .05rem;
}

.appraisal-container .appraisal-item .appraisal-item-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .38rem;
    opacity: 0.42;
    background: #000;
    border-radius: 0 0 .05rem .05rem;
    z-index: 2;
}

.appraisal-container .appraisal-item .appraisal-item-name {
    font-size: .2rem;
    font-family: PingFang-SC-Bold;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: .38rem;
    display: flex;
    justify-content: center;
    align-items: center;
}