@font-face {
  font-family: 'Roboto New';
  font-display: swap;
  src: url('../font/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 400; /* 常规字重 */
  font-style: normal;
}

@font-face {
  font-family: 'Roboto New';
  src: url('../font/Roboto-VariableFont_wdth,wght.ttf') format('woff2');
  font-display: swap;
  font-weight: 700; /* 粗体 */
  font-style: normal;
}

/* 只在PC端显示 */
@media (min-width: 768px) {
  .is_pc_show {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .is_pc_show {
    display: none !important;
  }
}

/* 只在移动端显示 */
@media (max-width: 767px) {
  .is_h5_show {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .is_h5_show {
    display: none !important;
  }
}

html, body {
  font-family: "Roboto New" !important;
  box-sizing: border-box;
  padding: 0;
  background-color: #f9f9f9 !important;
  margin: 0;
  position: relative;
}
input, button {
  outline: none;
}
input::-ms-clear,input::-ms-reveal{
  display: none;
}
span {
  word-break: break-word;
}
p {
  word-break: break-word;
  margin: 0;
}
a {
  cursor: pointer;
}
a:focus {
  text-decoration: none;
}
/*滚动条样式*/
.scrollBox {
  scrollbar-width: none;
}
.scrollBox::-webkit-scrollbar {/*滚动条整体样式*/
  width: 0;    /*高宽分别对应横竖滚动条的尺寸*/
  height: 0;
  scrollbar-color: transparent transparent;
}
.scrollBox::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.06);
}
.scrollBox::-webkit-scrollbar-track {/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.02);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.02);
}
.home-header {
  height: 120px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}
.home-header-head {
  height: 70px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-header-message {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-header-message img {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.home-header-box {
  width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-header-logo {
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.home-header-logo img:nth-child(1) {
  width: 110px;
  max-height: 40px;
  object-fit: cover;
  margin-right: 20px;
}
.home-header-logo img:nth-child(2) {
  width: 110px;
  max-height: 40px;
  object-fit: cover;
}
.home-header-search {
  width: 500px;
  height: 40px;
  box-sizing: border-box;
  padding: 0 6px 0 24px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 20px;
  margin: 0 24px;
  display: flex;
  align-items: center;
  position: relative;
}
#headerSearch {
  display: none;
}
.home-header-search input {
  flex: 1;
  border: none;
  background-color: transparent;
  margin-right: 16px;
}
.home-header-search input::placeholder {
  color: rgba(0, 0, 0, .3);
}
.home-header-search img {
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.home-header-search-box {
  width: 500px;
  padding: 30px 30px 10px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
}
/*#bannerSearch:focus ~ .home-header-search-box {
  display: block;
}*/

.home-header-search-title {
  color: rgba(0, 0, 0, .8);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.home-header-search-item {
  height: 44px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}
.home-header-search-item img {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.home-header-search-item span {
  color: rgba(0, 0, 0, .8);
  font-size: 14px;
}
.home-header-search-item span:hover {
  color: #FF6A20;
}
.home-header-handle {
  display: flex;
  align-items: center;
}
.home-header-handle .cdiv:nth-child(1) {
  margin-left: 0!important;
}
.home-header-handle .cdiv {
  height: 40px;
  font-size: 0;
  cursor: pointer;
  user-select: none;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .1);
  margin-left: 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.home-header-handle .cdiv img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.home-header-handle .cdiv span {
  color: rgba(0, 0, 0, .8);
  font-size: 14px;
  white-space: nowrap;
}
.home-nav {
  height: 50px;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
  background-color: rgba(0, 0, 0, .3);
  display: flex;
  justify-content: center;
}
.home-nav-box {
  min-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-nav-item {
  height: 50px;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.home-nav-item span {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
.home-nav-item img {
  width: 8px;
  height: 8px;
  margin-left: 4px;
}

.home-nav-item:hover {
  background-color: #FF6A20;
}
.home-nav-item:hover span {
  color: #fff !important;
}
.home-nav-item:hover .home-nav-down {
  display: block;
}
.home-nav-item:hover .home-nav-down-act {
  display: none;
}
.home-nav-down-act {
  display: none;
}
.home-nav-act {
  border-color: #FF6A20;
  background-color: #fff !important;
}
.home-nav-act .home-nav-item span {
  color: #000;
}
.home-nav-act .home-nav-down {
  display: none;
}
.home-nav-act .home-nav-down-act {
  display: block;
}
.home-main {
  margin-top: 70px;
}
.home-white {
  background-color: #fff;
  overflow: hidden;
}
.home-swiper {
  width: 100%;
  height: 560px;
  position: relative;
}
.banner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-bg {
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, .3);*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.swiper-dots {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 20;
}
.swiper-pagination {
  width: 140px !important;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0 !important;
}
.banner-swiper-pagination {
  height: 16px !important;
}
.banner-swiper-prev {
  width: 16px;
  height: 16px;
  background-image: unset;
  margin-top: 0;
  top: 0;
}
.banner-swiper-prev::after {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.banner-swiper-next {
  width: 16px;
  height: 16px;
  background-image: unset;
  margin-top: 0;
  top: 0;
}
.banner-swiper-next::after {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.banner-swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #ff6a20 !important;
  opacity: 1;
}
.home-banner-content {
  width: 1140px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.home-banner-box {
  width: 530px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-banner-box .home-header-search {
  height: 40px;
  margin: 0 0 20px;
}
.home-banner-title {
  min-height: 60px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  word-break: break-word;
  margin-bottom: 20px;
  position: absolute;
  bottom: 312px;
  width: 1140px;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, 0);
}
.home-banner-title span {
  width: 530px;
  word-break: break-word;
  display: inline-block;
}
.home-banner-keyword {
  display: flex;
  align-items: center;
}
.home-banner-label {
  color: #fff;
  font-size: 14px;
  margin-right: 16px;
  white-space: nowrap;
}
.home-banner-text {
  display: flex;
  align-items: center;
}
.home-banner-text div {
  height: 30px;
  line-height: 29px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  padding: 0 14px;
  border: 1px solid #fff;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, .5);
  margin-right: 10px;
}
.home-banner-text div:hover {
  color: #FF6A20;
  border-color: #FF6A20;
}
.home-grid {
  width: 1140px;
  margin: 36px auto;
}
.home-grid-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-grid-title-l {
  display: flex;
  align-items: center;
}
.home-grid-title-l img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.home-grid-title-l span {
  color: #000;
  font-size: 26px;
  font-family: 'Times New Roman';
}
.home-grid-title-r {
  display: flex;
  align-items: center;
}
.home-grid-title-r a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-left: 16px;
}
.home-editors {
  display: flex;
  align-items: flex-start;
}
.home-editors .home-card-title:hover {
  cursor: pointer;
}
.home-editors-l {
  flex: 1;
  margin-right: 24px;
  display: flex;
  flex-wrap: wrap;
}
.home-editors-l div:nth-child(2n) {
  margin-right: 0;
}
.home-editors-card {
  width: 364px;
  font-size: 0;
  border-radius: 4px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .05);
  background-color: #fff;
  margin: 0 24px 0 0;
  transition: all 0.3s linear;
}
.home-editors-card:hover .home-card-name {
  text-decoration: underline;
}
.home-editors-card:hover .home-card-title {
  /*text-decoration: underline;*/
}
.home-card:hover .home-card-name {
  text-decoration: underline;
}
.home-card:hover .home-card-title {
  /*text-decoration: underline;*/
}
.home-editors-cover {
  width: 364px;
  min-width: 364px;
  height: 200px;
  cursor: pointer;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
  font-size: 0;
  overflow: hidden;
}
.home-editors-cover img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: all 0.3s linear;
}
.home-editors-cover:hover img {
  transform: scale(1.1);
}
.home-editors-card .home-card {
  border-bottom: none !important;
}
.home-card {
  width: 364px;
  box-sizing: border-box;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-right: 24px;
}
.home-card-title {
  color: #6c6c6c;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}
.home-card-name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-card-info {
  color: rgba(0, 0, 0, .5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 14px;
}
.home-card-time {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-card-time span {
  color: rgba(0, 0, 0, .5);
  font-size: 12px;
}
.home-card-time div {
  display: flex;
  align-items: center;
}
.home-card-time div img {
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin-left: 10px;
}
.home-card-label {
  height: 22px;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-card-label div {
  color: rgba(0, 0, 0, .3);
  font-size: 10px;
  cursor: pointer;
  user-select: none;
  line-height: 22px;
  padding: 0 8px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, .05);
  margin: 0 8px 8px 0;
}
.home-editors-r {
  width: 364px;
}
.home-editors-r .home-editors-cover {
  height: 359px;
}
.home-adv {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-adv-box {
  width: 364px;
  height: 82px;
  font-size: 0;
}
.home-adv-box img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
}
.home-tabs {
  height: 38px;
  margin-bottom: 16px;
  display: flex;
}
.home-tabs-box {
  border-radius: 19px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  display: flex;
  align-items: center;
}
.home-tabs-item {
  height: 100%;
  line-height: 38px;
  color: rgba(0, 0, 0, .4);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  border-radius: 19px;
  padding: 0 18px;
  transition: all 0.3s linear;
}
.home-tabs-act {
  color: #114372;
  background-color: rgba(46, 143, 232, .2);
}
.trendingTabs {
  display: none;
}
#trendingTabs1 {
  display: block;
}
.home-trending {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.home-trending-l {
  width: 679px;
  display: flex;
  flex-direction: column;
}
.home-trending-card {
  margin: 0 24px 24px 0;
  display: flex;
  align-items: center;
}
.home-trending-card:hover .home-card-name {
  text-decoration: underline;
}
.home-trending-card:hover .home-card-title {
  /*text-decoration: underline;*/
}
.home-trending-cover {
  width: 364px;
  min-width: 364px;
  height: 250px;
  font-size: 0;
  margin-right: 24px;
  border-radius: 3px;
  overflow: hidden;
}
.home-trending-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-trending-cover:hover img {
  transform: scale(1.1);
}
.home-trending-box {
  flex: 1;
  height: 250px;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
}
.home-trending-box .home-card-title {
  margin-bottom: 0;
}
.home-trending-box .home-card-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 12px;
  /*margin-top: -16px;*/
}
.home-trending-box .home-card-label {
  /*margin-top: -20px;*/
}
.home-trending-box .home-card-info {
  cursor: pointer;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-trending-box .home-card-label div {
  margin-bottom: 0;
}
.home-trending-r {
  flex: 1;
  height: 524px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-trending-item {
  display: flex;
  align-items: center;
}
.home-trending-item:hover .home-card-title {
  /*text-decoration: underline;*/
}
.home-trending-item:hover .home-card-name {
  text-decoration: underline;
}
.home-trending-item-cover {
  width: 170px;
  min-width: 170px;
  height: 150px;
  font-size: 0;
  margin-right: 24px;
  border-radius: 3px;
  overflow: hidden;
}
.home-trending-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-trending-item-cover:hover img {
  transform: scale(1.1);
}
.home-trending-item .home-trending-box {
  height: 150px;
}
.home-trending-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-trending-list .home-card:nth-child(3n) {
  margin-right: 0;
}
.home-focus {
  width: 100%;
  height: 340px;
  background: url("../image/focus-bg.jpg") center no-repeat;
  background-size: cover;
  margin-bottom: 70px;
  position: relative;
}
.home-focus-content {
  width: 1140px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.home-focus-box {
  width: 456px;
  height: 100%;
  padding-top: 48px;
}
.home-focus-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: 90px;
  margin: 0 0 16px;
}
.home-focus-info {
  margin-bottom: 40px;
}
.home-focus-info p {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
}
.home-focus-info p span {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  font-style: italic;
}
.home-focus-bt {
  height: 40px;
  cursor: pointer;
  user-select: none;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  padding: 0 24px;
  border-radius: 40px;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
}
.home-focus-bt:hover {
  color: #fff;
  background: linear-gradient(to bottom, #2B7AC3, #0C4C87);
}
.home-focus-label {
  flex: 1;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-focus-label p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.home-focus-swiper {
  width: 844px;
  height: 158px;
  padding: 8px 0 8px 8px;
  background-color: rgba(255, 255, 255, .3);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translate(0, -50%);
}
.home-focus-banner {
  width: 100%;
  /*height: 340px;*/
  margin-bottom: 36px;
  position: relative;
}
.home-focus-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-focus-banner-box {
  width: 1140px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
.home-focus-banner-box .home-focus-bt {
  margin-bottom: 32px;
}
.focus-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.focus-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-events {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home-events-box {
  width: 558px;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 20px 12px;
  position: relative;
}
.home-events-icon {
  width: 98px;
  height: 98px;
  position: absolute;
  top: 20px;
  right: 30px;
}
.home-events-l {
  box-shadow: 0 4px 9px 0 rgba(21, 86, 146, .1);
  background: linear-gradient(to bottom, #DCEEFF, #ffffff);
}
.home-events-r {
  box-shadow: 0 4px 9px 0 rgba(255, 106, 32, .1);
  background: linear-gradient(to bottom, #FFD3BD, #ffffff);
}
.home-events-title {
  margin: 28px 0 20px
}
.home-events-title p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
.home-events-title span {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
}
.home-events-card {
  max-height: 124px;
  padding: 20px 12px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.home-events-card-act {
  max-height: 240px;
}
.home-events-card-act .home-events-item-play {
  display: none;
}
.home-events-card-act .home-events-banner {
  display: block;
}
.home-events-card-act .home-events-item-l a {
  width: 100%;
  max-height: 90px;
}
.home-events-card-act .home-events-item-l a:nth-child(1) {
  height: auto !important;
}
.home-events-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.home-events-item-l {
  flex: 1;
  margin-right: 16px;
}
.home-events-item-l span {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}
.home-events-item-l a {
  width: 60%;
  height: 76px;
  max-height: 76px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-events-banner {
  width: 240px;
  height: 80px;
  font-size: 0;
  text-align: center;
  border-radius: 3px;
  display: none;
}
.home-events-banner img {
  /*width: 100%;*/
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}
.home-events-config {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.home-events-config-l {
  flex: 1;
  margin-right: 16px;
}
.home-events-config-l div {
  display: flex;
  align-items: center;
}
.home-events-config-l div span {
  width: 90px;
  min-width: 90px;
  color: rgba(0, 0, 0, .6);
  font-size: 14px;
}
.home-events-config-l div p {
  color: #000;
  font-size: 14px;
}
.home-events-bt {
  height: 40px;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  cursor: pointer;
  user-select: none;
  padding: 0 24px;
  border-radius: 40px;
  background-color: #FF6A20;
  transition: all 0.3s ease;
}
/*.home-events-bt:hover {*/
/*  color: #fff;*/
/*  background: linear-gradient(to bottom, #2B7AC3, #0C4C87);*/
/*}*/
.home-events-item-play {
  width: 36px;
  height: 36px;
  font-size: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-events-item-play img {
  width: 24px;
  /*height: 14px;*/
}
.home-events-l .home-events-card {
  box-shadow: 0 4px 8px 0 rgba(21, 86, 146, 0.05);
}
.home-events-l .home-events-item-play {
  background-color: #E2F1FF;
}
.home-events-l .home-events-title p {
  color: #155692;
}
.home-events-l .home-events-item-l span {
  color: #155692;
}
.home-events-r .home-events-card {
  box-shadow: 0 4px 8px 0 rgba(255, 106, 32, 0.05);
}
.home-events-r .home-events-item-play {
  background-color: #FFEFE9;
}
.home-events-r .home-events-title p {
  color: #FF6A20;
}
.home-events-r .home-events-item-l span {
  color: #FF6A20;
}
.home-video {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(to bottom, #1A2025, #09365D, #0D2242);
  overflow: hidden;
}
.home-video-main {
  width: 1140px;
  margin: 0 auto;
}
.home-video .home-grid-title-l span {
  color: #fff;
}
.home-video .home-grid-title-r a {
  color: #fff;
}
.home-video .home-tabs-box {
  background-color: rgba(255, 255, 255, .2);
}
.home-video .home-tabs-item {
  color: rgba(255, 255, 255, .8);
}
.home-video .home-tabs-act {
  color: #114372;
  background-color: #EAF5FF;
}
.home-video-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.videoTabs {
  display: none;
}
#videoTabs1 {
  display: block;
}
.home-video-item {
  width: 266px;
  border-radius: 3px;
  margin: 0 24px 24px 0;
}
.home-video-list .home-video-item:nth-child(4n) {
  margin-right: 0;
}
.home-video-cover {
  width: 266px;
  min-width: 266px;
  height: 150px;
  font-size: 0;
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.home-video-cover-bg {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
}
.home-video-cover-bt {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10;
}
.home-video-cover-time {
  height: 22px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  line-height: 22px;
  padding: 0 12px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.home-video-cover:hover .home-video-cover-bg {
  transform: scale(1.1);
}
.home-video-box {
  height: 142px;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
  background-color: rgba(0, 0, 0, .3);
  box-sizing: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-video-title {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}
.home-video-info {
  flex: 1;
  margin-top: 6px;
}
.home-video-info a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-video-info a:hover {
  text-decoration: underline;
}
.home-video-time {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-video-time span {
  color: #B0B0B0;
  font-size: 12px;
}
.home-video-time div {
  display: flex;
  align-items: center;
}
.home-video-time div img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 10px;
}
.home-advertising {
  width: 1140px;
  margin: 36px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-advertising-box {
  width: 212px;
  height: 80px;
  cursor: pointer;
  font-size: 0;
  margin-right: 20px;
}
.home-advertising-box img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
}
.home-advertising .home-advertising-box:nth-child(5n) {
  margin-right: 0;
}
.home-streaming {
  display: flex;
}
.home-streaming-l {
  width: 560px;
  margin-right: 20px;
}
.home-streaming-video {
  width: 560px;
  margin-bottom: 20px;
  position: relative;
}
.home-streaming-video video {
  width: 100%;
  height: 432px;
  border-radius: 5px;
  object-fit: cover;
  background-color: #000;
}
.home-streaming-video iframe {
  width: 100%;
  height: 432px;
  border-radius: 5px;
  object-fit: cover;
  background-color: #000;
}
.home-streaming-video-cover {
  width: 100%;
  padding: 0 30px 30px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.home-streaming-video-title {
  display: flex;
  align-items: center;
}
.home-streaming-video-title span {
  color: #fff;
  font-size: 14px;
}
.home-streaming-video-title p {
  color: #fff;
  font-size: 12px;
  margin: 0 10px;
}
.home-streaming-video-content {
  width: 318px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 20px;
}
.home-streaming-video-time {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-streaming-video-time span {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}
.home-streaming-video-time div {
  display: flex;
  align-items: center;
}
.home-streaming-video-time div img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 10px;
}
.home-streaming-video-view {
  height: 22px;
  color: rgba(0, 0, 0, .8);
  font-size: 10px;
  line-height: 22px;
  padding: 0 10px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, .8);
  display: inline-block;
}
.home-streaming-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.home-streaming-cover {
  width: 266px;
  min-width: 266px;
  height: 206px;
  font-size: 0;
  cursor: pointer;
  margin-right: 20px;
  border-radius: 3px;
  overflow: hidden;
}
.home-streaming-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-streaming-cover:hover img {
  transform: scale(1.1);
}
.home-streaming-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-streaming-title {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 600;
}
.home-streaming-info {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  margin: 0 0 16px;
  display: inline-block;
}
.home-streaming-info:hover {
  text-decoration: underline;
}
.home-streaming-time {
  color: rgba(0, 0, 0, .5);
  font-size: 12px;
}
.home-streaming-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-streaming-tags div {
  height: 22px;
  color: rgba(0, 0, 0, .3);
  font-size: 10px;
  line-height: 22px;
  padding: 0 10px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, .05);
  margin: 0 10px 10px 0;
}
.home-streaming-r {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-streaming-r .home-streaming-card {
  margin-bottom: 20px;
}
.home-streaming-r .home-streaming-card:nth-last-child(1) {
  margin-bottom: 0;
}
.home-special-tabs {
  display: flex;
  align-items: center;
  width: calc(100% + 6px);
  padding-top: 2px;
  padding-left: 4px;
  overflow-y: hidden;
}
.home-special-tabs-box {
  min-width: 162px;
  height: 118px;
  cursor: pointer;
  user-select: none;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-special-tabs-box img {
  height: 64px;
  margin-bottom: 8px;
}
.home-special-tabs-box span {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.home-special-img-act {
  display: none;
}
.home-special-tabs-act {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
}
.home-special-tabs-act span {
  color: #FF6A20;
}
.home-special-tabs-act .home-special-img {
  display: none;
}
.home-special-tabs-act .home-special-img-act {
  display: block;
}
#specialTabs1 {
  display: flex;
}
.home-special-main {
  height: 422px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
  display: none;
  align-items: center;
}
.home-special-cover {
  width: 268px;
  min-width: 268px;
  height: 100%;
  font-size: 0;
  margin-right: 20px;
  border-radius: 3px 0 0 3px;
  position: relative;
  overflow: hidden;
}
.home-special-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-special-cover:hover img {
  transform: scale(1.1);
}
.home-special-cover-title {
  width: 100%;
  color: #fff;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 32px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.home-special-r {
  flex: 1;
}
.home-special-title {
  padding-right: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-special-title p {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}
.home-special-title a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.home-special-list {
  display: flex;
}
.home-special-box {
  width: 268px;
  margin-right: 20px;
}
.home-special-box-cover {
  width: 268px;
  min-width: 268px;
  height: 210px;
  font-size: 0;
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  margin-bottom: 10px;
}
.home-special-box-cover img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-special-box-cover:hover img {
  transform: scale(1.1);
}
.home-special-card {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.home-special-card-title {
  height: 36px;
}
.home-special-card-title a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-special-card-title a:hover {
  text-decoration: underline;
}
.home-special-card-time {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-special-card-time span {
  color: rgba(0, 0, 0, .5);
  font-size: 12px;
}
.home-special-card-time div {
  display: flex;
  align-items: center;
}
.home-special-card-time div img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 10px;
}
.home-special-content {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.home-special-content .home-special-card {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.home-special-content .home-special-card:nth-child(3n) {
  border-bottom: none;
}
.home-level {
  width: 100%;
  height: 360px;
  background: linear-gradient(to right, #C7E4FF, #E8F4FF, #C7E4FF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-level-main {
  width: 1140px;
  display: flex;
  align-items: center;
}
.home-level-content {
  margin-right: 24px;
}
.home-level-head span:nth-child(1) {
  color: #155692;
  font-size: 26px;
}
.home-level-head span:nth-child(2) {
  color: #FF6A20;
  font-size: 26px;
}
.home-level-title {
  color: #155692;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  margin: 0 0 24px;
}
.home-level-info {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 24px;
}
.home-level-bt {
  height: 40px;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  line-height: 40px;
  padding: 0 24px;
  border-radius: 40px;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
}
.home-level-bt:hover {
  color: #fff;
  background: linear-gradient(to bottom, #2B7AC3, #0C4C87);
}
.home-level-cover {
  width: 434px;
  min-width: 434px;
  height: 246px;
  font-size: 0;
  overflow: hidden;
}
.home-level-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-level-banner {
  width: 100%;
  /*height: 360px;*/
  position: relative;
}
.home-level-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-reads {
  display: flex;
}
.home-reads-card {
  width: 266px;
  height: 466px;
  border-radius: 3px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  margin-right: 20px;
  overflow: hidden;
}
.home-reads-cover {
  width: 266px;
  min-width: 266px;
  height: 300px;
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
}
.home-reads-cover img {
  width: 100%;
/*  height: 100%;*/
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-reads-cover:hover img {
  transform: scale(1.1);
}
.home-reads-content {
  width: 100%;
  height: 144px;
  padding: 28px 20px 12px;
  box-sizing: border-box;
  background-color: #fff;
}
.home-reads-info {
  height: 72px;
}
.home-reads-info a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-reads-info a:hover {
  text-decoration: underline;
}
.home-reads-time {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-reads-time span {
  color: rgba(0, 0, 0, .5);
  font-size: 12px;
}
.home-reads-time div {
  display: flex;
  align-items: center;
}
.home-reads-time div img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 10px;
}
.home-reads-down {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-reads-down a {
  color: #000;
  font-size: 12px;
}
.home-reads-down span {
  width: 2px;
  height: 12px;
  background-color: rgba(0, 0, 0, .5);
  margin: 0 12px;
}
.home-reads-r {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-reads-box {
  height: 222px;
  border-radius: 3px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  display: flex;
  overflow: hidden;
}
.home-reads-box-cover {
  width: 172px;
  min-width: 172px;
  height: 100%;
  font-size: 0;
  overflow: hidden;
}
.home-reads-box-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.home-reads-box-cover:hover img {
  transform: scale(1.1);
}
.home-reads-r .home-reads-time {
  margin: 14px 0 10px;
}
.home-reads-bt {
  display: flex;
  justify-content: flex-end;
}
.home-reads-bt a {
  height: 40px;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  cursor: pointer;
  user-select: none;
  padding: 0 24px;
  border-radius: 40px;
  background-color: #EFEFEF;
  transition: all 0.3s ease;
}
.home-reads-bt a:hover {
  text-decoration: underline;
}
.home-company {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}
.home-company-title {
  color: #155692;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
  margin: 0 0 20px;
}
.home-company-bt {
  text-align: center;
  margin-bottom: 40px;
}
.home-company-bt div {
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  cursor: pointer;
  user-select: none;
  padding: 0 24px;
  border-radius: 50px;
  background: linear-gradient(to bottom, #2B7AC3, #0C4C87);
  display: inline-block;
}
.home-company-swiper {
  height: 360px;
  user-select: none;
  position: relative;
}
.company-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.company-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-swiper-prev {
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, .95), transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.company-swiper-next {
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .95), #ffffff);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.company-swiper-prev .swiper-button-prev {
  background-image: unset;
  left: 50%;
  transform: translate(-50%, 0);
}
.company-swiper-next .swiper-button-next {
  background-image: unset;
  right: 50%;
  transform: translate(100%, 0);
}
.company-swiper-prev .swiper-button-prev::after {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}
.company-swiper-next .swiper-button-next::after {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}
.company-swiper-scroll {
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
}
.company-swiper-scroll-box {
  padding: 0 115px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 50px;
}
.company-swiper-scroll-box img {
 /*width: 230px;
  height: 120px;*/
  max-width: 230px;
  max-height: 120px;
  cursor: pointer;
  object-fit: contain;
  padding: 10px;
}
.company-swiper-scroll-box:nth-child(2n) {
  padding: 0 !important;''
}
.home-company-search {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-company-search-name {
  color: #FF6A20;
  font-size: 32px;
  font-weight: 600;
  /*text-shadow: 0 4px 4px rgba(0, 0, 0, .25);*/
  margin-right: 32px;
}
.home-company-search-box {
  width: 500px;
  height: 44px;
  box-sizing: border-box;
  padding: 4px 4px 4px 24px;
  border-radius: 44px;
  border: 1px solid #B0B0B0;
  display: flex;
  align-items: center;
}
.home-company-search-box input {
  flex: 1;
  height: 100%;
  color: #333;
  font-size: 14px;
  border: none;
  margin-right: 16px;
}
.home-company-search-box input::placeholder {
  color: rgba(0, 0, 0, .3);
}
.home-company-search-box div {
  height: 36px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 36px;
  background: linear-gradient(to bottom, #FF6A20, #FF1515);
}



.home-footer {
  background-color: #E9F4FF;
  overflow: hidden;
}
.home-footer-main {
  width: 1284px;
  margin: 44px auto 30px;
}
.home-footer-box {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home-footer-logo {
  width: 498px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.home-footer-logo img:nth-child(1) {
  width: 110px;
  max-height: 40px;
  object-fit: cover;
  margin-right: 20px;
}
.home-footer-logo img:nth-child(2) {
  width: 110px;
  max-height: 40px;
  object-fit: cover;
}
.home-footer-list {
  flex: 1;
  display: flex;
}
.home-footer-content {
  width: 200px;
  margin-right: 20px;
}
.home-footer-item {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.home-footer-link {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.home-footer-platform {
  width: 498px;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.home-footer-platform a {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.home-footer-platform a img {
  width: 100%;
  height: 100%;
}
.home-footer-link-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-footer-link-list a {
  color: #000;
  font-size: 12px;
  margin-right: 16px;
}
.home-footer-link-list a:hover {
  color: rgba(0, 0, 0, .3);
  text-decoration: underline;
}
.home-nav-info {
  width: calc(100% - 30px);
  /*max-height: 0;*/
  max-height: 500px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, 0);
  //transition: all 0.3s ease;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

}
.home-nav-info-box {
  padding: 30px 20px 0 0;
  border-top: 2px solid #FF6A20;
  display: flex;
  align-items: flex-start;
}
.home-nav-info-box-menu {
  border-right: 1px solid rgba(0, 0, 0, .2);
  margin-right: 30px;
}
.home-nav-info-box-menu a {
  width: 310px;
  height: 40px;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px 0 60px;
  cursor: pointer;
  display: block;
}
.home-nav-info-box-menu a:hover {
  color: #FF6A20 !important;
  background-color: #eee !important;
  text-decoration: underline;
}
.home-nav-info-box-menu-act {
  color: #FF6A20 !important;
  background-color: #eee !important;
  text-decoration: underline;
}
.home-nav-info-name {
  color: rgba(0, 0, 0, .5);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}
.home-nav-info-content {
  display: flex;
  flex-wrap: wrap;
  /*align-items: center;*/
  justify-content: space-between;
}
.home-nav-news {
  width: 50%;
  cursor: pointer;
  box-sizing: border-box;
  padding-right: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.home-nav-news-cover {
  width: 200px;
  min-width: 200px;
  height: 140px;
  font-size: 0;
  margin-right: 8px;
}
.home-nav-news-cover img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}
.home-nav-news-content span {
  color: #155692;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}
.home-nav-news-content a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-nav-video {
  width: 330px;
  height: 68px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}
.home-nav-video img {
  width: 126px;
  height: 52px;
  margin-right: 8px;
}
.home-nav-video span {
  color: #000;
  font-size: 14px;
}
#applications:hover ~ .applications {
  max-height: 500px;
}
#products:hover ~ .products {
  max-height: 500px;
}
#chinaFocus:hover ~ .chinaFocus {
  max-height: 500px;
}
#exhibitions:hover ~ .exhibitions {
  max-height: 500px;
}
#video:hover ~ .video {
  max-height: 500px;
}
#liveStreaming:hover ~ .liveStreaming {
  max-height: 500px;
}
#events:hover ~ .events {
  max-height: 500px;
}

/*#nav1:hover ~ .nav1 {
  max-height: 500px;
}
#nav2:hover ~ .nav2 {
  max-height: 500px;
}
#nav3:hover ~ .nav3 {
  max-height: 500px;
}
#nav4:hover ~ .nav4 {
  max-height: 500px;
}
#nav5:hover ~ .nav5 {
  max-height: 500px;
}
#nav6:hover ~ .nav6 {
  max-height: 500px;
}
#nav7:hover ~ .nav7 {
  max-height: 500px;
}
#nav8:hover ~ .nav8 {
  max-height: 500px;
}
#nav9:hover ~ .nav9 {
  max-height: 500px;
}
#nav10:hover ~ .nav10 {
  max-height: 500px;
}
#nav11:hover ~ .nav11 {
  max-height: 500px;
}
#nav12:hover ~ .nav12 {
  max-height: 500px;
}
#nav13:hover ~ .nav13 {
  max-height: 500px;
}
#nav14:hover ~ .nav14 {
  max-height: 500px;
}
#nav15:hover ~ .nav15 {
  max-height: 500px;
}
#nav16:hover ~ .nav16 {
  max-height: 500px;
}
#nav17:hover ~ .nav17 {
  max-height: 500px;
}
#nav18:hover ~ .nav18 {
  max-height: 500px;
}
#nav19:hover ~ .nav19 {
  max-height: 500px;
}
.home-nav-info:hover {
  max-height: 500px;
}*/

/* 悬停状态 - 显示 */
#nav1:hover ~ .nav1,
#nav2:hover ~ .nav2,
#nav3:hover ~ .nav3,
#nav4:hover ~ .nav4,
#nav5:hover ~ .nav5,
#nav6:hover ~ .nav6,
#nav7:hover ~ .nav7,
#nav8:hover ~ .nav8,
#nav9:hover ~ .nav9,
#nav10:hover ~ .nav10,
#nav11:hover ~ .nav11,
#nav12:hover ~ .nav12,
#nav13:hover ~ .nav13,
#nav14:hover ~ .nav14,
#nav15:hover ~ .nav15,
#nav16:hover ~ .nav16,
#nav17:hover ~ .nav17,
#nav18:hover ~ .nav18,
#nav19:hover ~ .nav19,
.home-nav-info:hover {
  opacity: 1;
  visibility: visible;
}

.color-orange {
  color: #FF6A20;
}
.color-pink {
  color: #CC097E;
}
.color-blue {
  color: #0DAEFF;
}
.color-blue-dark {
  color: #155692;
}
.home-collect-act {
  display: none;
}
.dialog-share {
  background-color: rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
}
.dialog-share-box {
  width: 360px;
  padding: 28px 24px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
}
.dialog-share-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 10;
}
.dialog-share-title {
  color: rgba(0, 0, 0, .8);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-right: 40px;
}
.dialog-share-list {
  margin: 16px 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-share-item {
  cursor: pointer;
  user-select: none;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dialog-share-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.dialog-share-item span {
  color: rgba(0, 0, 0, .7);
  font-size: 12px;
  white-space: nowrap;
}
.dialog-share-search {
  height: 44px;
  padding: 0 4px;
  border: 1px solid #b0b0b0;
  border-radius: 22px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.dialog-share-search input {
  flex: 1;
  height: 100%;
  padding-left: 12px;
  border: none;
  background-color: transparent;
  margin-right: 12px;
}
.dialog-share-copy {
  height: 36px;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(to right, #FF6A20, #FF1515);
}
.swiper_gel{
  width: 10px;
  height: auto;
}
.small_hand {
  cursor: pointer;
}
.home-swiper-mask {
  width: 100%;
  height: 100%;
  /*background: url("../image/home-swiper-mask.png") center no-repeat;*/
  background: linear-gradient(to right,rgb(249 114 46 / 85%),rgba(255, 255, 255, 0.2));

background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
