:root {
  --main: #c40000;
  --price: #cb1f15;
  --text: #000;
  --normal: #313232;
  --muted: #606060;
  --pale: #909090;
  --line: #f0f0f0;
  --soft-line: #f6f6f6;
  --page: #fff;
  --field: #eaeaea;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #f0f0f0;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  background: #f0f0f0;
  overflow-x: hidden;
}

body.overlay-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  background: none;
  padding: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.phone-shell {
  position: relative;
  width: min(100vw, 450px);
  min-height: 100vh;
  background: var(--page);
  overflow-x: hidden;
}

.topbar-mask {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 50%;
  width: min(100vw, 450px);
  height: 44px;
  transform: translateX(-50%);
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.topbar-title {
  width: calc(100% - 30px);
  height: 44px;
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.topbar-title span {
  font-size: 21px;
  line-height: 23px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-head {
  position: relative;
  width: 100%;
  height: 172px;
  background: #fff;
}

.store-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125px;
  overflow: hidden;
  background: #ddd;
}

.store-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 118px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: #fff;
}

.shop-copy {
  width: calc(100% - 120px);
  margin-left: 15px;
  padding-top: 20px;
}

.shop-copy h1 {
  margin: 0;
  padding: 5px 0;
  font-size: 21px;
  line-height: 23px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portrait-button {
  position: absolute;
  z-index: 4;
  top: 54px;
  right: 20px;
  width: 55px;
  height: 55px;
  border: 2px solid #eaeaea;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.portrait-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-panel {
  position: sticky;
  top: 0;
  z-index: 9000;
  width: 100%;
  background: #fff;
}

.tabs {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  background: #fff;
}

.tab {
  position: relative;
  width: 60px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 15px;
  text-align: center;
}

.tab span {
  font-size: 16px;
  color: var(--muted);
}

.tab.active span {
  font-weight: 700;
  color: #000;
}

.tab i {
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background: var(--main);
  opacity: 0;
}

.tab.active i {
  opacity: 1;
}

.selector {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ededed;
  background: #fff;
}

.selector button {
  flex: 1;
  min-width: 0;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.selector button span {
  margin-left: 4px;
  color: #999;
  font-size: 13px;
}

.selected-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ededed;
  background: #fff;
}

.selected-scroll {
  width: calc(100% - 70px);
  margin-left: 15px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.selected-scroll::-webkit-scrollbar {
  display: none;
}

.selected-chip {
  flex: 0 0 auto;
  height: 27px;
  max-width: 160px;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  color: var(--main);
  background: #fff4f4;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-clear {
  width: 55px;
  height: 27px;
  margin: 0 15px 0 0;
  border-radius: 3px;
  color: #606060;
  background: #f7f7f7;
  font-size: 12px;
}

.drop-view {
  position: absolute;
  z-index: 9500;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
}

.cartype {
  width: 100%;
  padding: 10px 0;
  background: #fff;
}

.content-list {
  width: calc(100% - 30px);
  margin-left: 15px;
  display: flex;
  flex-wrap: wrap;
}

.sort-item {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #ededed;
  border-radius: 4px;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.sort-item + .sort-item {
  margin-top: 0;
}

.sort-item-text {
  margin-left: 25px;
  color: #000;
  font-size: 13px;
  line-height: 38px;
}

.sort-item.active .sort-item-text {
  color: var(--main);
}

.selected-icon {
  position: absolute;
  right: 35px;
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
}

.search {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  background: #fff;
}

.search span {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  background: var(--field);
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.search input {
  width: 72px;
  height: 28px;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0 10px 0 2px;
  color: #404040;
  font-size: 12px;
  background: var(--field);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.search input::placeholder {
  color: #999;
}

.tab-page {
  display: none;
  background: #fff;
}

.tab-page.active {
  display: block;
}

.car-list {
  width: 100%;
  background: #fff;
}

.car-item {
  position: relative;
  width: calc(100% - 30px);
  min-height: 132px;
  margin-left: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--soft-line);
  display: flex;
  align-items: flex-start;
}

.car-thumb {
  position: relative;
  width: 130px;
  height: 98px;
  flex: 0 0 130px;
  overflow: hidden;
  border-radius: 5px;
  background: #e9e9e9;
}

.car-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-info {
  width: calc(100% - 150px);
  min-width: 0;
  margin-left: 10px;
}

.car-name {
  height: 40px;
  margin: 2px 0 0;
  color: var(--normal);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.car-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
}

.car-meta span {
  flex: 0 0 auto;
  max-width: 90px;
  color: var(--pale);
  font-size: 12px;
  line-height: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-meta i {
  width: 1px;
  height: 13px;
  margin: 0 5px;
  background: #e9e9e9;
}

.car-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.price {
  display: flex;
  align-items: baseline;
  min-width: 0;
}

.price strong {
  color: var(--main);
  font-size: 21px;
  line-height: 23px;
  font-weight: 700;
}

.price span {
  color: var(--price);
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

.ask-button {
  width: 72px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--main);
}

.ask-button span {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
}

.loadmore {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 12px;
}

.sell-form {
  width: 100%;
  background: #fff;
}

.sell-row {
  width: calc(100% - 30px);
  min-height: 50px;
  margin-left: 15px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  background: #fff;
  text-align: left;
}

.sell-row.first-row {
  margin-top: 10px;
}

.sell-row .item-name {
  flex: 0 0 auto;
  color: #000;
  font-size: 15px;
  line-height: 19px;
}

.item-point {
  margin-left: 3px;
  color: var(--main);
  font-size: 14px;
  font-weight: 700;
}

.item-content,
.car-content {
  width: 200px;
  margin-left: auto;
  margin-right: 10px;
  color: #000;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-align: right;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-content {
  width: min(250px, calc(100% - 100px));
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.no-content {
  color: #a9a9a9;
  font-weight: 400;
}

.item-arr {
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(-45deg);
  margin-right: 4px;
  flex: 0 0 auto;
}

.item-line {
  width: calc(100% - 30px);
  height: 1px;
  margin-left: 15px;
  background: #f5f5f5;
}

.item-line2 {
  width: 100%;
  height: 5px;
  background: #f5f5f5;
}

.name-input,
.wx-input,
.remarks-input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #000;
  font: inherit;
}

.name-input {
  width: 105px;
  min-width: 0;
  margin-left: auto;
  color: #000;
  font-size: 15px;
}

.mileage-input {
  width: 145px;
  text-align: right;
}

.person-input,
.phone-input {
  margin-left: 18px;
}

.item-unit {
  margin-left: 5px;
  color: #000;
  font-size: 15px;
}

.name-input::placeholder,
.wx-input::placeholder,
.remarks-input::placeholder {
  color: #a9a9a9;
}

.radio-option {
  flex: 0 0 auto;
  height: 30px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 15px;
}

.radio-option i {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  background: #fff;
}

.radio-option.active i {
  border: 4px solid var(--main);
}

.wx-toggle {
  margin-left: 8px;
}

.qr-text {
  margin-left: auto;
  margin-right: 10px;
  color: #606060;
  font-size: 10px;
  white-space: nowrap;
}

.wx-input {
  width: 110px;
  color: #000;
  font-size: 15px;
  text-align: right;
}

.remarks-view {
  width: calc(100% - 30px);
  min-height: 142px;
  margin: 15px 0 0 15px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  background: #f5f5f5;
}

.remarks-input {
  width: 100%;
  min-height: 120px;
  padding: 10px;
  resize: vertical;
  color: #000;
  font-size: 13px;
  line-height: 19px;
}

.apply-btn {
  width: calc(100% - 30px);
  height: 45px;
  margin: 25px 0 0 15px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--main);
}

.apply-btn span {
  font-size: 17px;
  font-weight: 700;
}

.sell-bottom-space {
  height: 250px;
}

.form-row {
  width: calc(100% - 30px);
  min-height: 50px;
  margin-left: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  text-align: left;
}

.picker-row {
  cursor: pointer;
}

.form-row span {
  color: #000;
  font-size: 15px;
}

.form-row strong,
.form-row em,
.form-row input {
  width: 230px;
  border: 0;
  outline: 0;
  color: #000;
  background: transparent;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-align: right;
  font-style: normal;
}

.form-row strong,
.form-row em {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-row em,
.form-row input::placeholder {
  color: #a9a9a9;
  font-weight: 400;
}

.form-row b {
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(-45deg);
  margin-right: 4px;
}

.form-line {
  width: calc(100% - 30px);
  height: 1px;
  margin-left: 15px;
  background: #f5f5f5;
}

.section-gap {
  width: 100%;
  height: 5px;
  background: #f5f5f5;
}

.apply-button {
  width: calc(100% - 30px);
  height: 45px;
  margin: 25px 15px;
  border-radius: 5px;
  color: #fff;
  background: var(--main);
  font-size: 15px;
  font-weight: 700;
}

.corp-card {
  width: 100%;
  background: #fff;
  border-bottom: 5px solid #f5f5f5;
}

.info-block {
  width: calc(100% - 30px);
  margin: 10px 0 10px 15px;
  padding: 13px 0;
  border-radius: 8px;
  background: #f5f5f5;
}

.corp-title {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.corp-title h2 {
  margin: 0;
  color: #000;
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
  min-width: 0;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-block h2,
.sales-block h2 {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
}

.corp-qi {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--main);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
}

.corp-auth {
  height: 16px;
  padding: 0 6px;
  border: 1px solid var(--main);
  border-radius: 3px;
  color: var(--main);
  background: #fff;
  font-size: 11px;
  line-height: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.corp-line {
  width: calc(100% - 30px);
  margin: 8px 0 0 15px;
  display: flex;
  align-items: center;
  color: #606060;
}

.corp-line img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.corp-line b {
  min-width: 0;
  margin-left: 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time-line {
  width: calc(100% - 30px);
  margin: 10px 0 0 15px;
  display: flex;
  align-items: flex-start;
  color: var(--muted);
}

.time-line:last-child {
  padding-bottom: 15px;
}

.time-line span {
  width: 16px;
  color: #909090;
  font-size: 13px;
  line-height: 18px;
}

.time-line b {
  width: calc(100% - 22px);
  margin-left: 5px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.info-block h2,
.block-heading {
  width: calc(100% - 30px);
  margin-left: 15px;
}

.info-block p {
  width: calc(100% - 30px);
  margin: 10px 0 0 15px;
  color: #606060;
  font-size: 13px;
  line-height: 21px;
}

.service-grid {
  width: calc(100% - 30px);
  margin: 14px 0 0 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 6px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.service-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-item span {
  width: 100%;
  margin-top: 5px;
  color: #606060;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-heading h2 {
  margin: 0;
}

.block-heading button {
  color: #909090;
  font-size: 12px;
}

.shop-images {
  width: calc(100% - 30px);
  height: 170px;
  margin: 12px 0 0 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.shop-image-tile {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #eaeaea;
}

.shop-image-tile:first-child {
  grid-row: span 2;
}

.shop-image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-block {
  width: 100%;
  padding: 10px 0 22px;
  background: #fff;
}

.shop-sales-list {
  width: calc(100% - 30px);
  margin: 12px 0 0 15px;
}

.sales-member {
  position: relative;
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: #f5f5f5;
}

.sales-portrait {
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.sales-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.sales-copy strong {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sales-copy span {
  margin-top: 2px;
  color: #a9a9a9;
  font-size: 11px;
  line-height: 16px;
}

.sales-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-right: 8px;
  gap: 8px;
}

.sales-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.sales-action img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.shop-gallery-page {
  min-height: calc(100vh - 44px);
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 6px;
  background: #fff;
}

.shop-gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  background: #f0f0f0;
}

.shop-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-preview-page {
  position: relative;
  height: calc(100vh - 44px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.shop-preview-page img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-gallery-back {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 13px;
}

.drop-cover,
.sheet-mask,
.wx-mask {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.4);
}

.ask-mask {
  position: fixed;
  z-index: 25000;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.45);
}

.ask-popup {
  position: relative;
  width: min(100vw, 450px);
  height: min(450px, 94vh);
  padding-top: 15px;
  padding-bottom: 70px;
  background: #fff;
  overflow: hidden;
}

.ask-popup.with-wx {
  height: min(500px, 94vh);
}

.ask-close {
  position: absolute;
  top: 2px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: #454545;
  font-size: 32px;
  line-height: 30px;
  font-weight: 300;
}

.ask-title {
  margin-top: 0;
  color: #454545;
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}

.ask-desc {
  margin-top: 4px;
  color: #a9a9a9;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.ask-car-card {
  width: 84%;
  margin: 16px auto 0;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
}

.ask-car-card > img {
  width: 74px;
  height: 55px;
  border-radius: 3px;
  object-fit: cover;
  background: #e9e9e9;
}

.ask-car-copy {
  min-width: 0;
  width: calc(100% - 84px);
  margin-left: 10px;
}

.ask-car-copy strong {
  height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #313232;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
}

.ask-car-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  color: #969696;
  font-size: 11px;
  line-height: 13px;
  white-space: nowrap;
}

.ask-car-meta i {
  width: 1px;
  height: 10px;
  margin: 0 7px;
  background: var(--line);
}

.ask-car-price {
  margin-top: 5px;
  display: flex;
  align-items: baseline;
  color: var(--main);
}

.ask-car-price strong,
.ask-car-price span {
  color: var(--main);
  font-size: 11px;
  line-height: 12px;
  font-weight: 700;
}

.ask-row {
  width: 84%;
  min-height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ask-row.underline {
  border-bottom: 1px solid var(--line);
}

.ask-field {
  min-width: 0;
  display: flex;
  align-items: center;
}

.ask-field.wide {
  flex: 1 1 auto;
}

.ask-field span {
  width: 65px;
  color: #000;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.ask-field input,
.ask-wechat-input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #454545;
  background: transparent;
  font-size: 15px;
  line-height: 20px;
}

.ask-field input::placeholder,
.ask-wechat-input::placeholder,
.ask-remarks::placeholder {
  color: #a9a9a9;
}

.ask-field input {
  width: 110px;
  padding: 0 5px;
}

.ask-sex {
  display: flex;
  align-items: center;
}

.ask-radio {
  height: 30px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  color: #a9a9a9;
  font-size: 15px;
  line-height: 18px;
}

.ask-radio i {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: #fff;
}

.ask-radio.active {
  color: #454545;
  font-weight: 700;
}

.ask-radio.active i {
  border: 4px solid var(--main);
}

.ask-wx-toggle {
  margin-left: 8px;
}

.ask-wx-row {
  min-height: 45px;
}

.ask-qr-trigger {
  max-width: 118px;
  min-width: 0;
  display: flex;
  align-items: center;
  color: #a9a9a9;
  font-size: 10px;
  line-height: 14px;
}

.ask-qr-trigger b {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

.ask-qr-trigger img {
  width: 20px;
  height: 20px;
  margin-left: 4px;
  border-radius: 2px;
  object-fit: cover;
}

.ask-wechat-input {
  width: 90px;
  text-align: right;
}

.ask-remarks {
  width: 84%;
  height: 50px;
  margin: 8px 0 0 8%;
  padding: 7px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  outline: 0;
  resize: none;
  color: #000;
  background: #f5f5f5;
  font-size: 13px;
  line-height: 19px;
}

.ask-submit-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.ask-submit {
  width: 84%;
  height: 42px;
  border-radius: 42px;
  color: #fff;
  background: var(--main);
  font-size: 17px;
  font-weight: 700;
}

.drop-cover {
  z-index: 8800;
  display: block;
}

.page-overlay {
  position: fixed;
  z-index: 26000;
  top: 0;
  left: 50%;
  width: min(100vw, 450px);
  height: 100vh;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.overlay-nav {
  flex: 0 0 44px;
  height: 44px;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.overlay-nav strong {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.overlay-back,
.overlay-close {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  color: #000;
  font-size: 28px;
  line-height: 44px;
}

.overlay-back {
  left: 0;
}

.overlay-close {
  right: 0;
  font-size: 24px;
}

.overlay-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
}

.overlay-bottom {
  flex: 0 0 64px;
  height: 64px;
  padding: 10px 15px;
  border-top: 1px solid #ededed;
  display: flex;
  gap: 10px;
  background: #fff;
}

.reset-filter,
.apply-filter {
  height: 44px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 700;
}

.reset-filter {
  width: 105px;
  color: #000;
  background: #f7f7f7;
}

.apply-filter {
  flex: 1;
  color: #fff;
  background: var(--main);
}

.brand-picker,
.location-picker,
.date-picker {
  display: flex;
  height: calc(100vh - 44px);
  background: #fff;
}

.brand-index,
.picker-left {
  width: 105px;
  flex: 0 0 105px;
  overflow-y: auto;
  background: #f7f7f7;
}

.brand-index button,
.picker-left button {
  width: 100%;
  min-height: 45px;
  padding: 0 10px;
  color: #313232;
  font-size: 14px;
  text-align: left;
  background: #f7f7f7;
}

.brand-index button.active,
.picker-left button.active {
  color: var(--main);
  font-weight: 700;
  background: #fff;
}

.series-list,
.picker-right {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  background: #fff;
}

.series-list button,
.picker-right button {
  width: calc(100% - 30px);
  min-height: 50px;
  margin-left: 15px;
  border-bottom: 1px solid #f5f5f5;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}

.series-list button.active,
.picker-right button.active {
  color: var(--main);
  font-weight: 700;
}

.brand-page {
  position: relative;
  height: calc(100vh - 44px);
  overflow: hidden;
  background: #fff;
}

.brand-scroll {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.brand-list {
  min-height: 100%;
  padding-bottom: 18px;
  background: #fff;
}

.list-divider {
  width: 100%;
  padding: 7px 20px 7px 10px;
  color: #606060;
  font-size: 13px;
  line-height: 18px;
  background: #f0f0f0;
}

.brand-all-row,
.brand-row {
  width: 100%;
  min-height: 45px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  color: #000;
  background: #fff;
  text-align: left;
}

.brand-all-row {
  padding-left: 15px;
  font-size: 15px;
  font-weight: 700;
}

.brand-all-row.active,
.brand-row.active,
.hot-brand.active {
  color: var(--main);
}

.brand-icon {
  width: 50px;
  height: 50px;
  margin-left: 5px;
  padding: 10px;
  object-fit: contain;
}

.brand-title {
  min-width: 0;
  margin-left: 3px;
  padding-right: 34px;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-grid {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}

.hot-brand {
  width: 20%;
  aspect-ratio: 1 / 1;
  border-right: 0.8px solid #f0f0f0;
  border-bottom: 0.8px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  background: #fff;
  text-align: center;
}

.hot-logo {
  width: 35px;
  height: 35px;
  margin-top: 7px;
  object-fit: contain;
}

.hot-title {
  width: 100%;
  margin-top: 3px;
  padding: 0 4px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.indexBar-bg {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
}

.indexBar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.indexBar-box {
  width: 100%;
  height: min(100%, 760px);
  display: flex;
  flex-direction: column;
}

.indexBar-item {
  flex: 1 1 0;
  width: 30px;
  min-height: 18px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.indexToast {
  position: absolute;
  z-index: 20;
  inset: 0 60px 0 auto;
  width: 75px;
  height: 75px;
  margin: auto 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.series-view {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.08);
  animation: series-slide-in 180ms ease-out;
}

@keyframes series-slide-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.series-back {
  width: 100%;
  height: 42px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  color: #000;
  background: #fff;
  text-align: left;
}

.series-back span {
  width: 9px;
  height: 9px;
  margin-left: 15px;
  margin-right: 10px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.series-back strong {
  font-size: 15px;
  font-weight: 700;
}

.series-scroll {
  height: calc(100% - 42px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.series-item {
  width: calc(100% - 30px);
  min-height: 48px;
  margin-left: 15px;
  border-bottom: 1px solid #f0f0f0;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  background: #fff;
}

.series-item.active {
  color: var(--main);
  font-weight: 700;
}

.series-empty {
  padding: 18px 15px;
  color: #909090;
  font-size: 14px;
}

.filter-page {
  padding-bottom: 20px;
  background: #fff;
}

.filter-box {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding: 18px 0 4px;
  border-bottom: 1px solid #f5f5f5;
}

.filter-heading {
  margin-bottom: 12px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.filter-pill {
  height: 38px;
  padding: 0 5px;
  border-radius: 4px;
  color: #000;
  background: #f7f7f7;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-pill.active {
  color: var(--main);
  background: #fff4f4;
  font-weight: 700;
}

.range-look {
  height: 34px;
  margin: 5px 4px 0;
  display: flex;
  align-items: center;
}

.range-track {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #ededed;
}

.range-track::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 30%;
  height: 4px;
  border-radius: 3px;
  background: var(--main);
}

.range-thumb {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--main);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.range-thumb.left {
  left: 18%;
}

.range-thumb.right {
  left: 70%;
}

.color-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.month-grid {
  width: calc(100% - 30px);
  margin: 15px 0 0 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.month-grid button {
  width: 100%;
  height: 38px;
  margin-left: 0;
  border-bottom: 0;
  border-radius: 4px;
  color: #000;
  background: #f7f7f7;
  font-size: 14px;
  text-align: center;
}

.month-grid button.active {
  color: var(--main);
  background: #fff4f4;
  font-weight: 700;
}

.color-page {
  padding: 12px 0 20px;
}

.color-section {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding: 10px 0 16px;
}

.color-section h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 15px;
}

.filter-sheet {
  width: min(100vw, 450px);
  margin-top: 247px;
  max-height: 56vh;
  overflow-y: auto;
  background: #fff;
}

.filter-title {
  height: 40px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.filter-options {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
}

.filter-options button {
  height: 38px;
  border-radius: 4px;
  background: #f7f7f7;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-options button.active {
  color: #fff;
  background: var(--main);
}

.wx-mask {
  align-items: center;
}

.wx-mask img {
  width: min(80vw, 360px);
  max-height: 80vh;
  object-fit: contain;
  background: #fff;
}

.go-top {
  position: fixed;
  z-index: 9000;
  right: calc((100vw - min(100vw, 450px)) / 2 + 20px);
  bottom: 45px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.go-top.visible {
  opacity: 0.8;
  pointer-events: auto;
}

.toast {
  position: fixed;
  z-index: 30000;
  left: 50%;
  top: 50%;
  max-width: min(80vw, 320px);
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  border-radius: 5px;
  color: #fff;
  background: rgba(17, 17, 17, 0.75);
  font-size: 13px;
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 450px) {
  body {
    background: #fff;
  }

  .phone-shell,
  .topbar-mask,
  .filter-sheet {
    width: 100vw;
  }

  .go-top {
    right: 20px;
  }
}
