.scrollGo {
    position: absolute;
    right: 5%;
    bottom: 60px;
    z-index: 3;
    height: 34px;
    visibility: visible;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.scrollGoBox {
    font-size: 16px;
    color: #fff;
    text-align: center;
    -webkit-animation: TopBots 1.2s ease-in-out infinite both;
    -moz-animation: TopBots 1.2s ease-in-out infinite both;
    -ms-animation: TopBots 1.2s ease-in-out infinite both;
    animation: TopBots 1.2s ease-in-out infinite both;
    display: flex;
    align-items: center;
}

.scrollGoIcon {
    width: 20px;
    margin-right: 15px;
}

.scrollGoIcon img {
    width: 100%;
}

@keyframes TopBots {
    0% {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-8px)
    }
}

@-webkit-keyframes TopBots {
    0% {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-8px)
    }
}

@-moz-keyframes TopBots {
    0% {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-8px)
    }
}

@-ms-keyframes TopBots {
    0% {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(-8px)
    }
}

.swiper-pagination {
    position: relative;
    margin-top: 26px;
    bottom: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1c58fe;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 50px;
}

.indexMain {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.indexVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    position: absolute;
    background-size: cover !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}

.videoMpeg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    vertical-align: baseline;
    display: inline-block;
}

.videoMpeg.in,
.videoMpeg.out {
    transition: opacity .3s ease-in-out;
}

.defalutMpeg {
    opacity: 1;
    z-index: 3;
}

.videoMpeg.curr {
    opacity: 1;
}

.annotation {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.annotationIcon {
    width: 1.8vw;
    height: 1.8vw;
    min-width: 30px;
    min-height: 30px;
    background: url(../images/index/icon-2.png) no-repeat center;
    background-size: cover;
    position: relative;
}

.annotationIcon img {
    position: relative;
    z-index: 3;
}

.annotationIcon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: scaleDiffuse 1.5s ease-out infinite;
    z-index: -1;
    outline: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backdrop-filter: blur(0px);
}

.annotationIcon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: scaleAfterDiffuse 1.5s ease-out infinite;
    z-index: -1;
    outline: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backdrop-filter: blur(0px);
}

@keyframes scaleDiffuse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes scaleAfterDiffuse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.annotationList {
    position: absolute;
    top: 49.09%;
    left: 19.6%;
    cursor: pointer;
    z-index: 10;
    transition: all 1s;
}

.annotationList.active {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.annotationList:nth-child(2) {
    left: 39.2%;
    top: 32.42%;
    z-index: 8;
}

.annotationList:nth-child(3) {
    left: 32.5%;
    top: 36.53%;
    z-index: 9;
}

.annotationList:nth-child(4) {
    left: 38.81%;
    top: 50.98%;
    z-index: 7;
}

.annotationList:nth-child(5) {
    left: 57.96%;
    top: 36.3%;
    z-index: 6;
}

.annotationList:nth-child(6) {
    left: 58.5%;
    top: 50.31%;
    z-index: 5;
}

.annotationList:nth-child(7) {
    left: 68%;
    top: 52.59%;
    z-index: 4;
}

.hover {
    display: none;
}

.annotationList.curr .annotationCont,
.annotationList:hover .annotationCont {
    width: 250px;
    padding: 0 25px 0 70px;
}

.annotationList.curr .annotationIcon .default,
.annotationList:hover .default {
    display: none;
}

.annotationList.curr .annotationIcon .hover,
.annotationList:hover .hover {
    display: block;
}

.annotationCont {
    width: 0;
    height: 55px;
    overflow: hidden;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex: 1;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
}

.annotationText {
    font-size: 20px;
    color: #333;
    white-space: nowrap;
}

.annotationArrow {
    width: 8px;
}

.annotationArrow img {
    width: 100%;
}

.infoPos {
    position: absolute;
    bottom: 35px;
    width: 100%;
    z-index: 21;
    transform: translateY(calc(100% + 35px));
    transition: all 0.5s;
}

.infoPos.curr {
    transform: translateY(0);
}

.infoPos .infoPosMain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    align-items: center;
}

.affairsMain {
    display: block !important;
}

.affairs {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 25px;
    display: flex;
}

.affairsLe {
    width: 64.68%;
    color: #fff;
    display: flex;
    position: relative;
}

.affairsLeText {
    font-size: 18px;
    line-height: 32px;
    width: 45.41%;
    text-align: justify;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
    box-sizing: border-box;
}

.affairsLeText::-webkit-scrollbar {
    width: 4px;
    background: transparent;
    border-radius: 5px;
    display: block;
}

.affairsLeText::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.affairsLeText::-webkit-scrollbar-thumb {
    background: #1722b2;
    border-radius: 5px;
}

.affairTime {
    margin: 0 8px;
    display: inline-block;
}

.affairsCont {
    margin-left: 3.1%;
    font-size: 18px;
    line-height: 32px;
}

.affairsContList span {
    font-weight: bold;
}

.affairsContListText {
    display: flex;
}

.affairsContListText em {
    width: 90px;
    margin-right: 15px;
}

.affairsContListDay {
    flex: 1;
}

.guidelines {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    height: 49px;
    background: #1722b2;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin-top: 0.25rem;
}

.guidelinesText {
    margin-left: 7px;
    font-size: 16px;
}

.affairsRi {
    padding-left: 3%;
    margin-left: 0.7%;
    width: calc(100% - 64.68% - 0.7%);
    position: relative;
}

.affairsRi::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
}

.affairsRiTitle {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.affairsRiSwiper {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.affairsRiSwiper .swiper-slide {
    width: calc((100% - 36px) / 3);
    height: 65px;
    border-radius: 10px;
    margin-right: 18px;
    background: rgba(255, 255, 255, 0.38);
    color: #fff;
    font-size: 18px;
}

.affairsRiSwiper .swiper-slide:hover {
    background: linear-gradient(to bottom right, #0292ed 0%, #1646fe 100%);
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}

.affairsRiSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.38);
}

.affairsRiSwiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
}

.affairsRiSwiper .swiper-pagination {
    margin-top: 30px;
}

.infoList {
    display: none;
}

.infoList.curr {
    display: block;
}

.infoPosLe {
    width: 41.87%;
}

.infoPosBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 50px;
    background: #1722b2;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.infoPosLeIcon {
    width: 8px;
}

.infoPosLeIcon img {
    width: 100%;
}

.infoPosBtnText {
    margin-left: 15px;
}

.infoPosLeTitle {
    color: #fff;
    font-size: 36px;
}

.infoPosLeText {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
    box-sizing: border-box;
    text-align: justify;
}

.infoPosLeText::-webkit-scrollbar {
    width: 4px;
    background: transparent;
    border-radius: 5px;
    display: block;
}

.infoPosLeText::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.infoPosLeText::-webkit-scrollbar-thumb {
    background: #1722b2;
    border-radius: 5px;
}

.infoPosLeText::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.8);
}

.swiper-slide {
    background: transparent;
}

.infoPosRi {
    margin-left: 40px;
    width: calc(100% - 41.87% - 40px);
    position: relative;
    display: flex;
    align-items: center;
}

.infoPosRiSwiper {
    overflow: hidden;
}

.infoPosRiSwiper .swiper-slide {
    width: 31%;
    margin-left: calc((100% - 93%) / 3);
}

.infoPosRiSwiper .swiper-slide:first-child {
    margin-left: 0;
}

.infoPosRiListTitle {
    position: absolute;
    bottom: 20px;
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
}

.infoPosRiList {
    position: relative;
}

.infoPosPage {
    margin-left: 30px;
}

.infoPosPage .swiper-button-prev,
.infoPosPage .swiper-button-next {
    position: unset;
    width: 31px;
    height: 31px;
    margin-top: 0;
}

.infoPosPage .swiper-button-prev {
    background: url(../images/index/icon-4.png) center no-repeat;
    background-size: cover;
}

.infoPosPage .swiper-button-next {
    background: url(../images/index/icon-5.png) center no-repeat;
    background-size: cover;
    margin-top: 10px;
}

.infoPosPage .swiper-button-prev:hover {
    background: url(../images/index/icon-4s.png) center no-repeat;
    background-size: cover;
}

.infoPosPage .swiper-button-next:hover {
    background: url(../images/index/icon-5s.png) center no-repeat;
    background-size: cover;
}

.infoPosPage .swiper-button-prev::after,
.infoPosPage .swiper-button-next::after {
    display: none;
}

.overViewList {
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 30px;
    box-sizing: border-box;
    color: #333;
    cursor: pointer;
    text-align: left;
}

.overViewImg {
    width: 4.2vw;
}

.overViewImg img {
    width: 100%;
}

.infoThree {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 22;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    transform: translateY(100%);
}

.infoThree.curr {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.3s;
    transform: translateY(0);
}

.infoThreeBox {
    margin-top: 40px;
}

.mobileFooter {
    display: none;
}

.maskLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.maskLayer.curr {
    opacity: 1;
    pointer-events: auto;
}

.infoThreeList {
    display: none;
}

.infoThreeBoxList {
    display: none;
}

.infoThreeList.curr,
.infoThreeBoxList.curr {
    display: block;
}

.infoThree .infoPosLeText {
    max-height: initial;
    overflow-y: initial;
}

.infoThree .infoThreeBox {
    max-height: 160px;
    overflow-y: auto;
    box-sizing: border-box;
}

.infoThree .infoThreeBox::-webkit-scrollbar {
    width: 4px;
    background: transparent;
    border-radius: 5px;
    display: block;
}

.infoThree .infoThreeBox::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.infoThree .infoThreeBox::-webkit-scrollbar-thumb {
    background: #1722b2;
    border-radius: 5px;
}

.infoThree .infoThreeBox::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.8);
}

.loading {
    background: #fff url(../images/index/loadingBg.jpg) center no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 110;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.loadingCont {
    width: 100%;
}

.emptyOrbitInfo {
    width: 100%;
}

.loadingLogo {
    width: 336px;
    margin: 0 auto;
}

.loadingLogo img {
    width: 100%;
}

.trackImg {
    width: 100%;
}

.trackImg img {
    width: 100%;
}

.flowingLight {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(33, 30, 102, 0) 0%, #1c58fe 30%, #1c58fe 70%, rgba(33, 30, 102, 0) 100%);
    margin: auto 0;
    margin-top: 5vw;
}

.flowingLightBox {
    height: 3px;
    position: absolute;
    left: 0;
    display: flex;
}

.flowingLight em {
    width: 100vw;
    height: 100%;
    background: linear-gradient(90deg, rgba(238, 242, 248, 0) 0%, #eef2f8 20%, #eef2f8 30%, rgba(238, 242, 248, 0) 50%, rgba(238, 242, 248, 0) 60%, #eef2f8 80%, rgba(238, 242, 248, 0) 100%);
}

.emptyOrbitInfo {
    margin-top: 20px;
}

.emptyOrbitImg {
    margin-top: -2px;
    position: absolute;
    width: 21.35%;
    left: 0;
}

.emptyOrbitImg img {
    width: 100%;
}

.progressInfo {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    color: #1c58fe;
    margin-top: 10vw;
    margin-right: 5%;
}

.progressNum {
    font-size: 57px;
    line-height: 1;
    font-weight: bold;
}

.progressPercent {
    font-size: 26px;
    color: #1c58fe;
    margin-left: 7px;
}

.loading.curr {
    opacity: 1;
    pointer-events: auto;
}

canvas {
    background: transparent;
}

.videoMpeg canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opticalValley {
    background: url(../images/index/opticalBg.png) center no-repeat;
    background-size: cover;
    padding: 100px 0;
    box-sizing: border-box;
}

.opticalTopInfo {
    display: flex;
}

.opticalTopTitle {
    font-size: 32px;
    color: #1c58fe;
    font-weight: bold;
    line-height: 1;
}

.opticalTopVideo {
    position: relative;
}

.opticalTopVideoBxo {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.opticalTopVideoBxo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opticalTopVideoPlay {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.opticalTopVideoPlay img {
    width: 100%;
}

.opticalTopLeft {
    width: 36.87%;
}

.opticalTopRightTitle {
    font-size: 24px;
    font-weight: bold;
    display: none;
}

.opticalTopRightText {
    font-size: 16px;
    color: #666666;
    line-height: 32px;
}

.opticalTopRightText p {
    margin-top: 25px;
}

.optSeeMore {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 8px 0;
    box-sizing: border-box;
    width: 102px;
    margin-top: 25px;
    border: 1px solid #1c58fe;
    color: #1c58fe;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.optSeeMore::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 100%;
    background: #1c58fe;
    left: -125%;
    transition: all 0.3s;
    border-radius: 50px;
}

.optSeeMoreBox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.optSeeMore:hover::after {
    left: -10%;
}

.optSeeMore:hover {
    color: #fff;
    border: 1px solid transparent;
}

.optSeeMore:hover .optSeeMoreArrow {
    background: url(../images/index/icon-50.png) center no-repeat;
    background-size: cover;
}

.optSeeMoreText {
    margin-right: 8px;
    font-size: 14px;
}

.optSeeMoreArrow {
    width: 6px;
    height: 11px;
    background: url(../images/index/icon-50s.png) center no-repeat;
    background-size: cover;
}

.opticalTopRight {
    margin-left: 65px;
    flex: 1;
}

.pubSee {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pubSee .seeDetail {
    margin-top: 0;
}

.opticalTopRightInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
}

.opticalTopRightList {
    cursor: pointer;
}

.opticalTopRightListIcon {
    width: 66px;
    margin: 0 auto;
    transition: all 0.5s;
}

.opticalTopRightListIcon img {
    width: 100%;
}

.opticalTopRightListTitle {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.opticalTopRightList:hover .opticalTopRightListIcon {
    transform: rotatey(360deg);
}

.opticalTopRightList:hover .opticalTopRightListTitle {
    font-weight: bold;
    color: #1c58fe;
}

.advantage {
    margin-top: 50px;
}

.advantageTitle {
    font-size: 24px;
    font-weight: bold;
}

.advantageSwiper {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    padding: 10px 2px;
}

.advantageSwiper .swiper-slide {
    margin-right: 35px;
    width: calc((100% - 70px) / 3);
}

.advantageList {
    background: #fff;
    border-radius: 12px;
    padding: 55px 40px;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
}

.advantageList:hover {
    background: url(../images/index/advantageBg.png) center no-repeat;
    background-size: cover;
}

.advantageList:hover .advantageContTitle,
.advantageList:hover .advantageContText {
    color: #fff;
}

.advantageContTitle {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.advantageContText {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
    line-height: 28px;
    height: 140px;
    overflow-y: auto;
    padding-right: 16px;
    text-align: justify;
}

.advantageContText::-webkit-scrollbar {
    width: 3px;
    border-radius: 5px;
    display: block;
}

.advantageContText::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 5px;
}

.advantageContText::-webkit-scrollbar-thumb {
    background: #1c58fe;
    border-radius: 5px;
}

.innovation {
    background: url(../images/index/innovationBg.png) center no-repeat;
    background-size: cover;
    padding: 100px 0 85px 0;
    box-sizing: border-box;
    position: relative;
}

.innovationTop {
    font-size: 32px;
    color: #1c58fe;
    font-weight: bold;
}

.innovationBox {
    margin-top: 50px;
    display: flex;
}

.innovationLeft {
    width: 60%;
}

.innovationRight {
    width: calc(40% - 40px);
    margin-left: 40px;
}

.innovaShareInfo {
    margin-top: 25px;
}

.innovationLeftTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.innovaShareList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 23px;
    padding: 0 20px;
    box-sizing: border-box;
    border-radius: 16px;
    transition: height 0.5s;
    height: 24px;
    position: relative;
}

.innovaShare {
    font-size: 24px;
    font-weight: bold;
}

.seeMore {
    display: flex;
    align-items: center;
}

.zsSeeMore .seeMore {
    display: none;
}

.zsSeeMore .seeMore.curr {
    display: flex;
}

.seeMoreText {
    font-size: 16px;
    color: #999;
}

.seeMoreImg {
    margin-left: 7px;
    width: 7px;
    height: 13px;
    background: url(../images/index/icon-28.png) center no-repeat;
    background-size: cover;
}

.seeMoreImg img {
    width: 100%;
}

.seeMore:hover .seeMoreText {
    color: #1c58fe;
}

.seeMore:hover .seeMoreImg {
    background: url(../images/index/icon-28s.png) center no-repeat;
    background-size: cover;
}

.innovaShareText {
    color: #333;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 135px);
    box-sizing: border-box;
}

.innovaShareTime {
    color: #666;
    font-size: 18px;
    margin-left: 25px;
    font-family: 'Arial';
}

.innovaShareList.curr {
    height: 90px;
    background: url(../images/index/innovaShare.png) top right no-repeat;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
    background-size: cover;
    padding-left: 44px;
}

.innovaShareList.curr .innovaShareText,
.innovaShareList.curr .innovaShareTime {
    color: #1c58fe;
    font-weight: bold;
}

.innovaShareList::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 2px solid #235dfe;
    display: none;
}

.innovaShareList.curr::before {
    display: block;
}

.innovationRight {
    display: flex;
    flex-wrap: wrap;
}

.cardList {
    width: calc(50% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
    padding: 0 30px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    height: 130px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cardList:last-child {
    margin-bottom: 0;
    width: 100%;
}

.cardList::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
}

.cardList:nth-child(1)::after {
    width: 3.542vw;
    height: 4.07vw;
    background: url(../images/index/card-1.png) center no-repeat;
    background-size: cover;
}

.cardList:nth-child(2)::after {
    width: 3.34vw;
    height: 3.91vw;
    background: url(../images/index/card-2.png) center no-repeat;
    background-size: cover;
}

.cardList:nth-child(3)::after {
    width: 3.805vw;
    height: 4.43vw;
    background: url(../images/index/card-3.png) center no-repeat;
    background-size: cover;
}

.cardList:nth-child(4)::after {
    width: 2.97vw;
    height: 3.75vw;
    background: url(../images/index/card-4.png) center no-repeat;
    background-size: cover;
}

.cardList:nth-child(5) {
    background: #fff url(../images/index/card-5s.png) center no-repeat;
    background-size: cover;
}

.cardList:nth-child(5)::after {
    width: 5.105vw;
    height: 5.16vw;
    background: url(../images/index/card-5.png) center no-repeat;
    background-size: cover;
}

.cardList:hover .cardListTitle {
    color: #1c58fe;
}

.cardListTitle {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.cardListText {
    font-size: 16px;
    color: #666666;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.concatSwiper {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    background: #fff url(../images/index/concatBg.png) center no-repeat;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
}

.concatSwiper .swiper-slide {
    width: 25%;
    padding: 50px;
    box-sizing: border-box;
    text-align: left;
    color: #333;
}

.swiper-slide-duplicate-prev .dedicatedLineList::after {
    display: none;
}

.dedicatedLineBox {
    line-height: 30px;
}

.dedicatedLineList::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60%;
    background: #e5e5e5;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.dedicatedLineTitle {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.dedicatedLineList {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    line-height: 26px;
}

.dedicatedLineList:first-child {
    margin-top: 0;
}

.dedicatedLineListBox {
    flex: 1;
    margin-left: 10px;
}

.dedicatedLineList:first-child .dedicatedLineListText {
    font-family: 'Arial';
    color: #333;
}

.dedicatedLineListTitle {
    color: #666666;
    display: inline;
}

.dedicatedLineListText {
    display: inline;
}

.dedicatedLine:hover .dedicatedLineTitle {
    color: #1c58fe;
}

.talent {
    padding: 100px 0;
    box-sizing: border-box;
    position: relative;
}

.talentTitle {
    font-size: 32px;
    color: #1c58fe;
    font-weight: bold;
}

.talentBox {
    margin-top: 40px;
    display: flex;
}

.talentLeftTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.talentLeftTopTitle {
    font-weight: bold;
    font-size: 24px;
}

.talentLeftList {
    margin-top: 40px;
}

.talentLeftList:first-child {
    margin-top: 0;
}

.talentLeftBotList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: #333;
}

.talentLeftBotList:first-child {
    margin-top: 0;
}

.talentLeftBotList:hover .talentLeftBotIcon {
    border: 2px solid #235dfe;
}

.talentLeftBotListCont {
    display: flex;
    align-items: center;
    width: calc(100% - 120px);
}

.talentLeftBotText {
    font-size: 18px;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.talentLeftBotListTime {
    color: #666;
    font-size: 18px;
    font-family: 'Arial';
}

.talentLeftBotList:hover,
.talentLeftBotList:hover .talentLeftBotListTime {
    color: #1c58fe;
    font-weight: bold;
}

.talentLeft {
    width: 48.75%;
}

.talentRight {
    margin-left: 35px;
    width: calc(100% - 48.75% - 35px);
}

.talentRightTop {
    background: url(../images/index/contactInfo.png) center no-repeat;
    background-size: cover;
    padding: 35px 35px;
    box-sizing: border-box;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.contactInfoTitle {
    font-size: 22px;
    font-weight: bold;
}

.contactInfoList {
    display: flex;
    font-size: 14px;
    margin-top: 7px;
}

.talentLeftBotIcon {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 2px solid #999;
}

.dedicatedLineListIcon {
    width: 16px;
    margin-top: 0px;
}

.dedicatedLineListIcon img {
    display: inline-block;
    vertical-align: middle;
}

.contactInfoListIcon {
    margin-top: 3px;
}

.contactInfoDedicatText {
    flex: 1;
    word-break: break-all;
    font-family: 'Arial';
    font-size: 16px;
    margin-top: 1px;
    line-height: 20px;
}

.contactInfoDedicatText a {
    color: #fff;
}

.contactInfoDedicat {
    display: flex;
    flex: 1;
    margin-left: 10px;
}

.contactInfo {
    flex: 1;
}

.contactInfoCont {
    margin-top: 8px;
    display: flex;
}

.codeInfo {
    margin-left: 25px;
}

.codeInfoImg {
    margin: 0 auto;
    width: 92px;
}

.codeInfoImg img {
    width: 100%;
}

.codeInfoText {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
}

.declare {
    display: flex;
    flex-wrap: wrap;
}

.declareList {
    width: calc((100% - 15px) / 2);
    margin-left: 15px;
    padding: 21px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-radius: 10px;
    height: 96px;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.declareList:hover .declareTitle {
    color: #1c58fe;
}

.declareImg {
    transition: all 0.5s;
    display: none;
}

.declareList:hover .declareImg {
    transform: rotateY(360deg);
}

.declareList:nth-child(2n-1) {
    margin-left: 0;
}

.declareTitle {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.declareList::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 6.25vw;
    height: 4.271vw;
}

.declareList:nth-child(1)::after {
    background: url(../images/index/declareBg-1.png) center no-repeat;
    background-size: cover;
}

.declareList:nth-child(2)::after {
    background: url(../images/index/declareBg-2.png) center no-repeat;
    background-size: cover;
}

.declareList:nth-child(3)::after {
    background: url(../images/index/declareBg-3.png) center no-repeat;
    background-size: cover;
}

.declareList:nth-child(4)::after {
    background: url(../images/index/declareBg-4.png) center no-repeat;
    background-size: cover;
}

.declareList:nth-child(5)::after {
    background: url(../images/index/declareBg-5.png) center no-repeat;
    background-size: cover;
}

.declareList:nth-child(6)::after {
    background: url(../images/index/declareBg-6.png) center no-repeat;
    background-size: cover;
}

.contactInfoContList:nth-child(2) {
    flex: 1;
    margin-left: 30px;
}

.guidanceTitle {
    font-size: 32px;
    font-weight: bold;
    color: #1c58fe;
}

.guidanceEntr {
    margin-top: 35px;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.guidanceEntr {
    background: url(../images/index/guidance2.png) no-repeat;
    height: 105px;
    width: 100%;
    background-size: 100% 100%;
    transition: all 0.3s ease-in-out;
}

.guidanceEntr:hover {
    transition: all 0.3s ease-in-out;
    transform: translateY(-3px);
}

.guidanceEntr p {
    line-height: 105px;
    text-align: center;
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 5px;
}

.guidanceEntr img {
    width: 100%;
    transition: all 0.3s;
}

.guidanceEntr:hover img {
    transform: scale(1.03);
}

.guidanceBox {
    margin-top: 55px;
    display: flex;
}

.guideTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guideTopMain {
    display: flex;
    align-items: center;
}

.guideTopList {
    font-size: 24px;
    font-weight: bold;
    margin-left: 45px;
    cursor: pointer;
}

.guideTopList.curr {
    color: #1c58fe;
}

.guideTopList:first-child {
    margin-left: 0;
}

.guideBottom {
    padding: 30px 25px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
    margin-top: 30px;
    background: #fff;
}

.guideBottomList {
    display: none;
}

.guideBottomList.curr {
    display: block;
}

.productInfo {
    margin-left: 30px;
    width: calc(100% - 30px - 48.75%);
}

.guideMain .guideBottom {
    padding: 35px;
}

.holdInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #d5d4d4;
    color: #333;
    margin-bottom: 20px;
    margin-top: -5px;
}

.holdInfo:hover .holdInfoTitle {
    color: #1c58fe;
}

.holdInfoLeft {
    width: 80px;
    color: #1c58fe;
    font-family: 'Arial';
}

.holdInfoRight {
    width: calc(100% - 85px);
    padding-left: 20px;
    position: relative;
}

.holdInfoRight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #ececec;
}

.holdInfoDay {
    font-size: 50px;
    line-height: 1;
    margin-left: 7px;
    font-family: 'Arial';
}

.holdInfoMonth {
    font-size: 18px;
}

.holdInfoTitle {
    font-weight: bold;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    font-size: 18px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.holdInfoText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}

.holdInfoText p,
.holdInfoText span {
    display: inline !important;
}

.guideMain {
    width: 48.75%;
}

.guidanceInfo {
    padding: 90px 0 100px 0;
    box-sizing: border-box;
    background: url(../images/index/guidanceBg.png) center no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
}

.industrialParkContText.industrialParkContText2 {
    padding-bottom: 110px
}

.industrialParkList {
    background: #fff url(../images/index/decoration.png) center no-repeat;
    background-size: cover;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(20, 88, 254, 0.1);
    border-radius: 12px;
    text-align: left;
}

.industrialParkTitle {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.industrialParkCont {
    margin-top: 30px;
}

.industrialParkContList {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
}

.industrialParkContIcon {
    width: 16px;
    margin-top: 3px;
}

.industrialParkContList:nth-child(1) .industrialParkContIcon {
    width: 16px;
    height: 16px;
    background: url(../images/index/icon-49.png) center no-repeat;
    background-size: cover;
}

.industrialParkContList:nth-child(2) .industrialParkContIcon {
    width: 16px;
    height: 18px;
    background: url(../images/index/icon-48.png) center no-repeat;
    background-size: cover;
}

.industrialParkContList:nth-child(2) .industrialParkContText {
    height: 78px;
}

.industrialParkContText {
    font-size: 16px;
    color: #666666;
    margin-left: 10px;
    flex: 1;
    line-height: 26px;
    height: 52px;
    font-family: 'Arial';
}

.industrialParkContText a {
    color: #666;
}

.industrialParkList:hover .industrialParkContText a {
    color: #fff;
}

.industrialParkList .seeDetail {
    padding: 6px 0;
    width: 90px;

}

.industrialParkList .seeDetail .seeDetailText {
    font-size: 12px;
}

.industrialParkList .seeDetail .seeDetailArrow {
    width: 4px;
    height: 9px;
}

.industrialSwiper {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding: 10px 2px;
}

.industrialSwiper .swiper-slide {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
}

.seeDetail {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4170fe;
    border-radius: 50px;
    padding: 8px 0;
    box-sizing: border-box;
    width: 102px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.seeDetail::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 100%;
    background: #1c58fe;
    left: -120%;
    transition: all 0.3s;
    border-radius: 50px;
}

.seeDetailBox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.seeDetail:hover::after {
    left: -10%;
}

.seeDetailText {
    font-size: 14px;
    color: #fff;
    margin-right: 8px;
}

.seeDetailArrow {
    width: 6px;
    height: 11px;
    background: url(../images/index/icon-50.png) center no-repeat;
    background-size: cover;
}

.industrialParkList:hover {
    background: #fff url(../images/index/decorations.png) center no-repeat;
    background-size: cover;
    color: #fff;
}

.industrialParkList:hover .industrialParkContText {
    color: #fff;
}

.industrialParkList:hover .industrialParkContList:nth-child(1) .industrialParkContIcon {
    background: url(../images/index/icon-49s.png) center no-repeat;
    background-size: cover;
}

.industrialParkList:hover .industrialParkContList:nth-child(2) .industrialParkContIcon {
    background: url(../images/index/icon-48s.png) center no-repeat;
    background-size: cover;
}

.industrialParkList:hover .seeDetail::after {
    left: -10%;
}

.industrialParkList .seeDetail:hover::after {
    left: -10%;
}

.industrialParkList .seeDetail:hover {
    font-weight: bold;
}

.opticalPopup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
}

.opticalPopup.curr {
    display: flex;
}

.opticalPopupCont {
    width: 52.3%;
    border-radius: 14px;
    background: url(../images/index/opticalPopup.png) center no-repeat;
    background-size: cover;
    padding: 55px;
    box-sizing: border-box;
}

.opticalPopupTitle {
    font-size: 30px;
    color: #1c58fe;
    font-weight: bold;
}

.opticalPopupText {
    line-height: 30px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.pubAu {
    position: absolute;
    top: -110px;
}

.opticalPopupText::-webkit-scrollbar {
    width: 4px;
    background: transparent;
    display: block;
}

.opticalPopupText::-webkit-scrollbar-track {
    background: #eee;
}

.opticalPopupText::-webkit-scrollbar-thumb {
    background: #1722b2;
}

.opticalPopupText::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.8);
}

.opticalPopupText p {
    margin-top: 20px;
}

.closeOptical {
    width: 47px;
    margin-top: 30px;
    cursor: pointer;
}

.closeOptical img {
    width: 100%;
}

.opticalPopupList {
    display: none;
}

.opticalPopupList.curr {
    display: block;
}

.anchor {
    padding-top: 110px;
}

.goTop {
    width: 61px;
    position: fixed;
    right: -61px;
    bottom: 5%;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
}

.goTop.curr {
    right: 2.5%;
}

.goTop img {
    width: 100%;
}

.industrialPolicy {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
    width: 360px;
    height: 115px;
    text-align: center;
    line-height: 115px;
    font-size: 24px;
    margin-left: 55px;
    background: linear-gradient(90deg, #0292ed 0%, #1443fe 100%);

}

.newsCenter {
    position: relative;
    width: 100%;
    z-index: 8;
    overflow: hidden;
}

.inner {
    z-index: 2;
    position: relative;
}

.aircraftBox {
    width: 100%;
    z-index: 30;
    pointer-events: none;
    position: absolute;
    top: -5.4167vw;
    left: 0;
}

.aircraftBox .mask {
    width: 100%;
    height: 100vh;
    z-index: 2;
    position: absolute;
    background: #fff;
    background-size: 100% auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    top: -45px;
}

.aircraft {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    transition: transform .5s;
    bottom: 0;
}

.aircraft.on {
    transform: rotate(180deg);
}

.aircraftImgMain {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.lazy {
    z-index: 3;
    transition: transform .5s;
    bottom: 0;
    width: 100%;
    margin: auto;
}

.lazyCont {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.lazyList {
    width: 18%;
    position: absolute;
    animation: rotateLazy 2s linear infinite;
}

@keyframes rotateLazy {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lazyList img {
    width: 100%;
}

.lazyList:nth-child(1) {
    top: 15%;
    left: 15%;
}

.lazyList:nth-child(2) {
    top: 15%;
    right: 15%;
}

.lazyList:nth-child(3) {
    bottom: 15%;
    left: 15%;
}

.lazyList:nth-child(4) {
    bottom: 15%;
    right: 15%;
}

.industrialPolicy:hover {
    color: #fff !important;
}

.industrialL {
    width: auto;
    flex: 1;
    padding-right: 55px;
    border-right: 1px solid #fff;
}

@media (max-width: 1800px) {
    .cardListTitle {
        font-size: 18px;
    }

    .contactInfoCont {
        flex-wrap: wrap;
        overflow-y: auto;
        height: 100px;
    }

    .contactInfoCont::-webkit-scrollbar {
        width: 3px;
        background: transparent;
        display: block;
    }

    .contactInfoCont::-webkit-scrollbar-track {
        background: #eee;
    }

    .contactInfoCont::-webkit-scrollbar-thumb {
        background: #1722b2;
    }

    .contactInfoContList {
        width: 100%;
        margin-left: 0 !important;
    }
}

@media (max-width: 1200px) {
    .loading {
        display: none;
    }

    .mobileLogo {
        width: 100%;
    }

    .mobileLogo img {
        width: 100%;
    }

    .annotationCont {
        height: 0.6rem;
        left: -0.02rem;
        display: none;
    }

    .annotationList.curr .annotationCont,
    .annotationList:hover .annotationCont {
        width: 2.7rem;
        padding: 0 0.26rem 0 0.75rem;
    }

    .annotationText {
        font-size: 0.22rem;
    }

    .annotationArrow {
        width: 0.08rem;
    }

    .infoPosBtn {
        width: 1.4rem;
        height: 0.55rem;
        border-radius: 1rem;
    }

    .infoPosBtnText {
        font-size: 0.2rem;
        margin-left: 0.2rem;
    }

    .infoPosLeIcon {
        width: 0.08rem;
    }

    .infoPos {
        bottom: 0;
        top: 50%;
        transform: translateY(100%);

    }

    .infoPos .w1600 {
        padding-right: 0.05rem;
    }

    .infoPos.curr {
        transform: translateY(-50%);
        bottom: initial;
    }

    .infoPos .infoPosMain {
        margin-top: 0.4rem;
        flex-wrap: wrap;
        max-height: 3.7rem;
        overflow-y: auto;
    }

    .infoPos .infoPosMain::-webkit-scrollbar {
        width: 0.04rem;
        background: transparent;
        display: block;
    }

    .infoPos .infoPosMain::-webkit-scrollbar-track {
        background: #eee;
    }

    .infoPos .infoPosMain::-webkit-scrollbar-thumb {
        background: #1722b2;
    }

    .infoPos .infoPosMain::-webkit-scrollbar-thumb:hover {
        filter: brightness(0.8);
    }

    .infoPosLe {
        width: 100%;
    }

    .infoPosLeTitle {
        font-size: 0.36rem;
    }

    .infoPosLeText {
        margin-top: 0.25rem;
        font-size: 0.2rem;
        line-height: 0.36rem;
        max-height: initial;
    }

    .infoPosRi {
        width: 100%;
        margin-left: 0;
        margin-top: 0.2rem;
        position: relative;
    }

    .infoPosPage {
        display: none;
    }

    .infoPosRiList {
        border-radius: 0.15rem;
    }

    .infoPosRiListImg {
        height: 100%;
    }

    .infoPosRiListTitle {
        bottom: 0.2rem;
        font-size: 0.2rem;
    }

    .infoPosRiSwiper {
        width: 100%;
    }

    .overViewList {
        width: 100%;
        height: 100%;
        padding: 0 0.3rem;
        border-radius: 0.15rem;
    }

    .overViewTitle {
        font-size: 0.18rem;
    }

    .overViewImg {
        width: 0.7rem;
    }

    .mobileFooter {
        position: fixed;
        bottom: 0.1rem;
        left: 0;
        width: 100%;
        z-index: 4;
        display: flex;
        justify-content: center;
    }

    .mobileFooterLe {
        display: flex;
        align-items: center;
    }

    .mobileFooterRi {
        display: flex;
        align-items: center;
    }

    .filingInfo {
        display: flex;
        align-items: center;
        font-size: 0.16rem;
    }

    .filingInfo a,
    .filingInfo span {
        color: #fff;
    }

    .copyrightText {
        color: #fff;
        font-size: 0.16rem;
        margin-left: 0.16rem;
    }

    .copyrightIcon {
        width: 0.34rem;
    }

    .copyrightIcon img {
        width: 100%;
    }

    .filing {
        width: 0.2rem;
        margin: 0 0.06rem 0 0.14rem;
    }

    .filing img {
        width: 100%;
    }

    .filingLink {
        margin: 0 0.08rem;
    }

    .findMist {
        width: 0.6rem;
        margin-left: 0.16rem;
    }

    .findMist img {
        width: 100%;
    }

    .infoThreeBox {
        margin-top: 0.4rem;
    }

    .infoPosRiList {
        width: 100%;
        height: 100%;
    }

    .infoPosRiSwiper .swiper-slide {
        width: 21%;
        margin-left: 2%;
    }

    .infoList.other .swiper-slide {
        height: 0.95rem;
    }

    .annotationIcon {
        min-width: 0.4rem;
        min-height: 0.4rem;
    }

    .infoThree .infoThreeBox {
        max-height: 2.5rem;
    }

    .loading {
        font-size: 0.28rem;
        line-height: 0.42rem;
    }

    .loadingImg {
        width: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .indexMain {
        display: none;
    }

    .opticalTopInfo {
        flex-wrap: wrap;
    }

    .opticalTopLeft {
        width: 100%;
    }

    .opticalTopVideoBxo {
        height: 4.7rem;
        border-radius: 0.15rem;
    }

    .opticalTopVideoPlay {
        width: 0.7rem;
    }

    .opticalTopVideoBxo video {
        mix-blend-mode: darken;
        height: 4.7rem;
    }

    .opticalTopRight {
        margin-left: 0;
        margin-top: 0.55rem;
    }

    .opticalTopTitle {
        font-size: 0.46rem;
    }

    .opticalTopRightText {
        font-size: 0.26rem;
        line-height: 0.48rem;
    }

    .advantage {
        margin-top: 0.7rem;
    }

    .advantageTitle {
        font-size: 0.34rem;
    }

    .opticalTopRightText p {
        margin-top: 0.3rem;
    }

    .advantageSwiper {
        margin-top: 0.4rem;
        padding: 0;
    }

    .advantageSwiper .swiper-slide {
        width: 100%;
    }

    .opticalValley {
        background: url(../images/mobile/index/opticalBg.png) center no-repeat;
        background-size: cover;
        padding-top: 3rem;
        padding-bottom: 0.9rem;
    }

    .swiper-pagination {
        margin-top: 0.4rem;
    }

    .swiper-pagination-bullet {
        width: 0.14rem;
        height: 0.14rem;
    }

    .swiper-pagination-bullet-active {
        width: 0.49rem;
    }

    .optSeeMore {
        margin-top: 0.5rem;
        width: 2rem;
        height: 0.62rem;
        padding: 0;
        border: 0.02rem solid #1c58fe;
    }

    .optSeeMore:hover::after {
        left: -120%;
    }

    .optSeeMore:hover {
        color: #1c58fe;
        border: 1px solid #1c58fe;
        ;
    }

    .optSeeMore:hover .optSeeMoreArrow {
        background: url(../images/index/icon-50s.png) center no-repeat;
        background-size: cover;
    }

    .optSeeMoreText {
        font-size: 0.24rem;
        margin-right: 0.2rem;
    }

    .optSeeMoreArrow {
        width: 0.11rem;
        height: 0.2rem;
    }

    .opticalTopRightInfo {
        flex-wrap: wrap;
        margin-top: 0.2rem;
        justify-content: flex-start;
    }

    .opticalTopRightList {
        margin-top: 0.55rem;
        width: calc((100% / 3));
    }

    .opticalTopRightList:hover .opticalTopRightListTitle {
        color: #333;
        font-weight: normal;
    }

    .opticalTopRightList:hover .opticalTopRightListIcon {
        transform: none;
    }

    .opticalTopRightListIcon {
        width: 0.8rem;
    }

    .opticalTopRightListTitle {
        font-size: 0.28rem;
        margin-top: 0.2rem;
    }

    .advantageList {
        background: url(../images/mobile/index/advantageBg.png) center no-repeat;
        background-size: cover;
        padding: 0.7rem 0.5rem 0.6rem 0.5rem;
        border-radius: 0.15rem;
        overflow: hidden;
    }

    .advantageList:hover {
        background: url(../images/mobile/index/advantageBg.png) center no-repeat;
        background-size: cover;
    }

    .advantageContTitle {
        font-size: 0.28rem;
        color: #fff;
    }

    .advantageContText {
        font-size: 0.26rem;
        line-height: 0.44rem;
        margin-top: 0.2rem;
        color: #fff;
    }

    .innovation {
        background: url(../images/mobile/index/innovationBg.png) center no-repeat;
        background-size: cover;
        padding: 0.9rem 0 1.1rem 0;
    }

    .innovationTop {
        font-size: 0.46rem;
    }

    .seeDetail {
        width: 2rem;
        height: 0.62rem;
        padding: 0;
        background: #1c58fe;
    }

    .seeDetail:hover::after {
        left: -120%;
    }

    .seeDetailText {
        font-size: 0.24rem;
        margin-right: 0.2rem;
    }

    .seeDetailArrow {
        width: 0.11rem;
        height: 0.2rem;
    }

    .innovationBox {
        margin-top: 0.45rem;
        flex-wrap: wrap;
    }

    .innovationLeft {
        width: 100%;
    }

    .innovaShare {
        font-size: 0.34rem;
    }

    .innovaShareInfo {
        margin-top: 0.4rem;
    }

    .innovaShareList {
        flex-wrap: wrap;
        height: auto;
        padding: 0.4rem 0.2rem 0.4rem 0.5rem;
        border-bottom: 0.02rem solid #e2e2e2;
        border-radius: 0;
        margin-top: 0;
        display: none;
    }

    .innovaShareList:nth-child(-n+5) {
        display: block;
    }

    .innovaShareText {
        width: 100%;
        white-space: normal;
        font-size: 0.28rem;
        line-height: 0.38rem;
    }

    .innovaShareList.curr {
        border-radius: 0.15rem;
        padding: 0.4rem 0.2rem 0.4rem 0.5rem;
        background: url(../images/mobile/index/innovaShare.png) top right no-repeat;
        background-size: cover;
        box-shadow: 0 0 0.1rem rgba(20, 88, 254, 0.1);
        height: auto;
    }

    .innovaShareList::before {
        width: 0.11rem;
        height: 0.11rem;
        border: 0.03rem solid #999;
        border-radius: 50%;
        top: 0.52rem;
        left: 0.2rem;
        box-sizing: border-box;
        display: block;
        transform: none;
    }

    .innovaShareList.curr::before {
        border-color: #1c58fe;
    }

    .innovaShareTime {
        width: 100%;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.26rem;
    }

    .seePubInfo {
        width: 100%;
        display: flex !important;
        justify-content: center;
        margin-top: 0.45rem;
    }

    .seeMoreText {
        font-size: 0.24rem;
    }

    .seeMoreImg {
        width: 0.11rem;
        height: 0.2rem;
        margin-left: 0.2rem;
    }

    .innovationRight {
        width: 100%;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 0.8rem;
        justify-content: space-between;
    }

    .cardList {
        height: 1.5rem;
        border-radius: 0.15rem;
        margin-bottom: 0.25rem;
        padding: 0 0.32rem;
        margin-left: 0;
        width: calc((100% - 0.25rem) / 2);
    }

    .cardListTitle {
        font-size: 0.3rem;
    }

    .cardList:hover .cardListTitle {
        color: #333;
    }

    .cardListText {
        font-size: 0.2rem;
        margin-top: 0.1rem;
    }

    .cardList:nth-child(1)::after {
        width: 0.8rem;
        height: 1rem;
    }

    .cardList:nth-child(2)::after {
        width: 0.65rem;
        height: 0.8rem;
    }

    .cardList:nth-child(3)::after {
        width: 0.72rem;
        height: 0.92rem;
    }

    .cardList:nth-child(4)::after {
        width: 0.64rem;
        height: 0.82rem;
    }

    .cardList:nth-child(5)::after {
        width: 0.93rem;
        height: 1.03rem;
    }

    .concatConsulting {
        font-size: 0.34rem;
        font-weight: bold;
        margin-top: 0.7rem;
    }

    .concatSwiper .swiper-slide {
        width: 100%;
        padding: 0.5rem;
    }

    .dedicatedLineList::after {
        display: none;
    }

    .concatSwiper {
        margin-top: 0.3rem;
        border-radius: 0.12rem;
        background: #fff url(../images/mobile/index/concatBg.png) center no-repeat;
        background-size: cover;
    }

    .dedicatedLineTitle {
        font-size: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .dedicatedLineListIcon {
        width: 0.3rem;
        margin-top: 0;
        /* margin-top: 0.12rem; */
    }

    .dedicatedLineListBox {
        margin-left: 0.15rem;
    }

    .dedicatedLineList {
        font-size: 0.27rem;
        line-height: 0.54rem;
        margin-top: 0;
    }

    .talent {
        padding: 0.9rem 0;
    }

    .talentTitle {
        font-size: 0.46rem;
    }

    .talentBox {
        margin-top: 0.45rem;
        flex-wrap: wrap;
    }

    .talentLeft {
        width: 100%;
    }

    .talentLeftTopTitle {
        font-size: 0.34rem;
    }

    .talentLeftBot {
        box-shadow: 0 0 0.1rem rgba(20, 88, 254, 0.1);
        padding-bottom: 0.6rem;
        border-radius: 0.15rem;
    }

    .talentLeftBotList {
        flex-wrap: wrap;
        padding: 0.4rem 0.3rem 0.4rem 0.2rem;
        border-bottom: 0.02rem solid #e2e2e2;
        margin-top: 0;
    }

    .talentLeftBotIcon {
        width: 0.11rem;
        height: 0.11rem;
        border: 0.03rem solid #999;
        border-radius: 50%;
        box-sizing: border-box;
        margin-top: 0.16rem;
    }

    .talentLeftBotListCont {
        width: 100%;
        align-items: flex-start;
    }

    .talentLeftBotText {
        white-space: normal;
        width: calc(100% - 0.31rem);
        font-size: 0.28rem;
        line-height: 0.44rem;
    }

    .talentLeftBotListTime {
        width: 100%;
        margin-left: 0.31rem;
        font-size: 0.28rem;
        margin-top: 0.15rem;
    }

    .talentLeftList {
        margin-top: 0.65rem;
    }

    .talentRight {
        margin-top: 0.75rem;
        margin-left: 0;
        width: 100%;
    }

    .talentRightTop {
        flex-wrap: wrap;
        padding: 0.55rem 0.35rem 0.52rem 0.35rem;
        background: url(../images/mobile/index/contactInfo.png) center no-repeat;
        background-size: cover;
        border-radius: 0.12rem;
    }

    .contactInfo {
        width: 100%;
    }

    .codeInfo {
        width: 100%;
        margin-left: 0;
    }

    .contactInfoTitle {
        font-size: 0.32rem;
    }

    .contactInfoCont {
        height: auto;
        margin-top: 0.1rem;
    }

    .contactInfoDedicatText {
        line-height: 0.57rem;
        font-size: 0.24rem;
        margin-top: 0;
    }

    .contactInfoListIcon {
        width: 0.3rem;
        margin-top: 0.13rem;
    }

    .contactInfoListIcon img {}

    .contactInfoDedicatTitle {
        line-height: 0.57rem;
    }

    .contactInfoDedicat {
        font-size: 0.24rem;
    }

    .contactInfoList {
        margin-top: 0;
    }

    .zxCont {
        flex-wrap: wrap;
    }

    .zxCont .contactInfoDedicatTitle {
        width: 100%;
    }

    .codeInfoText {
        display: none;
    }

    .codeInfoImg {
        width: 1.73rem;
        margin-top: 0.5rem;
    }

    .declareList {
        margin-top: 0.25rem;
        height: 1.45rem;
        padding: 0 0.3rem;
        margin-left: 0.25rem;
        width: calc((100% - 0.25rem) / 2);
        border-radius: 0.15rem;
    }

    .declare {
        margin-top: 0.35rem;
    }

    .declareTitle {
        font-size: 0.3rem;
    }

    .declareList:hover .declareTitle {
        color: #333;
    }

    .declareList::after {
        width: 1.3rem;
        height: 1.27rem;
    }

    .declareList:nth-child(1)::after {
        background: url(../images/mobile/index/declareBg-1.png) center no-repeat;
        background-size: cover;
    }

    .declareList:nth-child(2)::after {
        background: url(../images/mobile/index/declareBg-2.png) center no-repeat;
        background-size: cover;
    }

    .declareList:nth-child(3)::after {
        background: url(../images/mobile/index/declareBg-3.png) center no-repeat;
        background-size: cover;
    }

    .declareList:nth-child(4)::after {
        background: url(../images/mobile/index/declareBg-4.png) center no-repeat;
        background-size: cover;
    }

    .declareList:nth-child(5)::after {
        background: url(../images/mobile/index/declareBg-5.png) center no-repeat;
        background-size: cover;
    }

    .declareList:nth-child(6)::after {
        background: url(../images/mobile/index/declareBg-6.png) center no-repeat;
        background-size: cover;
    }

    .guidanceInfo {
        padding: 0.85rem 0 0.95rem 0;
        background: #fff url(../images/mobile/index/guidanceBg.png) center no-repeat;
        background-size: cover;
    }

    .guidanceTitle {
        font-size: 0.46rem;
    }


    .guidanceEntr {
        margin-top: 0.5rem;
        height: 1.7rem;

    }

    .guidanceEntr {
        background: url(../images/mobile/index/guidance2.png) no-repeat;
        width: 100%;
        background-size: 100% 100%;
    }

    .guidanceEntr p {
        line-height: 1.7rem;
        font-size: 0.38rem;
    }

    .guidanceEntr:hover img {
        transform: none;
    }

    .guidanceBox {
        flex-wrap: wrap;
        margin-top: 0.55rem;
    }

    .guideMain {
        width: 100%;
    }

    .productInfo {
        width: 100%;
        margin-left: 0;
        margin-top: 0.7rem;
    }

    .guideTopList {
        font-size: 0.34rem;
        margin-left: 0.35rem;
    }

    .guideMain .guideBottom {
        padding: 0;
        box-shadow: none;
        margin-top: 0.4rem;
    }

    .talentLeftBotList:hover,
    .talentLeftBotList:hover .talentLeftBotListTime {
        color: #666;
        font-weight: normal;
    }

    .talentLeftBotList:hover .talentLeftBotIcon {
        border: 0.03rem solid #999;
    }

    .guideBottom {
        padding: 0;
        border-radius: 0.15rem;
    }

    .guidePub .talentLeftBot {
        border-radius: 0.15rem;
    }

    .holdInfo {
        padding: 0.4rem 0.2rem;
        box-sizing: border-box;
        margin-bottom: 0;
    }

    .holdInfoDay {
        font-size: 0.6rem;
        font-weight: bold;
        margin-left: 0.2rem;
    }

    .holdInfoMonth {
        font-size: 0.18rem;
        margin-top: 0.1rem;
        margin-left: 0.2rem;
    }

    .holdInfoLeft {
        width: 1rem;
    }

    .holdInfoRight {
        width: calc(100% - 1.1rem);
        padding-left: 0.2rem;
    }

    .holdInfoText {
        display: none;
    }

    .holdInfoTitle {
        white-space: normal;
        font-size: 0.3rem;
    }

    .holdInfo:hover .holdInfoTitle {
        color: #333;
    }

    .industrialSwiper {
        margin-top: 0.6rem;
        padding: 0.1rem 0.02rem;
    }

    .industrialSwiper .swiper-slide {
        width: 100%;
    }

    .industrialParkList {
        padding: 0.6rem 0.5rem 0.6rem 0.65rem;
    }

    .industrialParkTitle {
        font-size: 0.3rem;
    }

    .industrialParkCont {
        margin-top: 0.3rem;
    }

    .industrialParkContList {
        margin-top: 0.15rem;
    }

    .industrialParkContText {
        line-height: 0.48rem;
        font-size: 0.28rem;
        height: 0.96rem;
    }

    .industrialParkContList:nth-child(1) .industrialParkContIcon {
        width: 0.3rem;
        height: 0.3rem;
    }

    .industrialParkContList:nth-child(2) .industrialParkContIcon {
        width: 0.3rem;
        height: 0.34rem;
    }

    .industrialParkContIcon {
        margin-top: 0.08rem;
    }

    .industrialParkContList:nth-child(2) .industrialParkContText {
        height: 0.96rem;
    }

    .industrialParkList {
        background: #fff url(../images/mobile/index/decoration.png) center no-repeat;
        background-size: cover;
        border-radius: 0.15rem;
    }

    .industrialParkList:hover {
        background: #fff url(../images/mobile/index/decoration.png) center no-repeat;
        background-size: cover;
    }

    .industrialParkList:hover .industrialParkContText a {
        color: #666;
    }

    .industrialParkList:hover .industrialParkContText {
        color: #666;
    }

    .industrialParkList:hover .industrialParkContList:nth-child(1) .industrialParkContIcon {
        background: url(../images/index/icon-49.png) center no-repeat;
        background-size: cover;
    }

    .industrialParkList:hover .industrialParkContList:nth-child(2) .industrialParkContIcon {
        background: url(../images/index/icon-48.png) center no-repeat;
        background-size: cover;
    }

    .industrialParkList:hover .seeDetail::after {
        left: -120%;
    }

    .industrialParkTitle {
        color: #333;
    }

    .seeMore:hover .seeMoreText {
        color: #999;
    }

    .seeMore:hover .seeMoreImg {
        background: url(../images/index/icon-28.png) center no-repeat;
        background-size: cover;
    }

    .advantageContText {
        padding-right: 0;
        height: 3rem;
    }

    .advantageContText::-webkit-scrollbar {
        width: 0;
        border-radius: 5px;
        display: block;
    }

    .opticalPopupCont {
        width: 6.9rem;
        padding: 0.8rem 0.35rem 0.75rem 0.35rem;
        border-radius: 0.2rem;
        background: url(../images/mobile/index/opticalPopup.png) center no-repeat;
        background-size: cover;
    }

    .opticalPopupTitle {
        font-size: 0.36rem;
        text-align: center;
    }

    .opticalPopupText p {
        margin-top: 0.3rem;
    }

    .opticalPopupText {
        font-size: 0.28rem;
        max-height: 5.5rem;
        line-height: 0.6rem;
    }

    .closeOptical {
        width: 0.71rem;
        margin-top: 0.5rem;
    }

    .opticalPopupText::-webkit-scrollbar {
        width: 0.03rem;
    }

    .goTop {
        width: 1rem;
        right: 0.3rem !important;
        bottom: 0.5rem;
    }

    .aircraftBox {
        display: none;
    }
}

@media screen and (orientation: portrait) {
    .infoPosRi {
        height: 1.9rem;
    }

    .swiper {
        transform: rotate(-90deg) translate(-50%, -50%);
        width: 1.9rem;
        height: 100%;
        top: 50%;
        left: 50%;
        position: absolute;
        transform-origin: top left;
    }

    .infoPosRiSwiper .swiper-slide {
        height: 1.9rem;
        margin: 0;
        transform: rotate(90deg) translateY(-100%);
        transform-origin: top left;

    }

    .infoList.other .infoPosRi {
        height: 0.95rem;
    }

    .infoList.other .swiper {
        width: 0.95rem;
    }

    .infoList.other .swiper-slide {
        height: 0.95rem;

    }
}