.top {
  width: 100%;
  min-width: 1200px;
  position: relative;
  z-index: 999;
  transition: all 0.3s;
}

.top .submenu-app {
  display: none;
}

.top .top_box {
  padding: 10px 35px;
  /* 0.75rem 2.1875rem */
  width: 100%;
  height: 100%;
  z-index: 20;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
}

.top .top_box .logo {
  height: 62px;
  margin-right: 44px;
}

.top .top_box .logo img {
  height: 100%;
}

.top .top_box .right_cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

.top .top_box .right_cont .wzbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
}

.top .top_box .right_cont .wzbs span {
  margin: 0 14px;
  position: relative;
}

.top .top_box .right_cont .wzbs span a {
  text-decoration: none;
  color: #333;
}

.top .top_box .right_cont .wzbs span:not(:last-of-type):after {
  content: '';
  position: absolute;
  width: 1px;
  height: 21px;
  background: #333;
  left: calc(100% + 15px);
  top: calc((100% - 21px) / 2);
}

.top .top_box .right_cont .wzbs .bg1 {
  padding: 2px 24px;
  border-radius: 50px;
  background: #e6e6e6;
  color: #999;
}

.top .top_box .right_cont .wzbs .bg2 {
  padding: 2px 14px;
  border: 1px solid #c7c7c7;
  border-radius: 50px;
  color: #666;
}

.top .top_box .right_cont .wzbs .bg2 a {
  display: flex;
  align-items: center;
}

.top .top_box .right_cont .wzbs .bg2 img {
  width: 16px;
  margin-right: 6.44px;
}

.top .top_box .right_cont .wzbs .bg2:hover {
  border-color: #b11d2b;
  background: #b11d2b;
}

.top .top_box .right_cont .wzbs .bg2:hover a {
  color: #fff;
}

.top .top_box .right_cont .wzbs .bg2:hover img {
  filter: brightness(0) invert(1);
}

.top .top_box .right_cont .wzbs .bg3:hover {
  color: #b11d2b;
}

.top .top_box .right_cont .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top .top_box .right_cont .menu ul {
  display: flex;
  align-items: center;
  flex: 1;
}

.top .top_box .right_cont .menu ul li {
  color: #333;
  flex: 1;
}

.top .top_box .right_cont .menu ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.top .top_box .right_cont .menu ul li.hover a {
  color: #b11d2b;
}

.top .top_box .right_cont .menu ul li.hover span {
  position: relative;
}

.top .top_box .right_cont .menu ul li.hover span:before {
  content: '';
  position: absolute;
  width: 11px;
  height: 8px;
  background: url("../../images20241010/index/index20240614_11.png") center center no-repeat;
  background-size: 100% 100%;
  right: calc(100% + 2px);
  top: calc((100% - 8px) / 2);
}

.top .top_box .right_cont .menu ul li.hover span:after {
  content: '';
  position: absolute;
  width: 11px;
  /* 0.6875rem */
  height: 8px;
  /* 0.5rem */
  background: url("../../images20241010/index/index20240614_11.png") center center no-repeat;
  background-size: 100% 100%;
  left: calc(100% + 2px);
  /* 0.125rem */
  top: calc((100% - 8px) / 2);
  /* 0.5rem */
}

.top .top_box .right_cont .menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 96px;
  height: 28px;
  border-radius: 50px;
  border: 0;
  margin: 0 5px 0 35px;
  background: linear-gradient(151.07deg, #d99b55 0%, #e3b446 49.4%, #ffcc80 100%), linear-gradient(90deg, #f23412 1.39%, #d2240b 100%), linear-gradient(90deg, #ffd991 1.39%, #d4943b 100%);
}

.top .top_box .right_cont .menu button span {
  color: #fff;
  font-size: 14px;
}

.top .top_box .right_cont .menu button img {
  width: 16px;
  /* 1.375rem */
  margin-left: 12.66px;
  /* 0.7912rem */
}

.top .top_box.shrink {
  transition: all 0.3s;
  transition: top 0.6s 1s ease-out;
}

.top .submenu {
  height: 380px;
  /* 27.5rem */
  width: 100%;
  background: white;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06);
  top: -100vh;
  left: 0;
  position: absolute;
  box-sizing: border-box;
  padding: 14px 0;
  /* 1.25rem 0 */
  z-index: 1;
  transition: top 0.5s;
}

.top .submenu.show {
  top: 100%;
}

.top .submenu .conter {
  height: 100%;
}

.top .submenu .submenu_cont {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  z-index: -1;
}

.top .submenu .submenu_cont:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  left: 20.125%;
  top: 0;
  background: #e6e6e6;
}

.top .submenu .submenu_cont .left_menu {
  width: 20.125%;
  height: 100%;
  transform: translateX(-64px);
  /* -4rem */
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-sizing: border-box;
  padding-right: 3.0625%;
}

.top .submenu .submenu_cont .left_menu span {
  color: #333;
  margin-bottom: 40px;
  cursor: pointer;
  font-weight: bold;
}

.top .submenu .submenu_cont .left_menu span.hover {
  color: #B21E28;
}

.top .submenu .submenu_cont .right_cont {
  width: calc(72.75% - 1px);
  height: 100%;
  box-sizing: border-box;
  margin: 0 2% 0 5%;
  position: relative;
}

.top .submenu .submenu_cont .right_cont .cont {
  opacity: 0;
  transform: translateY(64px);
  /* 4rem */
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  padding-right: 24px;
  /* 1.5rem */
  z-index: -1;
}

.top .submenu .submenu_cont .right_cont .cont::-webkit-scrollbar {
  width: 6px;
  /* 0.375rem */
  background: #eee;
  border-radius: 50px;
  /* 3.125rem */
}

.top .submenu .submenu_cont .right_cont .cont::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 50px;
  /* 3.125rem */
}

.top .submenu .submenu_cont .right_cont .cont .text p {
  color: #666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit a {
  color: #666;
  display: inline-block;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit ul {
  padding-left: 2em;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit ul li:before {
  content: '';
  position: absolute;
  right: calc(100% + 4px);
  width: 4px;
  height: 4px;
  top: calc((100% - 4px) / 2);
  border-radius: 50%;
  background: #666;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit.hasSub a {
  position: relative;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit.hasSub ul a:hover {
  color: #b11d2b;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit.hasSub.expand > a:after {
  transform: rotateZ(180deg);
}

.top .submenu .submenu_cont .right_cont .cont .text .tit:not(.hasSub) a:hover {
  color: #b11d2b;
}

.top .submenu .submenu_cont .right_cont .cont .text .tit:first-of-type a {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.448;
}

.top .submenu .submenu_cont .right_cont .cont.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
  z-index: 1;
}

.top .submenu .submenu_cont.show {
  z-index: 1;
}

.top .submenu .submenu_cont.show .left_menu {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s;
}

.fadeDown {
  opacity: 0;
  transform: translateY(80px);
  /* 5rem */
}

.fadeDown.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
}

.top-app {
  display: none;
}

.submenu-app {
  display: none;
}

@media (min-width: 768px) and (max-width: 1920px) {
  .top {
    height: 80px;
  }
  .wzbs {
    font-size: 14px;
  }
  .menu ul li {
    font-size: 16px;
  }
  .left_menu span {
    font-size: 16px;
  }
  .right_cont .cont .text {
    width: calc((100% - 100px) / 6);
    margin-right: 20px;
  }
  .right_cont .cont .text p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
  }
  .right_cont .cont .text .tit a {
    font-size: 12px;
    line-height: 2.6;
  }
  .right_cont .cont .text > .tit:first-of-type a {
    font-size: 14px;
    line-height: 1.6;
  }
  .right_cont .cont .text:nth-of-type(6n) {
    margin-right: 0;
  }
}

@media (min-width: 1920px) and (max-width: 2650px) {
  .top {
    height: 90px;
  }
  .top .submenu {
    height: 420px;
  }
  .wzbs {
    font-size: 16px;
  }
  .menu ul li {
    font-size: 18px;
  }
  .left_menu span {
    font-size: 18px;
  }
  .right_cont .cont {
    margin-right: 20px;
  }
  .right_cont .cont .text {
    width: calc((100% - 100px) / 6);
  }
  .right_cont .cont .text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
  }
  .right_cont .cont .text .tit a {
    font-size: 14px;
    line-height: 2.6;
  }
  .right_cont .cont .text > .tit:first-of-type a {
    font-size: 16px;
    line-height: 1.6;
  }
  .right_cont .cont .text:nth-of-type(6n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 390* 16);
  }
  body {
    padding-top: 3.5rem;
  }
  .top {
    display: none;
  }
  .top-app {
    display: block;
    width: 100%;
    height: 3.5rem;
    position: fixed;
    z-index: 110;
    transition: all 0.3s;
    top: 0;
    background-color: #fff;
  }
  .top-app .top_box {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .top-app .top_box .left {
    height: 1.875rem;
  }
  .top-app .top_box .left a {
    height: 100%;
  }
  .top-app .top_box .left a img {
    height: 100%;
  }
  .top-app .top_box .right {
    display: flex;
    align-items: center;
  }
  .top-app .top_box .right img {
    height: 1.5rem;
  }
  .top-app .top_box .right > a:first-of-type {
    font-size: 0;
    margin-right: 1rem;
  }
  .top-hidden {
    transform: translateY(-100%);
  }
  .submenu-app {
    position: fixed;
    display: none;
    opacity: 0;
    height: calc(100% - 3.5rem);
    overflow: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 0;
    right: 0;
    z-index: 199;
    transition: opacity 0.5s ease;
    flex-direction: column;
  }
  .submenu-app::-webkit-scrollbar {
    display: none;
  }
  .submenu-app .submenu-head {
    background: rgba(0, 0, 0, 0.8);
    padding: 0 1rem;
    height: 3.5rem;
    position: relative;
  }
  .submenu-app .submenu-head .close {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .submenu-app .submenu-head .close .mx {
    background-color: #fff;
    display: inline-block;
    height: .125rem;
    width: 1.5rem;
    position: relative;
    transition: background .2s;
    text-indent: 1000px;
    white-space: nowrap;
    background-color: transparent;
  }
  .submenu-app .submenu-head .close .mx::before {
    top: -1.8667vw;
    content: "";
    background-color: #fff;
    height: inherit;
    position: absolute;
    left: 0;
    right: 0;
    /* transition: .2s; */
    transform: translateY(1.8667vw) rotate(45deg);
  }
  .submenu-app .submenu-head .close .mx::after {
    bottom: -1.8667vw;
    content: "";
    background-color: #fff;
    height: inherit;
    position: absolute;
    left: 0;
    right: 0;
    transition: .2s;
    transform: translateY(-1.8667vw) rotate(-45deg);
  }
  .submenu-app .submenu-head .back {
    display: none;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .submenu-app .submenu-head .back img {
    height: .875rem;
  }
  .submenu-app .submenu-head .back-show {
    display: block;
  }
  .submenu-app .submenu-head .submenu-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    color: #fff;
  }
  .submenu-show {
    display: flex;
    opacity: 1;
    flex-direction: column;
  }
  .submenu-content {
    flex: 1;
    overflow: hidden;
  }
  .submenu-content .main_m {
    height: 100%;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.8);
    display: none;
  }
  .submenu-content .main_m li {
    line-height: 4.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .submenu-content .main_m li > a {
    font-size: 1.25rem;
    color: #fff;
    width: 100%;
    display: block;
  }
  .submenu-content .main_m li > div {
    font-size: 1.25rem;
    color: #fff;
  }
  .submenu-content .main_m li img {
    width: .75rem;
  }
  .submenu-content .main_m_show {
    display: block;
  }
  .submenu-content .menu-detail-panel {
    height: 100%;
    display: none;
  }
  .submenu-content .menu-detail-panel .left-menu {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    width: 30%;
    overflow-y: scroll;
    text-align: center;
    color: #fff;
  }
  .submenu-content .menu-detail-panel .left-menu .left-menu-ul {
    display: none;
  }
  .submenu-content .menu-detail-panel .left-menu .left-menu-ul li {
    line-height: 3.375rem;
    font-size: 1rem;
  }
  .submenu-content .menu-detail-panel .left-menu .left-menu-ul .left-active {
    border-bottom: 1px solid #ff3333;
  }
  .submenu-content .menu-detail-panel .left-menu .left-menu-ul-show {
    display: block;
  }
  .submenu-content .menu-detail-panel .right-menu {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    flex: 1;
    overflow-y: scroll;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel {
    display: none;
    color: #fff;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul > li .title-wrap {
    padding: 0 1rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul > li .title-wrap a {
    font-size: .875rem;
    width: 100%;
    display: block;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul > li .title-wrap > div {
    font-size: .875rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .expand {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .expand > a {
    max-width: 88%;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .expand img {
    height: .75rem;
    width: .375rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .expand .arrowDown {
    transform: rotate(90deg);
    transition: all 0.2s ease;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .children-1 {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .children-1 .title-wrap {
    padding-left: 2rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .children-2 {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .right-active-ul .children-2 .title-wrap {
    padding-left: 3rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel .title-wrap {
    line-height: 2.375rem;
  }
  .submenu-content .menu-detail-panel .right-menu .right-active-panel-show {
    display: block;
  }
  .submenu-content .menu-detail-panel-show {
    display: flex;
  }
}
