/**
 * 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;
}

/*去掉列表前的标识, 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;
}
@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;
}
.comment .parent-comment li .comment-detail .comment-IP {
  margin-left: 0.1rem;
  display: inline-block;
  font-size: 0.28rem;
  color: rgba(0, 0, 0, 0.4);
}
.comment .parent-comment li .comment-detail .comment-IP span {
  max-width: 116px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}
.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 {
  display: flex;
  justify-content: space-around;
  border-bottom: 0.01rem solid #e7e7e7;
  font-size: 0.4rem;
}
.tabs .tabs-header .tabs-title {
  position: relative;
  padding: 0.35rem 0;
  color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.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);
  line-height: 0.375rem;
}
.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 {
  display: flex;
  align-items: center;
  flex: 1;
}
main .author-intro .org-avatar {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.4rem;
}
main .author-intro .org-info {
  margin-left: 0.2rem;
}
main .author-intro .org-name {
  font-size: 0.35rem;
  color: rgba(0, 0, 0, 0.9);
}
main .author-intro .org-time {
  font-size: 0.3rem;
  color: rgba(0, 0, 0, 0.4);
}
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 .cover {
  position: relative;
  width: 100%;
  height: 6rem;
  margin-top: 0.2rem;
}
/* 增加媒体查询，pc上的视频容器高度为100% */
@media screen and (min-width: 751px) {
  main .cover {
    height: 100%;
  }
}
main .cover video {
  width: 100%;
  height: 56.25vw;
}
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;
  position: relative;
  z-index: 0;
}
/*正文中的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;
  /*覆盖省平台的稿件img可能带有属性width="100%"*/
  width: auto;
  /*覆盖涪江观察迁移数据img带有属性height="xxpx"*/
  height: auto;
}
main .news-detail .news-content p {
  /* 修复中文标点换行导致的文字间隔显示异常 */
  /* line-break: anywhere; */
  /* 修复ios加粗字体显示异常 */
  vertical-align: bottom;
}
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;
}
.news-detail .editor-wrap .news-reading {
  flex: 1;
  text-align: right;
}
.hide-read-data .news-detail .editor-wrap .news-reading {
  display: none;
}
main .attachment {
  padding: 0.45rem 0.4rem 0;
  border-top: 0.1rem solid #f8f8f8;
}
main .attachment .attachment-title {
  font-weight: 700;
  font-size: 0.45rem;
  color: rgba(0,0,0,0.9);
}
main .attachment .attachment-item {
  position: relative;
  padding: 0.3rem 0;
}
main .attachment img {
  position: absolute;
  top: calc(50% - 10px);
  width: 0.5rem;
  height: 0.5rem;
}
main .attachment .attachment-icon {
  left: -0.2rem;
}
main .attachment .attachment-name {
  padding-left: 0.6rem;
  padding-right: 0.8rem;
  font-size: 0.35rem;
  color: #202122;
  line-height: 0.5rem;
}
main .attachment .attachment-download {
  right: -0.2rem;
}
main .attachment .attachment-list > li:nth-child(n+2) {
  border-top: 1px solid #EAEDEF;
}
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;
  display: block;
}
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 li:nth-last-child(2) {
  margin-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;
  margin-top: 0.2rem;
  display: inline-block;
}
main .media-disclaimers .content {
  margin-top: 0.4rem;
  border-radius: 2px;
  padding: 0.1rem 0.2rem;
  font-size: 0.275rem;
  color: rgba(0, 0, 0, 0.4);
  line-height: 0.4rem;
  background-color: #f8f8f8;
}
/* 兼容公共回复样式的特殊处理 */
.comment-detail .separator {
  height: 0;
}

/* 适配PC端 */
@media screen and (min-width: 751px) {
  header {
    margin:auto;
    max-width: 900px;
    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;
  }
  header .download-btn {
    padding: 0 10px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    border-radius: 4px;
  }

  main {
    margin:auto;
    max-width: 900px;
  }
  main .cover {
    height: auto;
  }
  main .cover video {
    height: auto;
  }

  main .news-detail {
    padding: 0;
  }
  main .news-detail .news-title {
    padding-top: 10px;
    font-size: 26px;
  }
  main .news-detail .news-author,
  main .news-detail .news-time,
  main .author-intro .org-name {
    font-size: 14px;
  }
  main .author-intro .org-time {
    font-size: 12px;
  }

  main .author-intro .org-avatar {
    margin-left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  main .author-intro .org-info {
    margin-left: 10px;
  }
  main .author-intro .follow-btn {
    display: none;
  }

  main .news-detail .editor-wrap {
    font-size: 15px;
  }
  .copyright-notice {
    font-size: 12px !important;
  }
  main .media-disclaimers .content {
    margin-top: 16px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  main .recommend {
    display: none;
  }

  main .attachment {
    padding: 20px 0 10px;
  }
  main .attachment .attachment-title {
    font-size: 18px;
  }
  main .attachment .attachment-item {
    cursor: pointer;
    padding: 12px 0;
  }
  main .attachment .attachment-icon,
  main .attachment .attachment-download {
    width: 20px;
    height: 20px;
  }
  main .attachment .attachment-name {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 30px;
  }
}