.bg-card {
  background-color: var(--bg-white);
  border-radius: 10px;
}
.gls-wzt-space {
  display: flex;
  gap: 15px;
  padding: 1.0625rem var(--layout-padding);
}
.gls-wzt-space .gls-wzt-space-main {
  width: 1000px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px 33px;
  display: flex;
  align-items: center;
  height: 130px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .top-card {
  background-color: var(--bg-white);
  border-radius: 45px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-user {
  background-color: var(--bg-white);
  border-radius: 45px;
  padding: 10px 15px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-user .gls-wzt-smt-user-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-user .gls-wzt-smt-user-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-user .gls-wzt-smt-user-info .username {
  color: var(--text-1);
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 9vw;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-user .gls-wzt-smt-user-info .date {
  color: var(--text-2);
  font-size: 12px;
  margin-top: 10px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-line {
  width: 1px;
  height: 100%;
  background-color: var(--text-1);
  margin: 0 2.125rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item {
  background-color: var(--bg-white);
  border-radius: 45px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item:hover {
  background: var(--brand-light);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item .gls-wzt-smt-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bg-light);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item .gls-wzt-smt-item-info {
  display: flex;
  gap: 1rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item .gls-wzt-smt-item-info .gls-wzt-smt-item-num {
  display: flex;
  flex-direction: column;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item .gls-wzt-smt-item-info .gls-wzt-smt-item-num .count {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  transition: color 0.3s;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-top .gls-wzt-smt-list .gls-wzt-smt-item .gls-wzt-smt-item-info .gls-wzt-smt-item-num .title {
  color: var(--text-2);
  font-size: 14px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px 33px;
  margin-top: 10px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 25px 30px 20px;
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.5rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item:hover .order-icon {
  background: var(--brand-light);
  border: 1.43px solid var(--brand-color);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item:hover .order-icon svg,
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item:hover .order-icon path {
  fill: var(--brand-color);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item:hover .order-text {
  color: var(--brand-color);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon {
  width: 50px;
  height: 50px;
  border-radius: 17.86px;
  background: #f0f0f0;
  border: 1.43px solid #bababa;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon svg,
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon path {
  fill: var(--text-1);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-text {
  margin-top: 20px;
  font-size: 18px;
  transition: all 0.3s;
  color: var(--text-1);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px 33px;
  margin-top: 10px;
  min-height: 60vh;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-title .all-btn {
  font-weight: 400;
  color: var(--brand-color);
  cursor: pointer;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-wrap {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card {
  background-color: var(--bg-white);
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-cover {
  margin-top: 1.5rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-top .gls-wzt-pc-collect {
  height: 1.5rem;
  width: 1.75rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-detail {
  margin-top: 1rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-space-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 3.75rem;
  margin-top: 1.0625rem;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-space-empty .gls-wzt-space-empty-img {
  width: 18.75rem;
  user-select: none;
}
.gls-wzt-space .gls-wzt-space-main #space-account .gls-wzt-sm-list .gls-wzt-space-empty .gls-wzt-space-empty-text {
  color: var(--text-1);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 15px;
}
.gls-wzt-space-m {
  display: none;
}
@media (max-width: 768px) {
  .gls-wzt-space {
    display: none;
  }
  .gls-wzt-space-m {
    padding: 0 10px;
    display: block;
    background: linear-gradient(0deg, #ffffff 0%, #fffbf5 55.07%, #fff1e6 100%);
  }
  .gls-wzt-space-m .card-title {
    font-size: 1.6rem;
    color: var(--text-1);
    font-weight: 700;
  }
  .gls-wzt-space-m .gls-wzt-sm-user {
    display: flex;
    align-items: center;
    padding: 3rem 2.4rem;
    gap: 1rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-user .gls-wzt-sm-user-img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
  }
  .gls-wzt-space-m .gls-wzt-sm-user .gls-wzt-sm-user-img img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }
  .gls-wzt-space-m .gls-wzt-sm-user .gls-wzt-sm-user-info .username {
    font-size: 1.6rem;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50vw;
  }
  .gls-wzt-space-m .gls-wzt-sm-user .gls-wzt-sm-user-info .email {
    font-size: 1.4rem;
    color: var(--text-3);
    margin-top: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50vw;
  }
  .gls-wzt-space-m .gls-wzt-sm-nav {
    padding: 2.2rem;
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-white);
    border-radius: 10px;
  }
  .gls-wzt-space-m .gls-wzt-sm-nav .gls-wzt-sm-nav-item {
    font-size: 1.3rem;
    color: var(--text-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-nav .gls-wzt-sm-nav-item .icon {
    width: 3.6rem;
    height: 3.6rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-order {
    margin-top: 1.5rem;
    padding: 1.4rem 1rem 2.5rem 1rem;
    background-color: var(--bg-white);
    border-radius: 10px;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.4rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-title .title {
    font-size: 1.6rem;
    color: var(--text-1);
    font-weight: 700;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-title .more {
    font-size: 1.4rem;
    color: var(--brand-color);
    cursor: pointer;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 12px;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon {
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffeabd;
    border-radius: 15.71px;
    border: 1.26px solid #ffae00;
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon svg,
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-icon path {
    fill: var(--brand-color);
  }
  .gls-wzt-space-m .gls-wzt-sm-order .gls-wzt-sm-order-list .gls-wzt-sm-order-item .order-text {
    font-size: 1.2rem;
    color: var(--text-1);
  }
  .gls-wzt-space-m .gls-wzt-sm-recent {
    margin-top: 2.6rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-recent .gls-wzt-sm-recent-title {
    padding: 0 1.4rem;
    font-size: 1.6rem;
    color: var(--text-1);
    font-weight: 700;
  }
  .gls-wzt-space-m .gls-wzt-sm-recent .gls-wzt-sm-recent-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gls-wzt-space-m .gls-wzt-sm-recent .gls-wzt-sm-recent-list .gls-wzt-product-card {
    background-color: var(--bg-white);
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list {
    padding: 1.4rem 1rem 2.5rem 1rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-title .all-btn {
    font-weight: 400;
    color: var(--brand-color);
    cursor: pointer;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-wrap {
    display: grid;
    gap: 17px;
    grid-template-columns: repeat(2, 1fr);
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card {
    border-radius: 10px;
    background-color: var(--bg-white);
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-cover {
    margin-top: 2rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-top .gls-wzt-pc-collect {
    height: 1.5rem;
    width: 1.75rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-sm-list-wrap .gls-wzt-product-card .gls-wzt-pc-detail {
    margin-top: 1rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-space-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 3.75rem;
    margin-top: 1.0625rem;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-space-empty .gls-wzt-space-empty-img {
    width: 18.75rem;
    user-select: none;
  }
  .gls-wzt-space-m .mo-gls-wzt-sm-list .gls-wzt-space-empty .gls-wzt-space-empty-text {
    color: var(--text-1);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 15px;
  }
}
