.content-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column
}

.home-container {
    width: 100%;
    overflow-x: hidden
}

.top-section {
    position: relative;
    width: 100%
}

.bg-container {
    position: relative;
    width: 100%;
    height: 46vw;
    overflow: visible
}

.bg-image {
    width: 100%;
    height: auto;
    max-height: 1000px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: none
}

.top-right {
    position: absolute;
    top: 73px;
    right: 90px;
    display: flex;
    align-items: center;
    gap: 20px
}

.phone-icon {
    cursor: pointer
}

.phone-icon img {
    width: 40px;
    height: 40px
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: hsla(0,0%,100%,.9);
    border-radius: 20px
}

.search-icon {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 10px
}

.search-container input {
    width: 300px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #333
}

.search-container input:focus {
    outline: none
}

.search-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 1000
}

.search-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color .3s;
    position: relative
}

.search-item:hover {
    background-color: #f5f7fa
}

.divider {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #eee
}

.countdown-container {
    position: absolute;
    /**right: 120px;
    top: 110px;**/
    right: 10vw;
    top: 11vw;
    z-index: 2
}

.countdown-box {
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.countdown-number {
    font-size: 48px;
    font-weight: 700;
    color: #004098
}

.countdown-text {
    font-size: 24px;
    color: #333;
    margin-top: 5px
}

.bottom-images {
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 23vw;
    left: 0;
    right: 0;
    z-index: 1
}

.bottom-dh {
    position: absolute;
    margin-right: 10px; /* 图片之间的间距 */
    top: 45vw;
    z-index: 1000;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
}

.image-box {
    position: relative;
    border-radius: 55px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    cursor: pointer
}
 
  .image-box:first-child {
    width: 28vw;
  }
  
  .image-box:nth-child(2) {
      width: 15vw;
  }
  
  .image-box:nth-child(3) {
      width: 15vw;
  }

.image-box img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
}

.download-btn,.image-content,.learn-more {
    display: none
}

.video-section {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center
}

.video-bg {
    width: 100%;
    max-height: 1800px;
    display: block
}

.video-content {
    position: absolute;
    left: 60px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 80px;
    padding: 40px 60px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    overflow: visible
}

.video-hidden {
    display: none
}

.video-title {
    font-size: 56px;
    font-weight: 700;
    color: #004098;
    margin-bottom: 20px
}

.video-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px
}

.video-player-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background-color: #000
}

.video-player-container .video-js {
    width: 100%;
    height: 100%;
    border-radius: 20px
}

.video-js .vjs-big-play-button {
    display: none!important
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
    transition: transform .2s
}

.custom-play-button:hover {
    transform: translate(-50%,-50%) scale(1.1)
}

.headline-section {
    padding: 60px;
    margin-top: 60px;
    min-height: 900px
}

.headline-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px
}

.headline-title {
    font-size: 56px;
    font-weight: 700;
    color: #004098;
    text-align: center;
    margin-bottom: 20px
}

.title-order-button {
    cursor: pointer;
    transition: transform .2s
}

.title-order-button:hover {
    transform: scale(1.1)
}

.headline-content {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 694px;
    margin-top: 50px;
    position: relative
}

.headline-image-container {
    position: relative;
    height: 694px;
    border-radius: 80px;
    overflow: hidden
}

.headline-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
    border-radius: 80px
}

.headline-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    background: linear-gradient(180deg,#b8cfea,#004098);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px
}

.headline-title-text {
    color: #fff;
    font-size: 40px;
    margin: 0;
    text-align: center
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform .2s
}

.nav-button:hover {
    transform: translateY(-50%) scale(1.1)
}

.nav-left {
    left: 30px
}

.nav-right {
    right: 30px
}

.headline-placeholder {
    position: relative;
    width: 1432px;
    height: 694px;
    border-radius: 80px;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.placeholder-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .3;
    border-radius: 80px
}

.news-section {
    padding: 80px 60px
}

.news-content-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1432px;
    margin: 0 auto;
    gap: 80px
}

.bn123 {
  display: none;
}
.in123 {
  display: none;
}
.nciactive {
  display: block;
}

.news-image-container {
    position: relative;
    width: 42vw;
    height: 430px;
    border-radius: 80px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1)
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f7fa;
    border-radius: 80px
}

.news-text {
    flex: 1;
    max-width: 600px
}

.news-title {
    font-size: 56px;
    font-weight: 700;
    color: #004098;
    margin-bottom: 40px
}

.news-desc {
    font-size: 24px;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.6
}

.news-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #004098;
    cursor: pointer;
    transition: opacity .2s
}

.news-link > a {
  text-decoration: none;
  color: #004098;
  display: flex;
  align-items: center;
}

.news-link:hover {
    opacity: .8
}

.arrow-icon {
    width: 24px;
    height: 24px
}

.news-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform .2s;
    z-index: 1;
    border-radius: 50%;
    padding: 15px
}

.news-nav-button.news-nav-left {
    left: 0
}

.news-nav-button.news-nav-right {
    right: 0
}

.news-nav-button:hover {
    transform: translateY(-50%) scale(1.1)
}

.bices-news {
    background: #fff
}

.industry-news {
    background: #f5f7fa
}

.news-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 80px;
    transition: transform .3s ease
}

.news-image-container:hover .news-image {
    transform: scale(1.05)
}

.partners-section {
    width: 100%;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden
}

.partners-title {
    font-size: 56px;
    font-weight: 700;
    color: #004098;
    margin-bottom: 60px
}

.partners-container {
    width: 100%;
    max-width: 1432px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.partners-track {
    display: flex;
    transition: transform .03s linear;
    width: -moz-fit-content;
    width: fit-content
}

.partner-logo {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s;
    margin: 0 30px;
    box-sizing: border-box;
    padding: 10px
}

.partner-logo:hover {
    opacity: .8
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.partners-container:hover .partners-track {
    transition: none
}

.go-top-button {
    position: fixed;
    right: 40px;
    bottom: 33vh;
    width: auto;
    height: auto;
    cursor: pointer;
    z-index: 1000;
    transition: transform .2s;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transform: scale(.47)
}

.go-top-button:hover {
    transform: scale(.47) translateY(-5px)
}

.go-top-button img {
    width: auto;
    height: auto
}

.image-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.5);
    cursor: pointer;
    transition: all .3s ease
}

.indicator.active {
    background-color: #fff;
    transform: scale(1.2)
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  width: 70vw; /* 或者指定一个具体的宽度 */
}
.scroll-container img {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(300%); }
  to { transform: translateX(-2400%); }
}
