* {
  box-sizing: border-box;
}

html {
  width:100%;
  height: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: Helvetica Neue,Helvetica,Hiragino Sans GB,PingHei,PingFang SC,STHeitiSC-Light,Microsoft YaHei,Lantinghei SC,Arial,sans-serif!important;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  overflow-x: hidden;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #eee;
  text-decoration: none;
}

/*public*/
.vertical-m {
  vertical-align: middle;
}

.ib {
  display: inline-block;
  vertical-align: top;
}

.text-justify {
  text-align: justify;
  font-size: 0;
}

.text-justify::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-v-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.al-it-st {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.al-it-bt {
  -webkit-box-align: justify;
  -ms-flex-align: justify;
  align-items: space-between;
}

.al-it-ed {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.just-c-st {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.just-c-ed {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.just-c-bt {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.flex-1{
  flex:1;
}

.hidden {
  display: none !important;
}

.overflow-h {
  overflow: hidden;
}

.margR-20 {
  margin-right: 20px;
}

.margT-20 {
  margin-top: 20px;
}

.margL-20 {
  margin-left: 20px;
}

.margB-20 {
  margin-bottom: 20px;
}

.cur-pointer{
  cursor: pointer;
}

.relative {
  position: relative;
}

.ellipsis {
  width:100%;
  text-overflow:ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.flex1 {            
  -webkit-flex: 1;   
  -ms-flex: 1;           
  flex: 1;             
  -webkit-box-flex: 1; 
  -moz-box-flex: 1;    
}

.container {
  margin:0 auto;
  width: 1200px;
}

.zIndex {
  z-index: 1;
}