body {
    /*font-size: 62.5%*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}


/*//常规居中文本标题*/
.q-title {
     font-size: 0.28rem;
    font-weight: bold;
    text-align: center;
    color:#222222;
}

/*左对齐标题*/
.q-left-title{
    font-size: 0.24rem;
    font-weight: bold;
    text-align: left;
    color:#222222;
}

/*//常规H5文本正文*/
.q-content {
    
    font-size: 0.24rem;
    color:#222222;
}

/*//右对齐作者*/
.author{
    font-weight: bold;   
    text-align: right;
    font-size: 0.24rem;
    color:#222222;
}



/*//带左侧标签页面的文本标题,比如游戏规则标题*/
.q-title-2 {
    font-weight: bold;
    text-align: left;
    font-size: 0.32rem;
    color:#222222;
}

/*//带左侧标签页面的文本正文,比如游戏规则正文*/
.q-content-2 {
    font-size: 0.32rem;
    color:#222222;
}


/*//公告正文*/
.notice-content{
    color:#A07F69;
    font-size: 0.24rem
    
}
/*//公告标题字*/
.notice-title{
    color:#A07F69;
    font-weight: bold;
    font-size: 0.28rem
}



/*//活动规则正文*/
.rule-content{
    color:#222222;
    font-size: 0.24rem
}

/*//表格正文*/
.table-content{
    color:#222222;
    font-size: 0.24rem
}



















/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  height: 10;
  width: 10;
  //color: transparent;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: rgba(255,255,255,.5); 
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  //box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(0,0,0,80);
}