* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: 0;
  font-family: GothamRounded-Medium;
  word-break: break-all;
}
html {
  color: #000;
  background: #fff;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
html,
body {
  font-family: sans-serif;
}
body {
  position: relative;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
ul,
li {
  list-style: none;
}
/*输入框提示字体颜色*/
input::-moz-placeholder {
  color: #999;
  font-size: .14rem;
}
input::-webkit-input-placeholder {
  color: #999;
  font-size: .14rem;
}
a {
  text-decoration: none;
}
img {
  border: 0;
  vertical-align: middle;
}
img,
a {
  -webkit-touch-callout: none;
}
pre {
  white-space: normal;
}
del {
  text-decoration: line-through;
}
button {
  border: none;
}
input,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
}
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="checkbox"]:focus,
select:focus,
textarea:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea {
  font-size: 100%;
}
/*浮动*/
.fl {
  float: left;
}
.fr {
  float: right;
}
/*清除浮动*/
.clearfixed:after {
  content: "";
  display: block;
  overflow: hidden;
  height: 0;
  clear: both;
}
.clearfixed {
  zoom: 1;
}
/*隐藏*/
.none {
  display: none;
}
.ohidden {
  visibility: hidden;
}
/*单行省略号*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.tl {
  text-align: left;
}
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
/*文本流*/
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.static {
  position: static;
}
.vertical-t {
  vertical-align: top;
}
.vertical-b {
  vertical-align: bottom;
}
.vertical-m {
  vertical-align: middle;
}
/*
*字体间距
*/
.letter0 {
  letter-spacing: 0;
}
.letter1 {
  letter-spacing: 1px;
}
.letter1-5 {
  letter-spacing: 1.5px;
}
.letter2 {
  letter-spacing: 2px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*
颜色
背景色
字体颜色
*/
.b_primary {
  background-color: #007AFF;
}
.b_success {
  background-color: #09BB07;
}
.b_warning {
  background-color: #FF8010;
}
.b_danger {
  background-color: #FF1010;
}
.f_primary {
  color: #333;
}
.f_primary {
  color: #333;
}
.font-888 {
  color: #888888;
}
.spinner {
  width: 16px;
  height: 16px;
  position: relative;
}
.spinner .container1 > div,
.spinner .container2 > div,
.spinner .container3 > div {
  width: 4px;
  height: 4px;
  background-color: #c7c7c7;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.spinner .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.spinner .container2 {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
      transform: rotateZ(45deg);
}
.spinner .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.spinner .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.spinner .container3 {
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
      transform: rotateZ(90deg);
}
.spinner .container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.spinner .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.spinner .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.spinner .circle1 {
  top: 0;
  left: 0;
}
.spinner .circle2 {
  top: 0;
  right: 0;
}
.spinner .circle3 {
  right: 0;
  bottom: 0;
}
.spinner .circle4 {
  left: 0;
  bottom: 0;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.f12 {
  font-size: .12rem;
}
.f13 {
  font-size: .13rem;
}
.f14 {
  font-size: .14rem;
}
.f15 {
  font-size: .15rem;
}
.f16 {
  font-size: .16rem;
}
.f17 {
  font-size: .17rem;
}
.f18 {
  font-size: .18rem;
}
.pt10 {
  padding-top: .1rem;
}
.pt20 {
  padding-top: .2rem;
}
.pb10 {
  padding-bottom: .1rem;
}
.pb20 {
  padding-bottom: .2rem;
}
.pl10 {
  padding-left: .1rem;
}
.pl20 {
  padding-left: .1rem;
}
.pr10 {
  padding-right: .1rem;
}
.pr20 {
  padding-right: .2rem;
}
.pop-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 999;
}
