.btn-common {
  background: linear-gradient(90deg, #5ed59f 0%, #3cb780 100%);
  line-height: 48px;
  font-size: 18px;
  border-radius: 48px;
  color: #fff;
  padding: 0 32px;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  transition: 0.1s all ease;
  outline: none;
  border: none;
  display: block;
}
.btn-common:hover {
  opacity: 0.85;
}
.pc-container {
  display: block;
}
.mobile-container {
  display: none;
}
.post-box {
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  width: 860px;
  box-sizing: border-box;
  padding: 20px;
  /* margin-top:20px; */
}
.post-box .top-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.post-box .top-box .tab-switch-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.post-box .top-box .tab-switch-box .item {
  color: #666;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  transition: all 0.05s linear 0s;
  -webkit-transition: all 0.05s linear 0s;
  -moz-transition: all 0.05s linear 0s;
  -ms-transition: all 0.05s linear 0s;
  cursor: pointer;
  letter-spacing: 2px;
}
.post-box .top-box .tab-switch-box .item:hover {
  color: #07C060;
}
.post-box .top-box .tab-switch-box .line {
  color: #ededed;
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  padding: 0 15px;
}
.post-box .top-box .tab-switch-box .active {
  color: #57be6a;
  font-size: 22px;
  line-height: 36px;
  font-weight: normal;
}
.post-box .top-box .btn-publish {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  background: #07C060;
  text-align: center;
  border-radius: 36px;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  padding: 0 20px;
  white-space: nowrap;
}
.post-box .list-box .bl {
  border-bottom: 1px solid #f5f5f5;
}
.post-box .list-box .item {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  padding: 20px 0;
  box-sizing: border-box;
}
.post-box .list-box .item .pic {
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  position: relative;
  width: 250px;
  height: 120px;
  min-width: 250px;
  background: #eee;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.post-box .list-box .item .pic .typecount {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  height: 20px;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  bottom: 4px;
  right: 4px;
  border-radius: 20px;
  padding: 0 8px;
  box-sizing: border-box;
}
.post-box .list-box .item .pic .typepic {
  position: absolute;
  padding-left: 24px;
}
.post-box .list-box .item .pic .typepic::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../images/icon-pic.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.post-box .list-box .item .pic .typevideo {
  position: absolute;
  padding-left: 24px;
}
.post-box .list-box .item .pic .typevideo::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/icon-video.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.post-box .list-box .item .item-right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 740px;
  height: 120px;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}
.post-box .list-box .item .item-right .title {
  color: #333;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 1px;
  width: 100%;
  cursor: pointer;
}
.post-box .list-box .item .item-right .des {
  color: #999;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  letter-spacing: 1px;
  display: -webkit-box;
  display: box;
}
.post-box .list-box .item .item-right .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #bfbfbf;
  font-size: 12px;
  line-height: 24px;
  font-weight: normal;
  padding-top: 10px;
  width: 100%;
}
.post-box .list-box .item .item-right .bottom .bottom-left,
.post-box .list-box .item .item-right .bottom .bottom-right {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.post-box .list-box .item .item-right .bottom .bottom-left .user,
.post-box .list-box .item .item-right .bottom .bottom-right .user {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.post-box .list-box .item .item-right .bottom .bottom-left .user .name,
.post-box .list-box .item .item-right .bottom .bottom-right .user .name {
  padding: 0 0 0 8px;
}
.post-box .list-box .item .item-right .bottom .bottom-left .avatar,
.post-box .list-box .item .item-right .bottom .bottom-right .avatar {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.post-box .list-box .item .item-right .bottom .bottom-left .date,
.post-box .list-box .item .item-right .bottom .bottom-right .date {
  margin: 0 0 0 20px;
  letter-spacing: 1px;
}
.post-box .list-box .item .item-right .bottom .bottom-left .from,
.post-box .list-box .item .item-right .bottom .bottom-right .from {
  margin: 0 0 0 20px;
}
.post-box .list-box .item .item-right .bottom .bottom-right .view {
  letter-spacing: 1px;
}
.post-box .list-box .item .item-right .bottom .bottom-right .like {
  letter-spacing: 1px;
  margin: 0 0 0 20px;
}
.post-box .list-box .item .item-right .bottom .bottom-right .comment {
  letter-spacing: 1px;
  margin: 0 0 0 20px;
}
.post-box .list-box .item:hover .item-right .title {
  color: #07C060;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
}
.post-box .list-box .item:hover .pic {
  opacity: 0.9;
}


/** ��ǩ **/
.post-box .flagul{
	padding:0;
	margin:0;
	margin-bottom:10px;
	width:100%
}
.post-box .flagul li{
	
	float: left;
    border: 1px #E5E5E5 solid;
    list-style-type: none;
    margin-right: 10px;
    margin-top: 10px;
    color: #595959;
    border-radius: 4px;
    font-size: 12px;
    line-height: 12px;
    padding: 7px 10px;
    box-sizing: border-box;

}