body, button, dd, dl, dt, fieldset, footer, form, h1, h2, h3, h4, header, img, input, legend, li, nav, ol, p, section, textarea, ul {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}
:not(input, textarea) {
    -webkit-touch-callout: inherit;
    -webkit-user-select: auto;
    user-select: auto;
}
html {
    font-size: 13.333333333vw;
    scrollbar-gutter: stable;
}
@media (min-width: 480px) {
    html {
        font-size: 64px;
    }
}
@media (min-aspect-ratio: 11/16) {
    html {
        font-size: 64px;
    }
}
@media (orientation: landscape) {
    html {
        font-size: 64px;
    }
}
body {
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: .24rem;
    color: #333;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    margin: 0 auto;
    max-width: 1280px;
    min-height: 100vh;
}
* {
    box-sizing: border-box;
}
form {
    display: inline;
}
li, ol, ul {
    list-style: none;
}
a, a:active, a:focus, a:hover, a:visited {
    color: #333;
    text-decoration: none;
}
a, img {
    -webkit-touch-callout: none;
}
img {
    -ms-interpolation-mode: bicubic;
}
fieldset, img {
    border: none;
}
button, input, select, textarea {
    font-size: 100%;
    vertical-align: middle;
    outline: 0;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: transparent !important;
    transition: background-color 50000s ease-in-out 0s;
}
input, textarea {
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}
button, input[type=button], input[type=reset], input[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
    appearance: button;
}
input:focus:-moz-placeholder, input:focus::-webkit-input-placeholder {
    color: transparent;
}
input[type='search']::-webkit-search-cancel-button {
    display: none;
}
.nodata, .wrongdata span {
    color: #999;
}
audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
svg:not(:root) {
    overflow: hidden;
}
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}
code, kbd, pre, samp {
    font-family: monospace;
    font-size: 1rem;
}
mark {
    background: #ff0;
    color: #1a1a1a;
}
dfn {
    font-style: italic;
}
button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}




.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading-wrap {
    height: 100vh;
}
.loading {
    margin: 0 auto;
    position: relative;
    width: 1px;
    height: 1px;
}
.loading:before, .loading:after {
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 15px;
    content: '';
    border-radius: 100%;
    background-color: #000;
}
.loading:before {
    left: -15px;
    animation: ball-pulse infinite .75s -.4s cubic-bezier(.2, .68, .18, 1.08);
}
.loading:after {
    right: -15px;
    animation: ball-pulse infinite .75s cubic-bezier(.2, .68, .18, 1.08);
}
@keyframes ball-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(.1);
        opacity: .6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* sidebar */
.sidebar {
    position: fixed;
    z-index: 9999;
    right: .3rem;
    bottom: 2rem;
    width: .9rem;
    overflow: hidden;
}
.sidebar-hide {
    opacity: 0;
    animation: slideHide .4s;
    -webkit-animation: slideHide .4s;
}

@keyframes slideHide {
    0% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
}
}

.sidebar-show {
    opacity: 1;
    animation: slideShow .4s;
    -webkit-animation: slideShow .4s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
}
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.sidebar li.btn-top {
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    background-image: url(../images/icon-totop.png);
    background-image: -webkit-image-set(url(../images/icon-totop.png) 1x, url(../images/icon-totop-2x.png) 2x);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* top-logo */
.top-logo .wrap {
    height: .68rem;
}
.top-logo img {
    margin: 0 .3rem;
    height: .36rem;
}
.section {
    scroll-margin: .68rem;
}
/* navTop */
.navTop {
    background-color: #0000b6;
    position: sticky;
    top: 0;
    z-index: 99999;
    overflow-x: scroll;
}
.navTop ul {
    display: flex;
    height: .8rem;
    padding:0 .3rem;
    gap: .2rem;
    justify-content: space-between;
}
.navTop li {
    border-bottom: solid .08rem transparent;
    white-space: nowrap;
}
.navTop li.nav-item-active::after {
    content: '';
    display: block;
    width: 100%;
    height: .08rem;
    background: #fff;
    animation: scaleIn .3s ease-out;
}
@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.navTop a {
    color: #fff;
    font-size: .24rem;
    display: block;
    line-height: .72rem;
}
.top-video {
    background-color: #0301b6;
}
.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.video-container video {
    width: 100%;
    height: 100%;
}
.top-video .tabs-menu {
    background-image: linear-gradient(180deg, rgba(26, 130, 255, .50) 0%, rgba(17, 17, 255, .50) 100%);
    display: flex;
}
.top-video .tabs-menu li {
    flex: 1;
    display: flex;
    gap: .06rem;
    justify-content: center;
    align-items: center;
    height: .8rem;
    color: #fff;
    font-size: .24rem;
    padding: 0 .14rem;
    white-space: nowrap;
}
.top-video .tabs-menu li:hover, .top-video .tabs-menu li.current {
    background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
}
.top-video .tabs-menu li.current::before {
    content: '';
    width: .15rem;
    height: .16rem;
    background-image: url(../images/icon-sjx.png);
    background-image: -webkit-image-set(url(../images/icon-sjx.png) 1x, url(../images/icon-sjx-2x.png) 2x);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
.tit {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tit h2 {
    font-size: .36rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2rem;
    font-weight: 600;
}
.tit-01 h2::before, .tit-01 h2::after {
    content: '';
    width: 1rem;
    height: .58rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
}
.tit-01 h2::before {
    background-image: url(../images/bg-tit-left.png);
    background-image: -webkit-image-set(url(../images/bg-tit-left.png) 1x, url(../images/bg-tit-left-2x.png) 2x);
}
.tit-01 h2::after {
    background-image: url(../images/bg-tit-right.png);
    background-image: -webkit-image-set(url(../images/bg-tit-right.png) 1x, url(../images/bg-tit-right-2x.png) 2x);
}
.tit-02 {
    justify-content: flex-start;
}
.tit-02 h2 {
    color: #93aece;
}
.tit-02 h2::after {
    content: '';
    width: 1rem;
    height: .58rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    background-image: url(../images/bg-tit-left.png);
    background-image: -webkit-image-set(url(../images/bg-tit-left.png) 1x, url(../images/bg-tit-left-2x.png) 2x);
}
/* 活动现场 */
.top-about-live {
    background-color: #00007e;
    background-image: url(../images/wap-bg1.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
    padding-top: .5rem;
}
.top-about {
    padding-bottom: .5rem;
}
.top-about p {
    font-size: .24rem;
    line-height: .36rem;
    text-align: justify;
    color: #fff;
    padding-top: .2rem;
    margin: 0 .3rem;
}
.top-live-video {
    margin-top: .28rem;
    width: 100%;
}
.top-live-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partC {
    padding: .4rem .3rem;
    background: #f4f9ff url(../images/bg-wap-yc.png) no-repeat 100% 100%;
}
.yicheng-list {
    margin-top: .3rem;
}
.yicheng-list img {
    max-width: 100%;
}
.partD {
    padding: .4rem .3rem;
}
.partD .p-list {
    margin-top: .4rem;
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.partD .p-item {
    width: 1.5rem;
}
.partD .p-item img {
    border: solid 1px #ddd;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: .12rem;
    -webkit-border-radius: .12rem;
    -moz-border-radius: .12rem;
    -ms-border-radius: .12rem;
    -o-border-radius: .12rem;
}
.partD .p-item p {
    font-size: .24rem;
    color: #666;
    line-height: 1.2;
    margin-top: .2rem;
    text-align: center;
}
.partE {
    background: #0000b6;
    padding: .4rem 0;
}
.partE .tit-02 {
    margin: 0 .3rem;
}
.touzi-list {
    margin-top: .3rem;
}
.touzi-list,
.slider-list {
    display: flex;
    overflow-x: scroll;
    gap: .35rem;
    -webkit-overflow-scrolling: touch;
    padding: 0 .3rem;
    scrollbar-width: none;
}
.touzi-list::-webkit-scrollbar,
.slider-list::-webkit-scrollbar {
    display: none
}
.touzi-item {
    width: 5.4rem;
    flex-shrink: 0;
}
.touzi-item img {
    width: 5.4rem;
    height: 3.6rem;
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
}
.video-wrap img {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.touzi-item h3 {
    font-size: .36rem;
    color: #fff;
    line-height: .46rem;
    margin-top: .3rem;
    font-weight: 400;
}
.touzi-item h3.blue {
    color: #0101b6;
}
.touzi-item p {
    font-size: .24rem;
    color: #8d8dff;
    line-height: .36rem;
    margin-top: .2rem;
}
.touzi-item p.grey {
    color: #666;
}
.touzi-item p a, .touzi-item p a:visited, .touzi-item p a:hover {
    color: #fff;
}
.touzi-item p a.blue, .touzi-item p a.blue:visited, .touzi-item p a.blue:hover {
    color: #0101b6;
}
.slider-wrap-container {
    position: relative;
}
footer {
    padding: .3rem 0;
}
.footer-notice {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-direction: column;
}
.notice-text {
    font-size: .3rem;
    color: #0101b6;
    text-align: center;
    line-height: .32rem;
    font-weight: 600;
    width: 100%;
}
.copyright {
    font-size: .16rem;
    color: #999;
    line-height: .26rem;
    font-weight: 400;
    margin-top: .5rem;
    text-align: center;
}
/* 开场致辞 */
.zhici-item {
    padding: 2.73rem .3rem 0 .3rem;
    position: relative;
}

.zhici-item-person img {
    position: absolute;
    top: .27rem;
    left: .3rem;
    z-index: 2;
    max-width: 2.83rem;
    max-height: 2.8rem;
}
.zhici-item-person p {
    position: absolute;
    top: 1.8rem;
    left: .3rem;
    right: .3rem;
    z-index: 1;
    padding-top: .15rem;
    background: #aec1d8;
    border-radius: .16rem;
    height: 2rem;
    color: #fff;
    font-size: .24rem;
    line-height: .3rem;
    padding-left: 2.8rem;
    padding-right: .3rem;
    -webkit-border-radius: .16rem;
    -moz-border-radius: .16rem;
    -ms-border-radius: .16rem;
    -o-border-radius: .16rem;
}
.zhici-item-body {
    padding: .3rem;
    position: relative;
    z-index: 3;
    background-color: #EBF3FC;
    border-radius: .16rem;
    -webkit-border-radius: .16rem;
}
.zhici-item-title {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: -2.47rem;
    right: 0;
}
.zhici-item-title h2 {
    display: flex;
    align-items: center;
    font-size: .36rem;
    color: #aec1d8;
    gap: .2rem
}
.zhici-item-title h2::before {
    content: '';
    width: 1rem;
    height: .58rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    background-image: url(../images/bg-tit-right.png);
    background-image: -webkit-image-set(url(../images/bg-tit-right.png) 1x, url(../images/bg-tit-right-2x.png) 2x);
}
.zhici-item-article {
    margin-top: .27rem;
}
.zhici-item-article h3 {
    font-size: .32rem;
    color: #0101b6;
    line-height: .42rem;
    font-weight: 400;
}
.zhici-item-article p {
    margin-top: .1rem;
    font-size: .24rem;
    color: #5d5daf;
    text-align: justify;
    line-height: 1.5;
    font-weight: 400;
}
.zhici-item-moreBtn {
    display: flex;
    margin-top: .16rem;
}
.zhici-item-moreBtn a {
    flex: 1;
    font-size: .24rem;
    color: #fff;
    line-height: .54rem;
    font-weight: 400;
    background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
    border-radius: .4rem;
    height: .54rem;
    text-align: center;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
}
.zhici-item-right .zhici-item-title {
    left: 0;
    right: auto;
}
.zhici-item-right .zhici-item-person img {
    right: .3rem;
    left: auto;
}
.zhici-item-right .zhici-item-person p {
    padding-left: .3rem;
    padding-right: 2.8rem;
}
.zhici-item-right .zhici-item-title h2::before {
    display: none;
}
.zhici-item-right .zhici-item-title h2::after {
    content: '';
    width: 1rem;
    height: .58rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    background-image: url(../images/bg-tit-left.png);
    background-image: -webkit-image-set(url(../images/bg-tit-left.png) 1x, url(../images/bg-tit-left-2x.png) 2x);
}
/* 重磅发布 */
.partB {
    background-image: linear-gradient(180deg, #0000b6 0%, #005 100%);
}
.partB .part-body {
    padding: .4rem 0 .35rem;
    background: url(../images/wap-bg2.png) no-repeat center bottom;
    background-size: 100% auto;
}
.partB .p1 {
    margin: .2rem .3rem 0;
    font-size: .24rem;
    color: #fff;
    text-align: justify;
    line-height: 1.5;
}
.partB .blk-tw {
    margin: .3rem .3rem 0;
}
.partB .blk-tw img {
    width: 100%;
    display: block;
    border-radius: .16rem;
    -webkit-border-radius: .16rem;
    -moz-border-radius: .16rem;
    -ms-border-radius: .16rem;
    -o-border-radius: .16rem;
}
.partB .blk-tw span {
    display: block;
    font-size: .2rem;
    color: #64a0e1;
    text-align: justify;
    line-height: 1.4;
    margin-top: .14rem;
}
.partB .b-txt {
    margin-top: .3rem;
}
.partB .b-txt h3 {
    font-size: .36rem;
    color: #fff;
    letter-spacing: 0;
    line-height: .46rem;
    font-weight: 600;
}
.partB .b-txt p {
    font-size: .24rem;
    color: #fff;
    text-align: justify;
    line-height: 1.5;
    margin-top: .2rem;
}
.partB .blk-video {
    margin-top: .78rem;
}
.partB .b-desc p {
    font-size: .36rem;
    color: #fff;
    letter-spacing: 0;
    line-height: .46rem;
    font-weight: 600;
    margin: 0 .3rem;
}
.partB .b-video {
    margin-top: .2rem;
}
.partB .video-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}
.roundtable-container {
    background-image: linear-gradient(180deg, #f2f8ff 0%, #dae6f6 100%);
    padding: .4rem 0;
}
.roundtable-container .roundtable-title {
    font-size: .36rem;
    color: #0101b6;
    line-height: .46rem;
    font-weight: 400;
    margin-top: .25rem;
}
.roundtable-desc {
    font-size: .24rem;
    color: #5d5daf;
    text-align: justify;
    line-height: .36rem;
    margin-top: .2rem;
}
.roundtable-container h4 {
    font-size: .3rem;
    color: #93aece;
    line-height: 1;
    font-weight: 600;
    margin-top: .4rem;
}
.roundtable-container .guest-list {
    display: flex;
    margin-top: .25rem;
    gap: .45rem;
    flex-wrap: wrap;
}
.roundtable-container .guest-item {
    width: 2rem;
}
.roundtable-container .guest-avator {
    background-image: linear-gradient(180deg, #0000b6 0%, #005 100%);
    width: 2rem;
    height: 2rem;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.roundtable-container .guest-avator img {
    width: 2rem;
    height: 2rem;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.roundtable-container .guest-avator span {
    background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
    border-radius: .2rem;
    position: absolute;
    bottom: -.1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 0 .14rem;
    height: .34rem;
    line-height: 1;
    font-size: .22rem;
    display: flex;
    align-items: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
}
.roundtable-container .slider-wrap-container {
    padding-top: .3rem;
}
.roundtable-container .tit-02,
.roundtable-container h4,
.roundtable-container .guest-list,
.roundtable-container .roundtable-title,
.roundtable-container .roundtable-desc {
    margin-left: .3rem;
    margin-right: .3rem;
}
.guest-name {
    margin-top: .2rem;
    font-size: .24rem;
    color: #666;
    text-align: center;
    line-height: .3rem;
    font-weight: 600;
}
.guest-position {
    font-size: .22rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
    font-weight: 400;
    margin-top: .1rem;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
}