.inquiryPage {
  min-height: auto;
  padding: 2.06rem 0 .48rem;
  background-color: #181818;
  background: url('../images/proBack.png') center top no-repeat;
  background-size: cover;
}

.inquiryBreadcrumb {
  color: #fff;
}

.inquiryTitle {
  margin-top: .45rem;
  text-align: center;
}

.inquiryTitle h1 {
  color: #fff;
  font-size: clamp(32px, .58rem, 58px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.inquiryTitle p {
  margin-top: .07rem;
  color: #c5c5c5;
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
}

.inquiryTitle strong {
  color: var(--yellow);
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 700;
}

.inquiryTable {
  margin-top: .88rem;
}

.inquiryHead,
.inquiryItem {
  display: grid;
  grid-template-columns: .65rem minmax(4.5rem, 1fr) 4.33rem 4.15rem;
  align-items: center;
}

.inquiryHead {
  height: .7rem;
  border-radius: .08rem .08rem 0 0;
  background: #000;
}

.inquiryHead div {
  color: #fff;
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.4;
  text-align: center;
}
.inquiryHead div:first-child,
.inquiryHead div:nth-child(2) {
  text-align: left;
}
.inquiryCheck,
.inquiryBarCheck {
  display: flex;
  align-items: center;
}

.inquiryCheck {
  justify-content: center;
}

.inquiryCheck input,
.inquiryBarCheck input {
  width: .16rem;
  height: .16rem;
  appearance: none;
  border: .01rem solid #e5e7eb;
  border-radius: .02rem;
  background: transparent;
}

.inquiryCheck input::after,
.inquiryBarCheck input::after {
  display: none;
}

.inquiryCheck input:checked,
.inquiryBarCheck input:checked {
  border: none;
  background: url(../images/checked.svg) no-repeat center center;
  background-size: contain;
}

.inquiryItem {
  min-height: 1.7rem;
  background: rgba(0, 0, 0, .65);
  border-bottom: .01rem solid rgba(255, 255, 255, .16);
}

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

.inquiryProduct .imgBox {
  display: grid;
  width: 1.16rem;
  height: 1rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: .08rem;
  background: #404040;
}

.inquiryProduct .imgBox img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.inquiryProduct .text {
  min-width: 0;
  margin-left: .3rem;
}

.inquiryProduct h2 {
  max-width: 3.65rem;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 700;
  line-height: 1.28;
}

.inquiryProduct p {
  margin-top: .11rem;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(14px, .18rem, 18px);
  line-height: 1.35;
}

.inquiryQty {
  display: grid;
  grid-template-columns: .4rem .67rem .4rem;
  width: 1.48rem;
  height: .4rem;
  overflow: hidden;
  border: .01rem solid #e5e7eb;
  border-radius: .25rem;
  background: rgba(0, 0, 0, .45);
  margin: 0 auto;
}

.inquiryQty button,
.inquiryQty input {
  height: .4rem;
}

.inquiryQty button {
  position: relative;
  border-right: .01rem solid #e5e7eb;
}

.inquiryQty button:last-child {
  border-right: 0;
  border-left: .01rem solid #e5e7eb;
}

.inquiryQty button::before,
.inquiryQty button:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .12rem;
  height: .02rem;
  background: #fff;
  content: '';
  transform: translate(-50%, -50%);
}

.inquiryQty button:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.inquiryQty button:hover::before,
.inquiryQty button:hover::after {
  background: var(--yellow);
}

.inquiryQty input {
  width: 100%;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  line-height: .4rem;
  text-align: center;
}

.inquiryDelete {
  position: relative;
  width: .3rem;
  height: .3rem;
  background: url(../images/Delete.svg) no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}
.inquiryBar {
  display: grid;
  grid-template-columns: 1.05rem 1fr auto auto;
  align-items: center;
  height: .86rem;
  padding: 0 .2rem;
  background: rgba(84, 84, 84, .86);

  margin-top: 0.23rem;
}

.inquiryBarCheck {
  gap: .08rem;
}

.inquiryBarCheck span,
.inquiryBarDelete,
.inquirySelected {
  color: #fff;
  font-size: clamp(12px, .14rem, 14px);
  line-height: 1.5;
}

.inquiryBarDelete {
  justify-self: start;
  transition: color .25s;
}

.inquiryBarDelete:hover {
  color: var(--yellow);
}

.inquirySelected {
  margin-right: .42rem;
}

.inquirySelected strong {
  color: var(--yellow);
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 500;
}

.inquirySubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .09rem;
  width: fit-content;
  min-width: 2.28rem;
  height: .5rem;
  padding: 0 .3rem;
  border: .01rem solid var(--yellow);
  border-radius: .5rem;
  background: var(--yellow);
  color: #111;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 700;
  transition: background .25s, border-color .25s;
}

.inquirySubmit img {
  width: .24rem;
  height: .24rem;
}

.inquirySubmit:hover {
  border-color: #fff;
  background: #fff;
}

@media (max-width: 768px) {
  .inquiryPage {
    min-height: auto;
    padding: 1.76rem 0 .45rem;
  }

  .inquiryTitle {
    margin-top: .45rem;
  }

  .inquiryTitle p {
    white-space: normal;
  }

  .inquiryTable {
    overflow-x: auto;
    margin-top: .28rem;
    padding-bottom: .08rem;
  }

  .inquiryHead,
  .inquiryItem,
  .inquiryBar {
    min-width: 9.2rem;
  }

  .inquiryHead,
  .inquiryItem {
    grid-template-columns: .6rem 4.4rem 2.3rem 1.5rem;
  }

  .inquiryProduct .text {
    margin-left: .2rem;
  }

  .inquiryBar {
    grid-template-columns: 1.15rem 1fr auto auto;
  }
}

/* Inquiry page from Figma node 61:4683 */
.inquiryPage {
  min-height: auto;
  padding: 2.06rem 0 .58rem;
  background-color: #181818;
  background-image: linear-gradient(rgba(24, 24, 24, .3), rgba(24, 24, 24, .3)), url('../images/proBack.png');
}

.inquiryPage .main {
  max-width: 16rem;
}

.inquiryBreadcrumb {
  color: #fff;
}

.inquiryTitle {
  width: 11.13rem;
  max-width: 100%;
  margin: .47rem auto 0;
  text-align: center;
}

.inquiryTitle h1 {
  color: #fff;
  font-size: clamp(32px, .58rem, 58px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.inquiryTitle p {
  margin-top: .05rem;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
}

.inquiryTable {
  margin-top: .84rem;
}

.inquiryHead,
.inquiryItem {
  display: grid;
  grid-template-columns: minmax(6.8rem, 1fr) 4.55rem 3.15rem;
  align-items: center;
}

.inquiryHead {
  height: .7rem;
  border-radius: .08rem .08rem 0 0;
  background: #000;
}

.inquiryHead div {
  color: #fff;
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.4;
  text-align: center;
}

.inquiryHead div:first-child {
  padding-left: .43rem;
  text-align: left;
}

.inquiryItem {
  min-height: 1.7rem;
  background: rgba(0, 0, 0, .65);
  border-bottom: .01rem solid rgba(255, 255, 255, .16);
}

.inquiryProduct {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: .43rem;
}

.inquiryProduct .imgBox {
  display: grid;
  width: 1.16rem;
  height: 1rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: .08rem;
  background: #404040;
}

.inquiryProduct .imgBox img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.inquiryProduct .text {
  min-width: 0;
  margin-left: .3rem;
}

.inquiryProduct h2 {
  max-width: 3.7rem;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.inquiryProduct p {
  margin-top: .11rem;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(14px, .18rem, 18px);
  line-height: 1.35;
  text-transform: uppercase;
}

.inquiryQty {
  display: grid;
  grid-template-columns: .4rem .67rem .4rem;
  width: 1.48rem;
  height: .4rem;
  overflow: hidden;
  border: .01rem solid #e5e7eb;
  border-radius: .25rem;
  background: rgba(0, 0, 0, .45);
  margin: 0 auto;
}

.inquiryQty button,
.inquiryQty input {
  height: .4rem;
}

.inquiryQty button {
  position: relative;
  border-right: .01rem solid #e5e7eb;
}

.inquiryQty button:last-child {
  border-right: 0;
  border-left: .01rem solid #e5e7eb;
}

.inquiryQty button::before,
.inquiryQty button:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .12rem;
  height: .02rem;
  background: #fff;
  content: '';
  transform: translate(-50%, -50%);
  transition: background .25s;
}

.inquiryQty button:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.inquiryQty button:hover::before,
.inquiryQty button:hover::after {
  background: var(--yellow);
}

.inquiryQty input {
  width: 100%;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  line-height: .4rem;
  text-align: center;
}

.inquiryDelete {
  width: .3rem;
  height: .3rem;
  background: url(../images/Delete.svg) no-repeat center center;
  background-size: contain;
  margin: 0 auto;
  transition: transform .25s;
}

.inquiryDelete:hover {
  transform: scale(1.08);
}

.inquiryContact {
  margin-top: .65rem;
}

.inquiryContact h2 {
  color: #fff;
  font-size: clamp(24px, .36rem, 36px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.inquiryForm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .18rem .35rem;
  margin-top: .32rem;
}

.inquiryForm label {
  display: block;
}

.inquiryForm label span {
  display: block;
  margin-bottom: .09rem;
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  line-height: 1.33;
}

.inquiryForm label em {
  color: #ff0000;
  font-style: normal;
}

.inquiryForm input,
.inquiryForm textarea {
  width: 100%;
  border: .01rem solid rgba(255, 255, 255, .02);
  background: rgba(0, 0, 0, .86);
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  line-height: 1.35;
}

.inquiryForm input {
  height: .4rem;
  padding: 0 .2rem;
}

.inquiryForm textarea {
  height: 1.46rem;
  padding: .16rem .2rem;
}

.inquiryForm input::placeholder,
.inquiryForm textarea::placeholder {
  color: #6c757d;
}

.inquiryMessage,
.inquiryNote,
.inquirySubmit {
  grid-column: 1 / -1;
}

.inquiryNote {
  margin-top: .05rem;
  color: #c5c5c5;
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
}

.inquiryNote strong {
  color: var(--yellow);
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 700;
}

.inquirySubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .09rem;
  width: fit-content;
  min-width: 2.28rem;
  height: .5rem;
  margin-top: .08rem;
  padding: 0 .48rem;
  border: .01rem solid var(--yellow);
  border-radius: .5rem;
  background: var(--yellow);
  color: #111;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 700;
  transition: background .25s, border-color .25s;
}

.inquirySubmit img {
  width: .24rem;
  height: .24rem;
}

.inquirySubmit:hover {
  border-color: #fff;
  background: #fff;
}

.inquiryModal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: .3rem;
  background: rgba(0, 0, 0, .62);
}

.inquiryModal.show {
  display: flex;
}

.inquiryModalBox {
  width: 6rem;
  max-width: 100%;
  min-height: 4.2rem;
  padding: .85rem .42rem .55rem;
  border-radius: .12rem;
  background: #fff;
  text-align: center;
}

.inquirySuccessIcon {
  position: relative;
  width: .78rem;
  height: .78rem;
  margin: 0 auto .28rem;
  border-radius: 50%;
  background: #48c919;
}

.inquirySuccessIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .34rem;
  height: .18rem;
  border-left: .05rem solid #fff;
  border-bottom: .05rem solid #fff;
  content: '';
  transform: translate(-50%, -62%) rotate(-45deg);
}

.inquiryModalBox h2 {
  color: #000;
  font-size: clamp(20px, .24rem, 24px);
  font-weight: 500;
  line-height: 1.35;
}

.inquiryModalBtns {
  display: flex;
  justify-content: center;
  gap: .18rem;
  margin-top: .56rem;
}

.inquiryModalBtns button,
.inquiryModalBtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: .5rem;
  padding: 0 .12rem;
  border: .01rem solid #000;
  border-radius: .04rem;
  color: #111;
  font-size: clamp(16px, .18rem, 18px);
  font-weight: 500;
  line-height: 1.35;
  transition: background .25s, border-color .25s;
}

.inquiryModalBtns button {
  border-color: var(--yellow);
  background: var(--yellow);
}

.inquiryModalBtns button:hover,
.inquiryModalBtns a:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {
  .inquiryPage {
    min-height: auto;
    padding: 1.76rem 0 .45rem;
  }

  .inquiryTitle {
    margin-top: .45rem;
  }

  .inquiryTitle p {
    white-space: normal;
  }

  .inquiryTable {
    overflow-x: auto;
    margin-top: .35rem;
    padding-bottom: .08rem;
  }

  .inquiryHead,
  .inquiryItem {
    min-width: 9.2rem;
    grid-template-columns: 5.35rem 2.35rem 1.5rem;
  }

  .inquiryHead div:first-child,
  .inquiryProduct {
    padding-left: .25rem;
  }

  .inquiryProduct .text {
    margin-left: .2rem;
  }

  .inquiryContact {
    margin-top: .45rem;
  }

  .inquiryForm {
    grid-template-columns: 1fr;
  }

  .inquiryMessage,
  .inquiryNote,
  .inquirySubmit {
    grid-column: auto;
  }

  .inquirySubmit {
    min-width: 1.7rem;
    padding: 0 .34rem;
  }

  .inquiryModalBox {
    min-height: 3.8rem;
    padding: .7rem .24rem .45rem;
  }

  .inquiryModalBtns {
    flex-direction: column;
    align-items: center;
    margin-top: .42rem;
  }

  .inquiryModalBtns button,
  .inquiryModalBtns a {
    width: 2.3rem;
  }
}

/* Quotation request list page restore */
.inquiryPage {
  min-height: auto;
  padding: 2.06rem 0 1.2rem;
  background-color: #181818;
  background-image: linear-gradient(rgba(24, 24, 24, .34), rgba(24, 24, 24, .34)), url('../images/proBack.png');
}

.inquiryPage .main {
  max-width: 16rem;
}

.inquiryTitle {
  width: auto;
  max-width: none;
  margin-top: .45rem;
  text-align: center;
}



.inquiryTitle p {
  margin-top: .07rem;
  color: #c5c5c5;
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
}

.inquiryTitle strong {
  color: var(--yellow);
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 700;
}

.inquiryTable {
  margin-top: .88rem;
}

.inquiryHead,
.inquiryItem {
  display: grid;
  grid-template-columns: .65rem minmax(4.5rem, 1fr) 4.33rem 4.15rem;
  align-items: center;
}

.inquiryHead div:first-child {
  padding-left: 0;
}

.inquiryHead div:first-child,
.inquiryHead div:nth-child(2) {
  text-align: left;
}

.inquiryProduct {
  padding-left: 0;
}

.inquiryProduct h2 {
  max-width: 3.65rem;
  line-height: 1.28;
}

.inquiryProduct p {
  text-transform: none;
}

@media (max-width: 768px) {
  .inquiryPage {
    min-height: auto;
    padding: 1.76rem 0 .45rem;
  }

  .inquiryTitle {
    margin-top: .45rem;
  }

  .inquiryTable {
    overflow-x: auto;
    margin-top: .28rem;
    padding-bottom: .08rem;
  }

  .inquiryHead,
  .inquiryItem,
  .inquiryBar {
    min-width: 9.2rem;
  }

  .inquiryHead,
  .inquiryItem {
    grid-template-columns: .6rem 4.4rem 2.3rem 1.5rem;
  }
}

/* Inquiry bottom action bar from Figma node 64:5648 */
.inquiryBar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: .32rem;
  height: .86rem;
  padding: 0 .2rem;
  background: rgba(84, 84, 84, .86);
}

.inquiryBarCheck {
  display: flex;
  align-items: center;
  gap: .08rem;
}

.inquiryBarCheck input {
  width: .16rem;
  height: .16rem;
  appearance: none;
  border: .01rem solid #e5e7eb;
  border-radius: .02rem;
  background: transparent;
}

.inquiryBarCheck input::after {
  display: none;
}

.inquiryBarCheck input:checked {
  border: none;
  background: url(../images/checked.svg) no-repeat center center;
  background-size: contain;
}

.inquiryBarCheck span,
.inquiryBarDelete,
.inquirySelected {
  color: #fff;
  font-size: clamp(14px, .18rem, 18px);
  font-weight: 500;
  line-height: 1.35;
}

.inquiryBarDelete {
  justify-self: start;
  transition: color .25s;
}

.inquiryBarDelete:hover {
  color: var(--yellow);
}

.inquirySelected {
  margin: 0 .1rem 0 0;
  white-space: nowrap;
}

.inquirySelected strong {
  color: var(--yellow);
  font-size: clamp(18px, .24rem, 24px);
  font-weight: 500;
}

.inquiryBar .inquirySubmit {
  grid-column: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .09rem;
  width: fit-content;
  min-width: 2.28rem;
  height: .5rem;
  margin: 0;
  padding: 0 .3rem;
  border: .01rem solid var(--yellow);
  border-radius: .5rem;
  background: var(--yellow);
  color: #111;
  font-size: clamp(12px, .18rem, 18px);
  font-weight: 700;
  line-height: 1;
  transition: background .25s, border-color .25s;
}

.inquiryBar .inquirySubmit img {
  width: .24rem;
  height: .24rem;
}

.inquiryBar .inquirySubmit:hover {
  border-color: #fff;
  background: #fff;
}

@media (max-width: 768px) {
  .inquiryBar {
    min-width: 9.2rem;
    grid-template-columns: auto 1fr auto auto;
    column-gap: .22rem;
  }
}

@media (max-width: 768px) {
  .inquiryPage {
    padding-top: 1.38rem;
  }

  .inquiryTitle {
    margin-top: .35rem;
  }

  .inquiryTable {
    overflow-x: auto;
    margin-top: .6rem;
    -webkit-overflow-scrolling: touch;
  }

  .inquiryHead,
  .inquiryItem,
  .inquiryBar {
    min-width: 9.2rem;
  }

  .inquiryHead,
  .inquiryItem {
    grid-template-columns: .6rem 4.4rem 2.3rem 1.5rem;
  }

  .inquiryBar {
    grid-template-columns: auto 1fr auto auto;
  }
}

/* 手机端适配：表格与底部操作条自适应屏宽，不再横向裁切 */
@media (max-width: 768px) {
  .inquiryHead,
  .inquiryItem,
  .inquiryBar {
    min-width: 0;
  }

  .inquiryHead,
  .inquiryItem {
    grid-template-columns: .5rem minmax(0, 1fr) auto auto;
    column-gap: .15rem;
  }

  .inquiryProduct {
    padding-left: .12rem;
  }

  .inquiryProduct .text {
    margin-left: .15rem;
  }

  .inquiryProduct h2 {
    max-width: 100%;
  }

  .inquiryQty {
    margin: 0;
  }

  .inquiryBar {
    grid-template-columns: auto auto 1fr;
    row-gap: .14rem;
    height: auto;
    padding: .16rem;
  }

  .inquirySelected {
    justify-self: end;
  }

  .inquiryBar .inquirySubmit {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}
