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

@media screen and (min-width: 100px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 384px) {
  html {
    font-size: 12px;
  }
}

@media screen and (min-width: 480px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 640px) {
  html {
    font-size: 20px;
  }
}

@media screen and (min-width: 800px) {
  html {
    font-size: 25px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

.mobile-container {
  max-width: 800px;
  margin: 0 auto;
}

.pc-container,
.pc-article-container {
  display: none;
}

body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar {
  display: none;
}

.mobile-container {
  max-width: 800px;
  margin: 0 auto;
}

.pc-container {
  display: none;
}

.article-content-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.article-content-container .article-side-left .article-text-container {
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  box-shadow: none;
}

.article-content-container .article-side-left .article-text-container .title-box {
  overflow: hidden;
}

.article-content-container .article-side-left .article-text-container .title-box h1 {
  margin-top: 3rem;
  font-size: 2.6rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  text-align: center;
  text-align: left;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .article-info-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #999;
  font-size: 1.2rem;
  border-bottom: 1px solid #f8f8f8;
  padding-bottom: 1.5rem;
  width: 100%;
  font-weight: 300;
}

.article-content-container .article-side-left .article-text-container .article-info-box .author {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
}

.article-content-container .article-side-left .article-text-container .article-info-box .author img {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .article-info-box .author .name {
  margin-left: 15px;
}

.article-content-container .article-side-left .article-text-container .article-info-box .from {
  display: none;
}

.article-content-container .article-side-left .article-text-container .description {
  margin: 1.5rem 0;
  font-size: 1.5rem;
  color: #333;
  line-height: 2.8rem;
  font-weight: 300;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .text-box .pic-box {
  padding: 10px 0;
  margin: 0px auto;
  overflow: hidden;
}

.article-content-container .article-side-left .article-text-container .text-box .pic-box img {
  display: block;
  width: 100%;
  margin: 0px auto;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .text-box img {
  max-width: 100%;
}

.article-content-container .article-side-left .article-text-container .text-box h2 {
  font-size: 1.8rem;
  color: #0164FF;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 3rem;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .text-box h3 {
  font-size: 1.6rem;
  color: #ffa500;
  font-weight: 500;
  line-height: 24px;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .text-box p {
  margin: 15px 0;
  font-size: 1.5rem;
  color: #333;
  line-height: 2.8rem;
  font-weight: 300;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .aricle-lable {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.5rem 0 1.8rem 0;
  line-height: 2.7rem;
  transition: 0.2s all linear;
}

.article-content-container .article-side-left .article-text-container .aricle-lable .title {
  font-size: 1.2rem;
  color: #bfbfbf;
  margin-bottom: 0.5rem;
}

.article-content-container .article-side-left .article-text-container .aricle-lable a {
  display: block;
  border: 1px solid #f59f56;
  color: #f59f56;
  padding: 0 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.article-content-container .article-side-left .article-text-container .more-article {
  display: none;
}

.article-content-container .article-side-left .article-text-container .show-all-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80px;
  background: #fff;
}

.article-content-container .article-side-left .article-text-container .show-all-content::before {
  content: '';
  position: absolute;
  bottom: 80px;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
}

.article-content-container .article-side-left .article-text-container .show-all-content .btn {
  color: #f59f56;
  border: 1px solid #f59f56;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 40px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.2rem;
}

.article-content-container .article-side-left .article-text-container .experts-intro {
  position: relative;
  background: #fff;
  padding: 0.5rem 0;
  margin-top: 20px;
}

.article-content-container .article-side-left .article-text-container .experts-intro .title {
  position: absolute;
  top: 0;
  left: 1rem;
  background: #fff;
  color: #bfbfbf;
  padding: 0 0.25rem;
}

.article-content-container .article-side-left .article-text-container .experts-intro .border-container {
  border: 1px solid #eee;
  padding: 1rem 0.75rem 0.75rem 0.75rem;
  box-sizing: border-box;
  color: #aaa;
}

.article-content-container .article-side-left .article-text-container .experts-intro .border-container .name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.article-content-container .article-side-left .article-text-container .experts-intro .border-container .des {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-indent: 2.4rem;
}

.article-content-container .article-side-left .article-text-container .remind-box {
  background: #f8f8f8;
  color: #999;
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 10px;
}

.article-content-container .article-side-right {
  display: none;
}


.parMain {
  padding: 3%;
  color: #666;
  line-height: 32px;
  border-bottom: 9px solid #F6F7FA;
  font-size: 15px;
  line-height: 23px;
  padding-top: 0
}

.parMain a {
  color: #666;
}

.parMain img {
  max-width: 100%;
  width: 100%;
  height: auto !important;
  margin: 5px 0;
}

.parMain h2 {
  color: #f59f56 !important;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.66rem;
  font-size: 1.333rem;
  font-size: 18px;
}

/* 补充样式 */
.right-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.right-container .content-title-box {
  display: flex;
}

.right-container .flagul {
  display: flex;
  flex-wrap: wrap;
}

.right-container .active-box .user-box .arc-item .title {
  font-size: 17px;
}

.center-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.center-container .left-container {
  width: 100%;
}

.center-container .left-container .detail-container {
  padding: 0 15px;
  box-sizing: border-box;
  border-bottom: 8px solid #f8f8f8;
}

.center-container .left-container .detail-container .title {
  margin-bottom: 15px;
  margin-top: 10px;
  color: #333;
  font-size: 23px;
  line-height: 30px;
  text-align: justify;
}

.center-container .left-container .detail-container .detail-info {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.center-container .left-container .detail-container .detail-info .userinfo {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.center-container .left-container .detail-container .detail-info .userinfo .avatar {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
  background: #eee;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  margin-right: 20px;
}

.center-container .left-container .detail-container .detail-info .userinfo .info {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: 40px;

}

.center-container .left-container .detail-container .detail-info .userinfo .info .up {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}


.center-container .left-container .detail-container .detail-info .userinfo .info .up .username {
  color: #666;
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  margin-right: 10px;

}

.center-container .left-container .detail-container .detail-info .userinfo .info .down {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.center-container .left-container .detail-container .detail-info .userinfo .info .down .date {
  color: #bfbfbf;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  margin-right: 20px;
}

.center-container .left-container .detail-container .content-box img {
  display: block;
  width: 100%;
  margin: 0px auto;
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
}

.center-container .left-container .detail-container .content-box {
  
  color: #666;
  line-height: 32px;
  font-size: 16px;
  line-height: 30px;
  padding-top: 0;
}

.center-container .left-container .detail-container .content-box .daodu {
  width: 100%;
  background-color: #F9F9F9;
  line-height: 28px;
  letter-spacing: 1px;
  font-size: 16px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 10px 12px;
  margin-top: 20px;
  margin-bottom: 20px;

}

.center-container .left-container .detail-container .content-box h2 {
  color: #f59f56 !important;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.66rem;
  font-size: 18px;

}

.center-container .left-container .detail-container .content-box p {
  font-size: 17px;
  line-height: 33px;
  margin-bottom:15px;
  text-align: justify;
}

.content-title-box .title{
	font-weight:500;
}


.comment-container {
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 8px solid #f8f8f8;
}

.comment-container .tiezi-box {
  padding-top: 10px;
}
.comment-container .tiezi-box .item {
  padding: 8px 0;
  box-sizing: border-box;
}
.comment-container .tiezi-box .item .top-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.comment-container .tiezi-box .item .top-container .userinfo {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.comment-container .tiezi-box .item .top-container .userinfo .avatar {
  background: #eee;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin-right: 12px;
}
.comment-container .tiezi-box .item .top-container .userinfo .info {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding: 4px 0;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .top {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .top .name {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  margin-right: 16px;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .top .relation {
  color: #57be6a;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  width: 40px;
  box-sizing: border-box;
  border: 1px solid #57be6a;
  border-radius: 4px;
  text-align: center;
  margin-right: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .top .level {
  width: 72px;
  height: 20px;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: auto 20px !important;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.comment-container .tiezi-box .item .top-container .userinfo .info .bottom .date,
.comment-container .tiezi-box .item .top-container .userinfo .info .bottom .from,
.comment-container .tiezi-box .item .top-container .userinfo .info .bottom .position {
  color: #bfbfbf;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  margin-right: 16px;
}
.comment-container .tiezi-box .item .top-container .floor {
  color: #999;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}
.comment-container .tiezi-box .item .main-container {
  padding-left: 40px;
  box-sizing: border-box;
}
.comment-container .tiezi-box .item .main-container .message {
  color: #222;
  font-size: 15px;
  line-height: 26px;
  font-weight: normal;
  padding: 8px 0;
  letter-spacing: 1px;
}
.comment-container .tiezi-box .item .main-container .imgbox {
  display: block;
  width: 100%;
}
.comment-container .tiezi-box .item .main-container .imgbox img {
  display: block;
  width: 100%;
  margin: 10px 0;
}
.comment-container .tiezi-box .item .main-container .tiezi-operation {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.comment-container .tiezi-box .item .main-container .tiezi-operation .reply,
.comment-container .tiezi-box .item .main-container .tiezi-operation .report {
  color: #999;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-left: 18px;
  cursor: pointer;
}
.comment-container .tiezi-box .item .main-container .reply-message {
  background: #f2f2f2;
  padding: 6px 8px;
  margin-top: 5px;
}
.comment-container .tiezi-box .item .main-container .reply-message .info {
  color: #999;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  margin-bottom: 5px;
}
.comment-container .tiezi-box .item .main-container .reply-message .text {
  color: #999;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  letter-spacing: 1px;
}
.content-title-box .title{
	font-size:17px;
	margin-right:10px;

}
.content-title-box .des {
	font-size:14px;
	padding-bottom:2px
}


/**短问答**/
.short_q_bgimg{
  text-indent: 32px;
    background: url(../images/short_q.svg) 0 4px  no-repeat;
    background-size: 23px;
}
.short_a_bgimg{
  text-indent: 73px;
  background-image: url(../images/short_a.svg);
  background-position: 0px 6px;
  background-size: 72px;
  background-repeat: no-repeat;
  height:30px
}
.hotflags{
  display: none;
}

/**谷歌广告位**/
.google_right1{
	width:100%; 
	padding-bottom:10px;
	border-bottom:8px #f8f8f8 solid;
	margin:0px auto;
}



	/** 短文下推荐问题 **/
	.m-question-answer-container {
	  background: #fff;
	  padding: 0 1.25rem;
	  box-sizing: border-box;
	  border-bottom: 8px solid #f8f8f8;
	}
	.m-question-answer-container .item {
	  padding: 10px 0;
	  border-bottom: 1px solid #f8f8f8;
	}
	.m-question-answer-container .item a .title {
	  display: block;
	  font-size: 15px;
	  color: #333;
	  margin-bottom: 8px;
	  position: relative;
	  line-height: 22px;
	  text-indent: 30px;
	}
	.m-question-answer-container .item a .title::before {
	  content: '问';
	  position: absolute;
	  top: 2px;
	  left: 0;
	  background: #F26458;
	  color: #fff;
	  display: block;
	  width: 20px;
	  max-height: 20px;
	  text-align: center;
	  line-height: 20px;
	  font-size: 16px;
	  border-radius: 4px;
	  font-weight: 400;
	  text-indent: 0;
	}
	.m-question-answer-container .item a .des {
	  display: block;
	  font-size: 14px;
	  color: #999;
	  font-weight: 300;
	  line-height: 20px;
	  text-overflow: -o-ellipsis-lastline;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  display: -webkit-box;
	  -webkit-line-clamp: 3;
	  -webkit-box-orient: vertical;
	}

	
/**折叠**/
.content-limited {
	  max-height: 120vh;
	  overflow: hidden;
	  
	}
	.detail-container .show-all-content {
	 
	  position: absolute;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  margin: 0 auto;
	  display: flex;
	  flex-direction: row;
	  justify-content: center;
	  align-items: center;
	  height: 50px;
	  background: #fff;
	}
	.detail-container .show-all-content::before {
	  content: '';
	  position: absolute;
	  bottom: 45px;
	  width: 100%;
	  height: 50px;
	  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
	}
	.detail-container .show-all-content .btn {
	  color: #f59f56;
	  border: 0;
	  padding: 0px 60px;
	  box-sizing: border-box;
	  line-height: 40px;
	  border-radius: 4px;
	  cursor: pointer;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	  font-size: 1.5rem;
	  /*background: url("../images/icon-arrow-down.png") center 26px no-repeat;
	  background-size: 26px;*/
	}

	/** 短文下推荐问题 **/
	.m-question-answer-container {
	  background: #fff;
	  padding: 0 1.25rem;
	  box-sizing: border-box;
	  border-bottom: 8px solid #f8f8f8;
	}
	.m-question-answer-container .item {
	  padding: 10px 0;
	  border-bottom: 1px solid #f8f8f8;
	}
	.m-question-answer-container .item a .title {
	  display: block;
	  font-size: 15px;
	  color: #333;
	  margin-bottom: 8px;
	  position: relative;
	  line-height: 22px;
	  text-indent: 30px;
	}
	.m-question-answer-container .item a .title::before {
	  content: '问';
	  position: absolute;
	  top: 2px;
	  left: 0;
	  background: #F26458;
	  color: #fff;
	  display: block;
	  width: 20px;
	  max-height: 20px;
	  text-align: center;
	  line-height: 20px;
	  font-size: 16px;
	  border-radius: 4px;
	  font-weight: 400;
	  text-indent: 0;
	}
	.m-question-answer-container .item a .des {
	  display: block;
	  font-size: 14px;
	  color: #999;
	  font-weight: 300;
	  line-height: 20px;
	  text-overflow: -o-ellipsis-lastline;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  display: -webkit-box;
	  -webkit-line-clamp: 3;
	  -webkit-box-orient: vertical;
	}

	
.center-container .left-container .detail-container .m_detail_box{
  padding:0px 15px;
  box-sizing: border-box;
  border-bottom: 8px solid #f8f8f8;
}


.center-container .left-container .detail-container .content-box .description {
  margin: 0.8rem 0;
  font-size: 1.7rem;
  color: #333;
  line-height: 3rem;
  font-weight: 300;
  transition: 0.2s all linear;
  text-align: justify;
}

.center-container .left-container .detail-container .content-box .description p{
	margin-top:.5rem;
	margin-bottom:.5rem;
	line-height:3rem;
	font-weight:300;
  font-size: 1.7rem;
}

.center-container .left-container .detail-container .content-box .description .p_list{
	padding-left: 17px;
	position: relative;
	font-weight:300;
	font-size: 1.7rem;
}
.center-container .left-container .detail-container .content-box .description .p_list i{
	width: .35rem;
    height: .35rem;
    position: absolute;
    right: 0;
    background: #b8b8b8;
    border-radius: 50%;
    z-index: 1;
    top: 1.3rem;
    left: .5rem;
}