﻿html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
}

body,span,div, p, h1, h2, h3, h4, h5, h6, ul, li{
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    box-sizing: border-box;
}

#app {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  width: 100%;
  height: 100%;
  min-width: 1224px;
}

a{
  text-decoration: none;
  color: #333;
}

h2 {
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
h2::before {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 25px);
  background-color: #064089;
  border-radius: 8px;
}
h2 a{
    cursor: pointer;
    transition: all .2s;
}
h2 a:hover{
    color: #064089;
}

/* p{
  position: relative;
  padding-left: 14px;
}
p::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%; */
  /* background: #8f0009; */
  /* background-color: #064089; */
/* } */

/* 头部样式 */
.header-container{
    width: 100%;
    /* height: 200px;
    background-color: rgba(0, 204, 204, .4); */
    /* background-color: rgba(1,115,141, .8); */
    /* background-color: #064089; */
    background-color: rgba(6, 64, 137, .8);
    position: absolute;
    z-index: 100;
}
.header-wrapper{
    width: 80%;
    height: 100%;
    margin: 0px auto;
    padding: 5px 0px;
    display: flex;
}

/* 底部样式 */
.footer-container{
    width: 100%;
    background-color: #064089;
    color: #fff;
}
.footer-content{
    margin: 0 auto;
    padding: 30px 0px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    
}
.footer-content span{
    display: block;
    text-align: left;
    margin-bottom: 5px;
}
.qrcode{
  display: flex;
}
.qrItem{
  width: 86px;
  height: 86px;
  margin-right: 30px;
}
.qrItem img{
  width: 100%;
  height: 100%;
}
.qrItem div{
  font-size: 14px;
}
.copyright{
    height: 30px;
    font-size: 14px;
    background-color: #064089;
    display: flex;
    justify-content: center;
    align-items: center;
}