*{
    margin : 0;
    padding : 0;
}

html,body{
    background-color : #f3f3f3;
}

.clear:after,.clear:before{
    display : table;
    content : " ";
}

.clear:after{
    clear : both;
}

input,textarea{
    border : none;
    resize : none;
    overflow : auto;
}

#con-message{
    width : 1000px;
    margin-bottom : 10px;
    border : none;
}

.boardnav{
    width : 1000px;
    margin : .5rem auto 10px;
    padding : 20px 32px 0;
    box-sizing : border-box;
    background-color : #ffffff;
    cursor: pointer;
}

.swiper-user .category.less{
    float: left;
    margin-right: 10px;
    width: 300px;
    height: 168px;
}

.boardnav-type .user{
    float: right;
}
.user .user-img{
    width : 32px;
    height : 32px;
    border: none;
}
.user-img img{
    width : 100%;
    height : 100%;
    border-radius : 50%;
}
.user .username>div{
    float: left;
}
.username .login{
    margin-left : 5px;
    overflow : hidden;
    white-space : nowrap;
    text-overflow : ellipsis;
    max-width: 100px;
    text-align: right;
}
.boardnav .boardnav-type{
    margin-top: 20px;
    line-height: 32px;
    font-size : 14px;
    color : #333333;
}

.boardnav-type>span{
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 12px 0;
    cursor: pointer;
    font-weight: 900;
    font-size: 16px;
}

.boardnav-type span.cur{
    background-color: #eee;
}

.boardnav-content ul li{
    padding-top : 30px;
    border-bottom : 1px solid #f5f5f5;
    cursor : pointer;
}

.boardnav-content .empty-tip{
    position : relative;
    display : none;
    width : 100%;
    height : 240px;
    background-color : #ffffff;
}

.empty-tip span{
    position : absolute;
    top : 56%;
    left : 50%;
    transform : translate(-50%, -50%);
    display : none;
}

.empty-tip span:before{
    position : absolute;
    top : -32px;
    left : 50%;
    transform : translate(-50%, -50%);
    content : "";
    width : 44px;
    height : 40px;
}

.empty-tip .empty-rel:before{
    background : url("/images/community/release.png");
    background-size : 44px 40px;
}

.empty-tip .empty-rec:before{
    background : url("/images/community/release.png");
    /*background: url("/images/community/recommend.png");*/
    background-size : 44px 40px;
}

.boardnav-content .bct{
    height : 18px;
    font-size : 16px;
    color : rgba(51, 51, 51, 1);
    line-height : 18px;
}

.bct .bct-j,.bct .bct-t,.bct .bct-f,.bct .bct-g{
    height : 16px;
    line-height : 16px;
    padding : 0 5px;
    border-radius : 2px;
    font-size : 12px;
    color : rgba(255, 255, 255, 1);
}

.bct .bct-j,.bct .bct-t,.bct .bct-f,.bct .bct-g{
    background : rgba(80, 215, 237, 1);
}

.bct .bct-t,.bct .bct-f,.bct .bct-g{
   /* background : rgba(80, 215, 237, 1)*/
}
.bct .bct-p-img{
    float: left;
    width: 16px;
    height: 16px;
    /*margin-top: 4px;*/
    margin-right: 10px;
    background: url("/images/community/top.png") center no-repeat;
    background-size: 16px 16px;
}
.bct .bct-t-img{
    float: left;
    width: 16px;
    height: 16px;
    /*margin-top: 4px;*/
    margin-right: 10px;
    background: url("/images/community/tuijian@3x.png") center no-repeat;
    background-size: 16px 16px;
}
.bct .bct-j-img {
    float: left;
    width: 16px;
    height: 16px;
    /*margin-top: 4px;*/
    margin-right: 10px;
    background: url("/images/community/jinghua@3x.png") center no-repeat;
    background-size: 16px 16px;
}
.boardnav-content .bcm{
    width : 100%;
    margin : 16px 0;
    color : rgba(140, 140, 140, 1);
}

.bcm .bcm-l{
    float : left;
}

.bcm-l span{
    display : inline-block;
    height : 12px;
    line-height : 12px;
    font-size : 12px;
}

.bcm-r .reply:before{
    content : "";
    position : absolute;
    top : 0;
    left : 4px;
    width : 12px;
    height : 12px;
    line-height : 12px;
    background : url("/images/community/reply.png");
    background-size : 12px 12px;
}

.bcm .bcm-r{
    float : right;
}

.bcm-r span{
    position : relative;
    display : inline-block;
    height : 12px;
    line-height : 12px;
    padding-left : 20px;
    font-size : 12px;
}

.bcm-r .watch:before{
    content : "";
    position : absolute;
    top : 0;
    left : 0;
    width : 16px;
    height : 12px;
    line-height : 12px;
    background : url("/images/community/watch.png");
    background-size : 16px 12px;
}

.pagination{
    margin : 40px 0;
}


.flex,.flex-top,.flex-x,.flex-y,.flex-center,.flex-x-about{
    display : -webkit-box;
    display : -webkit-flex;
    display : flex;
} /* 设置弹性布局 */
.flex-c{
    -webkit-box-flex : 1;
    -webkit-flex : 1;
    flex : 1;
} /* 作为子元素占等比1 */
.flex-x,.flex-center{
    -webkit-box-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
} /* 子元素X轴居中 */
.flex-y,.flex-center{
    -webkit-box-align : center;
    -webkit-align-items : center;
    align-items : center;
} /* 子元素Y轴居中 */
.flex-top{
    -webkit-box-direction : normal;
    -webkit-box-orient : vertical;
    -webkit-flex-direction : column;
    flex-direction : column;
} /* 子元素垂直排列 */
.flex-x-about{
    -webkit-box-pack : justify;
    -webkit-justify-content : space-between;
    justify-content : space-between;
}/*子元素x左右分布*/
.msgPrompt{
    width: 12px;
    height: 16px;
    background: url('/images/community/clea.png') no-repeat;
    background-size: 100%;
    margin: 8px 8px 0 10px;
    position: relative;
}
.hasMsg.msgPrompt>.circle{
    width: 5px;
    height: 5px;
    background: red;
    border-radius: 5px;
    float: right;
}
.msgPrompt .msgCont{
    position: absolute;
    width: 290px;  
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    background: #fff;
    z-index: 100;
    left: -225px;
    top: 35px;
    border-radius: 5px;
}
.hide{
    display: none!important;
}
.msgPrompt.isempty .msgCont{
    background-image: url('/images/community/ld.png');
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 50% 25%;
    height: 150px;
}
.msgPrompt.isempty .msgCont:before{
    content: "暂无消息";
    position: absolute;
    top: 54%;
    font-size: 12px;
    left: 43%;
    color: #A0A0A0;
}
.msgPrompt .listWord{
    word-break:break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px;
}
.msgPrompt .msgCont:after{
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    display: block;
    position: absolute;
    z-index: 101;
    top: -12px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-right: 1px solid rgba(0,0,0,.1);
    left: 222px; 
    transform: rotate(315deg);
}
.msgPrompt .msgList{
    padding: 10px 15px;
    color: #576B95;
    font-size: 16px;
    border-bottom: 1px solid #EEEEEE;
}
.msgPrompt .msgList span{
    color: #000;
    padding: 0 7px;
}
.msgPrompt .msgTime{
    color: #8C8C8C;
    font-size: 14px;
}
.category>img{
    border-radius: 10px;
}