/* 页面基本样式 */
body-old {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ebf0ed, #93e8ee); /* 渐变背景 */
    color: #333333;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
/* 标题和段落样式 */
h1, p, h2{
    text-align: center;
    font-weight: 700;
    color: #2c3e50; /* 优雅的深色标题 */
    margin-bottom: 15px;
}

h3 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.container-old {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 拉伸左右部分，使高度一致 */
    width: 95%; /* 总宽度占屏幕的 95% */
    margin: 0 auto; /* 居中布局 */
    gap: 10px; /* 增加间隙 */
    transition: all 0.3s ease-in-out; /* 过渡效果 */
}

.form-section,
.output-section {
    flex: 1; /* 每个部分占据相等的空间 */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out; /* 添加平滑过渡效果 */
}

.output-section {
    flex: 1.5; /* 右边部分占据更大的空间 */
    display: none; /* 初始隐藏 */
    padding: 15px; /* 减少内边距 */
}

.form-section {
    margin-right: 2.5%; /* 左边容器右侧留出 2.5% 的间隙 */
    max-width: 800px;
    margin: 0 auto;
}

/* 表单容器样式 */
form {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 表单中的网格布局 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列布局 */
    grid-gap: 30px;
}
.form-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 三列布局 */
    grid-gap: 30px;
}

/* 添加四列布局的表单网格 */
.form-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .form-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-grid4 {
        grid-template-columns: 1fr;
    }
}

/* 表单行样式 */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1px; /* 减小间距 */
}

/* 表单行内的子元素样式 */
.form-row > div {
    flex: 1;
    min-width: 150px; /* 减小最小宽度 */
}

/* 标签样式 */
label {
    margin-bottom: 5px;
    font-weight: bold;
}

/* 输入框和选择框样式 */
input[type="text"],
input[type="number"] {
    text-align: center;
    width: 90%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 120px;
    margin-bottom: 15px;
}

select {
    text-align: center;
    width: 95%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 120px;
    margin-bottom: 15px;
}

/* 按钮样式 */
button-old {
    background-color: #7cd0d2; /* 主要按钮颜色：绿色 */
    color: white; /* 字体颜色 */
    font-size: 14px; /* 字体大小 */
    font-weight: bold; /* 字体加粗 */
    border: none; /* 去掉边框 */
    border-radius: 25px; /* 更大的圆角，使按钮更圆滑 */
    padding: 12px 24px; /* 调整内边距，增加按钮的高度和宽度 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s; /* 平滑过渡效果 */
}

/* 按钮悬停状态样式 */
button-old:hover {
    background-color: #45a049; /* 鼠标悬停时的颜色变化 */
    transform: translateY(-2px); /* 悬停时轻微向上移动 */
    
}
/* 按钮按下状态样式 */
button-old:active {
    background-color: #eb1d16; /* 按下按钮时的颜色 */
    transform: translateY(1px); /* 按下时轻微向下移动 */
    box-shadow: 0 4px 10px ; /* 按下时减小阴影 */
}


/* 按钮样式 */
button {
    background-color: #7cd0d2; /* 主要按钮颜色：绿色 */
    color: white; /* 字体颜色 */
    font-size: 14px; /* 字体大小 */
    font-weight: bold; /* 字体加粗 */
    border: none; /* 去掉边框 */
    border-radius: 25px; /* 更大的圆角，使按钮更圆滑 */
    padding: 12px 24px; /* 调整内边距，增加按钮的高度和宽度 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s; /* 平滑过渡效果 */
}

/* 按钮悬停状态样式 */
button:hover {
    background-color: #45a049; /* 鼠标悬停时的颜色变化 */
    transform: translateY(-2px); /* 悬停时轻微向上移动 */
    box-shadow: 0 8px 20px; /* 悬停时增加阴影 */
}
/* 按钮按下状态样式 */
button:active {
    background-color: #eb1d16; /* 按下按钮时的颜色 */
    transform: translateY(1px); /* 按下时轻微向下移动 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 按下时减小阴影 */
}


/* 包装组样式 */
.box-group {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* 盒子容器样式 */
#boxContainer {
    margin-bottom: 20px;
}

/* 盒子头部样式 */
.box-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* 盒子网格布局样式 */
.box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 三列布局 */
    grid-gap: 10px;
}

/* 按钮组样式 */
.btn-group-old {
    text-align: right;
    margin-top: 20px;
}

/* 输出部分的预格式文本样式 */
.output-section pre {
    background-color: #f1f1f1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.output-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 5px 0 15px 0; /* 减少图片上下外边距 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: block; /* 确保图片块级元素，防止内联排列 */
}
.output-text {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 5px; /* 减少顶部外边距 */
    margin-bottom: 5px; /* 添加底部外边距 */
    color: #333;
    padding: 8px 10px; /* 减少内边距 */
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

/* 发送卡结果卡片容器样式 */
.card-result-container {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px; /* 减少内边距 */
    margin-bottom: 10px; /* 减少底部外边距 */
    transition: all 0.3s ease;
}

.card-result-container:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-model {
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px auto;
    padding: 25px 20px;
    border-radius: 12px;
    background-color: #e1f5fe;
    border: 4px solid #2196F3;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 90%;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

.card-model:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background-color: #e3f2fd;
}

.card-label {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 20px;
    color: #1565C0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    white-space: pre-line;
    line-height: 1.4;
}

.card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* 新的发送卡信息表格样式 */
.card-info-table {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

/* 表头样式 */
.card-info-header {
    display: flex;
    background-color: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
}

.card-info-header-cell {
    padding: 12px 16px;
    font-weight: 700;
    color: #374151;
    text-align: left;
    font-size: 14px;
    border-right: 1px solid #e5e7eb;
}

.card-info-header-cell:first-child {
    flex: 1;
}

.card-info-header-cell:nth-child(2) {
    flex: 3;
}

.card-info-header-cell:last-child {
    flex: 1;
}

.card-info-header-cell:last-child {
    border-right: none;
}

/* 数据行样式 */
.card-info-row {
    display: flex;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.card-info-row:last-child {
    border-bottom: none;
}

.card-info-row:hover {
    background-color: #f9fafb;
}

.card-info-cell {
    padding: 12px 16px;
    color: #1f2937;
    font-weight: 500;
    display: flex;
    align-items: left;
    font-size: 14px;
    word-wrap: break-word;
    line-height: 1.4;
    border-right: 1px solid #f3f4f6;
    text-align: left;
}

.card-info-cell:first-child {
    flex: 1;
}

.card-info-cell:nth-child(2) {
    flex: 3;
}

.card-info-cell:last-child {
    flex: 1;
}

.card-info-cell:last-child {
    border-right: none;
}

.card-info-cell.error {
    color: #dc2626;
    font-weight: 600;
    background-color: #fef2f2;
    text-align: left;
    justify-content: flex-start;
}

.card-info-cell.error[style*="flex: 4"] {
    flex: 4 !important;
}

.card-info-cell:empty {
    background-color: #fef2f2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .card-info-header-cell,
    .card-info-cell {
        font-size: 12px;
        padding: 8px 10px;
    }

    .card-info-header-cell {
        font-size: 13px;
        padding: 10px 12px;
    }
}

.card-info-item {
    flex: 1 1 45%;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.card-info-item .label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.card-info-item .value {
    font-size: 16px;
    color: #212529;
    font-weight: 500;
}

.card-not-found {
    color: #dc3545;
    padding: 15px;
    text-align: center;
    background-color: #f8d7da;
    border-radius: 6px;
    font-weight: 500;
}

/* 推荐发送卡内容样式 */
.output-text .recommendation {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: white;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 4px solid #4bc4d9;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.output-text .recommendation-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.output-text .recommendation-content {
    color: #4a5568;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* 错误提示改进 */
.error-border {
    border: 2px solid red;
    animation: shake 0.2s ease-in-out 2; /* 添加晃动动画 */
}

/* 定义摇动动画 */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* 屏幕预览框样式 */
.screen-preview {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.screen-preview h3 {
    margin-top: 0;
}

/* 添加模态框的基本样式 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* 确保模态框在最上层 */
}

.modal-dialog-old {
    background: #4bc4d9;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-header, .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.footer {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #777;
}
/* 背条计算区域样式 */
#backbar_result {
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#backbar_result h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

#backbar_result p {
    font-size: 16px;
}
/* 隐藏初始部分 */
#factor_select_container, #backbar_result {
    display: none;
}
.screen-count-container {
    margin: 10px 0;
}

.screen-count {
    width: 60px;
    padding: 5px;
    margin-left: 10px;
}

.modal-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-count-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.screen-count-container input {
    width: 60px;
}

.screen-count-badge {
    font-size: 0.8em;
    color: #666;
    margin-left: 8px;
}

/* 问题反馈按钮容器 - 修改为左下角 */
.feedback-button-container {
    position: fixed;
    left: 10px;
    bottom: 20px;
    z-index: 100;
}

.feedback-button {
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #4bc4d9;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 旧版导航栏样式优化 */
.header-old {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.header-content-old {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.logo-old {
    display: flex;
    align-items: center;
}

.logo-old a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo-image-old {
    height: 40px;
    margin-right: 10px;
}

.logo-text-old {
    font-size: 18px;
    font-weight: 700;
}

.nav-old {
    display: flex;
}

.nav-list-old {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-old {
    margin: 0 15px;
}

.nav-link-old {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link-old:hover, .nav-item-old.active .nav-link-old {
    color: #4bc4d9;
}

/* 语言切换按钮样式 - 修改为与主界面一致 */
.language-switcher-old {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.lang-btn-old {
    background: none;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    background-color: transparent;
    color: #333;
}

.lang-btn-old.active {
    background-color: #f0f0f0;
    color: #333;
    font-weight: bold;
}

/* 提交按钮特殊样式 */
#submit_button {
    background-color: #3f51b5; /* 改为蓝色，与添加/删除箱体按钮区分 */
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

#submit_button:hover {
    background-color: #303f9f; /* 深蓝色 */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#submit_button:active {
    background-color: #1a237e; /* 更深的蓝色 */
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle-old {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.mobile-nav-old {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav-old.active {
    transform: translateX(0);
}

.mobile-nav-close-old {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-list-old {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.mobile-nav-item-old {
    margin: 15px 0;
}

.mobile-nav-link-old {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.mobile-nav-old .language-switcher-old {
    margin-top: 30px;
    justify-content: center;
    border: none;
}

.mobile-nav-old .lang-btn-old {
    margin: 0;
    padding: 8px 15px;
    border: 1px solid #ddd;
}

.mobile-nav-old .lang-btn-old.active {
    background-color: #f0f0f0;
}

/* 移动端适配样式 */
@media screen and (max-width: 768px) {
    /* 调整整体页面布局 */
    body-old {
        margin: 0;
        padding: 0;
        width: 100vw;
        overflow-x: hidden;
    }
    
    /* 移除左右间隙 */
    .container-old {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 10px;
    }
    
    /* 表单部分调整 */
    .form-section {
        margin: 0;
        max-width: 100%;
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* 输出部分调整 */
    .output-section {
        max-width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* 调整网格布局为单列 */
    .form-grid, .form-grid3, .box-grid {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    /* 标题字体缩小 */
    h1 {
        font-size: 1.5rem;
        margin: 10px 0;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.3rem;
        margin: 8px 0;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    /* 标签和输入框字体缩小 */
    label {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 3px;
    }
    
    input[type="text"],
    input[type="number"],
    select {
        font-size: 0.9rem;
        padding: 6px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* 按钮调整 */
    button-old, button {
        font-size: 0.9rem;
        padding: 8px 16px;
        width: 100%;
        margin: 5px 0;
        box-sizing: border-box;
    }
    
    /* 提交按钮在移动端的样式 */
    #submit_button {
        width: 100%;
        padding: 10px 20px;
        margin: 10px 0;
    }
    
    /* 表单行内的子元素宽度调整 */
    .form-row {
        flex-direction: column;
        width: 100%;
    }
    
    .form-row > div {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    /* 问题反馈按钮调整 */
    .feedback-button-container {
        position: static;
        margin: 10px auto;
        width: 90%;
        transform: none;
        text-align: center;
    }
    
    .feedback-button {
        width: 100%;
    }
    
    /* 模态框内容调整 */
    .modal-dialog {
        width: 95%;
        padding: 10px;
        margin: 0 auto;
    }
    
    .modal-body {
        max-height: 80vh;
        padding: 10px;
    }
    
    /* 调整间距和内边距 */
    .box-group {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    #backbar_result {
        padding: 8px;
        margin-top: 10px;
    }
    
    /* 字体和行高调整 */
    .output-text {
        font-size: 0.9rem;
    }
    
    /* 箱体部分调整 */
    .box-header {
        font-size: 0.95rem;
    }
    
    /* 调整表单容器 */
    form {
        padding: 10px;
        margin: 0;
        max-width: 100%;
        box-shadow: none;
    }
    
    /* 旧版导航栏移动端调整 */
    .nav-old {
        display: none;
    }
    
    .mobile-menu-toggle-old {
        display: block;
    }
    
    .header-content-old {
        width: 100%;
        padding: 0 15px;
    }
    
    .logo-text-old {
        font-size: 16px;
    }
    
    .logo-image-old {
        height: 32px;
    }
    
    .header-old .language-switcher-old {
        display: none;
    }
    
    .mobile-nav-old {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
    }
    
    .mobile-nav-old.active {
        visibility: visible;
        opacity: 1;
    }
    
    .mobile-nav-link-old {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .mobile-nav-old .language-switcher-old {
        display: flex;
    }
}

/* 更小屏幕的额外调整 (手机) */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    h3, label {
        font-size: 0.85rem;
    }
    
    input[type="text"],
    input[type="number"],
    select {
        font-size: 0.85rem;
        padding: 5px;
    }
    
    button-old, button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    #submit_button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .form-section, .output-section {
        padding: 8px;
    }
    
    /* 移除所有边距和圆角 */
    .container-old, .form-section, .output-section {
        border-radius: 0;
        margin: 0;
        width: 100%;
    }
    
    /* 更小屏幕下的导航调整 */
    .logo-text-old {
        font-size: 14px;
    }
    
    .logo-image-old {
        height: 28px;
        margin-right: 5px;
    }
    
    .mobile-nav-link-old {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .mobile-nav-old .lang-btn-old {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* 输出文本折叠相关样式 */
.output-preview {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
}

.output-full {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

#image_container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.output-toggle-btn {
    display: inline-block;
    color: #2196F3;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.output-toggle-btn:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* 自定义滚动条样式 */
.output-full::-webkit-scrollbar {
    width: 6px;
}

.output-full::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.output-full::-webkit-scrollbar-thumb {
    background: #7cd0d2;
    border-radius: 3px;
}

.output-full::-webkit-scrollbar-thumb:hover {
    background: #4bc4d9;
}