@import "/style/fonts/iconfont.css";
* {
    margin: 0;
    padding: 0;
    font-family: "PingFangSC-Regular,MicrosoftYaHei,Heiti SC,Helvetica";

    font-size: 14px;
    font-style: normal;
    text-decoration: none;
    outline: 0;
    list-style-type: none;
    box-sizing: border-box;
}

img {
    border: 0;
    max-width: 100%;
}

/* 父元素-flex容器 */
.flex {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 子元素-平均分栏 */
.flex1 {
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 父元素-横向排列（主轴） */
.flex-h {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

/* 父元素-横向换行 */
.flex-hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;

    /* 其它取值如下：
    align-items 主轴原点方向对齐
    flex-end 主轴延伸方向对齐
    space-between 等间距排列，首尾不留白
    space-around 等间距排列，首尾留白
    */
}

/* 父元素-水平两端对齐（主轴是横向才生效） */
.flex-hb {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;

}

/* 父元素-纵向排列（主轴） */
.flex-v {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-纵向换行 */
.flex-vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
    -webkit-box-ordinal-group: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 1; /* OLD - Firefox 19- */
    -ms-flex-order: 1; /* TWEENER - IE 10 */
    -webkit-order: 1; /* NEW - Chrome */
    order: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
    -webkit-box-ordinal-group: 2; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2; /* OLD - Firefox 19- */
    -ms-flex-order: 2; /* TWEENER - IE 10 */
    -webkit-order: 2; /* NEW - Chrome */
    order: 2; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

body{
    max-width: 1200px;
    margin: 0 auto;
    color: #282828;
}
a{color: #282828;}
header {
    height: 50px;
    padding: 10px;
    border-top: 1px solid #dce1e6;
    width: 100%;
}

.logo {
    font-size: 18px;
}

.nav-top {
 
    justify-content: space-around;
}

.nav-top li {
    margin: 0 5px;
}

.nav-top li a {
    font-size: 16px;
}
.nav-btn a{ display:flex;align-items: center;padding-left: 10px;}
/*个人信息*/
.user-info {
    background: #a8e1ff;
    position: relative;
    border-bottom: 10px solid #f7f7f7;
    padding-bottom: 20px;
}

.user-info .my_information {
    display: inline-block;
    width: 100%;
    z-index: 1;
    text-align: center
}

.user-info .my_information .information_con {
    display: inline-block;
    font-size: 0;
    width: 100%;
    vertical-align: middle
}

.user-info .my_information .information_con .head_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0;
    display: block;
    margin: 10px auto 0;
    border: 3px solid #fff
}

.user-info .my_information .information_con .name {
    line-height: normal;
    padding-top: 8px
}

.user-info .my_information .information_con .name a {
    font-size: 17px;
     
    line-height: normal;
    color: #fff;
	display:block;
}

.user-info .my_information .information_con .name i {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background-color: #fe9f0b;
    line-height: normal;
    padding: 0 5px;
   
    border-radius: 5px;
    position: relative;
    top: -1px;
    margin: 0 5px;
	
}

.user-info .my_information .information_con .num {
    display: block;
    width: 220px;
    line-height: normal;
    margin: 5px auto 8px;
    padding: 6px 0;
    background-color: rgba(0,0,0,0.1);
    border-radius: 20px
}

.user-info .my_information .information_con .num s {
    font-size: 12px;
    color: #fff;
    line-height: normal;
    position: relative;
    top: -2px;
    margin-right: 7px
}

.user-info .my_information .information_con .num span {
    display: inline-block;
    font-size: 16px;
    max-width: 50px;
    text-align: left;
    color: #fff;
    line-height: normal
}

.user-info .my_information .information_con .num i {
    display: inline-block;
    height: 12px;
    border-left: 1px solid #fff;
    margin-left: 8px;
    padding-right: 8px
}

.user-info .my_information .information_con .text {
    display: block;
    margin: 0 auto;
    line-height: normal;
    max-width: 90%;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center
}

.ta_operate {
    display: inline-block;
    text-align: center;
    margin-top: 8px
}

.ta_operate .attention {
    display: inline-block;
    width: 80px;
    height: 30px;
    border: .5px solid #fff;
    background: #fff;
    color: #666;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px
}

.ta_operate .message {
    display: inline-block;
    width: 65px;
    height: 30px;
    border: .5px solid #000;
    background: #000;
    color: #fff;
    opacity: .2;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    margin: 0 8px
}

.ta_operate .packet {
    display: inline-block;
    width: 80px;
    height: 30px;
    border: .5px solid #000;
    background: #000;
    color: #fff;
    opacity: .2;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px
}
/**/
.user-left {
    width: 100%;
    margin: 10px auto;
    border-bottom: 10px solid #f7f7f7;
}

.user-left .tablist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e1dfdf;
    overflow: hidden;
}

.user-left .tablist li {
    width: 20%;
    text-align: center;
    font-size: 15px;
    padding: 15px 0;
    position: relative;
    float: left;
}

/*.user-left .tablist li:hover,.user-left .tablist li.on
{
    background:#0b7760;
    color: #fff;
}
.user-left .tablist li:hover a,.user-left .tablist li.on a{
    color: #fff;
}*/
.user-left .tablist li:hover, .user-left .tablist li.on {
    font-weight: bold;

}

.user-left .tablist li:hover a:after, .user-left .tablist li.on a:after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #0b7760;
    content: "";
}

/*TA的提问*/
.question-stream {
    padding: 0 15px;
    margin-top: 20px;
}

.stream-list-item {
    margin: 0;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    display: flex;
}

.qa-rank {
    float: left;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    color: #666;
}

.qa-rank .answers {
    margin: 0 6px;
    color: #AD3A37;
    display: inline-block;
    padding-top: 3px;
    width: 45px;
    height: 42px;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.qa-rank .answered {
    color: #fff;
    background: #46a386;

}

.qa-rank .solved {
    background-color: #0b7760;
    color: #fff;
}

.qa-rank small {
    display: block;
    font-size: 12px;
    padding-top: 3px;
}

.qa-rank .views {
    color: #999;
    display: inline-block;
    padding-top: 3px;
    width: 45px;
    height: 42px;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.summary {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    flex:1;
    overflow: hidden;
}

.stream-list-item .title {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 16px;
   
    line-height: 22px;
    font-weight: 400;
    border: none;
    
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
}

.stream-list-item .title a {
    font-weight: 700;
    color: #333;
	font-size: 15px;
}

.stream-list-item .list-inline {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
}

.stream-list-item .list-inline i {
    margin-right: 5px;
}

/*分页*/
.pages {
    padding: 20px 15px;
    font-weight: bold;
    text-align:center;
}

.pages a, .pages strong, .pages span {
    border-radius: 4px;
    display: inline-block;
    padding: 0 9px;
    margin: 0 2px;
    min-width: 10px;
    _width: 10px;
    white-space: nowrap;
    height: 27px;
    line-height: 27px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
}

.pages a {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #969696;
    border-radius: 4px;
}

.pages a:hover {
    color: #333;
    background-color: #e3e3e3;
    text-decoration: none;
}

.pages strong {
    background-color: #F9F9F9;
    color: #777;
    font-weight: bold;
}

.pages span {
    color: #999999;
    font-size: 14px;
}

/*TA的回答*/
.answer-stream{
    padding: 0 15px;
}
.comment-pop-icon {
    background: url(/static/images/news-icon.8b6beb7f.png) no-repeat;
}
.comment-pop-link-icon {

    background: url(/static/images/news-icon.8b6beb7f.png) no-repeat;
}
.comment-pop-comment {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px
}

.comment-pop-content {
    color: #4b4b4b;
    line-height: 24px;
    margin-top: 14px;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 14px
}
.comment-pop-bold {
    font-weight: 600;
    font-style: normal
}
.comment-pop-images {
    margin: -4px 0 16px;
    overflow: hidden
}

.comment-pop-images li {
    float: left;
    width: 74px;
    height: 74px;
    margin: 4px 4px 0 0;
    font-size: 0
}

.comment-pop-number {
    margin-top: 20px;
    overflow: hidden
}

.comment-pop-number span {
    display: block;
    font-size: 12px;
    height: 14px;
    line-height: 14px;
    color: #adadad
}

.comment-pop-number-item {
    margin-right: 50px;
    padding-left: 16px;
    float: left
}

.comment-pop-time {
    float: right
}

.comment-pop-link,.comment-pop-reply {
    display: block;
    height: 40px;
    line-height: 40px;
    background-color: #e8e8e8;
    color: #4b4b4b;
    padding: 0 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.comment-pop-link-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: 0 -200px;

}

.comment-pop-link {
    font-size: 16px;
    text-decoration: none
}

.comment-pop-link:visited {
    color: #4b4b4b
}

.comment-pop-link:hover {
    background-color: #f0f0f0;
    color: #4b4b4b;
    text-decoration: none
}

.comment-pop-reply {
    position: relative;
    font-size: 14px
}

.comment-pop-reply-line {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #eee;
    bottom: 0;
    left: 15px
}
.comment-pop-icon-up {
    background-position: 0 -172px
}

.comment-pop-icon-reply {
    background-position: 0 -186px
}
/*博客文章*/
.blog-stream{

}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-default {
    color: #8c8c8c;
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}
.stream-list-item .excerpt {
    margin: 5px 0 10px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
}
.wordbreak {
    word-break: break-all;
}
.blog-rank {
    float: left;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    color: #666;
}
.stream-item-zan span {
    display: block;
    color: #212121;
}
.stream-item-zan-icon {
    height: 16px;
    width: 100%;
}
.stream-item-zan-number {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    display: block;
    color: #212121;
}
.stream-item-zan {
    float: left;
    margin: 15px 15px 15px 0px;
    width: 40px;
    height: 46px;
    box-sizing:border-box;
}
.stream-item .btn {
    padding: 0;
    margin-top:0;
}

/*粉丝*/
.follow_ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin-top: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.follow_ul li {
    float: left;
    width: 300px;
    height: 50px;
    margin-bottom: 40px
}
.follow_ul li:nth-of-type(2n){
    float: right;
}


.follow_ul li .follow_tx {
    float: left;
    display: block;
    border: 1px solid #dce1e6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer
}

.follow_ul li .follow_tx img {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto
}

.follow_ul li .follow_in {
    float: left;
    width: 150px;
    height: 50px;
    margin: 0 20px 0 15px
}

.follow_ul li .follow_in .follow_name {
    display: block;
    width: 100%;
    text-align: left;
    color: #3d464d;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px
}

.follow_ul li .follow_in .follow_about {
    width: 100%;
    height: 24px;
    line-height: 1.5;
}

.follow_ul li .follow_in .follow_about a {
    float: left;
    font-size: 12px;
    color: #828e9a;
    line-height: 24px
}

.follow_ul li .follow_in .follow_about a span {
    margin-left: 10px;
    color: #3d464d
}

.follow_ul li .follow_in .follow_about em {
    float: left;
    color: #dce1e6;
    margin: 0 14px;
    position: relative;
    top: 1px;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
}
.follow_attention {
    display: block;
    float: right;
    width: 60px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    color: #3491f1;
    border-radius: 3px;
    border: 1px solid #3491f1;
    margin-top: 10px;
    cursor: pointer
}

.follow_attention i {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: url(/static/images/iconbg1.png) no-repeat -36px -210px;
    margin-right: 5px
}

.follow_attention.follow_attention_ok {
    border-color: #a4b0bd;
    color: #a4b0bd
}
/*个人资料*/
.ziliao-list{
    margin-top:30px;
    padding:0 15px;
    margin-bottom: 30px;
}
.ziliao-list li{
    padding: 5px 0px;
    color: #333333;
    font-size: 14px;
    display:flex;
    line-height:1.5;
    width:100%;

}
.ziliao-list li:last-child span{
    display: block;
}
.ziliao-list > li > span:first-child{
    white-space: nowrap;
    font-weight: bold;
}
.ziliao-list > li > span:last-child{
    color: #666666;
    flex:1;

}

#msginfo{ padding:10px;}
