/**
 * base style
 */
/**
 * mixins
 */
/**
 * reset style
 */
/*内外边距通常让各个浏览器样式的表现位置不同*/
body,
div,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
p,
th,
td,
hr,
button,
article,
aside,
details,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/*
  去除默认边框
  图片与外围容器贴合
  img缩放处理
*/
.user-avatar img {
  border: 0;
  vertical-align: top;
  width: 100%;
}

.likes img {
  width: 0.55rem;
  height: 0.55rem;
}
.likes.active img {
  -webkit-animation-name: scaleDraw; /*关键帧名称*/
  -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  -webkit-animation-duration: 1s; /*动画所花费的时间*/
}

/*去掉列表前的标识, li 会继承，大部分网站通常用列表来很多内容，所以应该当去*/
ul,
li {
  list-style: none;
}
button,
input,
select,
textarea {
  /*表单元素不继承父级 font 的问题*/
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  /*去chrome focus默认的高亮边框*/
  outline: none;
}
/**
 * html5  reset style
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
/*如同img标签*/
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  /*没有controls属性统一不显示，*/
  display: none;
  /*防止IOS5下多余的高度*/
  height: 0;
}
/*
 重置a元素：
    1. 去掉IE10中已激活链接的灰色背景
    2. 处理chrome与其它浏览器在a:focus时的不同
    3. 提升a:active,a:hover时元素的可读性
    4. 去掉下划线
 */
a {
  background: transparent;
  /*1*/
}
a:focus {
  outline: thin dotted;
  /*2*/
}
a:active,
a:hover {
  outline: 0;
  /*3*/
}
a:link,
a:visited,
ins {
  text-decoration: none;
  /* 4*/
}
/*
    统一盒模型
*/
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: none;
  /*屏蔽浏览器默认字体大小*/
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /*去除a标签点击阴影*/
}
html,
body {
  min-height: 100%;
}
html {
  height: 100%;
}
body {
  font-family: "微软雅黑", Arial, Helvetica, sans-serif;
  color: #000000;
  -webkit-backface-visibility: hidden;
  background: #ffffff;
  height: 100%;
}
pre {
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.ellipsis-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-word;
}
.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
a {
  color: inherit;
  cursor: pointer;
}
video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 80px;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 430px) {
  html {
    font-size: 46px;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 44px;
  }
}
@media screen and (max-width: 393px) {
  html {
    font-size: 41.92px;
  }
}
@media screen and (max-width: 384px) {
  html {
    font-size: 40.96px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 40px;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 38.4px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 34px;
  }
}
.separator {
  height: 0.1rem;
  background: #f8f8f8;
}
header {
  width: 100%;
  height: 1.13rem;
  top: 0;
  background: #fff;
  z-index: 1;
}
header .header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 1.13rem;
  padding: 0.28rem 0.2rem 0.25rem;
}
header .header-title .logo {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #e3f3f3;
  border-radius: 4px;
  margin-right: 0.2rem;
}
header .header-title .title {
  flex: 1;
  font-size: 0.45rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.63rem;
}
header .download-btn {
  padding: 0.08rem 0.25rem;
  height: 0.7rem;
  line-height: 0.53rem;
  text-align: center;
  background: #0c89d6;
  border-radius: 0.1rem;
  font-size: 0.35rem;
  color: #ffffff;
  cursor: pointer;
}

.comment {
  padding: 0 0.4rem 0.3rem;
}
.comment .comment-tag {
  margin-bottom: 0.4rem;
  font-size: 0.45rem;
  color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
}
.comment .parent-comment li {
  margin-bottom: 0.73rem;
  overflow: hidden;
}
.comment .parent-comment li .user-avatar {
  float: left;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.comment .parent-comment li .user-avatar img {
  height: 100%;
  border-radius: 50%;
}
.comment .parent-comment li .comment-detail {
  float: left;
  width: calc(100% - 1rem);
  margin-left: 0.2rem;
}
.comment .parent-comment li .comment-detail .comment-about {
  overflow: hidden;
}
.comment .parent-comment li .comment-detail .comment-about .user-name {
  float: left;
  font-size: 0.38rem;
  color: rgba(0, 0, 0, 0.6);
}
.comment .parent-comment li .comment-detail .comment-about .likes {
  float: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment .parent-comment li .comment-detail .comment-about .likes span {
  font-size: 0.33rem;
  color: rgba(0, 0, 0, 0.9);
  margin-right: 0.1rem;
}
.comment .parent-comment li .comment-detail .comment-content {
  width: calc(100% - 0.4rem);
  margin-top: 0.2rem;
  margin-bottom: 0.33rem;
  line-height: 0.7rem;
  font-size: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
}
.comment .parent-comment li .comment-detail .comment-content .toggle-btn {
  float: right;
  font-size: 0.4rem;
  color: #0c89d6;
  cursor: pointer;
}
.comment .parent-comment li .comment-detail .comment-reply {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.comment .parent-comment li .comment-detail .comment-reply .timestamp {
  float: left;
  font-size: 0.28rem;
  color: rgba(0, 0, 0, 0.4);
}
.comment .parent-comment li .comment-detail .comment-reply .reply-btn {
  float: left;
  padding: 0.03rem 0.2rem;
  margin-left: 0.15rem;
  background: #eeeeee;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  text-align: center;
  display: none;
}

/* .comment .parent-comment .comment-reply-first {
  margin-top: 14px;
  background: #F8F8F8;
  border-radius: 4px;
  color: rgba(0,0,0,0.9);
  font-size:0.35rem;
  padding: 12px;
}
.comment .parent-comment .comment-reply-first b {
  color:rgba(0,0,0,0.6);
  font-weight: 400;
}
.comment .parent-comment .comment-reply-first i {
  color:rgba(0,0,0,0.6);
 font-style: normal;
} */

.comment .parent-comment li .comment-detail .child-comment {
  float: right;
  width: calc(100% - 0.08rem);
  margin-top: 0.33rem;
  padding: 0.3rem;
  background: #f8f8f8;
  border-radius: 0.1rem;
  line-height: 0.7rem;
  font-size: 0.35rem;
  color: rgba(0, 0, 0, 0.9);
}
.comment .parent-comment li .comment-detail .child-comment .user-name {
  color: rgba(0, 0, 0, 0.6);
}
.video-detail {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 4rem;
}
.video-detail .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
}
.video-detail .info p {
  font-size: 0.38rem;
  color: #ffffff;
  line-height: 0.98rem;
}
.video-detail .info .video-author {
  margin-top: 0.35rem;
  font-size: 0.3rem;
}
.video-detail .operation {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
}
.video-detail .operation .operation-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  align-items: center;
  cursor: pointer;
}
.video-detail .operation .operation-item img {
  width: 1rem;
  height: 0.8rem;
}
.video-detail .operation .operation-item .item-title {
  font-size: 0.3rem;
  color: #ffffff;
  text-align: center;
}
.tabs .tabs-header .tabs-title_active {
  font-weight: bold;
  color: #0c89d6;
}
.tabs .tabs-header .tabs-title_active:after {
  content: "";
  position: absolute;
  left: calc((100% - 0.35rem) / 2);
  bottom: 0;
  height: 0.05rem;
  width: 30%;
  background-color: #0c89d6;
}
.topic-list {
  margin-top: 0.2rem;
}
.topic-list .item-box {
  display: flex;
  padding: 0.2rem 0;
}
.topic-list .item-box .item-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.topic-list .item-box .item-left .item-title {
  font-size: 0.425rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.topic-list .item-box .item-col {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.topic-list .item-box .item-left .item-time {
  height: 0.375rem;
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  line-height: 0.375rem;
  margin-right: 0.3rem;
}
.topic-list .item-box .item-left .item-pageviews {
  height: 0.375rem;
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.topic-list .item-box .cover-video {
  position: relative;
}
.topic-list .item-box .cover-video .bg-video {
  padding: 0 0.1rem;
  position: absolute;
  right: 0.1rem;
  bottom: 0.3rem;
  background: #000000;
  border-radius: 2px;
  opacity: 0.39;
  display: flex;
  align-items: center;
}
.topic-list .item-box .cover-video .bg-video .play-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.1rem;
}
.topic-list .item-box .cover-video .bg-video .video-time {
  font-size: 0.275rem;
  font-weight: 400;
  color: #ffffff;
}
.topic-list .item-box .item-img {
  width: calc((100vw - 0.8rem) * 0.333);
  height: calc((100vw - 0.8rem) * 0.333 * 0.667);
  border-radius: 0.1rem;
  margin-left: 0.3rem;
}
header {
  z-index: 2;
}
main .author-intro {
  overflow: hidden;
  display: flex;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  align-items: center;
}
main .author-intro .org-avatar {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.4rem;
}
main .author-intro .org-name {
  margin-left: 0.1rem;
  font-size: 0.35rem;
  color: rgba(0, 0, 0, 0.9);
  flex: 1;
}
main .author-intro .follow-btn {
  float: right;
  padding: 0.12rem 0.3rem;
  background: rgba(12, 137, 214, 0.08);
  border-radius: 2.5rem;
  font-size: 0.3rem;
  color: #0c89d6;
  text-align: center;
  cursor: pointer;
}

main .news-detail {
  padding: 0.3rem 0.4rem;
}
main .news-detail .news-title {
  font-size: 0.6rem;
  font-weight: bold;
  color: #222222;
  line-height: 1.5;
}
main .news-detail .news-time-wrap {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
main .news-detail .news-author {
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 0.3rem;
}
main .news-detail .news-time {
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  flex: 1;
}
main .news-detail .news-content {
  font-size: 16px;
}
/*正文中的ul, li样式应继承*/
main .news-detail .news-content ul,
li {
  list-style: inherit;
}
main .news-detail .news-content * {
  word-break: normal !important;
}
main .news-detail .news-content img {
  max-width: 100% !important;
  vertical-align: baseline;
}
main .news-detail .news-content video,
main .news-detail .news-content audio {
  max-width: 100% !important;
  max-height: 100% !important;
}
main .news-detail .editor-wrap {
  font-size: 0.275rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  padding-top: 0.3rem;
}
main .news-detail .news-info {
  overflow: hidden;
}
main .news-detail .editor-wrap .news-reading {
  flex: 1;
  text-align: right;
}
main .recommend {
  padding: 0 0.4rem 0.2rem;
  border-top: 0.1rem solid #f8f8f8;
}
main .recommend .recommend-tips,
main .comment .comment-tips {
  font-size: 0.45rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  margin-top: 0.45rem;
}
main .hide {
  visibility: hidden;
}
main .comment {
  padding: 0 0.4rem 0rem;
  border-top: 0.1rem solid #f8f8f8;
}
main .comment .comment-tag {
  margin-top: 0.45rem;
}
main .comment .parent-comment li {
  margin-bottom: 0;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f8f8f8;
}
main .comment .parent-comment .comment-detail .comment-content {
  width: 100%;
  line-height: 1.5;
}
main .comment .parent-comment .stick-tag {
  float: left;
  padding: 0.03rem 0.125rem;
  background: #c8c8c8;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  text-align: center;
  color: #ffffff;
  margin-left: 0.1rem;
}
main .comment .parent-comment .child-comment {
  padding: 0.3rem;
}
main .comment .parent-comment .child-comment li {
  margin-bottom: 0.2rem;
  padding: 0;
  border-bottom: 0;
}
main .comment .parent-comment .child-comment .child-detail {
  display: flex;
  line-height: 1.5;
}
main .comment .parent-comment .child-comment .child-detail .child-name {
  line-height: 1.5;
}
main .comment .parent-comment .child-comment .child-detail .child-content {
  flex: 1;
  word-break: break-all;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
}
main .comment .parent-comment .child-comment .child-detail .b-editor {
  color: #e03131;
}
main .comment .parent-comment .child-comment .total-reply {
  font-size: 0.35rem;
  font-weight: 400;
  color: #0c89d6;
}
.alert_box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  display: none;
}
.alert_bg {
  width: 100%;
  height: 100%;
  background: transparent;
}
.alert_con {
  font-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  color: #fff;
  text-align: center;
}
/* 针对绵阳要求增加的样式 */
.mianyang {
  padding-bottom: 52px;
}
footer .news-write {
  width: 100%;
  height: 52px;
  line-height: 25px;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  box-sizing: border-box;
  display: flex;
  transform: translateZ(0);
}
footer .news-write .writeIpt {
  display: inline-block;
  vertical-align: middle;
  /* width: 73%; */
  height: 32px;
  line-height: 32px;
  background: #f5f5f5;
  border-radius: 16px;
  padding-left: 20px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.35rem;
  flex: 1;
  transform: translateZ(0);
}
footer .news-write .likeImg {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
}
footer .news-write .likeImg.active {
  -webkit-animation-name: scaleDraw; /*关键帧名称*/
  -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  -webkit-animation-duration: 1s; /*动画所花费的时间*/
}

@keyframes scaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  25% {
    transform: scale(1); /*开始为原始大小*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

footer .textareaBox {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.4rem 0.4rem 0.4rem 0.3rem;
  box-sizing: border-box;
  z-index: 100;
  background-color: #fff;
  display: none;
}
footer .mask {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
footer .textareaBox .textareaDiv {
  background: #f5f5f5;
  border-radius: 0.15rem;
  width: calc(100% - 1.3rem);
  height: 1.9rem;
  border: none;
  outline: none;
  font-size: 0.35rem;
  margin-bottom: 0.2rem;
  padding: 0.15rem 0.2rem;
  z-index: 100;
  resize: none;
}
footer .textareaBox .textarea-tips {
  font-size: 0.275rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 1.1rem;
  right: 1.9rem;
}
footer textarea::-webkit-input-placeholder {
  font-size: 0.35rem;
}
.sendTextArea {
  width: 1.1rem;
  height: 1.9rem;
  line-height: 1.9rem;
  color: #0C89D6;
  font-size: 0.35rem;
  text-align: center;
  border-radius: 0.375rem;
  background-color: rgba(12,137,214,0.08);
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
}
.sendTextArea.loading {
  background-color: #0c89d685;
}
.sendTextArea.disabled {
  background-color: #aaa;
  color: #fff;
}
.textareaPromise {
  font-size: 0.3rem;
  font-family: PingFangSC, PingFang SC;
  color: rgba(0,0,0,0.4);
  line-height: 0.4rem;
}
.textareaPromise a{
  color: rgba(0,0,0,0.9);
}
.likeCountNum {
  font-size: 0.33rem;
  color: rgba(0, 0, 0, 0.9);
  margin-right: 0.1rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
  margin-left: 5px;
  min-width: 24px;
  text-align: center;
}

/* 适配PC端 */
@media screen and (min-width: 751px) {
  html {
    font-size: 40px;
  }

  header {
    left: 50%;
    transform: translateX(-50%);
    max-width: 670px;
    height: 60px;
  }

  header .header-title {
    padding: 10px 0;
    height: 60px;
  }

  header .header-title .logo {
    margin-right: 8px;
    width: 36px;
    height: 36px;
  }

  header .header-title .title {
    /* font-size: 17px; */
    font-weight: 400;
  }

  main {
    margin: auto;
    max-width: 670px;
  }

  main .fixed-container {
    top: 60px;
    max-width: 670px;
  }

  .cover #live-video {
    height: 377px;
  }

  .tabs .tabs-header {
    font-size: 18px;
  }

  .tabs .tabs-header .tabs-title {
    padding: 12px 0 10px;
  }

  .tabs .tabs-header .tabs-title_active {
    font-size: 20px;
  }

  .tabs .tabs-header .tabs-title_active:after {
    left: 35%;
  }

  /* 更多直播 */
  main .tabs .morelive {
    padding: 12px 0 20px;
  }

  main .tabs .morelive ul>li {
    width: calc((100% - 40px) / 3);
  }

  main .tabs .morelive ul>li .live-cover img {
    height: 117px;
  }

  main .tabs .morelive ul>li .live-cover .live-state-tag img {
    vertical-align: middle;
  }

  /* 直播间 */
  main .tabs .liveroom {
    padding-left: 0;
    padding-right: 0;
  }
  main .tabs .liveroom .liveroom-content li .item-header .user-name {
    margin-top: 6px;
  }

  main .tabs .liveroom .liveroom-content li .item-content {
    border-color: #efefef;
    margin-left: 13.5px;
  }
  main .tabs .liveroom .liveroom-content li .item-content .img-list {
    width: 350px;
  }
  main .tabs .liveroom .liveroom-content li .item-content .img-list.len-4 {
    width: 240px;
  }

  main .tabs .liveroom .liveroom-content li .item-content .img-list img {
    cursor: pointer;
  }

  main .tabs .liveroom .liveroom-content li .item-content .len-1 img {
    width: 340px;
    height: 190px;
  }

  main .tabs .liveroom .liveroom-content li .item-content .img-list .img-box {
    margin-left: 0;
    margin-right: 4px;
    margin-bottom: 4px;
    width: 110px;
    height: 110px;
    object-fit: cover;
  }

  main .tabs .liveroom .liveroom-content li .item-content .video-wrap {
    width: 232px;
  }

  main .tabs .liveroom .liveroom-content li .item-content .video-wrap .vertical-video {
    height: auto;
  }

  /* 聊天室 */
  .chatroom-comment {
    right: calc((100vw - 670px) / 2 - 76px);
    cursor: pointer;
  }

  main .tabs .chatroom {
    padding: 14px 0
  }

  .sendTextArea {
    cursor: pointer;
  }
  .sendTextArea.disabled {
    cursor: not-allowed;
  }

  /* 融媒号免责声明 */
  .media-disclaimers-pop .btn,
  .media-disclaimers .trigger {
    cursor: pointer;
  }

  .media-disclaimers .trigger {
    margin-left: 34px;
  }
}