/* 寄存行李页面样式 */
.page-header {
  background-color: #1CBBB4;
  color: white;
  padding: 10px 15px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 15px 10px;
}

/* 流程样式 */
.process-section {
  background-color: white;
  padding: 15px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.process-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #1CBBB4;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.step-text {
  font-size: 12px;
  color: #666;
}

.step-arrow {
  color: #ccc;
  font-size: 18px;
}

/* 寄存点选择样式 */
.store-select {
  background-color: white;
  margin: 0 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-option {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.store-option:last-child {
  border-bottom: none;
}

.store-option.active {
  background-color: rgba(28, 187, 180, 0.05);
}

.store-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #1CBBB4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.radio-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1CBBB4;
}

.radio-inner.empty {
  display: none;
}

.store-detail {
  flex: 1;
}

.store-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.store-address {
  font-size: 14px;
  color: #666;
}

/* 时长选择样式 */
.time-select {
  display: flex;
  justify-content: space-between;
  margin: 0 15px;
}

.time-option {
  width: 23%;
  background-color: white;
  border-radius: 10px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.time-option.active {
  border-color: #1CBBB4;
  background-color: rgba(28, 187, 180, 0.05);
}

.time-duration {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.time-price {
  font-size: 14px;
  color: #FF5722;
}

/* 行李信息样式 */
.luggage-info {
  background-color: white;
  margin: 0 15px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 15px;
  color: #333;
}

.counter {
  display: flex;
  align-items: center;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #333;
}

.counter-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 16px;
  margin: 0 10px;
}

.info-input {
  flex: 1;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
  margin-left: 15px;
}

/* 二维码核销样式 */
.qrcode-section {
  background-color: white;
  margin: 0 15px;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qrcode-info {
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.qrcode-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qrcode-image {
  width: 150px;
  height: 150px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.qrcode-image img {
  width: 100px;
  height: 100px;
}

.qrcode-tip {
  font-size: 14px;
  color: #999;
}

/* 费用明细样式 */
.price-detail {
  background-color: white;
  margin: 20px 15px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price-row:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.price-label {
  font-size: 15px;
  color: #333;
}

.price-value {
  font-size: 15px;
  color: #333;
}

.total .price-label,
.total .price-value {
  font-weight: bold;
  color: #FF5722;
}

/* 提交按钮样式 */
.submit-section {
  margin: 20px 15px 30px;
}

.submit-btn {
  width: 100%;
  height: 45px;
  background-color: #1CBBB4;
  color: white;
  border-radius: 22.5px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.link {
  color: #1CBBB4;
} 