/* orders/static/CSS/list.css - 更新后的完整 CSS，添加 .stock-in-button 规则 */
@charset "utf-8";

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* 页眉样式 */
.header {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-center {
    text-align: center;
    flex-grow: 1;
}

.header-left,
.header-right {
    width: 20%;  /* 根据实际情况调整这个宽度 */
    min-width: 120px;  /* 防止在小屏幕上太过压缩 */
    text-align: center;
}

.header-left {
    visibility: hidden;  /* 使左侧元素不可见 */
}

.header strong {
    font-size: 24px;
}

.header-right p {
    margin: 0;
    font-size: 16px;
}

.header-right a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.header-right a:hover {
    text-decoration: underline;
}

/* 标题样式 */
h1 {
    text-align: center;
    color: #333;
}

/* 容器样式 */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 12px;
}

th {
    background-color: #007bff;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* 按钮基本样式 */
button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #0056b3;
}

/* 搜索框样式 */
.search-box {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;  /* 间距 */
}

.search-box input[type=text] {
    padding: 8px 12px;
    width: 300px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.search-box select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
    background-color: white;
    min-width: 120px;  /* 最小宽度 */
}

.search-box input[type=submit] {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    background-color: #28a745;  /* 绿色 */
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.search-box input[type=submit]:hover {
    background-color: #218838;  /* 深绿色 hover */
}

/* 详情按钮样式（统一与编辑/删除：蓝色，添加 hover） */
.detail-button {
    padding: 5px 10px;
    background-color: #17a2b8;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.detail-button:hover {
    background-color: #138496;
    color: white;
    text-decoration: none;
}

/* 编辑按钮样式 */
.edit-button {
    padding: 5px 10px;
    background-color: #f0ad4e;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.edit-button:hover {
    background-color: #ec971f;
    color: white;
    text-decoration: none;
}

/* 删除按钮样式 */
.delete-button {
    padding: 5px 10px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.delete-button:hover {
    background-color: #bd2130;
    color: white;
    text-decoration: none;
}

/* 报告按钮样式 */
.report-button {
    padding: 5px 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.report-button:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

/* 入库按钮样式（新增：蓝色，匹配编辑/删除布局） */
.stock-in-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;

}

.stock-in-button:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.stock-detail-button {
    padding: 5px 10px;
    background-color: #28a745;  /* 绿色 */
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: inline-block;

}

.stock-detail-button:hover {
    background-color: #218838;  /* 深绿 hover */
    color: white;
    text-decoration: none;
}


/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.pagination a {
    padding: 8px 12px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #0056b3;
}

.pagination .current {
    padding: 8px 12px;
    background-color: #6c757d;
    color: white;
    border-radius: 4px;
}

/* 右对齐样式 */
.right-align {
    float: right;
}

/* 居中对齐样式 */
.center-align {
    display: flex;
    justify-content: center;
}

/* 按钮组样式 */
.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.button-group button {
    margin: 5px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-group button:hover {
    background-color: #0056b3;
}

/* 返回按钮样式 */
.back-button {
    padding: 10px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
}

.back-button:hover {
    background-color: #5a6268;
}

/* 编辑按钮样式（重复定义，保持一致） */
.edit-button {
    padding: 5px 10px;
    background-color: #f0ad4e;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
}

.edit-button:hover {
    background-color: #ec971f;
}

/* 删除按钮样式（重复定义，保持一致） */
.delete-button {
    padding: 5px 10px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    text-decoration: none;
}

.delete-button:hover {
    background-color: #bd2130;
}

/* CSS Document */

/* ========== 移动端响应式样式 - 完全重做 ========== */
@media (max-width: 768px) {
    /* 重置移动端基础样式 */
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        background-color: #f5f5f5;
        font-size: 14px;
    }
    
    /* 容器在移动端全宽，无边距 */
    .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* 标题在移动端 */
    h1 {
        font-size: 20px !important;
        margin: 15px 15px 10px 15px !important;
        padding: 0 !important;
        text-align: left !important;
        color: #333 !important;
        font-weight: 600 !important;
    }
    
    /* 页眉在移动端完全重做 */
    .header {
        padding: 12px 15px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    }
    
    .header-center {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 8px !important;
    }
    
    .header strong {
        font-size: 18px !important;
        display: block !important;
    }
    
    .header-left {
        display: none !important;
    }
    
    .header-right {
        width: 100% !important;
        text-align: left !important;
        margin-top: 5px !important;
    }
    
    .header-right p {
        margin: 0 !important;
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    .header-right a {
        color: rgba(255,255,255,0.9) !important;
        text-decoration: underline !important;
        margin-right: 10px !important;
        margin-left: 0 !important;
    }
    
    /* 当前页面新建按钮 - 移动端 */
    .current-page-create-button {
        margin: 0 15px 15px 15px !important;
        display: block !important;
    }
    
    .create-button-mobile {
        width: 100% !important;
        padding: 14px !important;
        background: #007bff !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0,123,255,0.3) !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .create-button-mobile:active {
        background: #0056b3 !important;
        transform: scale(0.98) !important;
    }
    
    /* PC端隐藏当前页面新建按钮 */
    @media (min-width: 769px) {
        .current-page-create-button {
            display: none !important;
        }
    }
    
    /* 搜索框在移动端完全重做 */
    .search-box {
        margin: 15px !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .search-box form {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .search-box input[type=text],
    .search-box select {
        width: 100% !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        border: 2px solid #ddd !important;
        border-radius: 8px !important;
        background: white !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    
    .search-box input[type=text]:focus {
        border-color: #007bff !important;
        outline: none !important;
    }
    
    .search-box input[type=submit] {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
        background: #007bff !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .search-box input[type=submit]:active {
        background: #0056b3 !important;
        transform: scale(0.98) !important;
    }
    
    /* 按钮组在移动端完全重做 - 可折叠 */
    .button-section {
        margin: 15px !important;
        padding: 0 !important;
    }
    
    .button-group-wrapper {
        background: white !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 0 !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        overflow: hidden !important;
    }
    
    .button-group-title {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #333 !important;
        padding: 15px !important;
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .button-group-title::after {
        content: '▼' !important;
        font-size: 12px !important;
        color: #999 !important;
        transition: transform 0.3s !important;
    }
    
    .button-group-wrapper.collapsed .button-group-title::after {
        transform: rotate(-90deg) !important;
    }
    
    .button-group-wrapper.collapsed .button-group {
        display: none !important;
    }
    
    .button-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .button-group button {
        width: 100% !important;
        margin: 0 !important;
        padding: 14px 18px !important;
        background: white !important;
        color: #333 !important;
        border: none !important;
        border-top: 1px solid #f0f0f0 !important;
        border-radius: 0 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: all 0.2s !important;
        text-align: left !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .button-group button:first-child {
        border-top: none !important;
    }
    
    .button-group button:active {
        background: #f5f5f5 !important;
        transform: scale(0.98) !important;
    }
    
    /* 当前页面的新建按钮突出显示 */
    .button-group button.create-current-page {
        background: #007bff !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    .button-group button.create-current-page:active {
        background: #0056b3 !important;
    }
    
    /* 移动端：确保卡片显示 */
    .mobile-order-cards,
    .mobile-list-cards {
        display: block !important;
    }
    
    /* 在移动端，隐藏表格包装器和表格 */
    .table-wrapper {
        display: none !important;
    }
    
    /* 确保移动端卡片显示 */
    .mobile-order-cards,
    .mobile-list-cards {
        display: block !important;
    }
    
    /* 移动端通用列表卡片样式 */
    .mobile-list-cards {
        display: block !important;
        padding: 0 15px 15px 15px !important;
    }
    
    .mobile-list-card {
        background: white !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 16px !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
    }
    
    .mobile-list-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.12) !important;
    }
    
    .mobile-card-title {
        font-size: 17px !important;
        font-weight: 700 !important;
        color: #007bff !important;
        text-decoration: none !important;
        flex: 1 !important;
    }
    
    .mobile-card-title:active {
        opacity: 0.7 !important;
    }
    
    /* 移动端卡片状态标签 */
    .mobile-list-card .mobile-card-status {
        font-size: 12px !important;
        padding: 6px 12px !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        margin-left: 10px !important;
    }
    
    /* 如果没有移动端卡片，表格正常显示但需要优化样式 */
    table {
        font-size: 12px !important;
        width: 100% !important;
        display: table !important;
    }
    
    table thead {
        display: table-header-group !important;
    }
    
    table tbody {
        display: table-row-group !important;
    }
    
    table tr {
        display: table-row !important;
    }
    
    table th,
    table td {
        padding: 10px 8px !important;
        font-size: 12px !important;
        display: table-cell !important;
        word-break: break-word !important;
    }
    
    table th {
        background: #007bff !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    /* 移动端表格容器优化 */
    .container table {
        margin: 15px 0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    /* 移动端卡片容器 */
    .mobile-order-cards {
        display: block !important;
        padding: 0 15px 15px 15px !important;
    }
    
    /* 移动端卡片样式 - 完全重做 */
    .mobile-order-card {
        background: white !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 16px !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
    }
    
    .mobile-order-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.12) !important;
    }
    
    .mobile-card-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        margin-bottom: 14px !important;
        padding-bottom: 12px !important;
        border-bottom: 2px solid #f0f0f0 !important;
    }
    
    .mobile-card-order-number {
        font-size: 17px !important;
        font-weight: 700 !important;
        color: #007bff !important;
        text-decoration: none !important;
        flex: 1 !important;
    }
    
    .mobile-card-order-number:active {
        opacity: 0.7 !important;
    }
    
    .mobile-card-status {
        font-size: 12px !important;
        padding: 6px 12px !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        margin-left: 10px !important;
    }
    
    .mobile-card-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }
    
    .mobile-card-row:last-child {
        border-bottom: none !important;
    }
    
    .mobile-card-label {
        font-size: 13px !important;
        color: #999 !important;
        font-weight: 500 !important;
        min-width: 80px !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-card-value {
        font-size: 14px !important;
        color: #333 !important;
        text-align: right !important;
        flex: 1 !important;
        word-break: break-word !important;
        font-weight: 500 !important;
    }
    
    .mobile-card-value a {
        color: #007bff !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }
    
    /* 分页在移动端完全重做 */
    .pagination {
        margin: 20px 15px !important;
        padding: 0 !important;
    }
    
    .pagination .step-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        align-items: center !important;
    }
    
    .pagination a {
        padding: 10px 16px !important;
        margin: 0 !important;
        text-decoration: none !important;
        background: white !important;
        color: #007bff !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border: 1px solid #007bff !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .pagination a:active {
        background: #007bff !important;
        color: white !important;
        transform: scale(0.95) !important;
    }
    
    .pagination .current {
        padding: 10px 16px !important;
        margin: 0 !important;
        background: #007bff !important;
        color: white !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }
}

/* ========== 详情页移动端适配 ========== */
@media (max-width: 768px) {
    /* 详情页表格在移动端隐藏 */
    body:not(.detail-page) table,
    .detail-page .table-wrapper {
        display: none !important;
    }
    
    /* 附件容器在移动端隐藏 */
    .attachment-container,
    .table-wrapper .attachment-container,
    .table-wrapper table {
        display: none !important;
    }
    
    /* 详情页移动端卡片容器 */
    .detail-mobile-card {
        background: white !important;
        border-radius: 12px !important;
        padding: 16px !important;
        margin: 15px !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    
    .detail-mobile-row {
        display: flex !important;
        flex-direction: column !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee !important;
    }
    
    .detail-mobile-row:last-child {
        border-bottom: none !important;
    }
    
    .detail-mobile-label {
        font-size: 13px !important;
        color: #666 !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
    }
    
    .detail-mobile-value {
        font-size: 15px !important;
        color: #333 !important;
        word-break: break-word !important;
    }
    
    /* 详情页产品列表移动端 */
    .detail-product-card {
        background: white !important;
        border-radius: 12px !important;
        padding: 16px !important;
        margin: 15px !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    
    .detail-product-header {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #007bff !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
        border-bottom: 2px solid #007bff !important;
    }
    
    .detail-product-row {
        display: flex !important;
        justify-content: space-between !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .detail-product-row:last-child {
        border-bottom: none !important;
    }
    
    .detail-product-label {
        font-size: 13px !important;
        color: #666 !important;
        font-weight: 600 !important;
        min-width: 80px !important;
    }
    
    .detail-product-value {
        font-size: 14px !important;
        color: #333 !important;
        text-align: right !important;
        flex: 1 !important;
        word-break: break-word !important;
    }
    
    /* 移动端产品列表容器 */
    .detail-products-mobile {
        display: block !important;
        padding: 0 15px 15px 15px !important;
    }
    
    .product-toggle {
        width: 100% !important;
        padding: 12px !important;
        margin: 10px 0 !important;
        background: #f1f5ff !important;
        color: #0d47a1 !important;
        border: 1px solid #bcd4ff !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
    }
    
    .product-toggle:active {
        background: #d9e7ff !important;
    }
    
    .detail-product-extra {
        margin-top: 10px !important;
    }
    
    .detail-product-extra.collapsed {
        display: none !important;
    }
    
    .detail-product-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    
    .detail-product-action {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border: none !important;
        color: white !important;
    }
    
    .detail-product-action.action-edit {
        background: #28a745 !important;
    }
    
    .detail-product-action.action-delete {
        background: #dc3545 !important;
    }
    
    .detail-product-action.action-report {
        background: #17a2b8 !important;
    }
    
    .detail-product-action.action-stock {
        background: #ff9800 !important;
    }
    
    .detail-product-action.action-detail {
        background: #6c757d !important;
    }
    
    /* 状态横幅在移动端 */
    .status-banner,
    .approval-banner {
        margin: 0 15px 15px 15px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    /* 状态按钮在移动端 */
    .status-buttons {
        flex-direction: column !important;
        margin: 15px !important;
        gap: 10px !important;
    }
    
    .status-btn {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }
    
    /* 详情页按钮在移动端 */
    .detail-mobile-buttons {
        margin: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .detail-mobile-buttons button,
    .detail-mobile-buttons a {
        width: 100% !important;
        padding: 14px !important;
        background: #007bff !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 15px !important;
        text-align: center !important;
        text-decoration: none !important;
        display: block !important;
        cursor: pointer !important;
        font-weight: 500 !important;
        transition: all 0.2s !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .detail-mobile-buttons a:active {
        background: #0056b3 !important;
        transform: scale(0.98) !important;
    }
    
    .detail-mobile-buttons .edit-button,
    .detail-mobile-buttons .delete-button {
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    /* PC端按钮在移动端隐藏 */
    .detail-page .table-wrapper p {
        display: none !important;
    }
    
    /* 移动端按钮显示 */
    .detail-mobile-buttons {
        display: flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* PC端保持原有样式，移动端卡片隐藏 */
@media (min-width: 769px) {
    .mobile-order-cards,
    .mobile-list-cards {
        display: none !important;
    }
    
    .table-wrapper {
        display: block !important;
    }
    
    .table-wrapper table {
        display: table !important;
    }
    
    table {
        display: table !important;
    }
    
    .current-page-create-button {
        display: none !important;
    }
    
    /* PC端隐藏移动端详情卡片 */
    .detail-mobile-card,
    .detail-product-card,
    .detail-products-mobile {
        display: none !important;
    }
    
    /* PC端显示附件容器 */
    .attachment-container {
        display: block !important;
    }
    
    /* PC端显示按钮，隐藏移动端按钮 */
    .detail-page .table-wrapper p {
        display: block !important;
    }
    
    .detail-mobile-buttons {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}