.question{
    display: flex;
    overflow: hidden;
    margin-top: 15px;
}

/*左*/
.question  .question-content {
    overflow: hidden;
    width: 880px;
    margin-right:22px;
}
.container {
    max-width: 880px;
    margin: 0 auto;
}
.qa-cate {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.qa-cate-item {
    padding: 6px 16px;
    border-radius: 20px;
    background: #f5f7fa;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.qa-cate-item:hover {
    background: #e8f8ef;
    color: #00ad45;
}
.qa-cate-item.active {
    background: #00ad45;
    color: #fff;
}
.qa-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.25s;
    display: block;
}
.qa-card:hover {
    transform: translateY(-2px);
}
.qa-title {
    font-size: 16px;
    font-weight: 600;
    color: #00ad45;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}
.qa-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}
.qa-img-card {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.qa-img-card img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}
/* 底部信息行 */
.qa-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}
.qa-info-left {
    display: flex;
    gap: 18px;
}
/* 回复数标签 */
.answer-count {
    color: #00ad45;
    background: #edf9f2;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
}





/*右*/
.main-sidebar{
    width: 308px;
}
.publish-question .btn-normal{
    display: inline-block;
    width: 258px;
    font-size: 14px;
    background-color: #23ac38;
    color: #ffffff;
    height: 44px;
    line-height: 44px;
    padding: 0 25px;
    white-space: nowrap;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    vertical-align: middle;
}
 .publish-question .btn-normal:hover{
     background-color:#35B449;
 }

