/* 头部样式 */
.myIndex .header{
  width: 100%;
  color: #000;
  background-color: #fff;
  padding: 7px 3px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.myIndex .header .text{
  height: 30px;
  line-height: 30px;
}
/* 个人信息 */
.myIndex .my_msg{
  margin-top: 44px;
  background-color: #fff;
  display: flex;
  flex-direction: column!important;
  justify-content: center;
  align-items: center;
}
.myIndex .my_msg .my_logo{
  width: 71px;
  height: 71px;
  border-radius: 35px;
  overflow: hidden;
}
.myIndex .my_msg .my_logo img{
  width: 100%;
  height: 100%;
}
.myIndex .my_msg .my_phone{
  color: #333;
  margin-top: 16px;
  font-weight: 700;
}
.myIndex .my_msg .code{
  border: 1px solid rgb(153, 153, 153);
  opacity: 0.7;
  padding: 4px 11px;
  border-radius: 24px;
  color: #999;
  margin-top: 16px;
}
/* 金额 */
.myIndex .amount_money{
  background-color: #fff;
  padding: 22px 0;
  margin-bottom: 11px;
  display: flex;
  justify-content: space-around;
}
.myIndex .amount_money .item{
  text-align: center;
}
.myIndex .amount_money .item .num{
  color: #333;
  font-size: 19px;
  font-weight: 700;
}
.myIndex .amount_money .item .name{
  margin-top: 5px;
  color: #999;
}
/* 功能按钮 */
.myIndex .buttons{
  margin: 11px;
  border-radius: 5px;
  background-color: #fff;
  padding: 11px 0;
  display: flex;
  justify-content: space-around;
}
.myIndex .buttons .tab{
  display: flex;
  align-items: center;
  flex-direction: column!important;
}
.myIndex .buttons .tab .tag_img{
  width: 49px;
  height: 49px;
  margin: auto;
}
.myIndex .buttons .tab .tag_img img{
  width: 100%;
  height: 100%;
}
.myIndex .buttons .tab a{
  color: #666;

}
.myIndex .buttons .tab a .text{
  margin-top: 5px;
  font-size: 14px;
}
/* 菜单 */
.myIndex .menu{
  margin: 11px;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 6rem;
}
.myIndex .menu .items{
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
.myIndex .menu .items .left{
  display: flex;
  align-items: center;
}
.myIndex .menu .items .left img{
  width: 24px;
  height: 24px;
}
.myIndex .menu .items .left span{
  margin-left: 16px;
  color: #666;
}
.myIndex .menu .items .right{
  height: 16px;
  width: 10px;
}
.myIndex .menu .items .right img{
  width: 100%;
}

/* 模态框 */
.confirm{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 999;
}
.confirm .box{
  width: 60%;
  height: 8rem;
  background-color: #fff;
  padding: 11px;
  border-radius: 8px;
  margin: auto;
  text-align: center;
  box-sizing: border-box;
}
.confirm .box .tit{
  font-weight: bold;
  color: #000;
  font-size: 16px;
  height: 4rem;
  line-height: 4rem;
}
.confirm .box .btn{
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-around;
}
.confirm .box .btn div{
  flex: 1;
  text-align: center;
}
.confirm .box .btn div:first-child{
  border-right: 1px solid #999;
}
.hide{
  display: none;
}






