* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
}
body {
  background: #f4f6f9;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  padding: 12px 16px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
h2 {
  font-size: 17px;
  font-weight: 600;
  color: #0052d9;
  text-align: center;
  margin-bottom: 10px;
}
.field {
  margin-bottom: 8px;
}
label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 3px;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #0052d9;
}
input,
select,
textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #d0d7e4;
  border-radius: 6px;
  font-size: 14px;
}
textarea {
  min-height: 70px;
  resize: vertical;
}
button[type="submit"] {
  width: 100%;
  padding: 8px 0;
  background: #0052d9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 6px;
}
button[type="submit"]:active {
  background: #003bb3;
}

button[type="select"] {
  padding: 2px 5px;
  border-radius: 6px;
  border-width: 1px;
  margin-top: 6px;
}

/* 单条下拉框 */
.cityPicker {
  position: relative;
  border: 1px solid #d0d7e4;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}
.cityPanel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  border: 1px solid #d0d7e4;
  border-radius: 6px;
  background: #fff;
  max-height: 180px;
}
.cityCol {
  flex: 1;
  padding: 4px;
}
.cityCol select {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}
.cityCol select option {
  padding: 4px;
}
.pickerBtn {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.toast {
  position: fixed;
  top: -50px;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  z-index: 999;
  transition: top 0.5s ease;
  pointer-events: none;
  border-radius: 0 0 12px 12px;
}
.toast.success {
  background: #07c160;
}
.toast.error {
  background: #ff4d4f;
}
.toast.warn {
  background: #faad14;
}
.toast.show {
  top: 0;
}

#fileList li {
  margin: 2px 0;
  display: flex;
  align-items: center;
}
#fileList li span {
  flex: 1;
}
#fileList li button {
  margin-left: 4px;
  font-size: 12px;
  padding: 2px 4px;
  border: none;
  background: #e8e8e8;
  border-radius: 3px;
  cursor: pointer;
}

.success-mask {
  position: fixed;
  inset: 0;               /* 等价 top:0;right:0;bottom:0;left:0; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-box {
  text-align: center;
}

.success-logo {
  height: 60px;
  margin-bottom: 16px;
}

.success-text {
  font-size: 20px;
  color: #333;
}