*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
html,body{
  width: 100%;
  height: 100%;
}
.footerNav{
  text-decoration: none;
}
#mine{
  color: #3770A1;
}
.home-content{
  width: 100%;
  height: 100%;
  background-color: #2D3B60;
  display: flex;
  flex-direction: column;

}
.header{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 10px;
  flex-direction: column;
}
.header img{
  width: 70%;
  margin: 0 auto;
}
.header .titleLogo{
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  margin: 15px 0;
  color: #fff;
}
.content{
  width: 100%;
  flex: 1;
  padding: 0 20px;
}
.content-banner{
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
  border-radius: 10px 10px 0px 0px;
  padding: 10px;
}
.content-banner-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.content-banner-list-item{
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}
.content-banner-list-item-img{
  width: 50px;
  height: 50px;
}
.content-banner-list-item-img img{
  display: block;
  height: 100%;
  width: 100%;
}
.content-banner-list-item-text{
  font-size: 14px;
}
.footerNavWrap {
  left: 0;
  position: fixed;
  bottom: 0;
  background: #fff;
  min-height: 10vh;
  border-top: 1px solid #ccc;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 14px;
}
.footerNav {
  flex-direction: column;
  flex-direction: column;
  width: 20%;
  text-align: center;
  display: flex;
  align-items: center;
}
.footerNav img{
  width: 30px;
  display: flex;
}
@media (max-width:1080px) and (min-width:1024px){
  .content-banner-list-item{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
  }
  .content-banner-list-item-img{
    width: 80px;
    height: 80px;
  }
  .content-banner-list-item-text{
    font-size: 18px;
    margin-top: 10px;
  }
  .content-header-title-text{
    font-size: 20px;
  }
}