@media screen and (min-width: 1081px) {
  :root {
    font-size: 5.2083333vw;
    --letter-spacing: 0.024rem;
    --color-a-text: #fff;
    --font-size: 0.18rem;
    --color-text: #323335;
  }
  body {
    font-size: var(--font-size);
    color: var(--color-text);
  }
}
@media screen and (max-width: 1080px) {
  :root {
    font-size: 13.3333333333vw;
    --font-size: 0.24rem;
    --letter-spacing: 0rem;
    --color-a-text:#ffffff;
  }
  body {
    font-size: var(--font-size);
    color: var(--color-text);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-a-text);
}

p {
  text-align: justify;
}

.d_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d_flex_v {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c_flex {
  display: flex;
  align-items: center;
}

.v_flex_c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v_flex_lx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.d_flex_a {
  display: flex;
  justify-content: space-around;
}

.v_flex_w {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.consult_tip {
  flex: 1;
}
.consult_tip span:first-child {
  font-size: 0.16rem;
}
.consult_tip span:last-child {
  letter-spacing: 0.03rem;
}/*# sourceMappingURL=base.css.map */