:root {
  --bg-page: #F9F9FB;
  --bg-panel: #FFFFFF;
  --bg-soft: #F6F6F6;
  --bg-tag: #EFEFEF;
  --text-main: #000000;
  --border-light: rgba(0, 0, 0, 0.1);
  --border-mid: rgba(0, 0, 0, 0.2);
  --primary: #5CA1FF;
}

html, body {
  overflow: hidden;
  user-select: none;
  box-sizing: border-box;
  margin: 0px; width: 100%;
  padding: 0px; height: 100%;
  background: var(--bg-page);
  font-family: "LXGW WenKai Mono";
}

::-webkit-scrollbar {
  border-radius: 5px;
  width: 8px; height: 8px;
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  border: 1px solid var(--bg-soft);
  background: rgba(0, 0, 0, 0.1);
}

.header {
  height: 55px;
  display: flex;
  margin: 0 auto;
  max-width: 790px;
  font-weight: bold;
  align-items: center;
  background: #F9F9FB;
  box-sizing: border-box;
  padding: 15px 15px 0 15px;
  justify-content: space-between;
}

.header > .zuobian {
  gap: 8.5px;
  height: 40px;
  display: flex;
  align-items: center;
}

.header > .zuobian > .lgimg {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.header > .zuobian > .text {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
}

.header > .youbian {
  gap: 5px;
  height: 40px;
  color: #000;
  display: flex;
  padding: 0 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 20px;
  align-items: center;
  background: #EFEFEF;
}

.product {
  gap: 10px;
  height: 60px;
  display: flex;
  padding: 10px;
  overflow-x: auto;
  border-radius: 15px;
  align-items: center;
  background: #FFFFFF;
  scrollbar-width: none;
  box-sizing: border-box;
  -ms-overflow-style: none;
  margin: 15px auto 0 auto;
  width: calc(100% - 30px);
  max-width: calc(790px - 30px);
  border: 1px solid rgb(0, 0, 0, .2);
}

.product > .items {
  gap: 5px;
  color: #000;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 7px;
  align-items: center;
  white-space: nowrap;
  background: #F9F9FB;
  box-sizing: border-box;
  justify-content: center;
  border: 1px dotted rgb(0, 0, 0, .1);
}

.product > .visit {
  gap: 5px;
  color: #000;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 7px;
  align-items: center;
  white-space: nowrap;
  background: #FFFFFF;
  box-sizing: border-box;
  justify-content: center;
  border: 1px solid #5CA1FF;
}