.more-comment {
  	width: 100%;
  	height: 50px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	cursor: pointer;
  }

.rd-content {
  	margin: 0 auto 100px;
  	display: flex;
  }

  .banner {
  	width: 100%;
  	height: 218px;
  	margin-top: 20px;
  	background: #333;
  }

  /* --文章-- */
  .article-box {
  	width: 100%;
  	background: #fff;
  	padding: 40px 40px 114px;
  	box-shadow: 0px 0px 42px 1px rgba(34, 90, 252, 0.08);
  	border-radius: 10px;
  }

  .article-info-tag {
  	font-size: 14px;
  	color: #225afc;
  	margin-right: 10px;
  	display: flex;
  	align-items: center;
  }

  .article-info {
  	display: flex;
  	align-items: center;
  	margin-top: 16px;
  }

  .article-msg {
  	width: 100%;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  }

  .article-msg-list {
  	display: flex;
  }

  .article-msg-item {
  	display: flex;
  	align-items: center;
  	margin-right: 10px;
  	font-size: 14px;
  	color: #8590a6;
  	cursor: pointer;
  }

  .article-msg-item img {
  	margin-right: 5px;
  	width: 24px;
  	height: 18px;
  }

  /* 封面图 */
  .cover {
  	width: 100%;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	margin-top: 62px;
  	margin-bottom: 52px;
  }

  .cover-img {
  	background: #abb4c7;
  	width: 462px;
  	height: 204px;
  	border-radius: 10px;
  	object-fit: cover;
  }

  /* 功能按键 */
  .article-func {
  	display: flex;
  	margin-top: 72px;
  	padding-bottom: 28px;
  }

  .func-item {
  	display: flex;
  	align-items: center;
  	cursor: pointer;
  }

  .func-item img {
  	width: 20px;
  	height: 20px;
  	margin-right: 5px;
  }

  .func-item span {
  	margin-right: 10px;
  	font-size: 14px;
  	color: #8590a6;
  }

  .func-item.active span {
  	color: #225AFC !important;
  }

  /* 评论 */
  .comment {
  	flex: 1;
  	background: #f4f7fa;
  	border-radius: 10px;
  	padding: 22px 20px;
  }

  .comment-input {
  	margin-bottom: 22px;
  	width: 100%;
  	font-size: 14px;
  }

  .comment-item {
  	display: flex;
  }

  .comment-item-tx {
  	width: 30px;
  	height: 30px;
  	border-radius: 30px;
  	margin-right: 10px;
  	object-fit: cover;
  	cursor: pointer;
  }

  .comment-right {
  	flex: 1;
  	display: flex;
  	flex-direction: column;
  }

  .comment-title {
  	display: flex;
  	padding-bottom: 22px;
  }

  .comment-content {
  	margin-bottom: 16px;
  	padding-bottom: 12px;
  	border-bottom: 1px solid #e7ecf0;
  	color: #15294e;
  }

  .comment-name {
  	flex: 1;
  	font-size: 14px;
  	color: #abb4c7;
  	cursor: pointer;
  }

  .comment-like {
  	padding-left: 20px;
  	display: flex;
  	justify-content: flex-end;
  	align-items: center;
  	font-size: 14px;
  	color: #b7c6e2;
  	cursor: pointer;
  	user-select: none;
  }

  .comment-like span {
  	user-select: none;
  }

  .comment-like img {
  	width: 18px;
  	height: 18px;
  	margin-right: 5px;
  }

  .comment-content {
  	font-size: 13px;
  }

  /* 立即咨询 */
  .nowmsg {
  	width: 100%;
  	margin-bottom: 32px;
  	overflow: hidden;
  	position: relative;
  }

  .nowmsg-msg {
  	width: 100%;
  	border-radius: 10px;
  	background: #1c3054;
  }

  .comment-submit {
  	width: 100%;
  	display: flex;
  	justify-content: space-between;
  	margin-bottom: 22px;
  }

  .comment-submit-msg {
  	font-size: 13px;
  	color: #f56c6c;
  }

  .comment-btn {
  	width: 60px;
  	height: 30px;
  	line-height: 30px;
  	font-size: 14px;
  	text-align: center;
  	background: #225AFC;
  	color: #FFF;
  	border-radius: 5px;
  	cursor: pointer;
  }
  
