.sell-service-view {
  margin: 0 -6px;
}

.sell-service {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.sell-service-page {
  display: grid;
  gap: 14px;
}

.sell-service__status,
.sell-service__watch,
.sell-service__section,
.sell-service__progress,
.sell-service__empty {
  border: 1px solid #e0e4e2;
  border-radius: 18px;
  background: #fff;
}

.sell-service__status {
  display: grid;
  gap: 5px;
  padding: 20px;
}

.sell-service__status > span {
  color: #375a4c;
  font-size: 12px;
  font-weight: 900;
}

.sell-service__status > strong {
  color: #1e2924;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.sell-service__status > small {
  color: #66716c;
  font-size: 13px;
}

.sell-service__status--blue {
  border-color: #b8d8f5;
  background: #eef6ff;
}

.sell-service__status--blue > span,
.sell-service__status--blue > strong {
  color: #176db8;
}

.sell-service__live {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sell-service__live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2d8fe5;
  box-shadow: 0 0 0 0 rgba(45, 143, 229, 0.45);
  animation: sell-service-pulse 1.6s ease-out infinite;
}

@keyframes sell-service-pulse {
  70% { box-shadow: 0 0 0 9px rgba(45, 143, 229, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 143, 229, 0); }
}

.sell-service__watch {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.sell-service__photo {
  display: grid;
  min-height: 188px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f1f3f2;
  color: #8a918d;
  font-size: 12px;
  text-align: center;
}

.sell-service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sell-service__watch-info {
  min-width: 0;
  padding: 4px 0;
}

.sell-service__watch-info > p {
  margin: 0 0 4px;
  color: #5f7169;
  font-size: 12px;
  font-weight: 900;
}

.sell-service__watch-info > h2 {
  margin: 0 0 14px;
  color: #1f2924;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.sell-service__watch-info dl,
.sell-service__money-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.sell-service__watch-info dl > div,
.sell-service__money-card dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
}

.sell-service__watch-info dt,
.sell-service__money-card dt {
  color: #818884;
  font-size: 11px;
}

.sell-service__watch-info dd,
.sell-service__money-card dd {
  margin: 0;
  color: #2b342f;
  font-size: 12px;
  font-weight: 700;
  word-break: keep-all;
}

.sell-service__section {
  padding: 18px;
}

.sell-service__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sell-service__section-head h3 {
  margin: 0;
  color: #222b27;
  font-size: 17px;
}

.sell-service__section-head span {
  color: #63706a;
  font-size: 12px;
}

.sell-service__bids {
  display: grid;
  gap: 9px;
}

.sell-service__bid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1px solid #dce2df;
  border-radius: 14px;
  background: #fff;
  color: #2a332f;
  text-align: left;
  cursor: pointer;
}

.sell-service__bid.is-selected {
  border-color: #2d8fe5;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #2d8fe5;
}

.sell-service__bid > span {
  display: grid;
  gap: 3px;
}

.sell-service__bid small {
  color: #77807b;
  font-size: 11px;
}

.sell-service__bid strong {
  color: #1976c7;
  font-size: 18px;
}

.sell-service__bid em {
  color: #6f7773;
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.sell-service__money-card {
  overflow: hidden;
  border: 1px solid #dbe1de;
  border-radius: 15px;
}

.sell-service__money-card > div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #eef6ff;
}

.sell-service__money-card > div span {
  color: #607068;
  font-size: 12px;
}

.sell-service__money-card > div strong {
  color: #176db8;
  font-size: 27px;
}

.sell-service__money-card dl {
  padding: 16px 18px;
}

.sell-service__money-card dl > div {
  grid-template-columns: minmax(0, 1fr) auto;
}

.sell-service__money-card .is-total {
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px solid #e2e5e3;
}

.sell-service__money-card .is-total dt,
.sell-service__money-card .is-total dd {
  color: #1e3028;
  font-size: 14px;
  font-weight: 900;
}

.sell-service__money-card--instant > div {
  background: #eef6ff;
}

.sell-service__money-card--instant > div strong {
  color: #176db8;
}

.sell-service__notice {
  margin: 12px 0 0;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f4f6f5;
  color: #65706b;
  font-size: 11px;
  line-height: 1.55;
}

.sell-service__notice--warn {
  background: #eef6ff;
  color: #176db8;
}

.sell-service__progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 16px 12px;
  list-style: none;
}

.sell-service__progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #9aa19d;
  font-size: 10px;
  text-align: center;
}

.sell-service__progress li:not(:last-child)::after {
  position: absolute;
  top: 12px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: #e0e4e2;
  content: '';
}

.sell-service__progress i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #e8ebe9;
  color: #8f9793;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.sell-service__progress .is-active {
  color: #176db8;
  font-weight: 800;
}

.sell-service__progress .is-active i {
  background: #2d8fe5;
  color: #fff;
}

.sell-service__primary {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  background: #176db8;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.sell-service__footnote {
  margin: -5px 0 0;
  color: #7b837f;
  font-size: 11px;
  text-align: center;
}

.sell-service__empty {
  display: grid;
  gap: 6px;
  padding: 28px 20px;
  color: #707a75;
  text-align: center;
}

.sell-service__empty strong {
  color: #28312d;
  font-size: 17px;
}

@media (max-width: 520px) {
  .sell-service__watch {
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
  }

  .sell-service__photo {
    min-height: 164px;
  }

  .sell-service__watch-info > h2 {
    font-size: 18px;
  }

  .sell-service__watch-info dl > div {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .sell-service__bid {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sell-service__bid em {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .sell-service__progress {
    overflow-x: auto;
    grid-template-columns: repeat(5, 92px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sell-service__live i {
    animation: none;
  }
}

