#root {
  padding-bottom: 0.3rem;
}
#root h1 {
  padding: 0.38rem;
  font-size: 0.34rem;
  color: #E60012;
}
#root .form {
  padding: 0 0.4rem;
}
#root .form-item {
  height: 1.2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
#root .form-item-label {
  width: 1.2rem;
  font-weight: bold;
  font-size: 0.24rem;
}
#root .form-item-content {
  flex: 1;
  padding-left: 0.3rem;
  padding-right: 0.1rem;
  display: flex;
  align-items: center;
}
#root .form-item-content .radio-wrap {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
#root .form-item-content .radio-wrap .radio-item {
  display: flex;
  align-items: center;
}
#root .form-item-content .radio-wrap .radio-item i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: 1px solid #999;
}
#root .form-item-content .radio-wrap .radio-item img {
  width: 0.3rem;
  height: 0.3rem;
}
#root .form-item-content .radio-wrap .radio-item span {
  margin-left: 0.1rem;
  font-size: 0.24rem;
}
#root .form-item-content .radio-wrap .radio-item:last-child {
  margin-right: 0;
}
#root .form-item-content > input {
  flex: 1;
  height: 1.2rem;
  padding-right: 0.2rem;
}
#root .form-item-content .hint {
  color: #ccc;
}
#root .form-item-content .pull-down {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#root .form-item-content .pull-down .icon {
  width: 0.18rem;
  height: 0.12rem;
  transition: transform 0.2s;
}
#root .form-item-content .pull-down .rotate {
  transform: rotate(180deg);
}
#root .form-item-content .pull-down .pull-down-menu {
  padding: 0.1rem 0;
  position: absolute;
  top: 0.5rem;
  left: 0;
  z-index: 3;
  width: 100%;
  max-height: 4rem;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
#root .form-item-content .pull-down .pull-down-menu .pull-down-item {
  padding: 0.15rem 0.4rem;
}
#root .form-item-content .pull-down .pull-down-menu .pull-down-item:active {
  background: #f5f7fa;
}
#root .form-item-content .pull-down .pull-down-menu .active {
  background: #f5f7fa;
  color: #E60012;
}
#root .form-item-content .commercial-interest-rates-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#root .form-item-content .commercial-interest-rates-wrap span {
  color: #999;
}
#root .form .submit {
  margin: 0.6rem auto 0;
  width: 6rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff203b;
  color: #fff;
  font-size: 0.34rem;
  font-weight: bold;
  border-radius: 0.1rem;
}
#root .toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.2rem 0.3rem;
  max-width: 5.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 0.16rem;
}
#root .pull-down-enter-active,
#root .pull-down-leave-active {
  transition: transform 0.2s;
  transform-origin: top center;
}
#root .pull-down-enter,
#root .pull-down-leave-to {
  transform: scale(1, 0);
  transform-origin: top center;
}
#root .fade-enter-active,
#root .fade-leave-active {
  transition: opacity 0.2s;
}
#root .fade-enter,
#root .fade-leave-to {
  opacity: 0;
}
