.qwen3-drawer .drawer-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background-color: #fff;
  position: relative;
}
.qwen3-drawer .drawer-header .logo img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.qwen3-drawer .drawer-header .title {
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.qwen3-drawer .drawer-header .close-icon {
  cursor: pointer;
  font-size: 18px;
  color: #909399;
}
.qwen3-drawer .drawer-header .close-icon:hover {
  color: #606266;
}
.qwen3-drawer .description {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 20px;
  color: #606266;
  margin-bottom: 0;
}
.qwen3-drawer .tags {
  padding: 0 24px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qwen3-drawer .action-buttons {
  padding: 0 24px 20px;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
.qwen3-drawer .action-buttons .btn-primary {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: white;
  width: 140px;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
}
.qwen3-drawer .action-buttons .btn-primary:hover {
  background-color: #e75d2b;
}
.qwen3-drawer .action-buttons .btn-default {
  width: 140px;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
}
.qwen3-drawer .divider {
  height: 1px;
  background-color: #ebeef5;
  margin: 0 24px;
}
.qwen3-drawer .section-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #303133;
  padding: 20px 24px;
  margin-top: 0;
  position: relative;
  z-index: 9;
}
.qwen3-drawer .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #E6E8EE;
  z-index: -1;
}
.qwen3-drawer .info-row {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qwen3-drawer .info-row .label {
  font-size: 14px;
  color: #909399;
  min-width: 80px;
}
.qwen3-drawer .info-row .value {
  font-size: 14px;
  color: #303133;
  flex: 1;
  word-break: break-all;
}
.qwen3-drawer .info-row .value .price-item {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.qwen3-drawer .info-row .value .price-item .key {
  color: #909399;
  margin-right: 8px;
}
.qwen3-drawer .info-row .value .rate-warning {
  background-color: #fdf6ec;
  color: #f56c6c;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.qwen3-drawer .info-row .value .rate-table .custom-table .el-table__header-wrapper th {
  background-color: #f5f7fa;
  color: #909399;
  font-weight: 500;
}
.qwen3-drawer .info-row .value .rate-table .custom-table .el-table__body-wrapper td {
  padding: 10px;
}
.qwen3-drawer .info-row .value .rate-table .custom-table .el-table__row {
  border-bottom: 1px solid #ebeef5;
}
.qwen3-drawer .info-row:last-child {
  border-bottom: none;
}
