.yn-quesiotn-list {}

.yn-quesiotn-list-header-title {
    background-color: #F2F2F2;
    text-align: center;
    height: 40px;
}

.yn-quesiotn-list-header-title h3 {
    margin-bottom: 0;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-weight: 700;
}

.yn-quesiotn-item{
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-top-left-radius: 0px;
    
}

.yn-quesiotn-list-box {
    padding: 10px;
    margin: 0 0 1rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.yn-quesiotn-list-box-icon{
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.yn-quesiotn-list-box-icon svg{
    display: block;
    width: 32px;
    height: 32px;
}

.yn-quesiotn-list-box-content{
    flex: 1;
}



.yn-quesiotn-list-box-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yn-quesiotn-list-box-content-member {
    color: #333;
    font-size: 0.9rem;
}

.yn-quesiotn-list-box-content-m-info {
    margin-bottom: 0.5rem;
}

.yn-quesiotn-list-box-content-type {
    color: #888;
    font-size: 0.85rem;
}

/* 回复按钮样式 */
.yn-quesiotn-list-box-content-reply-bnt {
    background-color: #14357B;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;

}

.yn-quesiotn-list-box-content-reply-bnt:hover {
    background-color: #2f6df4;
}

/* 标题样式 */
.yn-quesiotn-list-box-content-title {
    font-weight: bold;
    color: #333;
}

/* 摘要文本样式 */
.yn-quesiotn-list-box-content-summary {
    color: #333;
    line-height: 1.6;
}

/**=====================================================*/
/* 回答列表容器 */
.yn-reply-list-lists {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 单个回答卡片 */
.yn-reply-list-lists-box {
    background: #F1F8FE;
    border-radius: 8px;
    border-top-left-radius: 0;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
}

/* 回答图标 */
.yn-reply-list-lists-icon {
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.yn-reply-list-lists-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* 回答主体内容 */
.yn-reply-list-body {
    flex: 1;
}

/* 回答头部 */
.yn-reply-list-lists-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.yn-reply-list-lists-member {
    color: #666;
    font-size: 0.9rem;
}

/* 互动按钮容器 */
.yn-reply-list-lists-reply-goods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* 单个互动项 */
.detail-answer-reply-good {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #707070;
    cursor: pointer;
    transition: color 0.3s;
}

.yn-reply-list-lists-reply-good:hover {
    color: #C6DE92;
}

.yn-reply-list-lists-reply-good svg {
    width: 20px;
    height: 20px;
}

/* 回答摘要 */
.yn-reply-list-lists-summary {
    color: #333;
    line-height: 1.6rem;
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

@media (max-width: 479px) {}