/*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  text-align: left;
}
button {
  /*自定义边框*/
  border: 0px;
  /*消除默认点击蓝色边框效果*/
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*清除移动端特有的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
}
body {
  /*禁止ios和android用户选中文字*/
  user-select: none;
  /*禁止ios 长按时不触发系统的菜单，禁止ios&android长按时下载图片*/
  -webkit-touch-callout: none;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/*去掉ios系统中元素被触摸时产生的半透明灰色遮罩*/
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body{
  background: #210A4B;
}
#app{
  width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 16px;
  font-size: 16px;
  color: white;
  padding-bottom: 20px;
  background: #210A4B;
  /*background: url("./images/bg.png") no-repeat;*/
  /*background-size: cover; !* 背景图片覆盖整个容器 *!*/
  /*background-attachment: fixed; !* 背景图片固定 *!*/
}

.policy-height {
  /*padding: 20px;*
  line-height: 1.5em;
  /*font-size: 14px;*/
  padding-bottom: 20px;
  color: #fff;
  /*color: #000;*/


}
ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

ol {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;

  li {
    ol {
      list-style-type: circle;
    }
  }
}

.email-link {
  color: #409eff;
}