

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
select {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  resize: none;
  outline: none;
}
a:visited {
  color: #333;
}
a,
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}
html {
  height: 100%;
  overflow-y: scroll;
}

.modal-open {
  position: fixed;
  height: 100%;
  width: 100%;
}
/* 模态框 */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 12;
  display: none;
}
.maskSearch {
  position: fixed;
  top: 98px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.clear::after {
  content: " ";
  display: block;
  clear: both;
  overflow: hidden;
}
/* 一行文字隐藏省略 */
.moreWord {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 两行文字隐藏省略 */
.moreWord2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.close {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.wrap_input {
  padding-left: 20px;
  background: #f4f6f8;
  height: 46px;
  width: 472px;
  float: left;
  box-sizing: border-box;
  border-radius: 3px 0 0 3px;
}

.wrap_input input {
  height: 46px;
  width: 452px;
  line-height: 46px;
  font-size: 14px;
  background: #f4f6f8;
  color: #333;
  border: none;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaa;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaa;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}
/* ！！！搜索弹窗 */

/* 公众号，小程序 信息 */

/* !!!登录 */

/* loading */

.loadingHtml_img {
  width: 60px;
  height: 60px;
  -webkit-animation: download 1s linear 1s 5 alternate;
  animation: download 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  z-index: 1;
}

@-webkit-keyframes download {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes download {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* !!!loading */
