

.board-card-result {
    margin-top: 18px;
    min-height: 46px;
    font-size: 16px;
    line-height: 1.65;
    color: #f8fbff;
}
.result-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-result);
}
.result-panel.active {
    display: flex !important;
    animation: slideUp 0.3s ease-out;
}
.result-content {
    display: flex;
    gap: 15px;
}
.preview-area {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    max-height: 200px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 8px;
    box-sizing: border-box;
}
.preview-area img {
    display: block;
    max-height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eee;
}
.preview-area.preview-count-1 img {
    max-width: 100%;
    max-height: 200px;
}
.preview-area.preview-count-2 {
    flex-direction: row;
}
.preview-area.preview-count-2 img {
    flex: 1;
    min-width: 0;
    max-width: 50%;
}
.preview-area.preview-count-3 img {
    flex: 1;
    min-width: 0;
    max-width: 33.333%;
}
.analysis-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 200px; /* 限制高度 */
    overflow: hidden;
}
.photo-strip {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.photo-slot {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.photo-slot.filled {
    border: 2px solid #4caf50;
}
.photo-slot.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3);
}
.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-slot.filled .slot-placeholder {
    display: none;
}
#aiLoading {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 1px solid #d0e8ff;
}