@charset "UTF-8";
/*--重置部分css start--*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei";
  font-weight: normal;
}

html,
body {
  margin: 0 auto;
  font-size: 0.16rem;
  line-height: 130%;
}

body,
form,
img,
ul,
ol,
li,
dl,
dt,
dd,
p,
tr,
td,
strong,
span,
pre {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  color: #333;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: middle;
  border: none;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  color: #30322C;
  outline: none;
  cursor: pointer;
  transition: color 0.3s ease, bacground 0.3s ease, border-color 0.3s ease,
    bottom 0.3s ease;
  -moz-transition: color 0.3s ease, bacground 0.3s ease, border-color 0.3s ease,
    bottom 0.3s ease;
  -webkit-transition: color 0.3s ease, bacground 0.3s ease,
    border-color 0.3s ease, bottom 0.3s ease;
  -o-transition: color 0.3s ease, bacground 0.3s ease, border-color 0.3s ease,
    bottom 0.3s ease;
}

a:hover {
  background-repeat: no-repeat;
  text-decoration: none;
  color: var(--main-color);
}

a,
input[type="button"],
button,
label,
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input,
textarea,
select {
  outline: none;
}

input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"],
input[type="reset"],
select,
textarea {
  outline-style: none;
  -webkit-appearance: none;
  resize: none;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px rgba(255, 255, 255, 0) inset !important;
}
/* 全局变量 */
:root {
  /* 主色调 */ /* #3748a0 */
  --main-color: #7f8475;

  /* 蒙层颜色 */
  --mask-linear-gradient: linear-gradient(
    to top,
    rgb(0, 0, 0, 0.7),
    rgb(0, 0, 0, 0)
  );
  /* 蒙层颜色浅 */
  --mask-linear-gradient2: linear-gradient(
    to top,
    rgb(0, 0, 0, 0.5),
    rgb(0, 0, 0, 0)
  );
  /* 鼠标经过图片放大效果 */
  --img-zoom: scale(1.02);
  /* 鼠标经过图片颜色变深 */
  --img-hover-color: rgba(0, 0, 0, 0.5);
  /* 栏目页主色调 */
  --chn-main-color: #7f8475;
  /* 鼠标经过图片透明度 */
  --img-opacity: 0.9;
  /* 通用文字行距 */
  --text-line-height: 130%;
}

/*--重置部分css end--*/

/* 页面通用 头尾 共用版块 */
.pad-160 {
  padding: 0 1.6rem;
}
/* =================头部================= */
.header {
}

/* 00 顶部信息条 */
.top-bar {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--main-color);
  padding: 0.15rem 1.6rem;
}

/* 左侧 顶部条 官方微信 */
.top-bar-l {
  display: flex;
  align-items: center;
  font-size: 0.13rem;
}
.bar-l-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  height: 0.2rem;
}
.bar-l-item img {
}
.bar-l-item + .bar-l-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.13rem;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.15rem;
}
.bar-l-item h3 {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: normal;
}
.bar-l-item h3:hover {
  color: rgba(255, 255, 255, 0.9);
}
.bar-l-item h3 > img,
.bar-l-item > img {
  max-height: 0.2rem;
  margin-right: 0.08rem;
  transition: all 0.3s ease;
  filter: brightness(100);
  opacity: 0.75;
}
.bar-l-item h3:hover > img,
.bar-l-item:hover > img {
  transform: translateY(-0.01rem);
}

/* 微信 微博 手机弹出二维码 */
.ewm-img {
  position: absolute;
  left: 50%;
  top: 0.4rem;
  width: 1.5rem;
  margin-left: -0.75rem;
  height: 0;
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0 0.27rem 0 rgba(46, 63, 76, 0.1);
  border-radius: 0.1rem;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}
.ewm-img::before {
  content: "";
  position: absolute;
  top: -0.09rem;
  left: 50%;
  margin-left: -0.08rem;
  display: block;
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-bottom: 0.1rem solid #fff;
}
.ewm-img img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all 0.3s ease;
}
.bar-l-item:hover .ewm-img {
  visibility: visible;
  opacity: 1;
  height: 1.5rem;
}
.bar-l-item:hover .ewm-img img {
  opacity: 1;
}

/* 右侧 顶部条 多语种 搜索 */
.top-bar-r {
  display: flex;
  align-items: center;
}

/* 我的关注 */
.my-follow {
  font-size: 0.15rem;
  margin-right: 0.2rem;
  color: #9ba3d0;
}
.my-follow:hover {
  color: #fff;
}
/* 多语种 下拉框 */
.mod-lang {
  position: relative;
  background: #fff;
  width: 1.44rem;
  height: 0.38rem;
  line-height: 0.38rem;
  border-radius: 0.1rem;
  padding: 0 0.15rem;
  margin-right: 0.1rem;
}

.selected-lang {
  cursor: pointer;
  width: 100%;
  height: 0.38rem;
  line-height: 0.38rem;
  border: none;
  background: none;
  color: #565a4f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.selected-lang h2 {
  font-size: 0.13rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.selected-lang h2 + img {
  width: 0.09rem;
  transition: all 0.3s ease;
}
.selected-lang h2::before {
  content: "";
  display: inline-block;
  width: 0.14rem;
  height: 0.14rem;
  background: url(../images/icon-top-lang2.png) no-repeat center;
  background-size: 100%;
  margin-right: 0.08rem;
  transition: all 0.3s ease;
}
.mod-lang.lang-select-hover {
  background: rgba(255, 255, 255, 1);
  border: none;
}
.mod-lang.lang-select-hover h2 {
  color: #30322C;
}
.mod-lang.lang-select-hover .selected-lang h2::before,
.mod-lang.lang-select-hover .selected-lang h2 + img {
  filter: brightness(0);
}
.mod-lang.lang-select-hover .selected-lang h2 + img {
  transform: rotate(180deg);
}
/* 语言 下拉列表 */
.lang-list {
  position: absolute;
  top: 0.42rem;
  left: 0;
  z-index: 100;
  width: 1.42rem;
  background: #ffffff;
  box-shadow: 0 0 0.27rem 0 rgba(46, 63, 76, 0.1);
  border-radius: 0.1rem;
  overflow: hidden;
  display: none;
}

.lang-list li a {
  font-weight: bold;
  font-size: 0.13rem;
  color: #4e4e4e;
  line-height: 0.33rem;
  text-align: center;
  display: block;
}
.lang-list li a:hover {
  color: var(--main-color);
  background: #f8fafb;
}
/* 手机版头部 繁简切换等 不显示 */
.mb-top-r {
  display: none;
}

/* 搜索 */
.search {
  width: 0.36rem;
  height: 0.36rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.search img {
  width: 0.11rem;
  height: auto;
}
.search:hover {
  background: rgba(255, 255, 255, 0.4);
}
.search:hover img {
  filter: brightness(100);
}

/* 00 logo 导航 */
.top-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.28rem 1.6rem 0.34rem;
}
/* LOGO */
.mod-logo {
  display: flex;
  align-items: center;
}
.sznews-logo {
  width: 1.96rem;
  margin-right: 0.1rem;
}
.sznews-logo img {
  width: 100%;
}
.slogan {
  height: 0.35rem;
  line-height: 0.35rem;
  background: #fff;
  border-radius: 0.2rem;
  font-weight: normal;
  font-size: 0.15rem;
  color: var(--main-color);
  padding: 0 0.15rem;
}
/* 导航 */
.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 9.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.17rem;
  position: relative;
}
/* 一级导航 */
.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.16rem;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 0.2rem;
  line-height: 0.2rem;
}
.nav-link:hover,
.nav-link-hover {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.08);
  font-weight: bold;
}

.nav-link:before,
.nav-link:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0.04rem;
  top: 0.32rem;
  background: #fff;
}
.nav-link:before {
  left: 0;
}
.nav-link:after {
  right: 0;
  background: #fff;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-link:hover:before {
  background: #fff;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-link:hover:after {
  background: transparent;
  width: 100%;
}
.nav-link-hover::after {
  width: 100%;
}

/* 二级导航 */
.sec-nav-list {
  position: absolute;
  top: 0.56rem;
  left: 0;
  opacity: 0;
  transform: translateY(0.1rem);
  transition: all 0.5s ease;
  width: 100%;
}
.sec-nav-list.show-animate {
  opacity: 1;
  transform: translateY(0);
}
.sec-nav-list a {
  color: #ffffff;
  margin-right: 0.2rem;
  font-size: 0.14rem;
  display: inline-block;
}
.sec-nav-list a:hover {
  text-shadow: 0.01em 0 0 currentColor;
}
.sec-nav-list a:last-child {
  margin-right: 0;
}
.sec-nav-list a::before {
  content: "";
  display: inline-block;
  width: 0.05rem;
  height: 0.05rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  margin-bottom: 0.03rem;
  margin-right: 0.05rem;
}
/* 导航 我的关注 隐藏 */
.mb-nav-item {
  display: none;
}
/* 智能机器人 */
.top-robot {
  position: relative;
}
.robot {
  width: 0.88rem;
  margin-right: 0.6rem;
}
.robot img {
  width: 100%;
}
.bobot-txt {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(95deg, #b38ba3, #f7d7ea);
  border: 1px solid rgba(255, 255, 255, 0.91);
  border-radius: 0.3rem;
  font-size: 0.13rem;
  color: #03320d;
  line-height: 0.35rem;
  width: 0.78rem;
  text-align: center;
}

/* 栏目头部样式 */
.black-logo {
  display: none;
}
.col-head .white-logo {
  display: none;
}
.col-head .black-logo {
  display: block;
  margin-right: 0.67rem;
}
.col-head .top-head {
  position: relative;
  padding: 0.2rem 2.6rem 0;
  margin-bottom: 0.4rem;
}
.col-head .top-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.1rem;
  background: #F9F9F9;
  border-bottom: 1px solid #EAEDE5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.col-head .slogan {
  display: none;
}
.col-head .main-nav {
  margin-right: 0.8rem;
}
.col-head .nav-list {
  border-bottom: 1px solid #EAEDE5;
  padding-bottom: 0.15rem;
}

.col-head .nav-link {
  color: #333;
}
.col-head .nav-link:before,
.col-head .nav-link:after {
  background: #7F8475;
  top: 0.3rem;
  width: 0%;
}
.col-head .nav-link:hover:after {
  left: 0;
}
.col-head .nav-link-hover::after {
  width: 100%;
}
.col-head .nav-link:hover,
.col-head .nav-link-hover {
  color: #7F8475;
}
.col-head .sec-nav-list {
  top: 0.5rem;
}
.col-head .sec-nav-list a {
  color: #333;
}
.col-head .sec-nav-list a::before {
  background: #7F8475;
}

/* 针对视频 二级栏目过多 调整 */
.video-nav-item .sec-nav-list {
  /* top: 0.4rem; */
}

/* 频道左右切换 */

.chn-prev-btn,
.chn-next-btn {
  height: 0.51rem;
  position: fixed;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 10;
}
.chn-prev-btn {
  left: 0;
}
.chn-next-btn {
  right: 0;
}
.chn-prev-btn::before,
.chn-next-btn::after {
  content: "";
  display: block;
  width: 0.26rem;
  height: 0.51rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.3s ease;
}
.chn-prev-btn::before {
  background-image: url(../images/chn-arrow_left.png);
  background-position: center;
  margin-left: 0.3rem;
  margin-right: 0.16rem;
}
.chn-next-btn::after {
  background-image: url(../images/chn-arrow_right.png);
  background-position: center;
  margin-right: 0.3rem;
  margin-left: 0.15rem;
}
.pjax-switch a span {
  display: block;
  font-size: 0.18rem;
  line-height: 0.51rem;
  color: #ffffff;
  height: 100%;
  visibility: hidden;
  min-width: 0.8rem;
  text-align: center;
}
.chn-prev-btn:hover,
.chn-next-btn:hover {
  background-color: var(--main-color);
  background-size: 0.12rem auto;
}
.chn-prev-btn:hover span,
.chn-next-btn:hover span {
  visibility: visible;
}
.chn-prev-btn:hover {
  border-radius: 0 0.3rem 0.3rem 0;
  padding-right: 0.25rem;
}
.chn-next-btn:hover {
  border-radius: 0.3rem 0 0 0.3rem;
  padding-left: 0.25rem;
}
.chn-prev-btn:hover::before,
.chn-next-btn:hover::after {
  width: 0.12rem;
  height: 0.23rem;
  filter: brightness(100);
}
.chn-prev-btn:hover::before {
  background-image: url(../images/chn-arrow_left.png);
  margin-left: 0.2rem;
}
.chn-next-btn:hover::after {
  background-image: url(../images/chn-arrow_right.png);
  margin-right: 0.2rem;
}

/* =================尾部================= */
.footer {
  background: #f5f5f5;
}
.friend-link,
.about-link,
.foot-info {
  padding: 0 2.6rem;
}

/* 报业群 友情链接 */
.friend-link {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  padding-top: 0.45rem;
}
.link-box {
  position: relative;
  color: #333;
  width: calc(94% / 4);
}
.link-box .show-box {
  width: 100%;
  height: 100%;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.16rem;
  color: #30322C;
  white-space: nowrap;
  height: 0.56rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid #919191;
}
.show-box img {
  width: 0.1rem;
  height: 0.08rem;
  object-fit: contain;
}
/* 底部下拉链接  */
.link-list {
  width: 100%;
  position: absolute;
  top: 0.56rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background-color: #fff;
  display: none;
  padding: 0.1rem 0.05rem 0.1rem 0;
  box-shadow: 0 0 0.027rem 0 rgba(46, 63, 76, 0.1);
}
.link-item-wrap {
  height: 3.3rem;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #b1bac9 #f5f5f5;
}
.link-item-wrap::-webkit-scrollbar {
  width: 3px;
}
.link-item-wrap::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.link-item-wrap::-webkit-scrollbar-thumb {
  background-color: #b1bac9;
  border-radius: 5px;
}
.link-item-wrap::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.link-list .link-item {
  font-size: 0.15rem;
  display: block;
  width: 100%;
  color: #4e4e4e;
  cursor: pointer;
  height: 0.48rem;
  line-height: 0.48rem;
  padding-left: 0.33rem;
  font-weight: lighter;
}
.link-list .link-item:hover {
  color: #30322C;
  background: #f8fafb;
  transition: all 0.3s ease;
}
.link-box .show-box.active {
  border: 1px solid var(--main-color);
  transition: all 0.3s ease;
}
.link-box .show-box.active img {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
/* 带图片的链接 */
.link-list .link-item img {
  display: none;
  width: 1.5rem;
  height: auto;
  position: absolute;
  left: -46%;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0.02rem;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.27rem 0 rgba(46, 63, 76, 0.1);
}
.link-list .link-item:hover img {
  display: block;
}
/* 城市网盟 链接 */
.foot-cswm-list {
  margin-bottom: 0.2rem;
}
.foot-cswm-list dt {
  padding-left: 0.2rem;
  font-size: 0.16rem;
  padding-bottom: 0.1rem;
  margin-bottom: 0.05rem;
  border-bottom: 1px solid #e4eefb;
}
/* 关于我们 */
.about-link {
  text-align: center;
  font-weight: 300;
  font-size: 0.16rem;
  color: #010101;
  margin-bottom: 0.5rem;
}
.about-link a {
}
.about-link a::after {
  content: "|";
  color: #010101;
  margin: 0 0.3rem;
}
.about-link a:last-child:after {
  display: none;
}
.about-link::before,
.about-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to left,
    #fff,
    #c4c4c4,
    #c4c4c4,
    #c4c4c4,
    #c4c4c4,
    #fff
  );
}
.about-link::before {
  margin-bottom: 0.15rem;
}
.about-link::after {
  margin-top: 0.15rem;
}

/* 备案信息 */
.foot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
/* 备案信息 左侧 */
.foot-info-l li {
  display: flex;
  align-items: center;
}
.foot-info-l p {
  margin-right: 0.2rem;
}
.foot-info-l li,
.foot-info-l li a {
  font-size: 0.15rem;
  color: #494949;
  line-height: 0.35rem;
}
.foot-info-l li a:hover {
  color: var(--main-color);
}
/* 备案信息 右侧 */
.foot-info-r {
  text-align: right;
}
.info-tel {
  display: flex;
  color: #494949;
  margin-bottom: 0.3rem;
}
.info-tel p + p {
  margin-left: 0.2rem;
}
/* 网信办链接 */
.foot-link-img {
  width: 2.35rem;
  display: inline-block;
}
.foot-link-img img {
  width: 100%;
}
/* 版权信息 */
.foot-copyright {
  width: 100%;
  background: #e7e7e7;
  font-size: 0.14rem;
  color: #8a8a8a;
  text-align: center;
  padding: 0.2rem 0;
}
.foot-copyright p {
  display: inline-block;
  font-weight: 100;
}

.foot-copyright p::after {
  content: "|";
  color: #8a8a8a;
  margin: 0 0.2rem;
}
.foot-copyright p:last-child:after {
  display: none;
}
/* 手机版底部 */
.mb-footer {
  display: none;
}
/* 分页样式 */
.pages {
  font-size: 0.14rem;
  padding: 0.2rem 0;
  text-align: center;
  margin: 0.2rem 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

.pages li {
  display: inline-block;
  margin-right: 0.08rem;
}
.pages li:last-child {
  margin-right: 0;
}
.pages a {
  display: inline-block;
  background-color: #f5f5f5;
  border: 1px solid #d7d7d7;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  width: 0.4rem;
  height: 0.4rem;
  line-height: 0.4rem;
  border-radius: 0.08rem;
}
.page-previous a,
.page-next a {
  padding: 0 0.15rem;
  width: auto;
  background: #fff;
}
.page-active {
  font-weight: bold;
  color: var(--main-color);
}
.page a:hover,
.page-active a,
.page-previous a:hover,
.page-next a:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #ffffff;
}
.page-all a {
  width: auto;
  background: none;
  border: none;
}
.page-all a:hover {
  color: var(--main-color);
}

/* 手机适配 */
@media screen and (max-width: 768px) {
  /* 手机版头部 */
  /* 手机 菜单按钮 */
  .nav-btn {
    display: none;
    width: 20px;
  }
  .nav-btn span {
    background: #fff;
    width: 100%;
    height: 2px;
    display: block;
    margin: 5px 0px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav-btn-close span:nth-child(1),
  .nav-btn-close span:nth-child(3) {
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
    background: #000;
  }
  .nav-btn-close span:nth-child(3) {
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
  }
  .nav-btn-close span:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }
  /* 头尾隐藏部分 */
  .top-bar,
  .top-robot,
  .breadcrumb,
  .friend-link,
  .about-link,
  .foot-info,
  .foot-copyright p:nth-child(2),
  .foot-copyright p::after {
    display: none;
  }

  /* 手机版头部 */
  header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
  }
  .top-head {
    padding: 0;
    flex-direction: column;
    /* position: fixed;
    width: 100%;
    z-index: 99; */
  }
  .col-head .top-head {
    padding: 0;
    margin-bottom: 0;
  }
  .col-head .top-head::after {
    display: none;
  }
  /* logo */
  .sznews-logo {
    width: 2.28rem;
  }
  .col-head .black-logo {
    margin-right: 0;
  }
  /* 针对首页 logo 变黑字 */
  .index .white-logo {
    display: none;
  }
  .index .black-logo {
    display: block;
  }
  .slogan {
    font-size: 0.17rem;
    color: #A68397;
    background: #FFFFFF;
  }

  .mod-logo-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.35rem 0.3rem;
    background: #F5F5F5;
  }
  .mb-top-r {
    display: block;
  }
  /* 手机版切换繁简 */
  .change-lang img {
    width: 0.45rem;
  }
  /* 导航 我的关注 */
  .mb-nav-item {
    display: block;
  }
  .col-head .main-nav {
    margin-right: 0;
    width: 100%;
  }
  .nav-link:before,
  .nav-link:after {
    display: none;
  }
  .main-nav {
    padding-bottom: 1.1rem;
    width: 100%;
  }
  .nav-list {
    width: 100%;
    height: 0.9rem;
    padding: 0 0 0 0.3rem;
    overflow-x: scroll;
    border-bottom: 0.01rem solid #E8E8E8;
  }

  .nav-link {
    font-size: 0.34rem;
    white-space: nowrap;
    margin-right: 0.35rem;
    height: 0.6rem;
    line-height: 0.6rem;
    color: #333;
    display: inline-block;
    white-space: nowrap;
  }
  .nav-link:hover,
  .nav-link-hover {
    transform: scale(1);
    background: var(--main-color);
    padding: 0 0.2rem;
    height: 0.6rem;
    line-height: 0.6rem;
    color: #fff;
    border-radius: 0.23rem;
  }
  .sec-nav-list {
    width: calc(100% - 0.6rem);
  }
  .sec-nav-list a {
    font-size: 0.26rem;
    margin-bottom: 0.1rem;
    line-height: var(--text-line-height);
  }
  .col-head .sec-nav-list,
  .sec-nav-list {
    position: fixed;
    left: 0.3rem;
    top: 2.4rem;
  }

  .video-nav-item .sec-nav-list {
    top: 2.4rem;
  }
  .col-head .nav-list {
    padding-bottom: 0;
  }
  .col-head .nav-link:hover,
  .col-head .nav-link-hover {
    color: #fff;
  }

  .nav-item .sec-nav-list a {
    color: #333;
  }
  /* 针对视频 二级栏目 商报后面的栏目不显示 */
  .video-nav-item .sec-nav-list a:nth-child(n + 9) {
    display: none;
  }
  /* 深圳论坛隐藏 */
  .nav-list li:nth-last-child(2) {
    display: none;
  }
  .index header {
    overflow: hidden;
  }
  /* 手机版底部 */
  .footer {
    background: none;
  }
  .foot-copyright {
    display: block;
    text-align: center;
    background: #e8edf4;
    padding: 0.6rem 0;
    font-size: 0.16rem;
  }
  /* 栏目左右切换 */
  .chn-next-btn::after {
    margin-right: 0.1rem;
  }
  .chn-prev-btn::before {
    margin-left: 0.1rem;
  }
}

