/* 在这里定义的css变量，叫做全局css变量。在任何选择器中，都可以去使用。 */
:root {
  --article-font-color: #2b2b2b;
  --article-font-color1: #999;
  --article-font-color2: #666;
  --article-font-color3: #333;
  --primary-color: #bf1739;
  --title-line-color: #ed9292;
}
.attention-btn {
  box-sizing: border-box;
  min-width: 93px;
  height: 36px;
  line-height: 34px;
  background: var(--primary-color);
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  padding: 0 21px;
}
.attention-btn.followed {
  color: var(--article-font-color1);
  border: 1px solid var(--article-font-color1);
  background: #fff;
}
.follow-btn {
  width: 69px;
  height: 28px;
  text-align: center;
  margin-left: auto;
  font-size: 15px;
  line-height: 28px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.follow-btn.followed-btn {
  color: var(--article-font-color1);
  border: 1px solid var(--article-font-color1);
}
.two-line {
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.piece-title {
  font-size: 19px;
  font-weight: bold;
  color: var(--article-font-color);
  line-height: 30px;
  padding-left: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.piece-title::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 16px;
  background-color: var(--title-line-color);
}
.follow-piece-right-wrapper {
  width: 300px;
  border-radius: 20px;
  box-sizing: border-box;
  background: none;
}
.follow-piece-right-wrapper .piece-content {
  width: 100%;
  padding: 10px 0 0 0px;
  box-sizing: border-box;
}
.follow-piece-right-wrapper .piece-content .piece-item {
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  padding-bottom: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
  color: var(--article-font-color);
}
.follow-piece-right-wrapper .piece-content .piece-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 12px;
  left: 0px;
  background-color: #333;
  border-radius: 50%;
}
.follow-piece-right-wrapper .piece-content .piece-item a {
  width: 100%;
  overflow: hidden;
  text-overflow: elipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: justify;
  color: var(--article-font-color);
}
.follow-piece-right-wrapper .piece-content .piece-item a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
}
.main {
  width: 1200px;
  margin: 30px auto 0;
  display: flex;
}
.main .article {
  width: 870px;
  margin-right: 30px;
}
.main .article .article-user {
  display: flex;
  align-items: center;
}
.main .article .article-user img {
  border-radius: 30px;
  height: 52px;
  width: 52px;
}
.main .article .article-user .con {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 17px;
  line-height: 28px;
  color: var(--article-font-color);
}
.main .article .article-user .con .time {
  font-size: 15px;
  color: var(--article-font-color1);
  line-height: 24px;
}
.main .article .article-user .attention-btn {
  margin-left: auto;
}
.main .article .article_title {
  width: 100%;
  line-height: 50px;
  margin: 30px 0;
  font-size: 31px;
  font-weight: 500;
  color: #333;
  line-height: 44px;
}
.main .article .article_content {
  width: 100%;
  font-size: 17px;
  color: var(--article-font-color3);
  line-height: 30px;
  text-align: justify;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  padding-bottom: 55px;
}
.main .article .article_content strong {
  font-weight: bold;
}
.main .article .article_content .paragraph_title {
  height: 28px;
  line-height: 28px;
  background: #c01639;
  font-size: 17px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  padding: 0 25px;
  margin-bottom: 30px;
  border-radius: 0px 10px 0px 10px;
}
.main .article .article_content h6 {
  margin-bottom: 30px;
}
.main .article .article_content p {
  margin-bottom: 30px;
  white-space: normal !important;
  text-indent: 2em;
}
.main .article .article_content span {
  white-space: normal !important;
}
.main .article .article_content img,
.main .article .article_content embed,
.main .article .article_content video {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.main .article .article_content .stock-title-tooltip {
  position: absolute;
  z-index: 111;
}
.main .article .article_content .stock-title-tooltip .tooltip-content {
  padding: 0 16px;
  height: 44px;
  line-height: 44px;
  background: #f4f8ff;
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.main .article .article_content .stock-title-tooltip .tooltip-content a:hover {
  text-decoration: none !important;
}
.main .article .article_content .stock-title-tooltip .tooltip-content .stock-con span {
  padding-right: 16px;
  color: #000;
  font-size: 15px;
}
.main .article .article_content .stock-title-tooltip .tooltip-content span.stock-optional {
  border-radius: 18px;
  display: inline-block;
  line-height: normal;
  font-size: 14px;
  padding: 4px 14px 4px 30px;
  color: #ffffff;
  cursor: pointer;
  background: #c01639 url(//i0cloud.jrjimg.cn/cloud/images/common/plus.png) no-repeat 14px center;
}
.main .article .article_content .stock-title-tooltip .tooltip-content span.stock-optional.optional-minus {
  background: #e0e6f6 url(//i0cloud.jrjimg.cn/cloud/images/common/minus.png) no-repeat 14px center;
  color: #c01639;
}
.main .article .advimg-b-l {
  width: 100%;
  height: 100px;
}
.main .article .article-share-con {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #eaeaea;
  padding: 14px 0 40px;
  align-items: center;
}
.main .article .article-share-con .share {
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.main .article .article-share-con #openModalBtn {
  margin: -2px 0 0 10px;
  cursor: pointer;
}
.main .article .reserved-module {
  width: 870px;
  padding-bottom: 40px;
}
.main .article .reserved-module img {
  max-width: 100%;
}
.article_share {
  width: 300px;
  height: 364px;
  background: #ffffff;
  border-radius: 8px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  box-sizing: border-box;
  z-index: 102;
}
.article_share .modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article_share .modal-title h3 {
  font-size: 19px;
  font-weight: bold;
  line-height: 24px;
}
.article_share .modal-title #closeModalBtn {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-top: 5px;
  cursor: pointer;
}
.article_share #article_qrcode {
  width: 240px;
  height: 240px;
  margin: 16px 0;
}
.article_share p {
  text-align: center;
  font-size: 17px;
  color: #595757;
  line-height: 20px;
  letter-spacing: 2px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
}
.stock-red-color {
  color: #f54949 !important;
}
.green-color {
  color: #21ba7d !important;
}
.aside {
  width: 301px;
}
.aside .advImg {
  width: 301px;
  /* margin-bottom: 30px; */
  overflow: hidden;
}
.aside .recommend-box {
  width: 100%;
}
.aside .recommend-box .recommend-item {
  margin-top: 16px;
  cursor: pointer;
}
.aside .recommend-box .recommend-item .recommend-item-top {
  display: flex;
}
.aside .recommend-box .recommend-item .recommend-item-top .user-avatar {
  width: 52px;
  height: 52px;
  margin-right: 8px;
  position: relative;
}
.aside .recommend-box .recommend-item .recommend-item-top .user-avatar > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.aside .recommend-box .recommend-item .recommend-item-top .nick-name {
  display: flex;
  flex-direction: column;
}
.aside .recommend-box .recommend-item .recommend-item-top > div p {
  font-size: 17px;
  font-weight: bold;
  color: var(--article-font-color);
  line-height: 28px;
}
.aside .recommend-box .recommend-item .recommend-item-top > div span {
  font-size: 15px;
  color: var(--article-font-color1);
  line-height: 24px;
}
.aside .recommend-box .recommend-item .recommend-item-bottom {
  width: 238px;
  margin-left: 62px;
  font-size: 15px;
  color: var(--article-font-color2);
  line-height: 24px;
}
.footer {
  margin-bottom: 0;
}
.comment_container .toast {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 9px 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 14px;
  font-family: 'PingFangSC-Regular', 'PingFang SC';
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
  display: none;
  z-index: 9;
}
.comment_container .send_comment {
  width: 870px;
  height: 214px;
  background: #f4f4f4;
  border-radius: 10px;
  border: 1px solid #c7c8c8;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.comment_container .send_comment .user_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
}
.comment_container .send_comment .user_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.comment_area .comment_input {
  width: 761px;
  height: 132px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #b8b9b9;
  padding: 14px 20px;
  box-sizing: border-box;
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #262626;
  line-height: 24px;
  outline: none;
  resize: none;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-user-modify: read-write-plaintext-only;
}
.comment_area .comment_input:empty:before {
  content: attr(data-placeholder);
  color: #b8b9b9;
  font-size: 15px;
}
.comment_area .emoji_container {
  width: 810px;
  height: 140px;
  background: url(//i0cloud.jrjimg.cn/cloud/images/general/emoji/emoji-bg.png);
  background-size: 810px 140px;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  z-index: 9;
}
.comment_area .emoji_container .emoji_icon {
  display: inline-block;
  font-size: 26px;
  line-height: 28px;
  text-align: center;
  margin: 0 10px 10px 0;
  cursor: pointer;
}
.comment_area .emoji_container .emoji_icon:nth-child(17n) {
  margin-right: 0;
}
.comment_area .comment_b {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment_area .comment_b .openEmoji {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.comment_area .comment_b button {
  width: 103px;
  height: 32px;
  background: #c01639;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 12px;
  padding-left: 18px;
  cursor: pointer;
}
.user_comment_container {
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #262626;
  line-height: 24px;
  margin-bottom: 80px;
}
.container {
  width: 870px;
  margin: 0 auto;
}
.container .title {
  font-size: 21px;
  line-height: 29px;
  margin: 0px 0 10px;
  padding-left: 15px;
  position: relative;
}
.container .title::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 4px;
  height: 15px;
  background-color: #c01639;
}
.user_comment_container .title span {
  display: inline-block;
  margin-left: 5px;
  font-size: 17px;
}
.comment_list {
  width: 870px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid #b8b9b9;
  box-sizing: border-box;
}
.comment_list .comment_item {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #b8b9b9;
  padding: 20px 0;
}
.comment_list .comment_item .user_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
}
.comment_list .comment_item .user_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.comment_list .comment_item .r-container {
  width: 92%;
  padding-left: 20px;
}
.comment_list .comment_item .r-container .r-top {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 28px 0;
  font-size: 15px;
  color: #b8b9b9;
}
.comment_list .comment_item .r-container .r-top .send_time {
  margin-right: 30px;
  white-space: nowrap;
}
.comment_list .comment_item .r-container .r-top .user_name {
  width: 290px;
  color: #262626;
}
.comment_list .comment_item .r-container .comment {
  text-align: justify;
  word-break: break-word;
  overflow: hidden;
}
.comment_list .comment_item .r-container .btn {
  display: flex;
  justify-content: space-between;
  margin: 27px 0 0 0;
  position: relative;
}
.comment_list .comment_item .r-container .btn button {
  border: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 21px;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.comment_list .comment_item .r-container .btn button img {
  display: block;
  margin-right: 10px;
}
.comment_list .comment_item_f:last-child {
  border-bottom: none;
}
.reply_list .comment_item {
  background: #f4f4f4;
  border-radius: 10px;
  border: 1px solid #b8b9b9;
  padding: 10px 40px 10px 20px;
  box-sizing: border-box;
  margin-top: 10px;
}
.reply_list .comment_item .r-container .r-top .send_time {
  margin-right: 30px;
}
.reply_list .comment_item .r-container .r-top .user_name {
  width: 290px;
  color: #262626;
}
.reply_list .comment_item .r-container .r-top .user_name span {
  margin-left: 10px;
}
.reply_list .comment_item .r-container .r-top .user_name span i {
  color: #c01639;
}
.reply_list .reply .comment_area .emoji_container {
  bottom: -80%;
  left: -10.6%;
}
.reply_list .comment_tip {
  cursor: pointer;
}
.reply_list .comment_tip img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.r-container .r-top .desc {
  display: flex;
}
.reply {
  display: none;
}
.reply .comment_area {
  position: relative;
}
.reply .comment_area .comment_input {
  width: 100%;
  margin-top: 10px;
}
.reply .comment_area .emoji_container {
  bottom: -80%;
  left: -8.8%;
}
.reply .comment_area .emoji_container .emoji_icon {
  margin: 0 10px 6px 0;
}
.reply .comment_area .emoji_container .emoji_icon:nth-child(17n) {
  margin-right: 0;
}
.report_modal {
  width: 551px;
  height: 287px;
  background: url(//i0cloud.jrjimg.cn/cloud/images/general/report-bg.png);
  position: absolute;
  top: 18px;
  right: -15px;
  padding: 30px 56px 36px;
  box-sizing: border-box;
  display: none;
  z-index: 14;
}
.report_modal .reason_list {
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  color: #262626;
  line-height: 24px;
  text-align: center;
}
.report_modal .reason_list .rptitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 20px;
}
.report_modal .reason_list ul {
  display: flex;
  flex-wrap: wrap;
}
.report_modal .reason_list ul li {
  padding: 5px 24px;
  background: #f4f4f4;
  border-radius: 17px;
  margin: 0 20px 15px 0;
  cursor: pointer;
}
.report_modal .reason_list ul li:nth-child(4) {
  margin-right: 0;
}
.report_modal .reason_list .btn {
  padding: 0 100px;
}
.report_modal .reason_list .btn div {
  width: 103px;
  height: 32px;
  background: #f4f4f4;
  border-radius: 6px;
  line-height: 32px;
  cursor: pointer;
}
.report_modal .reason_list .active {
  color: #fff;
  background-color: #c01639;
}
.reported {
  font-size: 20px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: bold;
  color: #262626;
  line-height: 28px;
  display: none;
  text-align: center;
  margin-top: 100px;
}
.pager_wrapper {
  width: 870px;
}
.pager_wrapper .pager {
  padding: 0;
  display: flex;
  margin: 20px auto;
  height: 30px;
  line-height: 30px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.pager_wrapper .pager .totalPage {
  margin: 0 20px;
}
.pager_wrapper .pager li {
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 3px 0 3px;
  text-align: center;
  display: inline-block;
  list-style: none;
  border-radius: 4px;
  cursor: pointer;
}
.pager_wrapper .pager .pageNum {
  background-color: #000;
  color: #fff;
}
.pager_wrapper .pager .pageAct {
  background-color: #c01639;
}
.pagerBtn {
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  background: #f4f5f8;
  border-radius: 4px;
}
.pagerBtn:hover {
  color: #b51b38 !important;
  /* background: rgb(201, 201, 255); */
}
.pagerChoosed {
  color: #b51b38;
  border: 1px solid #b51b38;
}
.pagerOmit {
  color: #333;
  background: #f9f9f9;
  border: 1px solid #d7d7d7;
}
.dis-style {
  color: #d2d2d2 !important;
  cursor: not-allowed !important;
}
.dis-style:hover {
  color: #d2d2d2 !important;
}
#jumpPageNum {
  width: 50px;
  height: 22px;
  margin: 0 10px;
  border-radius: 4px;
  border: 1px solid #d8d8d8;
  font-size: 14px;
  color: #333;
  text-align: center;
  appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none !important;
}
.qd_btn {
  display: inline-block;
  width: 44px;
  height: 22px;
  background: #c01639;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  line-height: 22px;
  margin-left: 5px;
}
.comment_tip {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 90px;
  margin-top: 20px;
}
.comment_tip img {
  display: block;
  margin-left: 10px;
}
.information {
  width: 870px;
  margin-bottom: 50px;
}
.information .title {
  margin-bottom: 30px;
}
.information .news_list .news_item {
  height: 149px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dadee8;
  padding: 15px 0;
  box-sizing: border-box;
}
.information .news_list .news_item .news_desc {
  display: flex;
  flex-direction: column;
  font-size: 19px;
  justify-content: space-between;
  max-width: 870px;
}
.information .news_list .news_item .news_desc .news_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  line-height: 28px;
  word-break: break-all;
}
.information .news_list .news_item .news_desc span {
  font-size: 15px;
  display: inline-block;
  color: #5c5a5a;
}
.information .news_list .news_item .news_desc span i {
  display: inline-block;
  margin-right: 20px;
}
.information .news_list .news_item .news_img {
  display: inline-block;
  width: 180px;
  height: 120px;
  margin-left: 90px;
  flex-shrink: 0;
}
.information .more_information {
  width: 200px;
  height: 50px;
  display: block;
  border-radius: 10px;
  font-size: 17px;
  color: #c01639;
  background-color: #f8e7eb;
  line-height: 50px;
  padding-left: 59px;
  box-sizing: border-box;
  margin: 30px auto 50px;
  position: relative;
  cursor: pointer;
}
.information .more_information:hover {
  background-color: #c01639;
  color: #fff;
  text-decoration: none;
}
.information .more_information img {
  display: inline-block;
  margin: 0 0 2px 10px;
}
.information .load-more::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 19px;
  right: 51px;
  width: 12px;
  height: 12px;
  background: url('//i0cloud.jrjimg.cn/cloud/images/general/arrow-down.png') center;
}
.information .load-more:hover::after {
  background: url('//i0cloud.jrjimg.cn/cloud/images/general/arrow-down-hover.png') center;
}
.information .at-all {
  text-align: center;
  color: #000;
  font-size: 17px;
  margin: 50px 0;
}
table {
  margin: 0 auto 20px;
}
tbody,
td {
  border: 1px solid #000;
  text-align: center;
  border-collapse: collapse;
  padding: 10px 0;
  margin-bottom: 0;
}
table tbody tr td p {
  margin-bottom: 0 !important;
}
.flash-wrapper .flash-datetime {
  padding: 0 0 17px;
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.flash-wrapper .flash-datetime img {
  width: 80px;
  height: 30px;
  margin-right: 16px;
}
.flash-wrapper .article .article_title {
  width: 100%;
  font-size: 25px;
  margin: 20px 0;
  font-weight: 600;
  line-height: 36px;
}
.flash-wrapper .article .article_content {
  white-space: pre-wrap;
}
.flash-wrapper .article_bottom {
  padding: 17px 0 20px;
}
.flash-wrapper .article_bottom .share {
  font-size: 15px;
  color: #595757;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flash-wrapper .article_bottom .share img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  cursor: pointer;
}
/* 资讯详情页-table表格默认样式 */
.article_content table {
  width: 100%;
}
.article_content table tbody {
  font-size: 17px;
  color: #252525;
  line-height: 24px;
}
.article_content table td {
  border: 1px solid #e5e5e5;
  padding: 12px 20px;
  text-align: center;
}
.article_content img {
  cursor: pointer;
}
.article .article_content table th {
  border: 1px solid #e5e5e5;
  padding: 12px 20px;
  background: #f5f5f5;
  font-weight: bold;
  font-size: 17px;
  color: #252525;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  min-width: 100px;
}
.article .article_content table th * {
  white-space: nowrap !important;
  margin-bottom: 0;
  text-indent: 0;
}
.article .article_content table th p {
  white-space: nowrap !important;
}
.big-img-wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  display: none;
}
.big-img {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#hot-rank {
  margin-top: 30px;
}
#hot-rank .piece-item a {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
/* 保留ul li */
.article .article_content ul,
.article .article_content ol {
  padding: revert;
}
.article .article_content ul li p,
.article .article_content ol li p {
  text-indent: 0;
}
.hot-wrapper .module-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 30px;
  border-top: 2px solid #ed9292;
  padding: 10px;
  color: #2b2b2b;
  background: #f5f5f5;
}
.hot-wrapper {
  margin-bottom: 40px;
}
.hot-wrapper .item {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 0 12px 10px;
  width: 300px;
  display: inline-block;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
}
.hot-wrapper .item:hover {
  text-decoration: none !important;
}
.hot-wrapper .item:hover .content {
  color: #981b00;
  text-decoration: underline !important;
}
.hot-wrapper .item .title {
  display: flex;
  align-items: center;
}
.hot-wrapper .item .title span {
  display: inline-block;
}
.hot-wrapper .item .title span:first-child {
  width: 20px;
  height: 20px;
  background: #bf1739;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  line-height: 18px;
}
.hot-wrapper .item .title span:last-child {
  flex: 1;
  margin-left: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #2b2b2b;
  line-height: 24px;
  text-align: justify;
}
.hot-wrapper .item .title img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  margin-left: 10px;
}
.hot-wrapper .item .content {
  font-size: 16px;
  color: #2b2b2b;
  line-height: 24px;
  margin-top: 10px;
  text-align: justify;
}
.hot-wrapper .item .time {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  margin-top: 10px;
}
