/* 头部公有 */
.Header{
  height: 40px;
  line-height: 40px;
}
.header-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  line-height: 40px;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
}
.header-box .header-title{
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.header-box .header-left{
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  padding-left: 15px;
  line-height: 40px;
}
.header-box .header-left a{
  display: flex;
  align-items: center;
}
.header-box .header-left img{
  width: 12px;
}
.header-box .header-right{
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  padding-right: 15px;
  line-height: 40px;
}
/* 底部公用 */
.Footer{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  border-top: 1px solid #e4e4e4;
}
.Footer ul{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.Footer ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.Footer ul li img{
  width: 20px;
  height: 20px;
}
.Footer ul li span{
  font-size: 14px;
  color: #ccc;
  line-height:20px;
}
.Footer .active span{
  color: #409EFF;
}
/* 按钮公用 */
.Public-btn{
  font-size: 16px;
}
.Public-btn button{
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  border: none;
  width: 100%;
  padding: 14px 0;
  background-color: #0079fe;
}
/* 弹框 */
.Mask{
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
}
.Mask .mask{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Mask .mask-box{
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
/* 提示 */
.base-hint {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999 !important;
    display: flex;
}

    .base-hint .con {
        padding: 0.26666667rem 0.4rem;
        margin: auto;
        color: #fff;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0.13333333rem;
    }
