@import "/style/fonts/iconfont.css";

img{
    border: none;
}
/* 父元素-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+ */
}

.red {
    color: #ff0000;
}

.bdu {
    border: solid 1px #f2f2f2;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(26, 26, 26, .1);
    box-shadow: 0 1px 3px rgba(26, 26, 26, .1);
    box-sizing: border-box;
}

.userinfo {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    overflow: hidden;
}

.userinfo .userinfo-l {
    flex: 1;
    display: flex;
    float: left;
}

.userinfo .userinfo-l .avatar {
    border-radius: 100%;
    overflow: hidden;
    width: 80px;
    height: 80px;
    float: left;border:1px solid #ddd;
}

.userinfo .userinfo-l .userinfomain {
    margin-left: 10px;
    flex: 1;
    float:left;
}

.userinfo .userinfo-l .userinfomain .uname {
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0;
}

.userinfo .userinfo-l .userinfomain .uname .uname-rank {
    padding: 2px 4px;
    background-color: #0b7760;
    font-size: 10px;
    color: #fff;
    border-radius: 4px;
	display:none;
}

.userinfo .userinfo-l .userinfomain .signature {
    font-size: 14px;
    color: #888;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.userinfo .userinfo-l .userinfomain .signature i {
    color: #63b5ff;
}

.userinfo .userinfo-r {
    width: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-flow: column;
    float: right;
    min-height:80px;
}

.userinfo .userinfo-r .userinfo-item {
    display: flex;
    float: right;
    min-height: 40px;

}
.userinfo .userinfo-r .userinfo-item:first-child {
    align-items: flex-start;
}
.userinfo .userinfo-r .userinfo-item:last-child {
    align-items: flex-end;
}
.userinfo .userinfo-r .userinfo-btns-item {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    text-align: center;
    margin: 0 5px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .06);
    border-radius: 5px;
    background: #FFF;
    border: 1px solid #DDD;
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

.userinfo .userinfo-r .guanzhu {
    background: #0b7760;
    color: #fff;
}

.userinfo .userinfo-r .userinfo-btns-item i {
    margin-right: 5px;
}

.userinfo .userinfo-r .userinfo-btns-item:hover {
    color: #0b7760;
    border: 1px solid #0b7760;
    background: #FFF;
}

/*左边*/
.user-left {
    width: 690px;
    float: left;
    margin: 10px auto;
}

.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;
}

.stream-list-item .title {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 16px;

    line-height: 22px;
    font-weight: 400;
    border: none;
}

.stream-list-item .title a:visited {
    font-weight: 400;
    color: #333;
}

.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;
}

/*右边*/
.user-right {
    width: 300px;
    float: right;
    margin: 10px auto;
}

.focus-counts {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.focus-counts dl {
    width: 32.95%;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    border-right: 1px solid #eee;
    float: left;
}

.focus-counts dl:last-child {
    border: none;
}

.focus-counts dl dt {
    padding-bottom: 5px;
}

.focus-counts dl dd {
    color: #C62F36;
    font-size: 16px;
}

.person-info {
    margin-top: 10px;
}
.user-card{
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #eee;
    overflow: hidden;
}
.user-card >div{
    width: 50%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    float: left;
    text-align: center;
    margin-right: -1px;
}
.person-rank{
    border-right: 1px solid #eee;
}
.person-rank span{
    background-color: #0b7760;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    padding: 0 15px;
    height: 28px;
    line-height: 28px;
    text-align: center;
}
.person-rank p{
    color: #b8b8b8;
    font-size: 12px;
    margin-top:3px;
}
.user-card >div.experts{display:none}
.experts-info{
    background-color: gray;
    width: 90px;
    height: 28px;
    border-radius: 15px;
    line-height: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.experts .h {
    background: #f7af06;
}
.experts-info i{
    margin-right: 5px;
}
.experts-info > span {
    font-size: 13px;
    color: #fff;
}
.experts > p{
    font-size: 12px;
    color: gray;
    margin-top: 3px;
}
.person-desc {
    margin-top: 10px;
    padding: 0 10px 20px 10px ;
    color: #252525;
    clear: both;
}
.person-desc .title {
    color: #151515;
    font-size: 14px;
    line-height: 2;
}
.person-desc .title i{
    color: #0b7760;
    margin-right: 5px;
    font-size: 18px;
}
.person-desc .desc{
    font-size:14px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
    display: block;
}
.person-desc .desc img{max-width:100%}
.user-news {
    margin-top:10px;

}
.user-news .title{
    font-size:14px;
    color: #151515;
    padding: 15px 10px 10px;
    border-bottom: 1px solid #eee;
}
.user-news .user-news-list{
    padding:10px;
}
.user-news .user-news-list li{
    line-height:2.5;
    font-size:14px;
    border-bottom: 1px solid #eee;
    overflow:hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
}
.user-news .user-news-list li i{
    color:#dde2e7;
}
.user-news .title i {
    color: #0b7760;
    margin-right: 5px;

}
/*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: 30px 0;
    border-bottom: 1px solid #e1dfdf;
    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: 22px;
    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: #f7f7f7;
    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;
    overflow: hidden;
}
.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(//g.co188.com/img/sso/user/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;

}
.ziliao-list li .about img{
	max-width:100%
}