* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 14px;
  --themeColor: #1989fa;
}
::-webkit-scrollbar {
  display: none;
}
.flex-d-c {
  display: flex;
  align-items: center;
}
.flex-sb-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content {
  width: 100%;
  min-height: 100vh;
  background-color: #f0f1f3;
}
/* vant样式重写 */
.van-button {
  height: 32px;
}
.van-popup__close-icon {
  font-size: 16px;
}
.van-radio--horizontal {
  width: 44%;
}
.van-dialog {
  border-radius: 6px;
}
.van-empty__image {
  width: 100px;
  height: 100px;
  margin-top: 50px;
}
.van-uploader__upload,
.van-uploader__preview-image {
  width: calc((100vw - 130px) / 3);
  height: calc((100vw - 130px) / 3);
}
.van-uploader__upload:nth-child(3n + 3),
.van-uploader__preview:nth-child(3n + 3) {
  margin-right: 0;
}
/* 工具栏 */
.toolbar-box {
  width: 100%;
  padding: 8px 10px;
  background: #ffffff;
  justify-content: flex-end;
}
.toolbar-box .add-btn {
  width: 64px;
  text-align: center;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  padding: 2px 0;
  margin-right: 8px;
  border-radius: 2px;
}
.toolbar-box .copy-btn {
  width: 64px;
  color: #ffffff;
  text-align: center;
  border: 1px solid #409eff;
  background: #409eff;
  padding: 2px 0;
  border-radius: 2px;
}
.toolbar-box .filter-btn {
  width: 64px;
  color: #ffffff;
  text-align: center;
  border: 1px solid #409eff;
  background: #409eff;
  padding: 2px 0;
  border-radius: 2px;
  margin-right: 10px;
}
/* 商品列表 */
.goods-list {
  margin-top: 8px;
  padding: 10px 10px;
  border-bottom: 1px solid #f1f1f1;
  background-color: #ffffff;
}
.goods-list::before {
  border-bottom: none;
}
.goods-list .logo-img {
  width: 70px;
  height: 70px;
}
.goods-list .goods-info {
  flex: 1;
  padding: 0 10px;
}
.goods-list .name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}
.goods-list .price {
  width: calc(100vw - 170px);
}
.goods-list .price > .price-section {
  width: 50%;
  color: #7a7a7a;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods-list .type-off {
  color: #b5b5b5;
  font-size: 12px;
  text-align: center;
  margin-right: 4px;
}
.goods-list .type-on {
  color: #07c160;
  font-size: 12px;
  text-align: center;
  margin-left: 4px;
}
.goods-list .handle-box {
  width: 60px;
  text-align: center;
}
.goods-list .handle-box > button {
  width: 60px;
  color: #ffffff;
  border: none;
  font-size: 12px;
  padding: 2px;
  margin-top: 6px;
  border-radius: 2px;
}
/* 复制弹窗 */
.copy-content {
  width: 80vw;
  height: 230px;
  padding: 20px;
  position: relative;
}
.copy-content .pop-title {
  font-size: 16px;
  text-align: center;
}
.copy-content .price-tips {
  color: #5e5e5e;
  margin: 30px 0 5px 0;
}
.copy-content .link-info {
  color: #9e9e9e;
  padding-top: 10px;
  word-break: break-all;
}
.copy-content .copy-price {
  color: var(--themeColor);
}
.copy-content .pop-btn {
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.copy-content .pop-btn .cancel-btn {
  width: 48%;
  text-align: center;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  padding: 6px 0;
  margin-right: 4%;
  border-radius: 4px;
}
.copy-content .pop-btn .copy-btn {
  width: 48%;
  color: #ffffff;
  text-align: center;
  border: 1px solid #409eff;
  background: #409eff;
  padding: 6px 0;
  border-radius: 4px;
}
.footer {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  background: #ffffff;
  z-index: 9;
  border-top: 1px solid #f1f1f1;
}
.footer .goods-center {
  flex: 1;
  text-align: center;
  border-right: 1px solid #f1f1f1;
}
.footer .personal-center {
  flex: 1;
  text-align: center;
}
.footer img {
  width: 20px;
}
.footer .part-title {
  color: #969799;
  font-size: 12px;
  /* transform: scale(0.8); */
}
.footer .part-title.active {
  color: #409eff;
}
