/*
 * @Author: wangshuo01(982081898@qq.com) 
 * @Date: 2026-02-28 15:25:36 
 * @Last Modified by: wangshuo01
 * @Last Modified time: 2026-04-26 17:53:16
 */
html,
body,
div,
span,
object,
embed,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
cite,
code,
del,
dfn,
em,
img,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
}

ul,
li,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

i,
em,
cite,
dfn {
  font-style: normal;
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

.alignR {
  text-align: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.none {
  display: none;
}

.block {
  display: block;
}

.overf {
  overflow: hidden;
}

.center {
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.trs3 {
  transition: all 0.3s;
}

:focus,
a {
  outline: none;
  outline-style: none;
  -moz-outline-style: none;
  transition: all 0.3s;
}

a:visited,
a:link {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
  filter: brightness(1.1);
}

ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
input::-webkit-inner-spin-button {
  display: none;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type='search']::-ms-clear {
  display: none;
}
:root {
  --scale: 1;
  --f-fzh: '方正准圆_GBK';
  --f-sy: '思源宋体 CN Medium', '思源宋体cn';
  --f-syh: '思源黑体 CN Normal', 'Microsoft YaHei';
  --f18: 0.18rem;
  --f21: 0.21rem;
  --f23: 0.23rem;
  --f25: 0.25rem;
  --f26: 0.26rem;
  --f28: 0.28rem;
  --f30: 0.3rem;
  --f32: 0.32rem;
  --f33: 0.33rem;
  --f36: 0.36rem;
  --f38: 0.38rem;
  --f40: 0.4rem;
  --f42: 0.42rem;
  --f45: 0.45rem;
  --f48: 0.48rem;
  --f52: 0.52rem;
  --f60: 0.6rem;
  --f70: 0.7rem;
  --size: calc(100vw / 7.5);
}

/* @font-face {
  font-family: 'myFont_fzzy';
  src: url('../font/方正准圆_GBK.TTF');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 防止FOIT（无样式文本闪烁） */
} */

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 100px;
  /* font-size: var(--size); */
}

/* @media screen and (max-width: 1300px) {
  html {
    font-size: calc(1300px / 25.6);
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: calc(100vw / 7.5);
  }
} */
/* var(--f-fzh),
    'myFont_fzzy' */
body {
  font:
    16px/1.5 'Microsoft YaHei',
    sans-serif;
  color: #525152;
}

/*自定义有序列表*/
ol {
  padding-left: 1.5em;
}

ol > li {
  list-style: decimal;
  list-style-position: outside;
}

/* 视频弹窗样式 */

.videoPop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.9);
}

.videoPop .inVideoPop {
  width: 13.2rem;
  height: 7.43rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.videoPop .closeVideoBtn {
  width: 78px;
  height: 78px;
  display: block;
  position: absolute;
  right: -90px;
  top: 0px;
  cursor: pointer;
  background: url(https://static.web.sdo.com/dnm/web1/pc/close-v.png) no-repeat;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 99;
}

.videoPop .closeVideoBtn:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.videoPop #video {
  position: relative;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.videoPop #video video {
  width: 100%;
  height: auto;
  background: black;
}

/* 视频弹窗样式 */

/* animation */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.fadeIn.paused {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ani-scroll {
  0% {
    transform: translate3d(0, 5%, 0);
  }

  to {
    transform: translate3d(0, -5%, 0);
  }
}

/* 全局头部 PC（首页 / 新闻列表 / 新闻内页共用） */
.topMenu--pc {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.4rem 0 0.28rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0) 100%);
}

.topMenu--pc .logo {
  flex: none;
  width: 183px;
  margin-top: 0.2rem;
}
.topMenu--pc .logo img {
  width: 100%;
  display: block;
}

.topMenu--pc .menuUl {
  position: static;
  transform: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.72rem;
  margin-left: 0.5rem;
  font-size: 0.2rem;
  line-height: 1;
}

.topMenu--pc .menuUl li {
  position: relative;
}

.topMenu--pc .menuUl li a {
  display: block;
  color: #fff;
  padding: 0.1rem 0.08rem;
  transition:
    color 0.3s,
    text-shadow 0.3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.topMenu--pc .menuUl li.active a,
.topMenu--pc .menuUl li:hover a {
  color: #fff;
  text-shadow:
    0 0 0.08rem rgba(255, 255, 255, 0.95),
    0 0 0.16rem rgba(255, 255, 255, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.topMenu--pc .menuUl li.active::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 0.55rem;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

/* 竖屏移动端顶栏 / 负一屏（750 设计稿 rem，配合 autoPageSizeNews） */
.topMenu--mob {
  display: none;
}

.topMenu--mob .menu-open {
  width: 0.46rem;
  height: 0.44rem;
  background: url(https://static.web.sdo.com/dnm/web1/pc/top-menu.png) no-repeat 50% 0 / contain;
  display: block;
}

.topMenu--mob .normal {
  position: relative;
  height: 0.85rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0.3rem;
  box-sizing: border-box;
  background: rgba(40, 50, 60, 0.45);
}

.topMenu--mob .normal .logo {
  position: absolute;
  width: 2.43rem;
  height: 0.85rem;
  top: 0.16rem;
  left: 0.24rem;
  margin: 0;
  background: url(https://static.web.sdo.com/dnm/web1/pc/top-logo.png) no-repeat 50% 0 / contain;
  display: block;
}

.topMenu--mob .sub-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 110;
  overflow: hidden;
}

.topMenu--mob .menu-close {
  position: absolute;
  top: 0.36rem;
  right: 0.36rem;
  width: 0.44rem;
  height: 0.44rem;
  z-index: 2;
}

.topMenu--mob .menu-close::before,
.topMenu--mob .menu-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.02rem;
  background: #d8c89a;
  border-radius: 0.01rem;
}

.topMenu--mob .menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.topMenu--mob .menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.topMenu--mob .sub-menuCon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0.4rem 0.5rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.topMenu--mob .sub-menuConUl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.36rem;
  margin-bottom: 0.48rem;
  flex: none;
}

.topMenu--mob .sub-menuCon li {
  width: 4.28rem;
  height: 1.2rem;
  text-align: center;
  line-height: 1.2rem;
  background: none;
}

.topMenu--mob .sub-menuCon li.active {
  background: url(https://static.web.sdo.com/dnm/web1/pc/p0-menu-li.png) no-repeat center / 4.28rem 1.6rem;
}

.topMenu--mob .sub-menuCon li a {
  display: block;
  font-size: 0.34rem;
  font-weight: bold;
  color: #868686;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.topMenu--mob .sub-menuCon li.active a {
  color: #7c563b;
  text-shadow:
    0 0 0.08rem #efefd1,
    0 0 0.16rem #efefd1,
    0 0 0.24rem rgba(239, 239, 209, 0.8);
}

.topMenu--mob .sub-follow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(120, 120, 120, 0.45);
  padding-top: 0.4rem;
}

.topMenu--mob .sub-follow-tit {
  margin: 0 0 0.28rem;
  font-size: 0.34rem;
  font-weight: bold;
  color: #868686;
  letter-spacing: 0.04em;
}

.topMenu--mob .sub-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 0.71rem;
  margin: 0 auto 0.4rem;
}

.topMenu--mob .sub-media a {
  flex: none;
  width: calc(6.47rem / 7);
  height: 0.71rem;
  background: url(https://static.web.sdo.com/dnm/web1/pc/p0-media.png) no-repeat;
  background-size: 6.47rem 0.71rem;
}

.topMenu--mob .sub-media a.m1 {
  background-position: 0 0;
}
.topMenu--mob .sub-media a.m2 {
  background-position: calc(-6.47rem / 7) 0;
}
.topMenu--mob .sub-media a.m3 {
  background-position: calc(-6.47rem / 7 * 2) 0;
}
.topMenu--mob .sub-media a.m4 {
  background-position: calc(-6.47rem / 7 * 3) 0;
}
.topMenu--mob .sub-media a.m5 {
  background-position: calc(-6.47rem / 7 * 4) 0;
}
.topMenu--mob .sub-media a.m6 {
  background-position: calc(-6.47rem / 7 * 5) 0;
}
.topMenu--mob .sub-media a.m7 {
  background-position: calc(-6.47rem / 7 * 6) 0;
}
.topMenu--mob .sub-media a.none {
  display: none;
}

.topMenu--mob .sub-codeBox {
  width: 2.53rem;
  height: 2.97rem;
  margin: 0 auto;
  padding: 0.32rem 0.16rem 0.18rem;
  box-sizing: border-box;
  background: url(https://static.web.sdo.com/dnm/web1/pc/p0-code-bpx.png) no-repeat center / 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #e8e4d8;
  font-size: 0.24rem;
  line-height: 1.35;
}

.topMenu--mob .sub-codeBox .sub-qr {
  width: 1.56rem;
  height: 1.56rem;
  display: block;
  margin-bottom: 0.14rem;
  border-radius: 0.04rem;
  background: #fff;
}

.topMenu--mob .sub-codeBox p {
  margin: 0;
}

.mob-code-pop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
}

.mob-code-pop .desc {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 0.24rem;
}

.mob-code-pop .code {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  margin: 0 auto 0.2rem;
  background: #fff;
  border-radius: 0.08rem;
  padding: 0.12rem;
  box-sizing: border-box;
}

@media (orientation: portrait) {
  .topMenu--pc {
    display: none !important;
  }

  .topMenu--mob {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    color: #928874;
    background: transparent;
  }
}

/* hover 显示二维码（顶栏媒体 / 其它共用） */
.img-tit {
  position: relative;
}
.img-tit .layer {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate3d(-50%, 150%, 0);
  z-index: 30;
}
.img-tit:hover .layer {
  display: block;
}

.top-media {
  flex: none;
  display: flex;
  align-items: center;
  column-gap: 0.14rem;
  margin-left: 0.3rem;
}

.top-media a {
  width: 0.627rem;
  height: 0.53rem;
  background: url(https://static.web.sdo.com/dnm/web1/pc/p1-media.png) no-repeat;
  background-size: 4.39rem 0.53rem;
  opacity: 0.95;
  transition:
    opacity 0.3s,
    filter 0.3s;
  filter: drop-shadow(0 0 0.04rem rgba(0, 0, 0, 0.45));
}

.top-media a:hover {
  opacity: 1;
}

.top-media .img-tit .layer {
  width: 1.5rem;
  margin-bottom: 0.1rem;
  padding: 0.08rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0.06rem;
  box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.35);
}

.top-media .img-tit .layer img {
  width: 100%;
  display: block;
}

.top-media a.m1 {
  background-position: 0 0;
}
.top-media a.m2 {
  background-position: -0.627rem 0;
}
.top-media a.m3 {
  background-position: -1.254rem 0;
}
.top-media a.m4 {
  background-position: -1.881rem 0;
}
.top-media a.m5 {
  background-position: -2.508rem 0;
}
.top-media a.m6 {
  background-position: -3.135rem 0;
}
.top-media a.m7 {
  background-position: -3.762rem 0;
}
