* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
    'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.container {
  max-width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-title {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.back-btn {
  position: absolute;
  left: 15px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  width: 100%;
  height: 44px;
  background-color: #4a90e2;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #357abd;
}

.btn-secondary {
  width: 100%;
  height: 44px;
  background-color: #fff;
  color: #4a90e2;
  border: 1px solid #4a90e2;
  border-radius: 22px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #f0f7ff;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: #fff;
  border-radius: 12px;
  width: 90%;
  /* max-width: 320px; */
  padding: 25px 20px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;width: 25%;
}

.form-input {
  width: 80%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #4a90e2;
}

.status-pending {
  color: #52c41a;
  font-weight: 500;
}

.status-rejected {
  color: #ff4d4f;
  font-weight: 500;
}

.status-waiting {
  color: #faad14;
  font-weight: 500;
}

.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #eee;
  z-index: 100;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  flex: 1;
  height: 100%;
}

.tab-item.active {
  color: #4a90e2;
}

.tab-icon {
  margin-bottom: 2px;width: 25px;height: 25px;
}
