/* 退款页面样式 */
.refund {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #f0f4f6;
  padding-bottom: 30px;
}

/* 头部banner */
.head {
  width: 100%;
  height: 14rem;
  overflow: hidden;
}

.head img {
  width: 50rem;
  height: 100%;
  object-fit: contain;
}

/* 主要内容区域 */
.content {
  width: 320px;
  background-color: #fff;
  padding: 24px;
  border-radius: 15px;
  margin-top: -100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-no {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.order_dec {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.input-wrapper {
  margin-top: 16px;
}

.order-input {
  width: 100%;
  height: 90px;
  background-color: #f0f4f6;
  border: 2px solid #f56126;
  border-radius: 15px;
  padding: 0 20px;
  font-size: 13px;
  line-height: 90px;
}

.refund-button {
  margin-top: 16px;
}

.service {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}

.service .secondary-btn {
  flex: 1;
}

.success-refund {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* 指引区域 */
.guide {
  width: 353px;
  background-color: #fff;
  margin-top: 16px;
  padding: 20px;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.guide-head {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.guide-button {
  display: flex;
  gap: 12px;
}

.guide-btn {
  flex: 1;
  background-color: #f0f4f6;
  border: 1px solid #ccc;
  border-radius: 13px;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.guide-btn.active {
  background-color: #f5831f;
  color: #fff;
  border-color: #f5831f;
}

/* 指引图片区域 */
.guide-img {
  width: 353px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.guide-img img {
  width: 330px;
  height: auto;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  animation: fadeIn 0.5s ease-out;
}

/* 响应式调整 */
@media screen and (max-width: 375px) {
  .content {
    width: 90%;
  }
  
  .guide,
  .guide-img {
    width: 90%;
  }
  
  .guide-img img {
    width: 100%;
  }
} 