body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;

}

* {
    font-family: Microsoft YaHei, '微软雅黑';
}

@font-face {
    font-family: "PANGMENZHENGDAOBIAOTITI-1";
    src: url("../font/PANGMENZHENGDAOBIAOTITI-1.woff2") format("woff2"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.woff") format("woff"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.ttf") format("truetype"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.eot") format("embedded-opentype"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.svg") format("svg"),
        url("https://www.digiwin.com/digiwin2024/css/PANGMENZHENGDAOBIAOTITI-1.otf") format("opentype");
}

body::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #000848 10%, #0031A7 50%, #00063C 90%); */
    background: #012178;
    /* z-index: -1; */
}


body:not([class*=isIE]) * {
    /* cursor: none !important; */
}

.cursor-inner {
    position: relative;
    width: 0;
    height: 0;
    -webkit-transition: transform .3s, -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -moz-transition: transform .3s, -webkit-transform .3s;
    -ms-transition: transform .3s, -webkit-transform .3s;
    -o-transition: transform .3s, -webkit-transform .3s;
}

.cursor {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-5rem);
    -ms-transform: translateY(-5rem);
    transform: translateY(-5rem);
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.cursor__circle,
.cursor__point {
    position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem;
}

.cursor__point {
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .1);
    border: 0.05rem solid hsla(0, 0%, 100%, .3);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cursor i {
    display: block;
}

.cursor__circle {
    opacity: 0;
    border-radius: 100%;
    border: 0.05rem solid #fff;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cursor__circle,
.cursor__point {
    /* position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem; */
    position: absolute;
    top: -0.2rem;
    left: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
}

.cursor__circle-2 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.cursor.active .cursor__circle,
.cursor.manual-active .cursor__circle {
    animation-name: circle-repeat-2;
}

.cursor.active .cursor__point,
.cursor.manual-active .cursor__point {
    background-color: hsla(0, 0%, 100%, .4);
    transform: scale(.2);
}

@keyframes circle-repeat-2 {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 0;
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
    }

    100% {
        opacity: 0;
        transform: scale(3);
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        -o-transform: scale(3);
    }
}

/* *********************导航********************* */
.nav {
    width: 100%;
    position: fixed;
    z-index: 50;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    padding: 0.2rem 2.8rem;
    padding-right: 2.4rem;
    padding-bottom: 0.4rem;
    background-color: rgba(0, 0, 44, .2);
}

.nav::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 52%, rgba(255, 255, 255, 0) 100%);
}

.nav.on {
    /* opacity: 0; */
}

.nav>span {
    width: auto;
    max-width: 16%;
    cursor: pointer;
}

.nav>ul {
    /* width: 65%; */
    width: 80%;
    align-items: center;
    justify-content: flex-end;
}

.nav>ul>li {
    font-size: .18rem;
    margin-left: .7rem;
}

.nav>ul>li>a {
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transform: translateY(0.15rem);
    padding-bottom: 0.1rem;
    cursor: pointer;
}

.nav>ul>li>a>i {
    color: #fff;
    font-size: .24rem;
    display: inline-block;
}

.nav>ul>li>a:hover,
.nav>ul>li.on>a {
    border-bottom: 1px solid #fff;
}

.sj_liuyan {
    /* width: 2.5rem; */
    width: 230px;
    position: fixed;
    z-index: 50;
    bottom: 1%;
    right: 0.4rem;
    min-width: 230px;
    cursor: pointer;
}

@keyframes shangxia {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
        -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
    }
}

.sj_liuyan>i {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    animation-name: shangxia;
    animation-delay: 0s;
    animation-duration: .8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.sj_liuyan>u {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan>p {
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    line-height: 1.5;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan:hover>p,
.sj_liuyan:hover>u {
    opacity: 1;
}

/* 底层 */
#sw1 {
    width: 100%;
    height: 100%;
    position: relative;
}

#sw1>div>div.swiper-slide {
    width: 100%;
    height: 100%;
    /* opacity: 0 !important; */
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    z-index: -1;
}

#sw1>div>div.swiper-slide-active {
    opacity: 1 !important;
    z-index: 20;
}

.qie {
    position: absolute;
    right: 1.1rem;
    top: 0%;
    height: 100%;
    width: auto;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    /* display: none; */
}


.qie>div {
    transform: translateX(-0.09rem);
    -webkit-transform: translateX(-0.09rem);
    -moz-transform: translateX(-.09rem);
    -ms-transform: translateX(-.09rem);
    -o-transform: translateX(-.09rem);
    width: 0.23rem;
}

.qie>ul {
    margin: 0.15rem 0;
}

.qie>ul>li {
    font-size: .18rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.2rem;
    height: 0.3rem;
}

.qie>ul>li:last-child {
    margin-bottom: 0;
}

.qie>ul>li>p {
    color: #fff;
    opacity: .5;
    transition: .5s;
}

.qie>ul.on>li>p {
    color: #333;
}

.qie>ul>li.on>p {
    opacity: 1;
}

.qie>ul>li>span {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.3);
    transition: .5s;
}

.qie>ul>li>span>i {
    width: 0.15rem;
    height: 0.15rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFB351 0%, #F08541 100%);
    transition: .5s;
    opacity: 0;
}

.qie>ul>li.on>span {
    transform: scale(1);
}

.qie>ul>li.on>span>i {
    opacity: 1;
    transition-delay: .5s;
}

.pad {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
}

.top1,
.top2,
.top3,
.top4,
.top5,
.top6,
.top7,
.topzb,
.top_jj,
.topzx,
.top0 {
    position: relative;
    padding: 1.8rem 2.8rem 1rem 2.8rem;
    z-index: 15;
}

.top0 {}

.top0>.fp-tableCell {}

.top0>.fp-tableCell>video {
    width: 85%;
    display: block;
    margin: 0 auto;
    margin-top: 0.8rem;
}

h2.biaoti {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 15;
}

h2.biaoti>p {
    font-size: .3rem;
    color: #0057A3;
    font-style: italic;
    line-height: .8;
    text-shadow: 0px 3px 9px #000B5C;
}

h2.biaoti>b {
    margin-right: 0.15rem;
    font-size: .5rem;
    display: table;
    font-weight: 400;
    color: #FFFFFF;
    background: linear-gradient(105deg, #1CC2FF 0%, #CEFFFF 64.990234375%, #A2F3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px;
}

.top2 {
    padding: 1.5rem 3.6rem;
    position: relative;
    z-index: 15;
    background: url(../image/top4_bg20.png) no-repeat center;
    background-size: cover;
}

p.jj {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .2rem;
}

p.jj>i {
    width: 0.3rem;
}

p.jj>b {
    color: #fff;
    margin-left: 0.15rem;
    font-weight: bold;
}

span.ding {
    position: absolute;
    width: 20%;
    left: 40%;
    top: 0;
    z-index: 10;
    overflow: hidden;
}

span.ding>img {
    transform: translateY(-0.4rem);
}

@keyframes light {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.ma_bt {
    margin-bottom: 0 !important;
}

.sj_video,
.sj_video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    transform: scale(0);
}

.sj_video.on,
.sj_video2.on {
    transform: scale(1);
}

.sj_video>div,
.sj_video2>div {
    position: relative;
    width: 90%;
    z-index: 10;
}

.sj_video>div>video,
.sj_video2>div>video {
    width: 100%;
}

.sj_video>div>i,
.sj_video2>div>i {
    cursor: pointer;
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgb(102 98 98 / 50%);
    font-size: .28rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_video>div>i:hover,
.sj_video2>div>i:hover {
    background-color: rgb(33 33 33 / 100%);
}

.sj_video>i,
.sj_video2>i {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .3;
    top: 0%;
    left: 0%;
}

.bg_lf {
    position: absolute;
    bottom: 0;
    left: 2.4rem;
    width: 0.4rem;
}

.bg_rt {
    position: absolute;
    bottom: 0;
    right: 2.4rem;
    width: 0.4rem;
}


.pc-page__aside[data-v-91586072],
.pc-page__aside {
    display: none !important;
}

.top1_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.top1 {
    overflow: hidden;
}

.sj_top1 {
    position: relative;
    z-index: 10;
    margin-top: 1.5rem;
}

.sj_top1>span {
    width: 6rem;
}

.sj_top1>p {
    color: #fff;
    font-size: .28rem;
    margin-top: .2rem;
    margin-bottom: .3rem;
    letter-spacing: .15rem;
}

.sj_top1>i {
    font-size: .2rem;
    color: #fff;
    margin-bottom: .8rem;
    letter-spacing: .1rem;
}

.sj_top1>a {
    font-size: .2rem;
    color: #fff;
    border: 1px solid #fff;
    display: table;
    padding: .15rem .4rem;
    border-radius: 6px;
    transition: .5s;
}

.sj_top1>a:hover {
    color: #08edf2;
    border-color: #08edf2;
}

/** ---------------------背景------------------- **/
.top0 {
    background: url(../image/top3_bg10.png) no-repeat bottom left;
    background-size: contain;
}

.sj_top0 {
    margin-top: 1rem;
}

.sj_top0>p {
    font-size: .2rem;
    color: #fff;
    line-height: 2.7;
    text-align: justify;
    padding: 0 2rem;
    margin-top: 1rem;
}

/** ---------------------直播------------------- **/
.sj_topzb {}

.sj_topzb>p {
    margin-top: .2rem;
}

/** ---------------------亮点------------------- **/
@keyframes dong {
    0% {
        transform: translate(10px, 10px) scale(.7);
        -webkit-transform: translate(10px, 10px) scale(.7);
        -moz-transform: translate(10px, 10px) scale(.7);
        -ms-transform: translate(10px, 10px) scale(.7);
        -o-transform: translate(10px, 10px) scale(.7);
    }

    25% {
        transform: translate(0px, 0px) scale(.7);
        -webkit-transform: translate(0px, 0px) scale(.7);
        -moz-transform: translate(0px, 0px) scale(.7);
        -ms-transform: translate(0px, 0px) scale(.7);
        -o-transform: translate(0px, 0px) scale(.7);
    }

    50% {
        transform: translate(-5px, -5px) scale(.7);
        -webkit-transform: translate(-5px, -5px) scale(.7);
        -moz-transform: translate(-5px, -5px) scale(.7);
        -ms-transform: translate(-5px, -5px) scale(.7);
        -o-transform: translate(-5px, -5px) scale(.7);
    }

    75% {
        transform: translate(10px, 10px) scale(.7);
        -webkit-transform: translate(10px, 10px) scale(.7);
        -moz-transform: translate(10px, 10px) scale(.7);
        -ms-transform: translate(10px, 10px) scale(.7);
        -o-transform: translate(10px, 10px) scale(.7);
    }

    100% {
        transform: translate(0px, 0px) scale(.7);
        -webkit-transform: translate(0px, 0px) scale(.7);
        -moz-transform: translate(0px, 0px) scale(.7);
        -ms-transform: translate(0px, 0px) scale(.7);
        -o-transform: translate(0px, 0px) scale(.7);
    }
}

@keyframes dong2 {
    0% {
        transform: scale(.7);
        -webkit-transform: scale(.7);
        -moz-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

.sj_top2 {}

.sj_top2>ul {
    margin-top: 1.3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8%;
}

.sj_top2>ul>li {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    position: relative;
    transform: scale(.7);
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    animation-name: dong;
    animation-delay: 0s;
    animation-duration: 8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.sj_top2>ul>li:nth-child(1) {
    animation-delay: .2s;
    margin-top: .2rem;
}

.sj_top2>ul>li:nth-child(2) {
    animation-delay: .8s;
    margin-top: 1.2rem;
}

.sj_top2>ul>li:nth-child(3) {
    animation-delay: 1.2s;
    margin-top: .2rem;
}

.sj_top2>ul>li:nth-child(4) {
    animation-delay: .5s;
    margin-top: -.8rem;
}

.sj_top2>ul>li>i {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /* background-image: url(../image/top2_22.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sj_top2>ul>li>i>img {
    transition: .5s;
    width: 100%;
}

.sj_top2>ul>li>p {
    transition: .5s;
    font-size: .2rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    transition: .8s;
    opacity: 0;
    position: relative;
    z-index: 20;
    color: #012C81;
}

.sj_top2>ul>li>b {
    transition: .5s;
    font-size: .42rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.sj_top2>ul>li:hover {
    background: none;
    transform: scale(.7);
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    box-shadow: 0px 0px 20px 8px rgb(255 255 255 / 50%);
    animation-name: dong2;
    animation-delay: 0s !important;
    animation-duration: .2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.sj_top2>ul>li:hover>i {
    background-image: url(../image/top2_22.png);
}

.sj_top2>ul>li:hover>i>img {
    opacity: 0;
}

.sj_top2>ul>li:hover>p {
    opacity: 1;
}

.sj_top2>ul>li:hover>b {
    opacity: 0;
}

/** ---------------------议程------------------- **/
.sj_top3 {}

.sj_top3>p {
    margin-top: .4rem;
    display: flex;
    align-items: center;
}

.sj_top3>p>b {
    font-size: .28rem;
    color: #1CC2FF;
    font-weight: bold;
}

.sj_top3>p>i {
    font-size: .2rem;
    color: #002749;
    background: #1CC2FF;
    padding: .1rem;
    border-radius: 6px;
    margin-left: .1rem;
    font-weight: bold;
}

.sj_top3>div {
    /* background: rgba(51, 87, 243, 0.3);
    border-radius: 8px;
    border: 1px solid #1CC2FF; */
    /* margin-top: .4rem; */
}

.sj_top3>div.t3_1 {
    /* padding: .5rem; */
    padding-top: .2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sj_top3>div.t3_1>p {
    width: 15%;
}

.sj_top3>div.t3_1>p>i {
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
    /* margin-bottom: .1rem; */
    border-bottom: 1px solid rgb(28, 194, 255, 35%);
    padding: .1rem 0;

}

.sj_top3>div.t3_1>ul {
    width: 43%;
    /* padding-left: .4rem; */
}

.sj_top3>div.t3_1>ul>li {
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
    position: relative;
    padding: .1rem 0;
    border-bottom: 1px solid rgb(28, 194, 255, 35%);

}

.sj_top3>div.t3_1>ul.zt>li {
    font-weight: bold;
}

.sj_top3>div.t3_1>ul>li::before {
    width: .07rem;
    height: .07rem;
    border-radius: 50%;
    background: #1CC2FF;
    left: -.44rem;
    top: .1rem;
    display: none;
}

.sj_top3>div.t3_1>p>:first-child,
.sj_top3>div.t3_1>ul>:first-child {
    font-size: .2rem;
    font-weight: bold;
}

.sj_top3>div.t3_2 {
    /* padding: .2rem; */
    border: none;
    background: none;
    margin-top: .4rem;
}

.sj_top3>div.t3_2>ul {
    display: flex;
    justify-content: space-between;
}

.sj_top3>div.t3_2>ul>li {
    position: relative;
    padding: .2rem 0;
    background: #10319D;
    border-radius: 8px;
    border: 1px solid #1CC2FF;
    width: 32%;
}

.sj_top3>div.t3_2>ul>li>p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .1rem;
}

.sj_top3>div.t3_2>ul>li>p>i {
    font-size: .16rem;
    color: #00C8FF;
}

.sj_top3>div.t3_2>ul>li>p>b {
    font-size: .2rem;
    font-weight: bold;
    color: #00C8FF;
}

.sj_top3>div.t3_2>ul>li>div {
    margin: .4rem 0.1rem .4rem .3rem;
    overflow: auto;
    height: 3.3rem;
    position: relative;
    padding: 0 .1rem;
}

.sj_top3>div.t3_2>ul>li>div::-webkit-scrollbar {
    width: 5px;
    background: #012178;
}

.sj_top3>div.t3_2>ul>li>div::-webkit-scrollbar-thumb {
    background-color: #2046AF;
    border: 8px solid #fff;
    border-radius: 7px;
}

.sj_top3>div.t3_2>ul>li>div>p::before {
    height: 100%;
    left: 0;
    width: 1px;
    background: #1CC2FF;
    transition: .5s;
}



.sj_top3>div.t3_2>ul>li>div>p::after {
    width: .1rem;
    background: #1CC2FF;
    height: .1rem;
    border-radius: 50%;
    top: .07rem;
    left: -0.05rem;
    transition: .5s;
}

.sj_top3>div.t3_2>ul>li>div>p:hover::before,
.sj_top3>div.t3_2>ul>li>div>p:hover::after {
    background: #f69847;
}

.sj_top3>div.t3_2>ul>li>div>p {
    font-size: .16rem;
    padding-bottom: .2rem;
    position: relative;
    padding-left: .2rem;
}

.sj_top3>div.t3_2>ul>li>div>p>i,

.sj_top3>div.t3_2>ul>li>div>p>u,

.sj_top3>div.t3_2>ul>li>div>p>b {
    color: #fff;
    line-height: 1.7;
}

.sj_top3>div.t3_2>ul>li>div>p>u {
    font-size: .18rem;
    transition: .5s;
    font-weight: bold;
}

.sj_top3>div.t3_2>ul>li>div>p:hover>u {
    color: #f69847;
}

.sj_top3>div.t3_2>ul>li>div>p>b {
    color: #1cc2ff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top3>div.t3_2>ul>li>div>p:hover>b {
    color: #fff;
}

.sj_top3>div.t3_2>ul>li>i {
    font-size: .16rem;
    color: #fff;
    line-height: 1.8;
}

.sj_top3>div.t3_2>ul>li>a {
    font-size: 14px;
    color: #fff;
    padding: .1rem;
    border: 2px solid #fff;
    display: table;
    border-radius: 8px;
    position: absolute;
    right: .1rem;
    bottom: .1rem;
    /* display: none; */
}

/** ---------------------嘉宾------------------- **/
.sj_top4 {}

.sj_top4>ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /* width: 80%; */
    margin: 0 auto;
    margin-top: .3rem;
}

.sj_top4>ul>li {
    /* width: 20%; */
    width: 16%;
    position: relative;
    margin-bottom: 4%;
    transform: translateY(.5rem);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top4>ul.on>li {
    transform: translateY(0rem);
    opacity: 1;
}

.sj_top4>ul>li>img {
    width: 60%;
    /* width: 100%; */
    margin: 0 auto;
}

.sj_top4>ul>li>p {
    position: absolute;
    bottom: -0.35rem;
    width: 100%;
}

.sj_top4>ul>li>p>b {
    font-size: .2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: .1rem;
}

.sj_top4>ul>li>p>i {
    font-size: .14rem;
    color: #1CC2FF;
    text-align: center;
    line-height: 1.5;
}

/** ---------------------媒体------------------- **/
.sj_top5 {}

.sj_top5>p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.6rem;
}

.sj_top5>p>i {
    width: 23%;
    /* margin-right: 2.5%; */
    margin-bottom: 2.5%;
    padding: .2rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .08rem;
    -webkit-border-radius: .08rem;
    -moz-border-radius: .08rem;
    -ms-border-radius: .08rem;
    -o-border-radius: .08rem;
    height: 1.2rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top5>p>i>img {
    max-height: 90%;
}

.sj_top5>p>i:nth-child(5n) {
    /* margin-right: 0; */
}

.sj_top5>p>i:hover {
    box-shadow: 0px 0px 20px 8px rgb(255 255 255 / 50%);
}

/** ---------------------往届------------------- **/
.sj_top6 {}

.sj_top6>ul {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sj_top6>ul>li {
    width: 48%;
    cursor: pointer;
}

.sj_top6>ul>li>span {
    overflow: hidden;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top6>ul>li>span>img {}

.sj_top6>ul>li>p {
    font-size: .2rem;
    color: #fff;
    margin-top: .2rem;
    text-align: center;
}

.sj_top6>ul>li:hover>span {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/** ---------------------峰会金句------------------- **/
.sj_jj {}

.sj_jj>#swjj {
    margin-top: .4rem;
}

.sj_jj>#swjj .swiper-wrapper {
    cursor: grab;
}

.sj_jj>#swjj .scrollbarjj {
    display: flex;
    justify-content: center;
    margin-top: .4rem;
}

.sj_jj>#swjj .scrollbarjj>span {
    background: #fff;
}

.sj_jj>#swjj .scrollbarjj>span.swiper-pagination-bullet-active {
    background: #4dd3ff;
}

/** ---------------------数智场景------------------- **/
.top7 {}

.sj_top7 {}

.sj_top7>p {
    font-size: .2rem;
    color: #fff;
    line-height: 2;
    margin-top: .6rem;
    padding: 0 2rem;
}

.sj_top7>ul {
    position: relative;
}

.sj_top7>ul>li {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
}

.sj_top7>ul>li.t7_l1 {
    top: .4rem;
    left: 0;
}

.sj_top7>ul>li.t7_l2 {
    right: .5rem;
    top: 0;
}

.sj_top7>ul>li.t7_l3 {
    top: 2rem;
    left: 0;
}

.sj_top7>ul>li.t7_l4 {
    right: 4rem;
    top: 1.5rem;
}

.sj_top7>ul>li.t7_l5 {
    right: 0;
    top: 1.4rem;
}

.sj_top7>ul>li.t7_l6 {
    top: 3rem;
    right: 3rem;
}

.sj_top7>ul>li::after {
    width: 5rem;
    height: 5rem;
    background: radial-gradient(circle, #00C8FF 0%, rgba(0, 0, 0, 0) 55%, rgb(1 33 120 / 0%) 100%);
    border-radius: 50%;
    opacity: 0;
    top: -2rem;
    right: -2rem;
    transition: .5s;
    z-index: -1;
}

.sj_top7>ul>li:hover::after {
    opacity: 0.7;
}

.sj_top7>ul>li.t7_qian::after {
    right: auto;
    left: -1rem;
}

.sj_top7>ul>li>p {
    font-size: .4rem;
    color: #3357F3;
    font-weight: bold;
    transition: .5s;
    position: relative;
    display: table;
    padding-right: .3rem;
}

.sj_top7>ul>li>p>i {
    position: absolute;
    left: -.6rem;
    bottom: -.12rem;
}

.sj_top7>ul>li>p>i>img {
    transition: .5s;
}

.sj_top7>ul>li>p>i>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sj_top7>ul>li>i {
    font-size: .2rem;
    color: #fff;
    padding: .25rem .2rem;
    background: rgba(51, 87, 243, 0.3);
    border-radius: 12px;
    border: 1px solid #1CC2FF;
    display: table;
    transition: .5s;
    margin-top: .1rem;
}

.sj_top7>ul>li.t7_qian {
    align-items: flex-start;
}

.sj_top7>ul>li.t7_qian>p {
    padding-right: 0;
    padding-left: 0.3rem;
}

.sj_top7>ul>li.t7_qian>p>i {
    left: auto;
    right: -.6rem;
    transform: rotateY(180deg);
}

.sj_top7>ul>li:hover {}

.sj_top7>ul>li:hover>p {
    color: #fff;
}

.sj_top7>ul>li:hover>p>i>img {
    opacity: 0;
}

.sj_top7>ul>li:hover>p>i>img:last-child {
    opacity: 1;
}

.sj_top7>ul>li:hover>i {
    border-color: #d5dfeb;
    box-shadow: 0px 20px 20px 0px #001B66;
    background: rgba(0, 200, 255, 0.3);
}

/** ---------------------报道------------------- **/

.sj_zx {}

.sj_zx>div {
    height: 5rem;
    margin: .6rem 0;
}

.sj_zx>div .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    padding: 0.2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sj_zx>div .swiper-slide>span {
    width: 0.6rem;
    height: .6rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_zx>div .swiper-slide>p {
    width: 83%;
}

.sj_zx>div .swiper-slide>p>b {
    font-size: .2rem;
    color: #fff;
    transition: .5s;
}

.sj_zx>div .swiper-slide>p>i {
    font-size: .16rem;
    color: #fff;
    transition: .5s;
    transform: translateY(0.5rem);
}

.sj_zx>div .swiper-slide>i {
    font-size: .16rem;
    color: #fff;
}

.sj_zx .swzxscol {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.1rem;
}

.sj_zx .swzxscol>span {
    width: .1rem;
    height: .1rem;
    opacity: 1;
    background-color: #fff;
    margin: 0 .05rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_zx .swzxscol>span.swiper-pagination-bullet-active {
    width: .5rem;
    background-color: #fff;
}

.sj_zx .swiper-slide:hover,
.sj_zx .swiper-slide-active {
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
}

.sj_zx>div .swiper-slide-active>p>b,
.sj_zx>div .swiper-slide:hover>p>b {
    margin-bottom: 0.2rem;
}

.sj_zx>div .swiper-slide:hover>p>i,
.sj_zx>div .swiper-slide-active>p>i {
    transform: translateY(0);
}

/** ---------------------底部------------------- **/
.foot {
    position: relative;
    height: auto !important;
    padding: .8rem 1.6rem;
    background: #001365;
    padding: 0.8rem 2.8rem;
}

.foot>.fp-tableCell {
    height: auto !important;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer>ul {}

.footer>ul>li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: .4rem;
}

.footer>ul>li>b {
    margin-right: 0.15rem;
    font-size: .5rem;
    display: table;
    font-weight: 400;
    color: #FFFFFF;
    background: linear-gradient(105deg, #1CC2FF 0%, #CEFFFF 64.990234375%, #A2F3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px;
}

.footer>ul>li>i {
    font-size: .3rem;
    font-weight: bold;
    color: #2C58CF;
    margin-left: .1rem;
    font-style: italic;
}

.footer>ul>li>span {
    padding: .1rem .15rem;
    font-size: .2rem;
    color: #002749;
    background: #1CC2FF;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.footer>ul>li>u {
    height: 1px;
    width: 100%;
    background-color: #1CC2FF;
}

.footer>ul>li>p {
    font-size: .2rem;
    color: #fff;
    width: 100%;
    margin-top: .1rem;
    padding-left: .15rem;
}

.footer>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 30%;
}

.footer>div>span {
    /* width: 100%; */
    width: 65%;
    display: flex;
    justify-content: center;
    margin-bottom: .2rem;
    align-items: center;
}

.footer>div>p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer>div>p:last-child {
    margin-left: .3rem;
}

.footer>div>p>span {
    width: 1rem;
}

.footer>div>p>i {
    font-size: .14rem;
    color: #fff;
    margin-top: .1rem;
    text-align: center;

}

@media screen and (max-height:940px) {}

@media screen and (max-height:940px) and (min-width:1450px) {}

@media screen and (max-width:1440px) {

    .nav>ul>li {
        margin-left: .7rem;
    }

}

@media screen and (max-width:1366px) {

    .nav>span {
        width: 18%;
    }

    p.jj {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {}

#index_main {
    z-index: 10;
}

#container {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent;
}