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: 0.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;
}
b{
  font-weight: 700;
}
i{
  font-style: normal;
}
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;
}

a.blue,
a.blue:visited,
a.blue:hover {
  color: #0101b6;
}

.white,
a.white,
a.white:visited,
a.white:hover {
  color: #fff;
}
a.c8d8dff,
a.c8d8dff:visited,
a.c8d8dff:hover {
  color: #c8d8df;
}
a.c93AECE,
a.c93AECE:visited,
a.c93AECE:hover {
  color: #93aece;
}

.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 0.75s -0.4s cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading:after {
  right: -15px;
  animation: ball-pulse infinite 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
@keyframes ball-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* sidebar */
.sidebar {
  position: fixed;
  z-index: 9999;
  right: 0.3rem;
  bottom: 2rem;
  width: 0.9rem;
  overflow: hidden;
}
.sidebar-hide {
  opacity: 0;
  animation: slideHide 0.4s;
  -webkit-animation: slideHide 0.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 0.4s;
  -webkit-animation: slideShow 0.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: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/icon-totop.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/icon-totop.png) 1x,
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/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: 0.68rem;
}
.top-logo img {
  margin: 0 0.3rem;
  height: 0.36rem;
}
.section {
  scroll-margin: 0.68rem;
}
/* navTop */
.navTop {
  background-color: #0000b6;
  position: sticky;
  top: 0;
  z-index: 99999;
  overflow-x: scroll;
}
.navTop ul {
  display: flex;
  height: 0.8rem;
  padding: 0 0.3rem;
  gap: 0.2rem;
  justify-content: space-between;
}
.navTop li {
  border-bottom: solid 0.08rem transparent;
  white-space: nowrap;
}
.navTop li.nav-item-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.08rem;
  background: #fff;
  animation: scaleIn 0.3s ease-out;
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.navTop a {
  color: #fff;
  font-size: 0.24rem;
  display: block;
  line-height: 0.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, 0.5) 0%,
    rgba(17, 17, 255, 0.5) 100%
  );
  display: flex;
}
.top-video .tabs-menu li {
  flex: 1;
  display: flex;
  gap: 0.06rem;
  justify-content: center;
  align-items: center;
  height: 0.8rem;
  color: #fff;
  font-size: 0.24rem;
  padding: 0 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: 0.15rem;
  height: 0.16rem;
  background-image: url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/icon-sjx.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/icon-sjx.png) 1x,
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/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: 0.36rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}
.tit h2.c93AECE {
  color: #93aece;
}
.tit-01 h2::before,
.tit-01 h2::after {
  content: "";
  width: 0.74rem;
  height: 0.58rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}
.tit-01 h2::before {
  background-image: url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left.png);
  background-image: -webkit-image-set(url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left.png) 1x, url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left-2x.png) 2x);
}
.tit-01 h2::after {
  background-image: url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right.png);
  background-image: -webkit-image-set(url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right.png) 1x, url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right-2x.png) 2x);
}
.tit-02 {
  justify-content: flex-start;
}
.tit-02 h2 {
  color: #fff;
}
.tit-02 h2::after {
  content: "";
  width: 0.76rem;
  height: 0.58rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right.png);
  background-image: -webkit-image-set(url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right.png) 1x, url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-right-2x.png) 2x);
}
.tit-03 {
  padding: 0 0.8rem;
  text-align: center;
}
/* 活动现场 */
.top-about-live {
  background-color: #00007e;
  background-image: url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/wap-bg1.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  padding-top: 0.5rem;
}
.top-about {
  padding-bottom: 0.5rem;
}
.top-about p {
  font-size: 0.24rem;
  line-height: 0.36rem;
  text-align: justify;
  color: #fff;
  padding-top: 0.2rem;
  margin: 0 0.3rem;
}
.top-live-video {
  margin-top: 0.28rem;
  width: 100%;
}
.top-live-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partC {
  padding: 0.4rem 0.3rem;
  background: #f4f9ff url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/bg-wap-yc.png) no-repeat 100% 0;
  background-size: 100% auto;
}
.yicheng-list {
  margin-top: 0.3rem;
}
.yicheng-list img {
  max-width: 100%;
}
.partD {
  padding: 0.4rem 0.3rem;
}
.partD .p-list {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.partD .p-item {
  width: 1.5rem;
}
.partD .p-item img {
  border: solid 1px #ddd;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.12rem;
  -webkit-border-radius: 0.12rem;
  -moz-border-radius: 0.12rem;
  -ms-border-radius: 0.12rem;
  -o-border-radius: 0.12rem;
}
.partD .p-item p {
  font-size: 0.24rem;
  color: #666;
  line-height: 1.2;
  margin-top: 0.2rem;
  text-align: center;
}
.partE {
  background: #0000b6;
  padding: 0.4rem 0;
}
.partE .tit-02 {
  margin: 0 0.3rem;
}
.touzi-list {
  margin-top: 0.3rem;
}
.touzi-list,
.slider-list {
  display: flex;
  overflow-x: scroll;
  gap: 0.35rem;
  -webkit-overflow-scrolling: touch;
  padding: 0 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: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.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: 0.36rem;
  color: #fff;
  line-height: 0.46rem;
  margin-top: 0.3rem;
  font-weight: 400;
}
.touzi-item h3.blue {
  color: #0101b6;
}
.touzi-item p {
  font-size: 0.24rem;
  color: #8d8dff;
  line-height: 0.36rem;
  margin-top: 0.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: 0.3rem 0;
}
.footer-notice {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-direction: column;
}
.notice-text {
  font-size: 0.3rem;
  color: #0101b6;
  text-align: center;
  line-height: 0.32rem;
  font-weight: 600;
  width: 100%;
}
.copyright {
  font-size: 0.16rem;
  color: #999;
  line-height: 0.26rem;
  font-weight: 400;
  margin-top: 0.5rem;
  text-align: center;
  padding: 0 .3rem;
}
/* 开场致辞 */
.zhici-item {
  padding: 2.73rem 0.3rem 0 0.3rem;
  position: relative;
}

.zhici-item-person img {
  position: absolute;
  top: 0.27rem;
  left: 0.3rem;
  z-index: 2;
  max-width: 2.83rem;
  max-height: 2.8rem;
}
.zhici-item-person p {
  position: absolute;
  top: 1.8rem;
  left: 0.3rem;
  right: 0.3rem;
  z-index: 1;
  padding-top: 0.15rem;
  background: #aec1d8;
  border-radius: 0.16rem;
  height: 2rem;
  color: #fff;
  font-size: 0.24rem;
  line-height: 0.3rem;
  padding-left: 2.8rem;
  padding-right: 0.3rem;
  -webkit-border-radius: 0.16rem;
  -moz-border-radius: 0.16rem;
  -ms-border-radius: 0.16rem;
  -o-border-radius: 0.16rem;
}
.zhici-item-body {
  padding: 0.3rem;
  position: relative;
  z-index: 3;
  background-color: #ebf3fc;
  border-radius: 0.16rem;
  -webkit-border-radius: 0.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: 0.36rem;
  color: #aec1d8;
  gap: 0.2rem;
}
.zhici-item-title h2::before {
  content: "";
  width: 0.76rem;
  height: 0.58rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left.png);
  background-image: -webkit-image-set(url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left.png) 1x, url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-tit-left-2x.png) 2x);
}
.zhici-item-article {
  margin-top: 0.27rem;
}
.zhici-item-article h3 {
  font-size: 0.32rem;
  color: #0101b6;
  line-height: 0.42rem;
  font-weight: 400;
}
.zhici-item-article p {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  color: #5d5daf;
  text-align: justify;
  line-height: 1.5;
  font-weight: 400;
}
.zhici-item-moreBtn {
  display: flex;
  margin-top: 0.16rem;
}
.zhici-item-moreBtn a {
  flex: 1;
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.54rem;
  font-weight: 400;
  background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
  border-radius: 0.4rem;
  height: 0.54rem;
  text-align: center;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
}
.zhici-item-right .zhici-item-title {
  left: 0;
  right: auto;
}
.zhici-item-right .zhici-item-person img {
  right: 0.3rem;
  left: auto;
}
.zhici-item-right .zhici-item-person p {
  padding-left: 0.3rem;
  padding-right: 2.8rem;
  text-align: right;
}
.zhici-item-right .zhici-item-title h2::before {
  display: none;
}
.zhici-item-right .zhici-item-title h2::after {
  content: "";
  width: .76rem;
  height: 0.58rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/bg-tit-left.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/bg-tit-left.png) 1x,
    url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/bg-tit-left-2x.png) 2x
  );
}
/* 重磅发布 */
.partB {
  background-image: linear-gradient(180deg, #0000b6 0%, #005 100%);
}
.partB .part-body {
  padding: 0.4rem 0 0.35rem;
  background: url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/wap-bg2.png) no-repeat center bottom;
  background-size: 100% auto;
}
.partB .p1 {
  margin: 0.2rem 0.3rem 0;
  font-size: 0.24rem;
  color: #fff;
  text-align: justify;
  line-height: 1.5;
}
.partB .blk-tw {
  margin: 0.3rem 0.3rem 0;
}
.partB .blk-tw img {
  width: 100%;
  display: block;
  border-radius: 0.16rem;
  -webkit-border-radius: 0.16rem;
  -moz-border-radius: 0.16rem;
  -ms-border-radius: 0.16rem;
  -o-border-radius: 0.16rem;
}
.partB .blk-tw span {
  display: block;
  font-size: 0.2rem;
  color: #64a0e1;
  text-align: justify;
  line-height: 1.4;
  margin-top: 0.14rem;
}
.partB .b-txt {
  margin-top: 0.3rem;
}
.partB .b-txt h3 {
  font-size: 0.36rem;
  color: #fff;
  letter-spacing: 0;
  line-height: 0.46rem;
  font-weight: 600;
}
.partB .b-txt p {
  font-size: 0.24rem;
  color: #fff;
  text-align: justify;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.partB .blk-video {
  margin-top: 0.78rem;
}
.partB .b-desc p {
  font-size: 0.36rem;
  color: #fff;
  letter-spacing: 0;
  line-height: 0.46rem;
  font-weight: 600;
  margin: 0 0.3rem;
}
.partB .b-video {
  margin-top: 0.2rem;
}
.partB .video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}
.roundtable-container {
  background-color: #0000b6;
  color: #fff;
  padding: 0.4rem 0;
}

.roundtable-container .roundtable-title {
  font-size: 0.36rem;
  line-height: 0.46rem;
  font-weight: 400;
  margin-top: 0.25rem;
}
.roundtable-desc {
  font-size: 0.24rem;
  text-align: justify;
  line-height: 0.36rem;
  margin-top: 0.2rem;
}
.roundtable-container h4 {
  font-size: 0.3rem;
  color: #93aece;
  line-height: 1;
  font-weight: 600;
  margin-top: 0.4rem;
}
.guest-list {
  display: flex;
  margin-top: 0.25rem;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}
.guest-item {
  width: 2rem;
}
.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;
}
.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%;
}
.guest-avator span {
  background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
  border-radius: 0.2rem;
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 0 0.14rem;
  height: 0.34rem;
  line-height: 1;
  font-size: 0.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: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}
.roundtable-container .slider-wrap-container {
  padding-top: 0.3rem;
}
.roundtable-container .tit-02,
.roundtable-container h4,
.roundtable-container .guest-list,
.roundtable-container .roundtable-title,
.roundtable-container .roundtable-desc {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.guest-name {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  text-align: center;
  line-height: 0.3rem;
  font-weight: 600;
}
.guest-position {
  font-size: 0.22rem;
  color: #8d8dff;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 0.1rem;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

.roundtable-container:nth-of-type(2n) {
  background-color: #fff;
}
.roundtable-container:nth-of-type(2n) .tit h2 {
  color: #93aece;
}
.roundtable-container:nth-of-type(2n) .roundtable-title {
  color: #0101b6;
}
.roundtable-container:nth-of-type(2n) .roundtable-desc {
  color: #5d5daf;
}
.roundtable-container:nth-of-type(2n) .guest-name {
  color: #666;
}
.roundtable-container:nth-of-type(2n) .guest-position {
  color: #666;
}

.partJ .j-title {
  font-size: 0.36rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 400;
  margin: 0.3rem 0.3rem 0;
}
.partJ .j-desc {
  font-size: 0.24rem;
  color: #fff;
  text-align: justify;
  line-height: 1.5;
  margin: 0.2rem 0.3rem;
}
.j-jiabin {
  padding: 0.3rem;
}
.j-jiabin h2 {
  font-size: 0.3rem;
  color: #93aece;
  line-height: 1;
  font-weight: 600;
}
.j-jiabin .guest-list {
  flex: 1;
}
.newsflex {
  display: flex;
  gap: 0.3rem;
}
