body {
    background-color: #fff;
}

* {
    box-sizing: border-box;
}

.pagefixed {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 99;
}

.pagefixed:before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #fe8a45, #d10e11);
    position: absolute;
    left: 0;
    bottom: 0%;
}

.pagefixed .top {
    width: 100%;
    line-height: 1rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pagefixed .g_return {
    display: inline-block;
    position: absolute;
    left: .5rem;
    width: .2rem;
}

.pagefixed .g_return img {
    display: inline-block;
    width: 100%;
    margin-top: -2px;
    vertical-align: middle;
}

.pagefixed .pagetit {
    font-size: .34rem;
    color: #333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 100%;
    line-height: 1rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 3px;
    box-sizing: border-box;
    width: 60%;
}

.content {
    margin-top: 1rem;
    padding: .42rem;
}

.pagetitle {
    font-size: .4rem;
    color: #333;
    margin-bottom: .38rem;
}

.flex_cell {
    display: flex;
    align-items: center;
}

.flex_cell_bd {
    flex: 1;
    min-width: 0;
}

.headpic {
    display: block;
    margin-right: .12rem;
    width: .7rem;
}

.userinfo {
    margin-bottom: .2rem;
}

.username {
    font-size: .24rem;
    color: #333;
}

.paragraph {
    font-size: .22rem;
    color: #4d4d4d;
    line-height: .4rem;
    text-indent: .5rem;
}

.paragraph img {
    display: block;
    width: 100%;
}


/*nav 标题内容*/

#titScroll {
    display: inline-block;
}


/*nav标题左滚动*/

@keyframes marqueeTransform {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}