body{
  background: #fff;
  text-align: center;
  margin: 50px auto;
  padding: 0;
  width: 600px;
}
*{
  margin: 0;
  padding: 0;
}
#title {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-end;
}
.logo {
  height: 48px;
  color:#A443FF;
}
#title p {
  text-align: left;
  line-height: 100%;
}
.container {
  display: flex;
    flex-direction: column;
    gap:15px;
}
.column {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.row {
  display:flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap:15px;
}
.btn-group {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
.btn {
  display: flex;
  height: 30px;
}
button {
  border: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 30px;
  background-color: #A443FF;
  color: #fff;
}
input,select {
  border: none;
  width: 100%;
  border-radius: 5px;
  justify-content: center;
  height: 30px;
  text-indent: 10px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(../img/down.svg);
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
span {
  color: #A443FF;
  font-weight: bold;
}
svg {
  border-radius: 10px;
}
#font-options {
  display: flex;
  flex-direction: column;
  gap:15px;
  padding: 20px 0;
  border-top: 1px dashed #a443ff65;
  border-bottom: 1px dashed #a443ff65;
}
.column p,.row p {
  display: flex;
  white-space: nowrap;
  gap: 10px;
}
.center-text {
  display: flex;
  width: 100%;
}
label {
  width: 100%;
  justify-content: center;
}
.column,.row {
  width: 100%;
}
#main {
  display: flex;
    gap: 15px;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
}
.barcode-container {
  background-image: 
    linear-gradient(90deg, transparent 1.5px, #e9d1ff 1.5px),
    linear-gradient(180deg, transparent 1.5px, #e9d1ff 1.5px);
  background-size: 20px 20px;
  background-position: center;
  background-color: #A443FF;
  border-radius: 5px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 自定义图标和文本样式 */
.checkbox-options .btn {
  cursor: pointer;
}
.icon {
  width: 100%;
}


/* 单选项 */
  /* 未选中状态 */
  .checkbox-options .btn .icon {
    color: #ffffff; /* 未选中时的图标颜色 */
  }

  /* 选中状态 */
  .btn input:checked + .icon {
    color: #ffffff; /* 选中时的图标颜色 */
    background-color: #A443FF;
    stroke-width: 6 !important;
  }
/* 多选项 */

  /* 选中状态 */
  .font-widget input:checked + .icon {
    color: #A443FF; /* 选中时的图标颜色 */
    background-color: #ffffff;
  }
/* 鼠标悬停状态 */
.btn:hover .icon {
  background-color: #a443ff11;
}