@media (max-width: 768px) {
    .categories {
        grid-template-columns: 1fr;
    }
}
.main-container{
    width: 100%;
    max-width: 1200px;
    font-size: 20px;
    padding: 0 20px;
    margin: 0 auto;
}

.underline{
    width: 100%;
    border-bottom: 1px solid #686565;
    display: inline-block;
}
.breadcrumb {
    padding: 15px 0;
    color: #686d70;
    font-size: 14px;
}
.breadcrumb a {
    color: #686d70;
    text-decoration: none;
}
.content-section {
    background-color: #daf0fe;
    width: 100%;
    padding: 20px 0 60px;
}


.tab-header {
    background-color: #0088e8;
    color: white;
    padding: 12px 25px;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.question-card {
    background-color: #daf0fe;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}
.question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    justify-content: flex-start;
    width: fit-content;

    max-width: 100%;
}
.question-icon {
    background-color: #00b0ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}
.question-text {
    font-size: 16px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 10px;
    width: auto;
    display: inline-block;
    max-width: 100%;
}
.answer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;  /* 整体右对齐 */
    max-width: 100%;
}

.publish-info {
    text-align: right;  /* 文字右对齐 */
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 60px;
    /* 关键：宽度跟随 answer-content */
    width: fit-content;
    max-width: 100%;
}

.answer-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;  /* answer 和 icon 之间的间距 */
    /* 关键：让 publish-info 能匹配这个宽度 */
    width: fit-content;
    max-width: 100%;
}

.answer {
    background-color: #0088e8;
    color: white;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
    max-width: 100%;
}

.answer-icon {
    background-color: #00b0ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}