* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  list-style: none;
}

.flex_ {
  display: flex;
}

.flex_space-between {
  display: flex;
  justify-content: space-between;
}

.flex_justify-content {
  display: flex;
  justify-content: center;
}

.flex_justify-content-around {
  display: flex;
  justify-content: space-around;
}

.flex_align-items {
  display: flex;
  align-items: center;
}

.flex_align-end {
  display: flex;
  align-items: flex-end;
}

.flex_wrap {
  flex-wrap: wrap;
}

/* [v-cloak] {
    display: none;
} */

body {
  font-size: .20rem;
  color: #333;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  text-align: justify;
}

a {
  text-decoration: none;
  outline: none;
  color: #333;
}

a:hover {
  cursor: pointer;
}

html {
  width: 100%;
  /* overflow-x: hidden; */
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  background: transparent;
}

input {
  -webkit-appearance: none;
  background: transparent;
  outline: none;
  border: none;
}

textarea {
  -webkit-appearance: none;
}

@media (min-width:1024px) {}

@media (max-width:1024px) {}

/* 页面顶部导航 */
.navbg {
  height: 1.05rem;
  background-color: #fefefe;
  display: flex;
  padding: 0 3.6rem;
  align-items: center;
}

.logoimg {
  width: 2.28rem;
  height: .64rem;
}

.navbg ul {
  flex: 1;
  display: flex;
  margin-left: .9rem;
  align-items: center;
  justify-content: space-between;
}

.navbg ul li a {
  font-size: .21rem;
  font-family: 'Microsoft YaHei';
  font-weight: 400;
  color: #333333;
}

/* 页面底部 */
.foot {
  padding: .41rem 0 .52rem;
  background: #0A57E0;
}

.foot ul {
  display: flex;
  justify-content: center;
}

.foot ul li a {
  font-size: .20rem;
  font-family: 'Microsoft YaHei';
  font-weight: 400;
  color: #FFFFFF;
}

.foot ul li {
  padding-right: .51rem;
  border-right: 1px #fff solid;
  height: .18rem;
  line-height: .18rem;
  padding-left: .51rem;
}

.foot ul li:last-child {
  padding-right: 0;
  border-right: none;
}

.foot ul li:first-child {
  padding-left: 0;
}

.foot div {
  font-size: .18rem;
  font-family: 'Microsoft YaHei';
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  line-height: .4rem;
}