.phoneheader {
  display: block;
  height: 1rem;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 0.01rem solid #e6e6e6;
}
.phoneheader .w {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .tabbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2%;
  align-items: center;
  border-top: 0.01rem solid #e6e6e6;
  z-index: 100;
}
.footer .tabbar .item {
  text-align: center;
  font-size: 0.24rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .tabbar .item .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.footer .tabbar .item.active a {
  color: #1964b0;
}
.footer .tabbar .item.active .icon {
  color: #1964b0;
}
aside {
  position: fixed;
  bottom: 16%;
  right: 4%;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  z-index: 100;
  border-radius: 50%;
}
.dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.dialog .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.1rem;
  width: 90vw;
  min-height: auto;
  padding: 0.4rem 0.24rem;
}
.dialog .popup .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dialog .popup .top .title {
  font-size: 0.34rem;
}
.dialog .popup .top .close {
  width: 0.28rem;
  height: 0.28rem;
}
.dialog .popup .top .close img {
  width: 100%;
  height: 100%;
}
.dialog .popup .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dialog .popup .item {
  border-radius: 0.1rem;
}
.dialog .popup .item input {
  display: block;
  width: 100%;
  height: 100%;
}
.dialog .popup .item textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.15rem;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-radius: 0.1rem;
  background: #f9f9f9;
}
.dialog .popup .last {
  height: 2rem;
}
.dialog .popup .btn {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  padding: 0.2rem 1.1rem;
  border-radius: 0.5rem;
  margin-top: 0.6rem;
  background: #1964b0;
  font-size: 0.3rem;
}
.dialog .popup .btn a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .w {
    width: 92.5%;
  }
}
