

main,footer{
    /*默认情况下，width、height指的是内容本身的宽和高
     box-sizing:border-box,宽高包括内边距和边框
                content-box，默认值，宽高仅指内容本身*/
    width: 100%;
    /*border: 1px solid red;*/
    margin: 0 auto;

}
/*#代表颜色*/
html,body{
    margin:0;
    padding:0;
    width: 100%;
    height: auto;
    /* background: #fdfcf8; */
}


.wrapper {
    margin: 0 auto;
}
  
.clearbox {
    overflow: hidden;
}

a{
    text-decoration: none;
}
p{
    margin: 0;
}

ul{
    margin: 0;
    padding: 0;
    margin-block-start:0;
    margin-block-end: 0;
    list-style: none;
}







.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    margin: 0 auto;
}


.div-header{
    width: 100%;
    height: 60px;
    background: #3E4855;
}

.logo-mobile{
    width: 139px;
    float: left;
    background: transparent;
}

.logo-mobile:active{
    background: transparent;
}

.logo-mobile img{
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 15px;
}

.logo-mobile img:active{
    background: transparent;
}

.header-menu{
    width: 35px;
    height: 35px;
    float: right;
    background-size: 100%;
    margin-top: 12.5px;
    margin-right: 15px;
}


.nav-label{
    display: none;
}


.nav-label-mobile{
    position: relative;
    display: none;
}

.nav-label-list-mobile{
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #3E4855;
  box-sizing: border-box;
  padding: 0 15px;
}

.nav-label-list-mobile p {
    line-height: 40px;
    border-bottom: 1px solid hsl(0, 1%, 65%);
    text-align: center;
  }
  
  .nav-label-list-mobile p:last-child {
    border-bottom: none;
  }

  .nav-label-list-mobile p a {
    color: white;
  }

.nav-label-mobile-active a{
    color: #65B4FB !important;
}


#logo-home img{
    width: 201px;
    height: 53px;
}



.beian-text{
    display: block;
    color: white;
    background: transparent;
    padding-top: 10px;
    font-size: 12px;
}

.center {
    text-align: center;
}



/* pc底部布局不展示 只显示移动端的底部布局 */
#footer {
    display: none;
}

#last_footer{
    display: none;
}



#footer-mobile{
    width: 100%;
}
 
#qrcode{
    background: #3E4855;
    padding: 20px;
}

#qrcode img{
    width: 30%;
    height: 30%;
    background-size: 100%;
    background-repeat: no-repeat;
}

#footer-bottom{
    background: #373B41;
}


#footer-bottom span{
    color: white;
    font-size: 12px;
    padding: 10px 0 0 0;
    display: block;
}


#footer-bottom .border-span{
    border-top: white 1px solid;
    padding-top: 10px 0;
    margin:0 20px;
    margin-top: 10px;
}

#footer-bottom span:last-child{
    padding-bottom: 10px;
}