  /* =====================================================
   问答内页新增样式 (wd_ny_extra.css)
   说明：此文件仅包含新增样式，不修改原有CSS
   ===================================================== */

/* 问答内页整体容器 */
.qa-content-section {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* ==================== 上：问答内容板块 ==================== */
.qa-answer-box {
    display: block;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    color: #666;
    line-height: 28px;
    max-width: 100%;
    box-sizing: border-box;
}


.qa-answer-box p{text-indent: 2em;line-height: 35px;padding: 5px 0;}

.qa-answer-box img{display: block; max-width: 700px;margin: 0 auto;width: auto !important;height: auto !important; padding:10px 0;}

/* ==================== 中：人工咨询按钮 ==================== */
.qa-consult-btn {
    display: block;
    width: 100%;
    height:40px;
    line-height:40px;
    margin-top:10px;
    text-align: center;
    background-color: #ee6b01;
    border-radius: 4px;
}

.qa-consult-btn a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.qa-consult-btn a:hover {
    background-color: #d55f00;
    border-radius: 4px;
}

/* ==================== 下：相关产物板块 ==================== */
.qa-related-products {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* 小标题样式 */
.qa-related-products h3 {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ee6b01;
    padding-bottom:8px;
    margin-bottom: 15px;
    border-bottom: 3px solid #ee6b01;
}

/* 产物列表容器 - 复用原有样式 */
.qa-related-products .proright {
    float: none;
    width: 100%;
}

.qa-related-products .proright ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.qa-related-products .proright ul li {
    display: block;
    float: left;
    width: 31.33%;
    margin: 0 1%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}


.qa-related-products .proright ul li:last-child {
    margin-right: 0;
}

/* 产物图片样式 */
.qa-related-products .pro-pic1 {
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.qa-related-products .pro-pic1 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.qa-related-products .proright ul li:hover .pro-pic1 img {
    transform: scale(1.05);
}

/* 产物信息样式 */
.qa-related-products .pro-info1 {
    display: block;
    padding: 10px 12px 15px;
}

.qa-related-products .pro-info1 a {
    text-decoration: none;
    color: #333;
}

.qa-related-products .pro-info1 a span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qa-related-products .pro-info1 a p {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
}

.qa-related-products .pro-info1 a:hover span {
    color: #ee6b01;
}


/* =====================================================
   移动端样式（屏幕宽度小于900px）
   ===================================================== */
@media only screen and (max-width: 900px) {
    /* ===== 左右板块布局调整 ===== */
    /* 左边板块宽度100% */
    .leftnewwd {
        width: 100% !important;
        float: none !important;
    }

    /* 右边热门问答板块移到底部，宽度100% */
    .rightnew {
        width: 100% !important;
        float: none !important;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
    }

    /* 热门问答标题样式 */
    .rightnew > span {
        display: block;
        font-size:20px;
        font-weight: bold;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #ee6b01;
    }

    /* 热门问答列表适配 */
    .qa-cpzx-hot-list {
        display: block;
        width: 100%;
    }

    .qa-cpzx-hot-item {
        display: block;
        width: 100%;
        padding: 12px 10px;
    }

    .qa-cpzx-hot-item p {
        font-size:15px;
        line-height: 22px;
        color: #333;
    }

    /* 问答内容板块移动端适配 */
    .qa-answer-box {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 12px 6px 12px;
    }

    /* 人工咨询按钮移动端适配 */
    .qa-consult-btn {
        height: 40px;
        line-height: 40px;
    }

    .qa-consult-btn a {
        font-size: 14px;
    }

    /* 相关产物板块移动端适配 */
    .qa-related-products h3 {
        font-size: 17px;
        padding-bottom: 8px;
        margin-bottom: 12px;
        border-bottom-width: 2px;
    }

    /* 产物列表移动端适配 - 每行一个产物 */
    .qa-related-products .proright ul li {
        float: none;
        width: 100%;
        margin: 0 0 15px 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    /* 产物图片移动端适配 */
    .qa-related-products .pro-pic1 {
        width: 130px;
        min-width: 130px;
        height: 120px;
        flex-shrink: 0;
    }

    /* 产物信息移动端适配 */
    .qa-related-products .pro-info1 {
        flex: 1;
        padding: 8px 10px;
    }

    .qa-related-products .pro-info1 a span {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .qa-related-products .pro-info1 a p {
        font-size:13px;
        line-height:20px;
        height:60px;
        -webkit-line-clamp: 3;
    }

    /* 防止横向滚动 */
    .qa-content-section {
        max-width: 100%;
        overflow: hidden;
    }
	
	.con-severice{ padding:0 10px;}
	.leftnewwd h1 {font-size: 20px;line-height: 32px;text-align: left;}
	
	
}
