
/*顶部导航菜单下拉*/
.mainNav-wrap .mainNav ul[class='tabBar'] .tabBar-child li:hover,
.mainNav-wrap .mainNav .user .set .set-child li:hover
{
    background: linear-gradient(0deg, #1489f4,#47a6ff);
    color: white;
}
/*按钮样式*/
.btn-c{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-green{
  display: inline-block;
    padding:0 24px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: white;
    background: linear-gradient(0deg, #00CC5C,#00F26D);
    border-radius: 4px;
    cursor: pointer;
}
.btn-green:hover{
    background: linear-gradient(0deg, #02C258,#02DE65);
}
.btn-blue{
   display: inline-block;
    padding:0 24px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: white;
    background: linear-gradient(0deg, #1489f4,#47a6ff);
    border-radius: 4px;
    cursor: pointer;
}
.btn-blue:hover{
    background: linear-gradient(0deg, #087AE2,#3295F2);
}
.btn-yellow{
    display: inline-block;
    padding:0 24px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: white;
    background: linear-gradient(0deg, #FF9030,#FEA558);
    border-radius: 4px;
    cursor: pointer;
}
.btn-yellow:hover{
    background: linear-gradient(0deg, #EF7E1C,#F69643);
}
