/*! 精简版 Font Awesome 4.7.0 - 仅保留当前页面用到的10个图标 | 本地相对路径 | 无外部链接 */
@font-face {
  font-family: 'FontAwesome';
  /* 字体文件路径：指向你本地的 ../fonts/ 文件夹（和原版一致） */
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
       url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
       url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
       url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
       url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* 通用图标基础样式（仅保留核心，删除无用样式） */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== 新增1：fa-newspaper-o图标样式（Font Awesome 4.7.0 官方Unicode） ========== */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* ========== 新增2：hidden-mobile类（移动端隐藏图标） ========== */
.hidden-mobile {
  display: inline-block !important;
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

/* 仅保留你页面中实际用到的9个图标（删除所有无用图标） */
.fa-user-o:before {
  content: "\f2c0";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-film:before {
  content: "\f008";
}
/* 备用：如果你后续恢复简介图标，可取消注释
.fa-book-open:before {
  content: "\f15c";
}
*/