.legend-value {
    color: #333;
    font-weight: 500;
}

@keyframes inputPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25), 0 0 30px rgba(255, 107, 53, 0.4); }
}

/* 销售上报页面 - 新UI样式 */
.sales-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sales-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    flex-wrap: wrap;
    gap: 8px;
}

.sales-date-new {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.sales-date-new .weekday {
    font-size: 24px;
    font-weight: 700;
}

.sales-date-new .fulldate {
    font-size: 14px;
    opacity: 0.9;
}

.sales-today-new {
    font-size: 14px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.sales-total-section-new {
    text-align: center;
}

.total-label-new {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.total-input-wrapper-new {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.total-currency-new {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-right: 4px;
}

.total-input-new {
    border: none;
    background: transparent;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    width: 180px;
    text-align: left;
    outline: none;
}

.total-input-new::placeholder {
    color: #ccc;
}

.calc-result-new {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.calc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calc-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.calc-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.calc-diff-new .calc-value {
    color: #52c41a;
}

.calc-diff-new .calc-value.diff-warning {
    color: #ff7800;
}

.calc-diff-new .calc-value.diff-error {
    color: #ff4d4f;
}

.section-title-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.section-title-new i {
    color: #ff6b35;
}

.channels-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* 单行渠道录入样式 - 两列布局 */
.channels-inline-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.sales-channel-item-inline {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.channel-icon-inline {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    flex-shrink: 0;
}

.channel-icon-inline i {
    font-size: 13px;
}

.channel-name-inline {
    font-size: 12px;
    color: #666;
    width: 36px;
    flex-shrink: 0;
}

.channel-name-small {
    font-size: 10px;
    width: 28px;
}

.channel-input-inline {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 0 6px;
    border: 1px solid #e5e7eb;
    min-width: 0;
    min-width: 70px;
}

.channel-input-inline:focus-within {
    border-color: #ff6b35;
}

.channel-input-inline .currency {
    font-size: 11px;
    color: #999;
    flex-shrink: 0;
}

.channel-input-inline input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 6px 2px;
    outline: none;
    min-width: 0;
    width: 100%;
}

.channel-input-inline input::placeholder {
    color: #ccc;
}

/* 照片缩略图样式 - 适配 photo-upload-new */
.photo-upload-new .photo-item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-upload-new .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.photo-upload-new .photo-item:hover img {
    transform: scale(1.05);
}

.photo-upload-new .photo-item .delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.photo-upload-new .photo-item .delete-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

/* 文件占位符样式 */
.photo-upload-new .photo-item.file-item {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.photo-upload-new .photo-item.file-item .file-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    padding: 4px;
    text-align: center;
    word-break: break-all;
    line-height: 1.2;
}

/* 也适配 photo-upload 类 */
.photo-upload .photo-item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-upload .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload .photo-item .delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

/* 单行退单信息样式 */
.refund-row-new {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.refund-item-inline {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.refund-item-inline label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.refund-item-inline input {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.refund-item-inline input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2);
    animation: inputPulse 1.5s ease-in-out infinite;
}

.refund-reason-new {
    display: flex;
    flex-direction: column;
}

.refund-reason-new label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.refund-reason-new input {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.refund-reason-new input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2);
    animation: inputPulse 1.5s ease-in-out infinite;
}

.refund-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.refund-item {
    display: flex;
    flex-direction: column;
}

.refund-item label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.refund-item input {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
}

.refund-item input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2);
    animation: inputPulse 1.5s ease-in-out infinite;
}

.refund-item-full {
    grid-column: span 2;
}

.refund-item-full label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    display: block;
}

.refund-item-full input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
}

.refund-item-full input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2);
    animation: inputPulse 1.5s ease-in-out infinite;
}

.sales-extra-new .form-group-new {
    margin-bottom: 16px;
}

.sales-extra-new .form-group-new label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.sales-extra-new .form-group-new label .required {
    color: #ff4d4f;
    margin-left: 4px;
}

.sales-extra-new .form-group-new label .hint {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-left: 8px;
}

.sales-extra-new textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    height: 80px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.sales-extra-new textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.photo-upload-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.upload-btn-new {
    width: 70px;
    height: 70px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-btn-new:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    background: rgba(102, 126, 234, 0.05);
}

/* 巡检页面样式 */
.inspection-row-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.textarea-new {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    height: 80px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
    box-sizing: border-box;
    background: #f9fafb;
}

.textarea-new:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
}

.inspection-row-new:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

.inspection-label-new {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.inspection-btns-new {
    display: flex;
    gap: 8px;
}

.inspection-btn-new {
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 13px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    font-weight: 500;
    background: #e5e7eb;
    color: #6b7280;
    min-width: 72px;
}

.inspection-btn-new.ok {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.25);
}

.inspection-btn-new.ok:hover {
    background: #10b981;
    color: #fff;
}

.inspection-btn-new.no {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.25);
}

.inspection-btn-new.no:hover {
    background: #ef4444;
    color: #fff;
}

.inspection-btn-new.active.ok {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.inspection-btn-new.active.no {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.inspection-submit-btn {
    margin-top: 20px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a5c 100%);
}

.inspection-submit-btn:active {
    transform: scale(0.98);
}

/* 统一页面卡片样式 - 用于记账/流水/员工/公告/报表 */
.page-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-card-title-new {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-card-title-new i {
    color: #ff6b35;
}

/* 表单样式 */
.form-group-new label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
    font-family: inherit;
    background: #f9fafb;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.2);
    background: #fff;
    animation: inputPulse 1.5s ease-in-out infinite;
}

.form-group-new textarea {
    min-height: 80px;
    resize: none;
}

/* 列表项样式 */
.list-item-new {
    display: flex;
    align-items: center;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.list-item-new:active {
    transform: scale(0.98);
}

.list-item-new:hover {
    background: #f0f0f0;
}

/* 头像样式 */
.avatar-new {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.avatar-placeholder-new {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

/* 标签样式 */
.tag-new {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tag-success-new {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.tag-error-new {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* 空状态 */
.empty-state-new {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.empty-state-new i {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state-new p {
    font-size: 14px;
}

/* 按钮样式 */
.btn-primary-new {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-new:active {
    transform: scale(0.98);
}

.btn-outline-new {
    padding: 8px 16px;
    background: #fff;
    color: #ff6b35;
    border: 1px solid #ff6b35;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

/* 报表样式 */
.report-card-new {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.report-stat-new {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.report-stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.report-stat-value {
    font-size: 28px;
    font-weight: bold;
}

.report-stat-desc {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* 报表统计卡片新样式 */
.report-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 4px;
}

.report-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.report-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.report-stat-card.sales::before {
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 100%);
}

.report-stat-card.income::before {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.report-stat-card.expense::before {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.report-stat-card.profit::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.report-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
}

.report-stat-card.sales .stat-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #ff6b35;
}

.report-stat-card.income .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.report-stat-card.expense .stat-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.report-stat-card.profit .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.report-stat-card .stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.report-stat-card .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.report-stat-card.profit .stat-value {
    color: #1f2937;
    font-size: 18px;
}

.report-stat-card .stat-desc {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* 数据报表页面样式 */
.report-date-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.date-input-wrapper {
    flex: 1;
    position: relative;
}

.date-input-wrapper input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
    color: #333;
}

.date-input-wrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
    pointer-events: none;
}

.date-separator {
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

.btn-query-new {
    padding: 10px 20px;
    background: #fff;
    color: #ff6b35;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-query-new:active {
    transform: scale(0.95);
}

/* 报表统计卡片改进 */
.report-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
}

.report-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.report-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.report-stat-card.sales::before {
    background: linear-gradient(90deg, #ff6b35 0%, #e55a2b 100%);
}

.report-stat-card.income::before {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.report-stat-card.expense::before {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.report-stat-card.profit::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.report-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
}

.report-stat-card.sales .stat-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #ff6b35;
}

.report-stat-card.income .stat-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.report-stat-card.expense .stat-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.report-stat-card.profit .stat-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.report-stat-card .stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.report-stat-card .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.report-stat-card.profit .stat-value {
    color: #1f2937;
    font-size: 18px;
}

.report-stat-card .stat-desc {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .report-stat-card {
        padding: 12px;
    }
}

.report-stat-card .stat-desc {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* 甜甜圈图改进 */
.donut-chart-wrapper-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.donut-chart-new {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
}

.donut-center-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.donut-total-new {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.donut-label-new {
    font-size: 12px;
    color: #9ca3af;
}

.donut-legend-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.donut-legend-item-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.donut-legend-item-new:hover {
    background: #f0f0f0;
}

.donut-legend-dot-new {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.donut-legend-label-new {
    flex: 1;
    font-size: 12px;
    color: #333;
}

.donut-legend-value-new {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.donut-legend-pct-new {
    font-size: 11px;
    color: #9ca3af;
}

/* 销售趋势图样式 */
.trend-chart-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding: 10px 0;
    gap: 4px;
}

.trend-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.trend-bar {
    width: 100%;
    max-width: 30px;
    background: linear-gradient(180deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 4px 4px 0 0;
    margin-top: auto;
    min-height: 4px;
    transition: height 0.3s ease;
}

.trend-label {
    font-size: 10px;
    color: #999;
    margin-top: 6px;
    text-align: center;
}