/* 个人中心 */


/* 用户信息 */
.u-center {
  position: fixed;
  left: 50px;
  top: 0px;
  width: 450px;
  height: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}
@media(max-width: 768px) {
	.u-center {
	  position: relative;
	  width: 100%;
	  left:0px;
	  height: auto;
	  margin-top: -8px;
	}

}

/* 用户属性 */
.u-profile {
  padding: 40px 20px 10px 20px;
}
@media(max-width: 768px) {
	.u-profile {
	  padding: 20px;
	}

}
.u-headimg {
  width: 180px;
  height: 180px;
  border-radius: 90px;
  cursor: pointer;
  
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-headimg:hover {
  border: 2px #aaa solid;
  width: 200px;
  height: 200px;
  border-radius: 100px;
}

.u-title {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
}
.u-intro {
  font-size: 13px;
  color: #888;
  padding: 10px 80px;
}
.u-intro-none {
  color: #ccc;
  -webkit-user-select: none;
  -moz-user-select: none; /* for Firefox */	
}

.u-analyze {
  width: 100%;
  padding: 20px 20px 80px 20px;
}
.u-analyze-row {
  float: left;
  width: 33.333333%;
  padding: 10px 20px;
  border-right: 1px #ddd solid;
}
.u-analyze-row:last-child {
  border-right: none;
}
.u-analyze-row-name {
  font-size: 13px;
  color:#aaa;
}
.u-analyze-row-num {
  font-size: 18px;
  color:#666;
  font-weight: bold;
}

.u-divide {
  width: 400px;
}


/* 用户文集 */
.u-collection {
  padding: 5px 20px;
}
.u-ctitle {
  color: #888;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: left;
}
.u-collection-none {
  color: #ddd;
  -webkit-user-select: none;
  -moz-user-select: none; /* for Firefox */	
}
.u-intro-edit {
  color: #bbb;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-intro-edit:hover {
  color: #888;
}
.u-collection-list {
  list-style: none;
  padding-left: 5px;
  color: #666;
  font-size: 14px;
  font-weight: normal;
}

.u-collection-list li {
  padding-top: 5px;
  width: 100%;
  
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.u-collection-list-hide:before{
  content: " -- ";
}
.u-collection-list-hide {
  display: none;
  font-size: 10px;
  color: #999;
  text-align: left;
}

.u-collection-list li:hover > .u-collection-list-hide{
  display: inline;
}

.u-user-list-hide:before{
  content: "  ";
}
.u-user-list-hide {
  display: none;
  font-size: 10px;
  color: #999;
  text-align: right;
}


@media (max-width: 768px) {
  .u-user-list-hide {
    display: inline;
  }

}

.u-collection-list li:hover > .u-user-list-hide{
  display: inline;
}

.u-article-list-end {
  color: #ccc;
  padding: 20px 10px;
  text-align: center;
  width: 80%;
  -webkit-user-select: none;
  -moz-user-select: none; /* for Firefox */
}

.u-btn {
  width: 200px;
  height: 30px;
  color: #fff;
  font-size: 16px;
  padding: 5px 120px;
  cursor: pointer;
  border-radius: 15px;
  text-align: center;
  background: #0275d8;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-btn:hover {
  background: #1480D2;
  color: #fff;
}
.u-btn:visited {
  background: #1480D2;
  color: #fff;
  text-decoration: none;
}



/* 文章列表 */
.u-articles {
  position: fixed;
  left: 500px;
  top: 0px;
  width: calc(100% - 500px);
  height: 100%;
  background: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 120px 10px 40px;
}
@media(max-width: 768px) {
	.u-articles {
	  position: relative;
	  width: 100%;
	  left:0px;
	  height: auto;
	  padding: 10px 0px 10px 0px;
	}
}
.u-articles-title {
  width: 95%;
  padding: 10px 0px;
  height: 49px;
  border-bottom: 2px #ccc solid;
}
.u-articles-title-elem {
  float: left;
  width: 100px;
  padding: 8px 10px;
  text-align: center;
  cursor: pointer;
  
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-articles-title-elem:hover {
  border-bottom: 3px #bbb solid;
}
.u-articles-title-elem.active {
  border-bottom: 3px #888 solid;
}

.u-at-elem-full {
  display: inline;
  color: #888;
}
.u-at-elem-short {
  display: none;
  color: #888;
}
@media(max-width: 768px) {
	.u-articles-title {
	  margin: 0px 10px;
	}
	.u-at-elem-full {
	  display: none;
	}
	.u-at-elem-short {
	  display: inline;
	}
	.u-articles-title-elem {
	  width: auto;
	  padding: 8px 15px;
	}
}


.u-article-list {
  list-style: none;
  padding-left: 5px;
  color: #666;
  font-size: 14px;
  font-weight: normal;
  width: 80%;
}
@media(max-width: 768px) {
	.u-article-list {
	  position: relative;
	  width: 100%;
	  left:0px;
	  height: auto;
	}
}

.u-articlelist-none {
  color: #ccc;
  padding: 20px 10px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none; /* for Firefox */
}

.u-al-elem {
  border-bottom: 1px #ddd solid;
  width: 100%;
  padding: 10px 10px;
}
@media(max-width: 768px) {
	.u-al-elem {
	  position: relative;
	  width: 100%;
	  left:0px;
	  height: auto;
	}
}
.u-al-elem-text {
 width: calc(100% - 120px);;
}
.u-al-elem-top {
  font-size: 12px;
  color: #aaa;
  text-align: left;
}
.u-al-elem-title {
  font-size: 18px;
  color: #666;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  padding: 3px 0px;
  text-decoration: none;
}
.u-al-elem-title:focus,
.u-al-elem-title:hover{
  color: #222;
  text-decoration: none;
}
.u-al-elem-subtitle {
  font-size: 13px;
  color: #999;
  text-align: left;
  padding: 3px 0px;
  
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.u-al-elem-bottom {
  font-size: 13px;
  color: #999;
  text-align: left;
  padding: 3px 0px;
}
.u-al-elem-img {
  float: right;
  width: 90px;
  height: 90px;
}

.u-al-top {
  color: #aaa;
  cursor: pointer;
  
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-al-top:hover {
  color: #888;
}
.u-al-top > .selected {
  color: #666;
  font-weight: bold;
}
.u-al-top > .selected:hover {
  color: #444;
}

.u-al-elem-msg-title {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  padding: 3px 0px;
  
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.u-al-elem-msg-title.read {
  color: #aaa;
}
.u-al-elem-msg-title.read:hover {
  color: #777;
}
.u-al-elem-msg-content {
  font-size: 10px;
  color: #999;
  text-align: left;
  padding: 3px 0px;
}


.u-msg-center {
  position: fixed;
  left: 30%;
  top: 10%;
  width: 40%;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px #ddd solid;
  background: #eee;
  border-radius: 10px;
  padding: 20px 30px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media(max-width: 768px) {
	.u-msg-center {
	  position: relative;
	  width: 100%;
	  left:0px;
	  height: auto;
	  margin-top: -8px;
	}

}

.u-msg-center.display {
  display: block;
}

.u-mc-title {
  text-align: center;
  font-size: 16px;
  color: #666;
  display: block;
  font-weight: bold;
}

.u-mc-divider {
  margin-top: 18px;
	margin-bottom: 18px;
	border: 0;
	border-top: 1px solid #ddd;
}

.u-mc-subtitle {
  text-align: center;
  font-size: 12px;
  color: #999;
  display: block;
  padding: 3px;
}

.u-mc-row {
  
}
.u-mc-elem {
  float: left;
  width: 33%;
  padding: 5px 8px;
}

/* 编辑信息 */
.u-edit {
  padding: 20px 30px;
}



.u-follow-talk-area {
  height:100%;
  width: 100%;
}

.u-follow-talk-msg {
  position: relative;
  height: 85%;
  width: 90%;
}
.u-follow-talk-input {
  position: relative;
  height: 10%;
  width: 90%;
}


.u-follow-msg-default {
  left:500px; 
  width: calc(100% - 500px);
}


@media (max-width: 768px) {
  .u-follow-talk-input {
    width: 100%;
    margin-bottom: 50px;
  }
}




.bubble {
  margin: 0px 10px;
  width: 100%;
  min-height: 70px;
  float: left;
  padding: 10px 80px;
}

@media (max-width: 768px) {
  .bubble {
    padding: 10px 5px;
  }

}
.demo {
  margin-top:10px;
  padding-left:15px;
  position:relative;
  width: calc(100% - 60px);
  float: left;
}
.b-headimg {
  padding: 10px 0px;
  float: left;
  position: relative;
  width: 50px;
  height: 50px;
  text-align:right;
  vertical-align: middle;
}
.btitle {
  text-align:left;
}
.triangle {
    position:absolute;
    top:50%;
    margin-top: 0px;
    left:8px;
    display:block;
    width:0;
    height:0;
    overflow:hidden;
    line-height:0;
    font-size:0;
    border-bottom:8px solid #FFF;
    border-top:8px solid #FFF;
    border-left:none;
    border-right:8px solid #eee;
}
.demo .article {
    float:left;
    color:#343434;
    right:43px;
    display:inline-block;
    *display:inline; zoom:1;
    padding:5px 10px;
    border:1px solid #eee;
    background:#eee;
    border-radius:5px;
    background-color: #eee;
    background-image:-webkit-gradient(linear,left top,left bottom,from(#eee),to(#eee));
    background-image:-webkit-linear-gradient(top,#eee,#eee);
    background-image:-moz-linear-gradient(center top , #eee, #eee);
    background-image:linear-gradient(top,#4D90FE,#eee);
}
.fr { padding-left:0px; padding-right:20px;  }
.fr .triangle {
    left:auto;
    right:14px;
    border-bottom:8px solid #FFF;
    border-top:8px solid #FFF;
    border-right:none;
    border-left:8px solid #3079ED;
  background: #0275d8;
}
.fr .article {
    color:#fff;
    float: right;
  background: #0275d8;
}
.fr .btitle {
  text-align:right;
}
.fr .b-headimg {
  text-align:left;
}


.ol-mobile-userinfo {
  padding-top: 50px;
}
.ol-mobile-panel {
  padding-bottom: 50px;
}




/* 手机端视图 */
.mobile-u-list-title {
  top: 0px;
  left: 30px;
  width: calc(100% - 30px);
  padding: 10px 200px;
  font-size: 20px;
  margin-bottom: 20px;
  color: #343434;
  z-index: 10000;
  font-weight: normal;
}
.mobile-u-list-title > .btn {
  position: absolute;
  right: 15px;
  color: #0275d8;
  padding: 8px 5px;
  border-radius: 10px;
}

.mobile-u-list-img {
  height:30px; 
  right:212px; 
  position:absolute; 
  border-radius:100px; 
  margin-top:-5px;
}

.mobile-u-list {
  list-style: none;
  padding: 0px 200px;
  width: 100%;
  border-left: none;
  border-right: none;
  margin-bottom: 80px;
}
.mobile-u-list > li {
  padding: 10px 20px;
  width: 100%;
  border-top: 1px #eee solid;
  height: 40px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.mobile-u-list > li:last-child{
  border-bottom: 1px #eee solid;
}
.mobile-u-list > li:hover {
  background: #eee;
}
.mobile-u-list > li.static {
  font-size: 12px;
  color: #999;
  font-weight: bold;
  padding: 30px 20px 5px 20px;
  height: 60px;
  cursor: text;
}
.mobile-u-list > li.static:hover {
  background: #fff;
}
.mobile-u-list > li > span > .not-read,
.mobile-u-list > li > .not-read {
  position: absolute;
  right: 15px;
  color: #fff;
  padding: 2px 5px;
  border-radius: 10px;
  background: #EF0000;
}
.mobile-u-list > li > span > .not-read.none,
.mobile-u-list > li > .not-read.none {
  background: #ccc;
}
.mobile-u-list > li > .hint {
  position: absolute;
  right: 15px;
  color: #999;
  padding: 2px 5px;
  border-radius: 10px;
}
.mobile-u-list > li > .hint.short {
  position: absolute;
  right: 215px;
  color: #999;
  padding: 2px 5px;
  border-radius: 10px;
  width:200px;
  text-align: right;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* 用户设置页面：修改用户简介面板 */
.u-intro-edit-area {  
  position: fixed;
  top: 0px;
  left: 200px;
  width: calc(100% - 400px);
  height: 100%;
  background: #fff;
  opacity: 1;
  color: #000;
  padding: 80px 10px;
  z-index: 100000;
}

@media (max-width: 768px) {
  .mobile-u-list {
    list-style: none;
    padding: 0px;
    width: 100%;
    border: 1px #eee solid;
    border-left: none;
    border-right: none;
    margin-bottom: 80px;
  }
  .mobile-u-list-title {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
    margin-bottom: 20px;
    background: #0275d8;
    color: #fff;
    z-index: 10000;
    font-weight: normal;
  }
  .mobile-u-list-img {
    right:12px; 
  }

  .mobile-u-list > li > .hint.short {
    position: absolute;
    right: 15px;
    color: #999;
    padding: 2px 5px;
    border-radius: 10px;
    width:200px;
    text-align: right;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  /* 用户设置页面：修改用户简介面板 */
  .u-intro-edit-area {  
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    color: #000;
    padding: 80px 10px;
    z-index: 100000;
  }

}


/* 加载更多的按钮 */
.ol-more-btn{
  display: block;
  background: #fff;
  border-top: 1px #eee solid;
  border-bottom: 1px #eee solid;
  color: #888;
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  text-align: center;
  cursor: pointer;
}

.ol-more-btn:hover {
  background: #eee;
}

