.aftersale-types { margin: 12px; background: var(--bg-primary); border-radius: var(--radius-md); padding: 16px; }
.aftersale-types h3 { font-size: 1rem; margin-bottom: 16px; }
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.type-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; }
.type-icon { width: 50px; height: 50px; background: var(--bg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.type-name { font-size: 0.8rem; color: var(--text-secondary); }
.aftersale-records { margin: 12px; background: var(--bg-primary); border-radius: var(--radius-md); padding: 16px; }
.aftersale-records h3 { font-size: 1rem; margin-bottom: 16px; }
.record-item { border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px; }
.record-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.record-no { font-size: 0.85rem; color: var(--text-tertiary); }
.record-status { font-size: 0.85rem; padding: 2px 10px; border-radius: 4px; }
.record-status.processing { background: var(--primary-light); color: var(--primary); }
.record-body { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 12px; }
.record-type { font-size: 0.9rem; color: var(--text-primary); }
.record-amount { font-size: 1rem; color: var(--error); font-weight: bold; }
.record-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-tertiary); }
.btn-detail { padding: 6px 16px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-size: 0.8rem; color: var(--text-secondary); }
.aftersale-notice { margin: 12px; background: var(--bg-primary); border-radius: var(--radius-md); padding: 16px; margin-bottom: 100px; }
.aftersale-notice h4 { font-size: 0.95rem; margin-bottom: 12px; }
.aftersale-notice ul { list-style: none; }
.aftersale-notice li { font-size: 0.85rem; color: var(--text-secondary); padding: 8px 0; padding-left: 16px; position: relative; }
.aftersale-notice li::before { content: '•'; position: absolute; left: 0; color: var(--primary); }
