body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  -webkit-text-size-adjust: none;
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  font: 12px/1.5 'CN-Bold', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  -webkit-filter: brightness(120%);
  -ms-filter: brightness(120%);
  -o-filter: brightness(120%);
  -moz-filter: brightness(120%);
  opacity: 0.85\0;
}

div {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

ul,
ol {
  list-style: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

small {
  font-size: 12px;
}

p,
span {
  caret-color: transparent;
}

fieldset,
img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "CN-Bold";
  margin: 0;
  padding: 0;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* 隐藏body的滚动条但保留滚动功能 */
body::-webkit-scrollbar {
  display: none;
}

body {
  overflow-x: auto;
  font-size: 0.2rem;
  color: #121212;
  box-sizing: border-box;
}

@font-face {
  font-family: 'CN-Bold';
  src: url('../../../fonts/pc/思源宋体.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bdzyjt';
  src: url('../../../fonts/pc/bdzyjt.ttf') format('opentype');
}

* {
  user-select: none;
}

html {
  font-size: calc(100 / 1920 * 100vw);
}

main,
section,
nav,
footer {
  display: block;
  margin: 0;
  padding: 0;
}

.cu_layer {
    display: none
}


/* ipad适配 */
/* html.medium {
  font-size: calc(100 / 2048 * 100vw);
} */

/* m端适配 */
/* html.small {
  font-size: calc(100 / 750 * 100vw);
}

@media (max-width: 750px) {
  html {
    font-size: calc(100 / 750 * 100vw);
  }
} */



/* 头部样式公共 */
.header {
  width: 100%;
  background: rgba(6, 0, 9, 0.5);
  height: 1rem;
  position: relative;
  z-index: 10;
  --navWidth: 12rem;
  --innerWidth: 14.5rem;
}

.header__inner {
  width: var(--innerWidth);
  height: 100%;
  margin: 0 auto;

  position: relative;
  z-index: 1;
}

.header__logo {
    height: 100%;
    width: 3rem;
    display: flex;
    justify-content: center;
}

.header__logo img {
  height: 1.2rem;
  width: 1.35rem;
  display: block;
}

.header__nav {
  height: 100%;
  position: relative;
}

.nav-list {
  width: var(--innerWidth);
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  /* gap: 0.6rem; */
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 0;
  width: 1.4rem;
  /* height: 0.03rem; */
}
.nav-item:hover{
  font-size: 0.3rem;
}
.nav-item:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 0.03rem;
  background: url(../image/header-underline.png) no-repeat;
  background-size: cover;
  z-index: 0;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  letter-spacing: 0.01rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.nav-link p{
  font-size: 0.24rem;
  color: #fff;
  font-family: 'bdzyjt';
}


.nav-dropdown {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 0;
  background: rgba(6, 0, 9, 0.5);
  border: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.12rem);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}



.header.nav-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

.nav-dropdown__inner {
  width: var(--innerWidth);

  margin:0 auto;
}

.nav-dropdown__grid {
  position: relative;
  z-index: 1;
  padding: 0rem 0 0.16rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.nav-dropdown__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0.6rem;
  width: 1.4rem;
}
.nav-dropdown__middle{
   width: 3rem;
}
.nav-dropdown__col a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.1rem 0.06rem;
  font-size: 0.18rem;
  color: #ffffff;
  white-space: nowrap;
  font-family: 'bdzyjt';
}

.nav-dropdown__col a:hover {
  color: #fff;
  text-decoration: underline #fff32f;
   text-underline-offset: 0.03rem;
}

.nav-dropdown__col--empty {
  min-height: 0.6rem;
}
.footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1.5rem;
    background: #000;
    z
}
.footer .container{
    width: 14rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .fnav a:first-child {
    margin-left: 0;
}
.footer .finfo {
    line-height: 0.26rem;
    margin-top: 0.2rem;
}
.footer .fnav{
    color: #f2f2f2;
}
.footer .fnav a {
    color: #f2f2f2;
    margin: 0 0.1rem;
    font-size: 0.14rem;
}
.footer .finfo p {
    font-size: 0.12rem;
    color: #f2f2f2;
}
.footer .finfo p a{
    color: #f2f2f2;
}
.footer .flogo img{
    width: 2.3rem;
    height: 0.75rem;
}
