* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* 登录页样式 */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
}

.login-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 400px;
}

.login-box h1 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 24px;
}

.login-box .subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #F4B223;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
  color: white;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: #f5f7fa;
  color: #666;
}

.btn-secondary:hover {
  background: #e4e7eb;
}

.btn-success {
  background: #10b981;
  color: white;
}

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* 订单管理按钮样式 */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-header h1 {
  margin: 0;
  font-size: 24px;
  color: #1e293b;
}

.action-buttons {
  display: flex;
  gap: 6px;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add {
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
  color: white;
}

.btn-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.btn-trash {
  background: #f1f5f9;
  color: #64748b;
  font-size: 14px;
}

.btn-trash:hover {
  background: #e2e8f0;
}

.btn-view {
  background: #e0f2fe;
  color: #0284c7;
}

.btn-view:hover {
  background: #bae6fd;
}

.btn-edit {
  background: #fef3c7;
  color: #d97706;
}

.btn-edit:hover {
  background: #fde68a;
}

.btn-delete {
  background: #fee2e2;
  color: #dc2626;
}

.btn-delete:hover {
  background: #fecaca;
}

.btn-assign {
  background: #dbeafe;
  color: #2563eb;
}

.btn-assign:hover {
  background: #bfdbfe;
}

.btn-logout {
  background: #f1f5f9;
  color: #64748b;
}

.btn-logout:hover {
  background: #e2e8f0;
}

.btn-search {
  background: #e0f2fe;
  color: #0284c7;
}

.btn-search:hover {
  background: #bae6fd;
}

.btn-reset {
  background: #f1f5f9;
  color: #64748b;
}

.btn-reset:hover {
  background: #e2e8f0;
}

/* 筛选栏样式 */
.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-input {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.filter-input:focus {
  border-color: #F4B223;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  background: white;
  outline: none;
  cursor: pointer;
}

.filter-select:focus {
  border-color: #F4B223;
}

.filter-date-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-divider {
  color: #94a3b8;
  font-size: 12px;
}

/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}

.btn-page {
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: white;
  color: #64748b;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-page:hover {
  border-color: #F4B223;
  color: #F4B223;
}

.btn-page.active {
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
  border-color: transparent;
  color: white;
}

/* 后台布局 */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 20px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.sidebar-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.sidebar-header p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
  background: rgba(255,255,255,0.1);
  color: white;
  border-left-color: #F4B223;
}

.sidebar-menu li a .icon {
  margin-right: 12px;
  font-size: 18px;
}

/* 子菜单样式 */
.sidebar-menu .submenu-toggle {
  cursor: pointer;
  justify-content: space-between;
}

.sidebar-menu .submenu-toggle .arrow {
  transition: transform 0.3s;
  font-size: 12px;
}

.sidebar-menu .submenu-toggle.expanded .arrow {
  transform: rotate(180deg);
}

.sidebar-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.1);
  transition: max-height 0.3s ease-out;
}

.sidebar-submenu.expanded {
  max-height: 500px;
}

.sidebar-submenu li a {
  padding-left: 50px;
  font-size: 13px;
}

.sidebar-submenu li a .icon {
  margin-right: 8px;
  font-size: 14px;
}

/* AI模块高亮 */
.menu-ai-section > a {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%) !important;
  border-left-color: #F4B223 !important;
}

.main-content {
  flex: 1;
  margin-left: 240px;
  padding: 20px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e7eb;
}

.page-header h1 {
  font-size: 24px;
  color: #1e293b;
}

/* 卡片样式 */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e7eb;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

/* 统计卡片 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
}

.stat-card .stat-label {
  font-size: 14px;
  color: #64748b;
  margin-top: 5px;
}

.stat-card.pending { border-left: 4px solid #f59e0b; }
.stat-card.designing { border-left: 4px solid #3b82f6; }
.stat-card.producing { border-left: 4px solid #10b981; }
.stat-card.shipped { border-left: 4px solid #8b5cf6; }

/* 表格样式 */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e4e7eb;
}

table th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
  font-size: 13px;
  text-transform: uppercase;
}

table tbody tr:hover {
  background: #f8fafc;
}

/* 状态标签 */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status-pending_design { background: #fef3c7; color: #d97706; }
.status-designing { background: #dbeafe; color: #2563eb; }
.status-submitted { background: #fef3c7; color: #d97706; }
.status-design_approved { background: #d1fae5; color: #059669; }
.status-producing { background: #dcfce7; color: #16a34a; }
.status-production_completed { background: #e0e7ff; color: #4338ca; }
.status-shipped { background: #f3e8ff; color: #9333ea; }
.status-completed { background: #f0fdf4; color: #22c55e; }
.status-cancelled { background: #fee2e2; color: #dc2626; }

/* 搜索筛选 */
.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-bar input, .filter-bar select {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  min-width: 150px;
}

/* 模态框 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 1400px;
  max-height: 90vh;
  overflow-y: auto;
}

/* 设计详情弹窗更宽 */
#designDetailModal .modal-content,
#uploadModal .modal-content,
#reuploadModal .modal-content,
#assignModal .modal-content {
  max-width: 95%;
  width: 1200px;
}

/* 生产详情弹窗更宽 */
#viewProgressModal .modal-content,
#progressModal .modal-content {
  max-width: 95%;
  width: 1000px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e7eb;
}

.modal-header h3 {
  font-size: 18px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

/* 产品列表 */
.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 100px 80px 100px auto;
  gap: 8px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.product-item input {
  flex: none;
  width: 100% !important;
}

.product-item .product-name { grid-column: 1; }
.product-item .product-type { grid-column: 2; }
.product-item .product-weight { grid-column: 3; }
.product-item .product-size { grid-column: 4; }
.product-item .product-quantity { grid-column: 5; }
.product-item .product-price { grid-column: 6; }
.product-item .product-actions { grid-column: 7; }

/* 产品表头 */
.product-list-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 100px 80px 100px auto;
  gap: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
}

.product-list-header span {
  text-align: left;
}

/* 消息提示 */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  background: #10b981;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2000;
  animation: slideIn 0.3s ease;
}

.toast.error {
  background: #ef4444;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* 用户信息 */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.user-name {
  flex: 1;
  font-size: 14px;
}

.user-role {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: capitalize;
}

/* 响应式 */
@media (max-width: 768px) {
  .sidebar {
    width: 60px;
  }
  
  .sidebar-header h2, .sidebar-header p, .sidebar-menu li a span {
    display: none;
  }
  
  .main-content {
    margin-left: 60px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.empty-state .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* 加载动画 */
.loading {
  text-align: center;
  padding: 40px;
  color: #64748b;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #F4B223;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 图片预览 */
.preview-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.preview-image:hover {
  transform: scale(1.05);
}

/* ========== 选购配置页面样式 ========== */
.config-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.config-section .section-title i {
  color: #F4B223;
}

.config-section .section-title i.fa-gem { color: #F4B223; }
.config-section .section-title i.fa-weight-hanging { color: #64748b; }
.config-section .section-title i.fa-box { color: #8b5cf6; }
.config-section .section-title i.fa-gift { color: #ec4899; }
.config-section .section-title i.fa-paint-brush { color: #3b82f6; }

/* 配置项行 */
.item-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 8px;
  gap: 12px;
  transition: all 0.2s;
}

.item-row:hover {
  background: #f1f5f9;
}

.item-row:last-child {
  margin-bottom: 0;
}

.item-emoji {
  font-size: 20px;
  width: 32px;
  text-align: center;
}

.item-name {
  flex: 1;
  font-weight: 500;
  color: #1e293b;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
}

.item-price input {
  width: 80px;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.item-price input:focus {
  outline: none;
  border-color: #F4B223;
}

/* 开关样式 */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 24px;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* 删除按钮 */
.btn-danger {
  background: #fee2e2;
  color: #dc2626;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: #fecaca;
}

/* 空状态 */
.empty-hint {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  font-size: 14px;
}

.empty-hint::before {
  content: '📭';
  display: block;
  font-size: 32px;
  margin-bottom: 8px;
}

/* 克重分组样式 */
.weight-group {
  margin-bottom: 20px;
}

.weight-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 克重标签样式 - 简化版 */
.weight-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weight-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 14px;
  flex-wrap: wrap;
}

.weight-tag .weight {
  font-weight: 600;
  color: #1e293b;
  min-width: 50px;
}

.weight-tag .price {
  color: #64748b;
}

.weight-tag .price.total {
  color: #F4B223;
  font-weight: 700;
  margin-left: auto;
}

.weight-tag input {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.weight-tag input:focus {
  outline: none;
  border-color: #F4B223;
}

/* 添加按钮统一样式 */
.btn-primary {
  background: linear-gradient(135deg, #F4B223 0%, #CF3339 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 178, 35, 0.4);
}

/* 模板标签样式 */
.template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.template-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 8px;
}

.template-tag .emoji {
  font-size: 16px;
}

.template-tag .name {
  font-weight: 500;
  color: #1e293b;
}

/* ========== 选购配置页面一行三个布局 ========== */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.config-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.config-section .section-title i {
  color: #F4B223;
}

.config-section .section-title i.fa-gem { color: #F4B223; }
.config-section .section-title i.fa-weight-hanging { color: #64748b; }
.config-section .section-title i.fa-box { color: #8b5cf6; }
.config-section .section-title i.fa-gift { color: #ec4899; }
.config-section .section-title i.fa-paint-brush { color: #3b82f6; }

/* 克重分类样式 */
.weight-group {
  margin-bottom: 20px;
}

.weight-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 克重项样式 */
.weight-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}

.weight-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.weight-tag-name {
  font-weight: 600;
  color: #1e293b;
}

/* 克重标签样式 */
.weight-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.weight-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: white;
  border-radius: 8px;
  font-size: 14px;
  flex-wrap: wrap;
}

.weight-tag .weight {
  font-weight: 600;
  color: #1e293b;
  min-width: 50px;
}

.weight-tag .price {
  color: #64748b;
}

.weight-tag .price.total {
  color: #F4B223;
  font-weight: 700;
  margin-left: auto;
}

.weight-tag input {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid #e2e8f2;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.weight-tag input:focus {
  outline: none;
  border-color: #F4B223;
}

/* 尺寸列表样式 */
.sizes-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

.sizes-title {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
}

.size-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 6px;
}

.size-tag .btn-danger {
  padding: 2px 6px;
  font-size: 10px;
}

/* 克重配置折叠样式 */
.weight-collapsible {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.weight-collapsible-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  background: #f8fafc;
  transition: background 0.2s;
}

.weight-collapsible-header:hover {
  background: #f1f5f9;
}

.weight-collapsible-title {
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

.weight-collapsible-info {
  font-size: 12px;
  color: #64748b;
  margin-right: 12px;
}

.weight-collapsible-arrow {
  color: #94a3b8;
  transition: transform 0.2s;
}

.weight-collapsible-content {
  padding: 12px 16px;
  border-top: 1px solid #e2e8f0;
}
