.yn-qa-content-body .container{
    display: flex;
}

.yn-qa-content-body .body-left {
    width: 20%;
}

.yn-qa-content-body .body-right {
    width: 80%;
}

/* 基础容器样式 */
.yn-qa-detail.yn-quesiotn {
    background-color: #ffffff;
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 问题详情主体布局 */
.detail-question .detail-label {
    background-color: #457ffc;
    color: #fff;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;

    border-top-left-radius: 26px;

    border-top-right-radius: 26px;

}

.detail-content {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-top-left-radius: 0px;
    padding: 2rem 2rem 2rem 2rem;
    margin: 0 0 1rem 0;

    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* 图标区域 */
.detail-icon {
    flex-shrink: 0;
}

.detail-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

/* 正文内容区域 */
.detail-body {
    flex: 1;
}

/* 头部信息布局 */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.detail-member {
    color: #666;
    font-size: 0.9rem;
}

.detail-m-info {
    margin-bottom: 0.5rem;
}

.detail-type {
    color: #888;
    font-size: 0.85rem;
}

/* 回复按钮样式 */
.detail-reply-bnt {
    background-color: #14357B;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;

}

.detail-reply-bnt:hover {
    background-color: #2f6df4;
}

/* 标题样式 */
.detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

/* 摘要文本样式 */
.detail-summary {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



/* 回答列标题 */
.detail-answer-column-title {
    background-color: #457ffc;
    color: #fff;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;

    border-top-left-radius: 26px;

    border-top-right-radius: 26px;
}

/* 回答列表容器 */
.detail-answer-lists {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 单个回答卡片 */
.detail-answer-lists-box {
    background: #F1F8FE;
    border-radius: 8px;
    border-top-left-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
}

/* 回答图标 */
.detail-icon {
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.detail-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* 回答主体内容 */
.detail-answer-body {
    flex: 1;
}

/* 回答头部 */
.detail-answer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.detail-answer-member {
    color: #666;
    font-size: 0.9rem;
}

/* 互动按钮容器 */
.detail-answer-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;
}

.detail-answer-reply-good:hover {
    color: #C6DE92;
}

.detail-answer-reply-good svg {
    width: 20px;
    height: 20px;
}

/* 回答摘要 */
.detail-answer-summary {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/**=================相关======================*/
.yn-qa-related .content .content-box .title {
    background-color: #F2F2F2;
    text-align: left;
    height: 40px;
}

.yn-qa-related .content .content-box .title h3 {
    margin-bottom: 0;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-weight: 700;
    padding-left: 35px;
}

.yn-qa-related .content .content-box .lists1 {
    border: 1px solid #F2F2F2;
    padding: 0px 16px;
    margin-bottom: 20px;
}

.yn-qa-related .content .content-box .lists1 .item-box {
    display: flex;
    margin-top: 20px;
    max-height: 148px;
}

.yn-qa-related .content .content-box .lists1 .item-box .item-icon {}

.yn-qa-related .content .content-box .lists1 .item-box .item-content {
    margin-left: 10px;
}

.yn-qa-related .content .content-box .lists1 .item-box .item-content .item-title {}

.yn-qa-related .content .content-box .lists1 .item-box .item-content .item-title a {
    color: #333;
    text-decoration: underline;
    font-size: 17px;
}

.yn-qa-related .content .content-box .lists1 .item-box .item-content .item-title a:hover {
    color: #14357B;
    text-decoration: none;
}

.yn-qa-related .content .content-box .lists1 .item-box .item-content .item-summary {
    margin-top: 16px;
    color: #6e6e6e;
    line-height: 30px;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .yn-qa-content-body .body-right {
        width: 100%;
    }

    .detail-answer-lists-box {
        flex-direction: column;
        padding: 1rem;
    }

    .detail-answer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .detail-answer-reply-goods {
        width: 100%;
        justify-content: flex-end;
    }
}