@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
cite,
img,
sub,
sup,
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 {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body {
  /* height: 100%; */
  font-family: 'SourceHanSansCN';
  font-size: 14px;
  /* overflow: auto; */
  -webkit-overflow-scrolling : touch !important;
  overflow: auto !important;
  height: 100% !important;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-size: 14px;
}

button {
  outline: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul,
li {
  list-style: none;
}

i,
em {
  font-style: normal;
}

blockquote {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

a {
  outline: none;
  text-decoration: none;
  text-decoration: none;
  text-decoration: none;
  transition: background-color .5s ease 0s, color .5s ease 0s, width .5s ease 0s, border-width .5s ease 0s, border-color .5s ease 0s;
  -webkit-transition: background-color .5s ease 0s, color .5s ease 0s, width .5s ease 0s, border-width .5s ease 0s, border-color .5s ease 0s;
  -moz-transition: background-color .5s ease 0s, color .5s ease 0s, width .5s ease 0s, border-width .5s ease 0s, border-color .5s ease 0s;
  -ms-transition: background-color .5s ease 0s, color .5s ease 0s, width .5s ease 0s, border-width .5s ease 0s, border-color .5s ease 0s;
  -o-transition: background-color .5s ease 0s, color .5s ease 0s, width .5s ease 0s, border-width .5s ease 0s, border-color .5s ease 0s
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: 0;
  margin: 0;
  padding: 0;
}

select,
option {
  font-family: inherit;
}

.noselect {
  -webkit-user-select: none;
  user-select: none;
}

.clear {
  clear: both;
}

/*textarea,input,a{*/

/*-webkit-appearance: none;*/

/*}*/

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}



html,
body {
  width : 100%;
  height: 100%;
  margin: 0;
}

#app {
  height: 100%;
  width : 100%;
  min-width: 1440px;
  overflow-x: auto;
}

.content {
  height: 100%;
  width : 100%;
}

.div_but {
  position                  : relative;
  display                   : inline-block;
  white-space               : nowrap;
  cursor                    : pointer;
  outline                   : 0;
  transition                : 0.1s;
  transition-property       : all;
  transition-duration       : 0.1s;
  transition-timing-function: ease;
  transition-delay          : 0s;
  border                    : 0;
}

.div_but:active {
  top    : 2px;
  opacity: 0.5;
}

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

.towline {
  overflow          : hidden;
  text-overflow     : ellipsis;
  display           : -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.threeline {
  overflow          : hidden;
  text-overflow     : ellipsis;
  display           : -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.row-center {
  display        : flex;
  flex-direction : row;
  justify-content: center;
  align-items    : center;
}

.row-center-start {
  display        : flex;
  flex-direction : row;
  justify-content: center;
  align-items    : flex-start;
}

.row-space-around {
  display        : flex;
  flex-direction : row;
  justify-content: space-around;
  align-items    : center;
}

.row-flex-start {
  display        : flex;
  flex-direction : row;
  justify-content: flex-start;
  align-items    : center;
}

.row-start-start {
  display        : flex;
  flex-direction : row;
  justify-content: flex-start;
  align-items    : flex-start;
}

.row-start-wrap {
  display        : flex;
  flex-direction : row;
  justify-content: flex-start;
  align-items    : center;
  flex-wrap      : wrap;
}

.row-start-start-wrap {
  display        : flex;
  flex-direction : row;
  justify-content: flex-start;
  align-items    : flex-start;
  flex-wrap      : wrap;
}

.row-flex-end {
  display        : flex;
  flex-direction : row;
  justify-content: flex-end;
  align-items    : center;
}

.row-start-end {
  display        : flex;
  flex-direction : row;
  justify-content: flex-start;
  align-items    : flex-end;
}

.row-space-between {
  display        : flex;
  flex-direction : row;
  justify-content: space-between;
  align-items    : center;
}

.row-space-between-wrap {
  display        : flex;
  flex-direction : row;
  justify-content: space-between;
  align-items    : center;
  flex-wrap      : wrap;
}

.row-between-start {
  display        : flex;
  flex-direction : row;
  justify-content: space-between;
  align-items    : flex-start;
}

.row-between-start-wrap {
  display        : flex;
  flex-direction : row;
  justify-content: space-between;
  align-items    : flex-start;
  flex-wrap      : wrap;
}

.column-center {
  display        : flex;
  flex-direction : column;
  justify-content: center;
  align-items    : center;
}

.column-start-start {
  display        : flex;
  flex-direction : column;
  justify-content: flex-start;
  align-items    : flex-start;
}
.column-start-start-wrap {
  display        : flex;
  flex-direction : column;
  justify-content: flex-start;
  align-items    : flex-start;
  flex-wrap      : wrap;
}

.column-start {
  display        : flex;
  flex-direction : column;
  justify-content: flex-start;
}


.column-start-center {
  display        : flex;
  flex-direction : column;
  justify-content: flex-start;
  align-items    : center;
}

.column-center-start {
  display        : flex;
  flex-direction : column;
  justify-content: center;
  align-items    : flex-start;
}

.column-end {
  display        : flex;
  flex-direction : column;
  justify-content: flex-end;
  align-items    : center;
}

.column-end-start {
  display        : flex;
  flex-direction : column;
  justify-content: flex-end;
  align-items    : flex-start;
}

.column-space-around {
  display        : flex;
  flex-direction : column;
  justify-content: space-around;
  align-items    : center;
}

.column-space-start {
  display        : flex;
  flex-direction : column;
  justify-content: space-around;
  align-items    : flex-start;
}

.column-space-between {
  display        : flex;
  flex-direction : column;
  justify-content: space-between;
  align-items    : center;
}