.cart-freight-insurance {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgb(var(--color-entry-line));
}

.cart-freight-insurance-icon {
  width: 100px;
  height: 100px;
  margin-right: 16px;
  flex-shrink: 0;
}

.cart-freight-insurance-content {
  flex: 1;
  margin-right: 16px;
}

.freight-insurance-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 4px;
}

.freight-insurance-des {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.cart-freight-insurance-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.freight-insurance-price {
  font-size: 16px;
  font-weight: 500;
  color: #6B4EFF;
  margin: 0;
}

/* 开关按钮样式 */
.freight-insurance-check {
  width: 44px;
  height: 24px;
  background: #E0E0E0;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.sliding-block {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.freight-insurance-check[data-check="true"] {
  background: #6B4EFF;
}