/*为所有的container加一个上边距*/
body>.container{
    margin-top: 2%;
}
/*取消头像的左右填充边距*/
.tx{
    padding-left: 0;
    padding-right: 0;
}
/*头像的兄弟元素背景*/
.tx+div{
    background: #343a40;
}
/*头像设置*/
.tx>img{
    border: 7px solid #999;
}
/*资料*/
.zl>div{
    color: white;
    padding-top: 1%;
}
/*名字的背景颜色*/
.name{
    background: white;
}
/*星闻导航条样式*/
.rmmx{
    text-align: center;
    border-radius: 5%;
    line-height: 200%;
    margin-left: 1%;
    cursor: pointer;
    margin-top: 1%;
}
/*星闻导航条激活样式*/
.rmmxactive{
    background: #e30002;
    color: white;
    transition: 1s;
}
/*给所有a链接的样式*/
a{
    color: #212529;
    text-decoration: none;
}
a:hover{
    color: #e30002;
    text-decoration: none;
}
/*更多按钮的样式*/
.gd{
    line-height: 200%;
    text-align: right;
    margin-top: 1%;
}
.gd>a{
    color: #999;
    line-height: 100%;
}
.gd>a :hover{
    color: #e30002;
}
/*图库内容标题超出的部分用省略号表示*/
.tknr>div>p{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/*设置图库图片长度*/
.tknr>div>img{
    height: 240px;
}
/*版权的样式属性*/
.bq{
    margin-top: 1%;
    border-top: 2px solid #e30002;
    background: #2c2c2c;
}
/*版权信息的字体颜色*/
.bq>p{
    color: white;
}
/*详细资料中标题的样式*/
.xxzl>.bt{
    border-left: 3px solid #e30002;
}