@font-face {
  font-family: 'iconfont';
  src: url('//at.alicdn.com/t/font_1448609649_9404998.eot'); /* IE9*/
  src: url('//at.alicdn.com/t/font_1448609649_9404998.woff') format('woff'), /* chrome、firefox */
  url('//at.alicdn.com/t/font_1448609649_9404998.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('//at.alicdn.com/t/font_1448609649_9404998.svg#iconfont') format('svg'); /* iOS 4.1- */
}

.icon {
  display: inline-block;
  font-family: "iconfont";
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

html {
  min-height: 100%;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-tap-highlight-color: rgba(255,255,255,0);
}

html {
  overflow-x: hidden;
}

body, input, button, textarea, select, option {
  font: normal 1em \5FAE\8F6F\96C5\9ED1, 'helvetica neue', \5B8B\4F53, tahoma, sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, figure, pre, dl, dd, blockquote, button, input {
  margin: 0;
}

input, legend, input, textarea, button {
  padding: 0;
}

ul, ol, form, fieldset, th, td {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}


img {
  max-width: 100%;
  border: none;
}

img, input, button, label {
  vertical-align: middle;
}

em, i {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 { font-weight: 500; }

h1 { font-size: 1.8em; }

h2 { font-size: 1.6em; }

h3 { font-size: 1.4em; }

h4 { font-size: 1.2em; }

h5, h6 { font-size: 1em; }

input[type="button"],
input[type="submit"],
input[type="search"],
input[type="reset"] {
  -webkit-appearance: button;  /* iOS下的样式问题 */
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.fl {float: left;}
.fr {float: right;}

.tr {
  text-align: right;
}
.tc {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
  overflow: hidden;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* flex布局  */
.flex-row, .flex-row-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-row-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* 多行布局 */
.flex-row-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

/* 子元素反向排列 */
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* 子元素默认平均分布 */
.flex-row > * {
  display: block; /* hack低版本Android 2.3- UC,QQ浏览器 */
}
.flex-col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* 垂直居中 */
.flex-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 底部对齐 */
.flex-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* 沿主轴方向排列方式 */
.flex-justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex-justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 沿侧轴方向排列方式 */
.flex-align-start {
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
.flex-align-end {
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
}
.flex-align-around {
  -webkit-align-content: space-around;
      -ms-flex-line-pack: distribute;
          align-content: space-around;
}
.flex-align-between {
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}
.flex-col-auto { /* 不进行伸缩 */
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
      -ms-flex: 0 auto;
          flex: 0 auto;
}
.flex-col-2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 0;
}
.flex-col-3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
  width: 0;
}
.flex-col-4 {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
  width: 0;
}
.flex-col-5 {
  -webkit-box-flex: 5;
  -webkit-flex: 5;
      -ms-flex: 5;
          flex: 5;
  width: 0;
}
.flex-col-6 {
  -webkit-box-flex: 6;
  -webkit-flex: 6;
      -ms-flex: 6;
          flex: 6;
  width: 0;
}
.flex-col-7 {
  -webkit-box-flex: 7;
  -webkit-flex: 7;
      -ms-flex: 7;
          flex: 7;
  width: 0;
}
.flex-col-8 {
  -webkit-box-flex: 8;
  -webkit-flex: 8;
      -ms-flex: 8;
          flex: 8;
  width: 0;
}
.flex-col-9 {
  -webkit-box-flex: 9;
  -webkit-flex: 9;
      -ms-flex: 9;
          flex: 9;
  width: 0;
}
.flex-col-10 {
  -webkit-box-flex: 10;
  -webkit-flex: 10;
      -ms-flex: 10;
          flex: 10;
  width: 0;
}

/*common styles*/

.page-header {
  height: 4em;
  line-height: 4em;
  padding: 0 1em;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.page-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.page-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
}

.page-block {
  padding: .5em 1em;
  position: relative;
}

.page-block-title {
  line-height: 2em;
  color: #999;
}

.page-fixed-container {
  margin: 0 0 4em;
}
.page-container {
  
}

.page-fixed-footer {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  width: 100%;
}

.c-main {
  color: #F4694A;
}
.c-gray {
  color: #aaa;
}
.c-c {
  color: #ccc;
}
.c-6 {
  color: #666;
}

.bg-f {
  background: #fff;
}

.btn {
  color: #fff;
  background: #F4694A;
  -webkit-transition: .5s;
  transition: .5s;
}
a.btn:active, button.btn:active {
  background: #E35839;
}

.circle {
  border-radius: 50%;
}

.lay-gray {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 96;
  width: 100%;
  min-height: 100%;
  background: #000;
  opacity: .6;
  filter: alpha(opacity=60);
}

.lay-tip {
  position: fixed;
  bottom: 20%;
  left: 50%;
  z-index: -1;
}
.in.lay-tip {
  z-index: 6;
}
.in .lay-tip-content {
  opacity: 1;
  filter: alpha(opacity=100);
}
.lay-tip-content {
  position: relative;
  left: -50%;
  line-height: 2em;
  padding: 0 2em;
  color: #fff;
  white-space: nowrap;
  background: rgba(0,0,0,.6);
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  filter: alpha(opacity=0);
}

.gl-select-content {
  max-height: 18em;
  overflow-y: auto;
}
.gl-select-item, .gl-select-off {
  line-height: 3em;
  border-top: 1px solid #ddd;
}
.gl-select-item {
  padding: 0 1em;
}
.gl-select-item:active {
  background: #f2f2f2;
}

.gl-select-off {
  display: block;
  text-align: center;
  letter-spacing: .4em;
  color: #F4694A;
  background: #f2f2f2;
}

.gl-face {
  width: 5em;
  height: 5em;
  margin-right: 1em;
  border-radius: 50%;
  overflow: hidden;
}