@charset "utf-8";

/* 引入组件css */
@import "/static/css/components.css";
@import "/static/css/animate.min.css";
@import "/static/css/swiper-bundle.css";

/* 框架样式 */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  font-size: calc(100vw / 7.5 / 10);
  width: 100%;
  height: 100%;
}
body {
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
  width: 100%;
  height: 100%;
  min-width: 320px;
  margin: 0px auto;
  padding: 0px;
  font-size: 2.8rem;
  color: #111;
}
header,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
input,
table,
label,
select,
textarea,
iframe {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #111;
}
img {
  border: 0;
  vertical-align: top;
}
/* 表单 */
input,
button,
select,
textarea {
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
  color: #111;
  font-size: 2.8rem;
}
input:focus,
select:focus,
button:focus {
  outline: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="date"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
button {
  appearance: none;
  border-radius: 0;
  outline: none;
}
select {
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  resize: none;
}
/* 盒子模型 */
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}
.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
/* 加载中 */
.loadAdd {
  line-height: 2.4rem;
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #787878;
}

.privacyBox {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 2.4rem;
}
.privacyBox input{
  margin-right: 1rem;
}
.privacyBox a{
  margin-left: 0 !important;
}

