@import url("./base.css");

body {
  background-color: #f0f1f1;
}

/* 文章侧边栏 */
.nav-sidebar {
}

/* 文章侧边栏 - 产品分类 */
.nav-sidebar__menu {
  padding: 1em;
  background: #fff;
}
.nav-sidebar__menu__header {
  margin-bottom: 1em;
}
.nav-sidebar__menu__body {
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
}
.nav-sidebar__menu__body li {
  height: 42px;
  padding-left: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(to bottom, #fbfbfb, #f1f1f3);
}
.nav-sidebar__menu__body li img {
  width: 9px;
  margin-right: 10px;
}
.nav-sidebar__menu__body li a{
  font-size: 14px;
}
/* 文章侧边栏 - 最新资讯 */
.nav-sidebar__topNews {
  margin-top: 1em;
  padding: 1em;
  background: #fff;
}
.nav-sidebar__topNews__header {
  font-size: 18px;
  color: #000;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e8e8e8;
}
.nav-sidebar__topNews__body ul {
  padding-top: 0.8em;
  font-size: 12px;
}
.nav-sidebar__topNews__body ul li {
  padding: 0.8em 0 0.8em 1em;

  background: url(../img/shu.jpg) 0 center no-repeat;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 文章侧边栏 - 热门关键词 */
.nav-sidebar__topKeywords {
  margin-top: 1em;
  padding: 1em;
  background: #fff;
}
.nav-sidebar__topKeywords__header {
  font-size: 18px;
  color: #000;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e8e8e8;
}
.nav-sidebar__topKeywords__body .el-row {
  flex-wrap: wrap;
  font-size: 12px;
  margin: 0 -0.8em;
}
.nav-sidebar__topKeywords__body .el-col {
  padding: 0 0.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin-top: 0.8em;
}
.nav-sidebar__topKeywords__body .el-col a {
  display: block;
  padding: 0.8em 0;
  border: 1px dashed #e8e8e8;
  background: #fcfcfc;
}

/* 文章右侧主体 */
.nav-main {
  padding: 0 1em 1em 1em;
  background: #fff;
  margin-left: 1em;
}
.nav-main__header {
  height: 50px;
  display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  padding: 0 0.5em;
}
.nav-main__header_title {
  font-weight: bold;
  color: #000;
  font-size: 15px;
}
.nav-main__header_title [class^="el-icon-"] {
  margin-right: 0.5em;
  color: #409eff;
}
.nav-main__header_breadcrumb {
  align-self: flex-end;
  margin-bottom: 0.8em;
}
.nav-main__header_breadcrumb > :not(.el-breadcrumb__item) {
  float: left;
  color: #999;
}
.nav-main__header_breadcrumb
  .el-breadcrumb__item:last-child
  .el-breadcrumb__inner,
.nav-main__header_breadcrumb
  .el-breadcrumb__item:last-child
  .el-breadcrumb__inner
  a,
.nav-main__header_breadcrumb
  .el-breadcrumb__item:last-child
  .el-breadcrumb__inner
  a:hover,
.nav-main__header_breadcrumb
  .el-breadcrumb__item:last-child
  .el-breadcrumb__inner:hover {
  color: #999;
  cursor: unset;
}
.nav-main__header_breadcrumb .el-breadcrumb__inner a,
.nav-main__header_breadcrumb .el-breadcrumb__inner.is-link {
  color: #007bff;
}
.nav-main__header_breadcrumb .el-breadcrumb__inner a:hover,
.nav-main__header_breadcrumb .el-breadcrumb__inner.is-link:hover {
  color: #f56c6c;
}
.nav-main__header_breadcrumb a {
  cursor: pointer !important;
}

/* 栏目介绍 */
.nav-content {
  margin-top: 1em;
  border: 1px solid #e8e8e8;
  padding: 1em;
  font-size: 14px;
  line-height: 2em;
  background: rgb(240, 249, 235);
}
.nav-content > * {
  margin: 0;
}

/* 新闻栏目-标题+图片列表 */
.news-pic-list .el-row {
  flex-wrap: wrap;
}
.news-pic-list .el-col {
  margin-top: 1em;
  padding: 0 1em;
}
.news-pic-list .el-col .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border: 1px solid #e8e8e8;
  padding: 1px;
}
.news-pic-list .el-col .img:hover {
  border-color: #f56c6c;
}
.news-pic-list .el-col .img img {
  max-width: 100%;
  max-height: 100%;
}
.news-pic-list .el-col .title {
  margin: 0;
  text-align: center;
  font-size: 14px;
  padding: 0.5em 0;
}

/* 新闻栏目-标题列表 */
.news-title-list ul {
  padding: 3em;
}
.news-title-list ul li {
  padding: 0.4em 0 0.4em 1em;
  line-height: 1.5em;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-title-list ul li::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #555;
  margin-top: -3px;
}

/* 新闻栏目-标题+内容列表 */
.news-detail-list ul li {
  padding: 1em;
  border-bottom: 1px solid #e8e8e8;
}
.news-detail-list ul li:hover {
  background: #f8f8f8;
}
.news-detail-list .el-row {
  padding: 0.5em 0;
}
.news-detail-list .title {
  width: unset;
  font-weight: bold;
  font-size: 15px;
}
.news-detail-list .date {
  font-size: 12px;
  color: #999;
  width: unset;
}
.news-detail-list .content {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin: 0;
}

/* 相关文章列表 */
.news-adjoin-list .el-row {
  flex-wrap: wrap;
  padding-top: 1em;
}
.news-adjoin-list .el-col {
  line-height: 2em;
  padding: 0 0.5em;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 文章展示页 */
.news-show {
  padding: 5px;
}
.news-show__title {
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 18px;
  margin-bottom: 0;
}
.news-show__title__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 0 1em;
  border-bottom: 1px solid #e8e8e8;
  color: #999;
  height: 45px;
}
.news-show__detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1em;
}
.news-show__detail__zoom {
  border: 1px solid #e8e8e8;
  margin: 5px 0;
  width: 288px;
}
.news-show__detail__info {
  margin-left: 30px;
  margin-top: 10px;
}
.news-show__detail__info ul {
  width: 300px;
}
.news-show__detail__info ul li {
  font-size: 12px;
  border-bottom: 1px dashed #e0e1dc;
  padding: 10px 0;
}
.news-show__detail__info ul li em {
  font-style: normal;
}
.news-show__widget {
  margin-top: 1em;
}
.news-show__widget__header {
  color: #000;
  background-color: #f8f8f8;
}
.news-show__widget__header .title {
  padding: 0.5em 1em;
  background-color: #409eff;
  color: #fff;
  display: inline-block;
  font-size: 14px;
}
.news-show__tag {
  padding: 1em 0;
  border-top: 1px dashed #e0e1dc;
  margin: 0;
  color: #999;
  font-weight: normal;
  font-size: 12px;
}
.news-show__adjoin {
  border-top: 1px dashed #e0e1dc;
  padding: 1em 0 0;
  color: #999;
  font-size: 12px;
}
.news-show__adjoin li {
  line-height: 2em;
}

/* 文本编辑器 */
.fr-view {
  line-height: 1.8;
  font-size: 15px;
}

/* form表单 */
.form {
  padding: 2em;
}
.form .el-input {
  width: 300px;
}

.form .el-input.code {
  width: 7em;
}
.form .el-input.code input {
  text-align: center;
}
.form [alt="captcha"] {
  cursor: pointer;
}

/* 标签页 */
.tag-description {
  margin-top: 1em;
  border: 1px solid #e8e8e8;
  padding: 1em;
  font-size: 14px;
  line-height: 2em;
  background: rgb(240, 249, 235);
}
.tag-description font {
  color: #409eff;
  font-weight: 700;
}
.tag-widget {
  margin-top: 1em;
}
.tag-widget__header {
  display: flex;
  align-items: center;
  height: 40px;
  border-bottom: 1px solid #e8e8e8;
  padding-left: 0.5em;
}

/* 放大镜效果 */
.magnifier-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.magnifier-box .edit-wrap {
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 15px 0 15px;
  border-radius: 15px;
}
.magnifier-box .edit-wrap .rotate-left {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-filter: FlipH;
  filter: FlipH;
}
.magnifier-box .edit-wrap .rotate-left,
.magnifier-box .edit-wrap .rotate-right {
  display: inline-block;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACNUlEQVRYR8VXi01bQRCcqSChAkIFQAWBCoAKgApIKgAqACoAKgAqgFSQUAHQQVLBoJHuOcf57rzP0sMrWbL99nZnvzePWLFwxf4xCoCkfQDfAWwB+JY+juEJwF8A9wB+kXyNBhYCIOkMwAmAr0HDNwDOSyDJjgM4Hp51AUhypHdZpEH/M7Uzkuf+JcmgDtOTnyQv/b0JQNIRgOuxHiv6Lo9LYnuDODvOah1AwPlbMvonZcelcWqj0gaQ0v67YekWwCVJO/4gkgzCTerI1hcg6QJwukoD/wDs1Bw3gLjeex0QdQCSfgC4KA6GnQ/nioar4WgC8Cx/KU5sRyIf4dyq8wDSkvHI5XJLMu/ebmnTnJ8GOrEKwHPpZZPL2Og9cpFp8CJyn/wfQ0nl4TeSXrdhkWT9RRl7HZyXAMru907fCXtfUnG2CSWpsHFF0lMxqfQAPJD0YplUcgBlD3x6CXyXl9trjaR3w2SSZ6B2+83GZSoEOQCP0EvhyNFvTJmFD3xAUq0M9yQPxmYgXelebM7i3O052CsB1LJg3RuSx1EQkrw/HpO+s7jbAjHHiCTVVrJtOQpTKU9LVRIn8F1Q7g+D8FqfI6tVStYoxeDUQLzH87QOZMR7o0Zcm1d6C4CNONLNaNo7el0+sYgV50x2GSzmjvvhJqx5SDzBfbGI55XHTcfNH7uLLPRiYstprFzjHtd7Tv3h0Q29HYUB5OGlMfNffnGxI0fpez7kNLe1FIBlmqF1ZuUA3gG+J+MhoQiAnAAAAABJRU5ErkJggg==);
  background-size: 100% 100%;
}
.magnifier-box .edit-wrap .rotate-right {
  margin-left: 10px;
}
.magnifier-box img {
  width: 100%;
}
.magnifier-box .mouse-cover {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: move;
}
.magnifier-box .mouse-cover-canvas {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
}
.magnifier-box.vertical img {
  height: 100%;
  width: auto;
}
