#myAnswerQuestion {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
/* 水印样式 */
.water-mark {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    left: -5%;
    top: 0;
    width: 120%;
    height: 100%;
    /* 允许穿透 */
    pointer-events: none;
    background-repeat: repeat;
    background-size: 2rem;
    z-index: -1;
}
/* 列表样式 */
.list-container {
    box-sizing: border-box;
    padding: 0 .16rem 1.2rem;
    overflow-y: auto;
    margin-top: .16rem;
}
.list-item {
    box-sizing: border-box;
    padding: .24rem;
    background: #FFFFFF;
    border-radius: 0.03rem;
    margin-bottom: .12rem;
}
.question-container {
    display: flex;
    align-items: start;
    margin-bottom: .32rem;
}
.list-item .item-icon {
    width: .48rem;
    height: .48rem;
    margin-right: .16rem;
}
.list-item .item-icon img {
    display: block;
    width: 100%;
    height: 1005;
}
.question-content {
    flex: 1;
    min-width: 0;
    font-size: 0.26rem;
    font-family: AlibabaPuHuiTiR;
    color: #222222;
    line-height: 0.34rem;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: .06rem;
}
.answer-container {
    display: flex;
    align-items: flex-start;
}
.answer-content {
    flex: 1;
    min-width: 0;
    font-size: 0.26rem;
    font-family: AlibabaPuHuiTiR;
    color: #ABABAB;
    line-height: 0.34rem;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 列表空状态 */
.empty-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 5rem;
}
.empty-container img {
    width: 2rem;
    height: 1.6rem;
}
.empty-text {
    margin-top: .38rem;
    font-size: 0.24rem;
    font-family: AlibabaPuHuiTiR;
    color: #999999;
    line-height: 0.34rem;
}