.show {
    display: block !important;
}
/* 报告内容容器 */
.resultContent {
    padding: 16px 15px 10px;
    background-image: url(../image/answerBg.png);
    background-size: 4%;
    background-repeat: repeat;
}
/* 下载按钮 */
.downBtn {
    margin-left: 5px;
}

    .downBtn button {
        display: flex;
        height: 27px;
        font-size: 14px;
        color: #333;
        border: 1px solid #141414;
        border-radius: 4px;
        background-color: #fff;
        padding: 0 6px;
        align-items: center;
    }

        .downBtn button img {
            width: 14px;
            height: 12px;
        }
/* 卡片容器 */
.cardBox {
    margin-top: 15px;
    padding: 20px 24px;
    background: #FFFFFF;
    border: 2px solid #F0F0F0;
    border-radius: 13px;
}

    .cardBox:last-child {
        border: 0;
        margin: 15px -15px 0;
    }

        .cardBox:last-child h3 {
            text-align: center;
            position: relative;
            font-size: 16px;
            color: #333;
            font-weight: bold;
            padding-bottom: 10px;
        }

            .cardBox:last-child h3:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 34px;
                height: 3px;
                background-color: #ddd;
                border-radius: 2px;
            }

h2.title {
    text-align: center;
    font-size: 23px;
    color: #000;
    font-weight: bold;
    line-height: 1.5;
}

h3.title {
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
}

.desc {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}
/* 推荐列表 */
.recommendList {
    margin-top: 15px;
}

    .recommendList li {
        padding-bottom: 10px;
        border-bottom: 1px solid #eaeaea;
    }

        .recommendList li:first-child {
            border-top: 1px solid #eaeaea;
        }

        .recommendList li a {
            padding-top: 10px;
            display: flex;
            justify-content: space-between;
        }

.listItemText {
    width: calc(100% - 90px);
    position: relative;
}

    .listItemText span {
        font-size: 12px;
        color: #999;
        margin-right: 6px;
        display: inline-block;
        padding: 3px 6px;
        border-radius: 4px;
        border: 1px solid #ddd;
        position: absolute;
        left: 0;
        bottom: 0px;
    }

    .listItemText h4 {
        font-size: 16px;
        color: #333;
        font-weight: bold;
        overflow: hidden;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 设置最大显示行数 */
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        margin-bottom: 3px;
        line-height: 19px;
    }

    .listItemText p {
        font-size: 12px;
        color: #999;
        white-space: nowrap;
        overflow: hidden;
        height:19px;
        text-overflow: ellipsis;
    }

.listItemImage img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}
/* 弹窗 */
.dialog {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    border-radius: 10px;
    padding: 26px 30px 25px;
}

.dialogIcon {
    width: 55px;
    height: 49px;
    margin-right: 18px;
}

.dialog p {
    font-size: 14px;
    color: #666;
}

.closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
}

    .closeBtn img {
        width: 12px;
        height: 12px;
    }

.dialogTitle {
    display: flex;
    justify-content: start;
    margin-bottom: 40px;
}

    .dialogTitle h3 {
        font-size: 21px;
        color: #333;
        font-weight: bold;
        line-height: 1.1;
    }
/* 遮罩 */
.mask {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
}

@media only screen and (min-width: 1000px) {
    .dialog {
        width: 495px;
    }

    .mask {
        width: 550px;
    }
}
