/* 订单弹窗样式 */

#order_info_window {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.order-info-dialog {
  position: relative;
  background: #f5f5f7;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.order-info-header {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-info-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.order-info-close {
  border: 0;
  background: none;
  color: #999999;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 12px;
}

.order-info-close:hover {
  color: #333333;
}

.order-info-body {
  position: relative;
  padding: 0;
}

.order-info-frame {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
}

/* 订单表单卡片样式（苹果风） */
.order-form-page {
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 60%, #f5f5f7 100%);
}

.order-form-card {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.order-form-header {
  text-align: center;
  padding-bottom: 8px;
}

.order-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e60012, #ff4b4b);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(230, 0, 18, 0.45);
  margin-bottom: 12px;
}

.order-form-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-form-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
}

.order-form-hint {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* 订单提交按钮统一样式：圆角矩形 + 尺寸 + 字号 */
.order-submit-btn {
  min-width: 180px;
  padding: 0.6rem 2.2rem;
  border-radius: 999px !important;
  font-size: 0.95rem;
}

/* 取消按钮：继承主按钮动效，仅调整色彩 */
.order-cancel-btn {
  background-color: #ffffff !important;
  color: #6c757d !important;
  border-color: #6c757d !important;
}

.order-cancel-btn:hover,
.order-cancel-btn:focus {
  background-color: #6c757d !important;
  color: #ffffff !important;
  border-color: #6c757d !important;
}

@media (max-width: 768px) {
  .order-submit-btn {
    width: 100%;
    min-width: 0;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .order-info-dialog {
    max-width: 95%;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .order-info-dialog {
    max-width: 95%;
    border-radius: 10px;
  }
}


