/**
 * ########################################################################################################################
 * ### Header - Pc
 * ########################################################################################################################
 */
#header { display: none; }
.header-pc-wrapper { position: fixed; width: 100%; left: 0; top: 0; z-index: 60; color: #FFFFFF; font-size: 18px; transition: all 0.6s, color 0s, font-size 0.1s; display: flex; justify-content: space-between; padding: 0 2%; }

/* 隐藏 */
.header-pc-wrapper.hide { opacity: 0; }

/* 第一屏 */
.header-pc-wrapper.first-screen {  background: #333333; }

/* 内页Header */
.header-pc-wrapper.header-inner-page { background: #FFFFFF; color: #000000; }

/* 媒体查询 */
 


/* Logo */
/* 首页：显示白色Logo，隐藏黑色Logo */
.header-pc-wrapper .logo { width: 100%; display: block;   }
.header-pc-wrapper .logo-black { display: none; }

/* 内页：显示黑色Logo，隐藏白色Logo */
.header-pc-wrapper.header-inner-page .logo { display: none; }
.header-pc-wrapper.header-inner-page .logo-black { display: block; }

 

/* 菜单为偶数 */
.header-pc-wrapper .logo-link-fixed {   width: 200px;  display: flex; align-items: center; justify-content: center; opacity: 1;  }

/* 菜单为奇数 */
.header-pc-wrapper .logo-link-clone { width: 0px; overflow: hidden; transition: all 0.6s, color 0s, font-size 0.1s; }
.header-pc-wrapper .logo-link-clone .logo { width: 80px; transform: scale(0); opacity: 0; }

/* 媒体查询 */
 


/* 导航菜单 */
/* 一级菜单 */
.header-pc-wrapper .nav-wrap-first { height: 80px; display: flex; align-items: center; justify-content: center;  }
.header-pc-wrapper .nav-list-first {   flex-shrink: 0; height: 100%; display: flex; align-items: center; justify-content: center;  }
.header-pc-wrapper .item-first { padding: 0 0.36rem; height: 100%; display: flex; align-items: center;   }
.header-pc-wrapper .link-first {  font-size: 16px;color: #fff; }
.header-pc-wrapper .dropdown-icon { font-size: 16px; }
.header-pc-wrapper .link-first:hover{ color: #c9141d;}

.nva-wrap-icon{ overflow: hidden; display: flex; align-items: center;align-content: center; width: 200px; justify-content: space-between;}
.nva-wrap-icon i{ font-size: 24px;}
.nva-wrap-icon i:hover{ color: #c9141d;}
.nva-wrap-icon .btn{ height: 30px; line-height: 30px; padding: 0 20px; border-radius: 6px; border: 1px solid #fff; font-size: 14px; margin-left: 5%;}
.nva-wrap-icon .btn:hover{ background-color: #c9141d;border: 1px solid #c9141d;}

/* Header收起 */
.header-pc-wrapper.shrink .nav-wrap-first { height: 80px; padding-top: 0; }

/* 菜单为偶数 */
.header-pc-wrapper .nav-list-first_left { justify-content: flex-end; }
.header-pc-wrapper .nav-list-first_right { justify-content: flex-start; }

/* 菜单为奇数 */
.header-pc-wrapper.odd .item-first_logo-item { padding: 0; }

/* Header收起 + 菜单为偶数 */
.header-pc-wrapper.shrink.even .nav-list-first_left {   }
.header-pc-wrapper.shrink.even .nav-list-first_right {  }

/* Header收起 + 菜单为奇数 */
.header-pc-wrapper.shrink.odd .logo-link-fixed {   }
.header-pc-wrapper.shrink.odd .logo-link-clone {   }
.header-pc-wrapper.shrink.odd .logo-link-clone .logo {   }
.header-pc-wrapper.shrink.odd .item-first_logo-item {  }

/* 中间logo右边的布局为二级导航在右边，图片在左边 */
.header-pc-wrapper.even .nav-list-first_right .child-nav-wrap { flex-direction: row-reverse; }

/* 媒体查询 */
@media screen and (max-width: 1366px) {
  .header-pc-wrapper .nav-wrap-first {   padding-top: 60px; }
  .header-pc-wrapper.shrink .nav-wrap-first { height: 72px; }
  .header-pc-wrapper.shrink.even .nav-list-first_left { padding: 0 80px; }
  .header-pc-wrapper.shrink.even .nav-list-first_right { padding: 0 80px; }
}
@media screen and (max-width: 1024px) {
  .header-pc-wrapper .nav-wrap-first { height: 130px; padding-top: 50px; }
  .header-pc-wrapper.shrink .nav-wrap-first { height: 70px; }
  .header-pc-wrapper.shrink.even .nav-list-first_left { padding: 0 46px; }
  .header-pc-wrapper.shrink.even .nav-list-first_right { padding: 0 46px; }
}
@media screen and (max-width: 860px) {
  .header-pc-wrapper .nav-wrap-first {  padding-top: 40px; }
  .header-pc-wrapper.shrink .nav-wrap-first { height: 60px; }
  .header-pc-wrapper.shrink.even .nav-list-first_left { padding: 0 30px; }
  .header-pc-wrapper.shrink.even .nav-list-first_right { padding: 0 30px; }
}



/* 子导航菜单 */
.header-pc-wrapper .child-nav-wrap { position: fixed; z-index: -1; width: 100%; top: -100vh; background: #666666; left: 0; display: flex; opacity: 0; transition: opacity 0.6s 0.3s; color: #FFFFFF; }
.header-pc-wrapper .child-nav-wrap.show { top: 80px; opacity: 1; }

/* 左侧盒子 */
.header-pc-wrapper .left-group { flex: 1; flex-shrink: 0; position: relative; background: #1B1B1B; overflow: hidden; display: flex; align-items: center; justify-content: center; }

/* 二级菜单 */
.header-pc-wrapper .nav-wrap-second { width: auto; max-width: 2rem; display: flex; justify-content: flex-end; padding: 0; font-size: 16px; height: 100%; position: relative; padding-top: 0.4rem; }
/* .header-pc-wrapper.even .nav-list-first_right .nav-wrap-second { padding: 40px 0 40px 2.2rem; justify-content: flex-start; } */
.header-pc-wrapper .nav-list-second { display: flex; flex-direction: column; }
.header-pc-wrapper .item-second { padding: 5px 0; display: flex; align-items: center; }
/* .header-pc-wrapper.even .nav-list-first_right .item-second { flex-direction: row-reverse; } */
/* .header-pc-wrapper.even .nav-list-first_right .item-second .arrow-icon-right { transform: rotate(180deg); } */
.header-pc-wrapper .item-second:nth-child(even) .link-second::after { left: 100%; }
.header-pc-wrapper .item-second:nth-child(odd) .link-second::after { right: 100%; }
.header-pc-wrapper .item-second.active:nth-child(even) .link-second::after { left: 0; }
.header-pc-wrapper .item-second.active:nth-child(odd) .link-second::after { right: 0; }
.header-pc-wrapper .link-second { position: relative; overflow: hidden; display: inline-block; padding: 3px 0; }
.header-pc-wrapper .link-second::after { content: ""; width: 100%; height: 1px; background: #FFFFFF; position: absolute; bottom: 0; transition: all 0.6s; }
.header-pc-wrapper .arrow-icon-right { font-size: 12px; margin-left: 3px; }

/* 三级菜单 */
.header-pc-wrapper .nav-wrap-third { position: absolute; z-index: 9; transition: opacity 0.6s; font-size: 15px; line-height: 1.2; opacity: 0; left: calc(100% + 0.2rem); width: 0; height: 100%; top: 0; display: flex; padding-top: 0.43rem; overflow-x: hidden;  }
/* .header-pc-wrapper.even .nav-list-first_right .nav-wrap-third { right: auto; left: -500px; text-align: right; } */
.header-pc-wrapper .item-second.active .nav-wrap-third { opacity: 1; width: 2rem; }
/* .header-pc-wrapper.even .nav-list-first_right .item-second.active .nav-wrap-third { right: auto; left: 4.2rem; } */
.header-pc-wrapper .item-third { padding: 4px 0; }
.header-pc-wrapper .link-third { position: relative; overflow: hidden; display: inline-block; padding: 3px 0; }
.header-pc-wrapper .link-third::after { content: ""; width: 100%; height: 1px; background: #FFFFFF; position: absolute; bottom: 0; transition: all 0.6s; }
.header-pc-wrapper .item-third:nth-child(even) .link-third::after { left: 100%; }
.header-pc-wrapper .item-third:nth-child(odd) .link-third::after { right: 100%; }
.header-pc-wrapper .item-third.active:nth-child(even) .link-third::after { left: 0; }
.header-pc-wrapper .item-third.active:nth-child(odd) .link-third::after { right: 0; }

/* 右侧盒子 */
.header-pc-wrapper .right-group { flex: 1; flex-shrink: 0; }
.header-pc-wrapper .imgs-wrap {  background: #333333; padding: 60px 0; height: 100%; display: flex; align-items: center; justify-content: center; }
.header-pc-wrapper .img-box { display: block; width: 80%; }
.header-pc-wrapper .img-outer { width: 100%; padding-bottom: 50%; position: relative; }
.header-pc-wrapper .img-inner { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.header-pc-wrapper .img { display: block; width: 100%; height: 100%; opacity: 0; transform: scale(1); -o-object-fit: cover; object-fit: cover; position: absolute; z-index: 9; left: 0; top: -100%; transition: all 0.6s; }
.header-pc-wrapper .img.show { transform: scale(1); opacity: 1; top: 0; }

/* Header收起时 */
.header-pc-wrapper.shrink .child-nav-wrap { top: -100vh; }
.header-pc-wrapper.shrink .child-nav-wrap.show { top: 80px; }

/* 媒体查询 */
@media screen and (max-width: 1366px) {
  .header-pc-wrapper .child-nav-wrap.show { top: 150px; }
  .header-pc-wrapper.shrink .child-nav-wrap.show { top: 70px; }
  .header-pc-wrapper .nav-wrap-second { font-size: 14px; padding-bottom: 80px; }
  .header-pc-wrapper .item-second { padding: 3px 0; }
  .header-pc-wrapper .nav-wrap-third { font-size: 14px; }
  .header-pc-wrapper .item-third { padding: 3px 0; }
}
@media screen and (max-width: 1024px) {
  .header-pc-wrapper .child-nav-wrap.show { top: 130px; }
  .header-pc-wrapper.shrink .child-nav-wrap.show { top: 68px; }
  .header-pc-wrapper .nav-wrap-second { font-size: 13px; padding-bottom: 80px; }
  .header-pc-wrapper .item-second { padding: 3px 0; }
  .header-pc-wrapper .nav-wrap-third { font-size: 13px; }
  .header-pc-wrapper .item-third { padding: 3px 0; }
}
@media screen and (max-width: 860px) {
  .header-pc-wrapper .child-nav-wrap.show { top: 100px; }
  .header-pc-wrapper.shrink .child-nav-wrap.show { top: 58px; }
  .header-pc-wrapper .nav-wrap-second { font-size: 12px; padding-bottom: 80px; }
  .header-pc-wrapper .item-second { padding: 2px 0; }
  .header-pc-wrapper .nav-wrap-third { font-size: 12px; }
  .header-pc-wrapper .item-third { padding: 2px 0; }
}



/* 鼠标移动到菜单上时添加底色 */
.header-pc-wrapper:not(.first-screen):hover .logo-link-fixed {   }
.header-pc-wrapper:not(.first-screen):hover .nav-wrap-first {   }



/**
 * ########################################################################################################################
 * ### Header - Mo
 * ########################################################################################################################
 */
/* Wrap */
.header-mo-wrapper .header-mo-wrap { position: fixed; z-index: 15; width: 100%; height: 58px; left: 0; top: -100px; display: flex; align-items: center; justify-content: space-between; color: #FFFFFF; padding: 0 0.72rem; transition: all 0.6s; background: #000000; }

/* 内页 */
.header-mo-wrapper.header-inner-page .header-mo-wrap { background: #FFFFFF; color: #000000; }

/* Logo */
/* 首页：显示白色Logo，隐藏黑色Logo */
.header-mo-wrapper .header-mo-wrap .logo { width: 96px; }
.header-mo-wrapper .header-mo-wrap .logo-black { display: none; }

/* 内页：显示黑色Logo，隐藏白色Logo */
.header-mo-wrapper.header-inner-page .header-mo-wrap .logo { display: none; }
.header-mo-wrapper.header-inner-page .header-mo-wrap .logo-black { display: block; }

/* 菜单按钮 */
.header-mo-wrapper .header-mo-wrap .menus-icon { font-size: 44px; }



/* Mask */
.header-mo-wrapper .header-mo-content { position: fixed; z-index: 180; width: 100%; height: 100%; left: -100%; top: 0; background: #333333; transition: all 0.3s; opacity: 0; display: flex; flex-direction: column; }
.header-mo-wrapper .header-mo-content.show { opacity: 1; left: 0; }
.header-mo-wrapper .header-mo-content.hidden { opacity: 0; transition: all 0.6s; }



/* Top */
.header-mo-wrapper .header-mo-content .top-wrap { width: 100%; height: 58px; left: 0; top: 0; display: flex; align-items: center; justify-content: space-between; color: #FFFFFF; padding: 0 0.72rem; flex-shrink: 0; }
.header-mo-wrapper .header-mo-content .logo { width: 96px; }
.header-mo-wrapper .header-mo-content .close-icon { font-size: 20px; width: 30px; height: 30px; background: rgba(255, 255, 255,0.3); display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* 导航菜单 */
.header-mo-wrapper .header-mo-navs { flex: 1; overflow-y: auto; }
.header-mo-wrapper .header-mo-navs-content { color: #FFFFFF; font-size: 0.24rem; padding: 0.72rem 0.72rem 1rem; }

/* 一级菜单 */
.header-mo-wrapper .item-first { font-size: 18px; padding: 6px 0; }
.header-mo-wrapper .link-first { display: inline-block; position: relative; overflow: hidden; padding: 4px 0; }
.header-mo-wrapper .link-first::after { content: ""; position: absolute; width: 100%; height: 1px; background: #FFFFFF; bottom: 0; z-index: 9; transition: all 0.6s; }
.header-mo-wrapper .item-first:nth-child(even) .link-first::after { left: 100%; }
.header-mo-wrapper .item-first:nth-child(odd) .link-first::after { right: 100%; }
.header-mo-wrapper .item-first.active:nth-child(even) .link-first::after { left: 0; }
.header-mo-wrapper .item-first.active:nth-child(odd) .link-first::after { right: 0; }
.header-mo-wrapper .arrow-icon-right { transition: all 0.6s; }
.header-mo-wrapper .item-first.active .arrow-icon-right-first { transform: rotate(90deg); }

/* 二级菜单 */
.header-mo-wrapper .nav-wrap-second { height: 0; overflow: hidden; font-size: 15px; transition: all 0.6s; }
.header-mo-wrapper .nav-list-second { padding: 10px 10px 0; }
.header-mo-wrapper .item-second { padding: 6px; }
.header-mo-wrapper .link-second { display: inline-block; position: relative; overflow: hidden; padding: 4px 0; }
.header-mo-wrapper .link-second::after { content: ""; position: absolute; width: 100%; height: 1px; background: #FFFFFF; bottom: 0; z-index: 9; transition: all 0.6s; }
.header-mo-wrapper .item-second:nth-child(even) .link-second::after { left: 100%; }
.header-mo-wrapper .item-second:nth-child(odd) .link-second::after { right: 100%; }
.header-mo-wrapper .item-second.active:nth-child(even) .link-second::after { left: 0; }
.header-mo-wrapper .item-second.active:nth-child(odd) .link-second::after { right: 0; }
.header-mo-wrapper .item-second.active .arrow-icon-right-second { transform: rotate(90deg); }

/* 三级菜单 */
.header-mo-wrapper .nav-wrap-third { height: 0; overflow: hidden; font-size: 12px; transition: all 0.6s; }
.header-mo-wrapper .nav-list-third { padding: 10px 10px 0; }
.header-mo-wrapper .item-third { padding: 4px; }
.header-mo-wrapper .link-third { display: inline-block; position: relative; overflow: hidden; padding: 4px 0; }
.header-mo-wrapper .link-third::after { content: ""; position: absolute; width: 100%; height: 1px; background: #FFFFFF; bottom: 0; z-index: 9; transition: all 0.6s; }
.header-mo-wrapper .item-third:nth-child(even) .link-third::after { left: 100%; }
.header-mo-wrapper .item-third:nth-child(odd) .link-third::after { right: 100%; }
.header-mo-wrapper .item-third.active:nth-child(even) .link-third::after { left: 0; }
.header-mo-wrapper .item-third.active:nth-child(odd) .link-third::after { right: 0; }

/* 媒体查询 */
@media screen and (max-width: 768px) {
  .header-mo-wrapper .header-mo-wrap { top: 0; }
}

