html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
i,
b,
form,
fieldset,
legend,
img {
  margin: 0;
  padding: 0;
  font-style: normal;
}
fieldset,
img {
  border: none;
}
address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}
html {
  scrollbar-gutter: stable;
}
ul,
ol {
  list-style: none;
}
select,
input {
  vertical-align: middle;
}
select,
input,
textarea {
  font-size: 12px;
  margin: 0;
}
table {
  border-collapse: collapse;
}
b{
  font-weight: 700;
}
body {
  background: #fff;
  color: #333;
  min-width: 1000px;
  font: 12px/22px "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-text-size-adjust: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.clearit {
  clear: both;
  height: 0;
  font-size: 0;
  overflow: hidden;
}
a {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #999;
}
a:hover,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
}
a.blue,
a.blue:visited,
a.blue:hover {
  color: #0101b6;
}

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;
}
.wrap {
  width: 1080px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.ani-opacity {
  filter: Alpha(Opacity=80);
  opacity: 0.8;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ani-rotate {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ani-popIn {
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
.ani-popOut {
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceIn {
  0%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    -moz-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    -o-transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
.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;
  left: 50%;
  bottom: 200px;
  margin-left: 550px;
  width: 100px;
  overflow: hidden;
  background: #197cff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.sidebar-fixed {
  right: 0;
  left: auto;
  margin-left: 0;
}
.sidebar li {
  padding-left: 36px;
  color: #fff;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.sidebar a,
.sidebar a:visited,
.sidebar a:hover {
  color: #fff !important;
}
.sidebar li.btn-wb {
  background-repeat: no-repeat;
  background-position: 8px 50%;
  background-size: 22px 18px;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wb.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wb.png) 1x,
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wb-2x.png) 2x
  );
}
.sidebar li.btn-wx {
  background-repeat: no-repeat;
  background-position: 8px 50%;
  background-size: 22px 18px;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wx.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wx.png) 1x,
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-wx-2x.png) 2x
  );
}
.sidebar li.btn-top {
  background-repeat: no-repeat;
  background-position: 8px 50%;
  background-size: 21px 10px;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-top.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-top.png) 1x,
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-top-2x.png) 2x
  );
}
.sidebar li:hover {
  background-color: #1213ff;
}
/* top-logo */
.top-logo .wrap {
  height: 68px;
}
.top-logo img {
  margin: 0 30px;
}
.section {
  scroll-margin: 70px;
}
/* navTop */
.navTop {
  background-color: #0000b6;
  position: sticky;
  top: 0;
  z-index: 99999;
}
.navTop ul {
  display: flex;
  height: 72px;
  justify-content: space-between;
}
.navTop li {
  border-bottom: solid 6px transparent;
  line-height: 66px;
}
.navTop li.nav-item-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #fff;
  animation: scaleIn 0.3s ease-out;
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.navTop a {
  color: #fff;
  font-size: 18px;
  padding: 0 18px;
  display: block;
}
/* banner */
.banner {
  background-color: #0000b6;
  height: 600px;
}
.top-video {
  background-color: #0301b6;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2026/pc/bg-topvideo.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 1920px 760px;
  padding-top: 42px;
  padding-bottom: 31px;
}
.video-container {
  width: 1080px;
  height: 608px;
}
.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%
  );
  border-radius: 24px;
  display: flex;
  width: 900px;
  margin: 31px auto 0;
}
.top-video .tabs-menu li {
  flex: 1;
  height: 48px;
  color: #fff;
  font-size: 18px;
  position: relative;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
}
.top-video .tabs-menu li:hover,
.top-video .tabs-menu li.current {
  background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
  border-radius: 24px;
}
.top-video .tabs-menu li.current::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0000b6;
  background-image: url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-play.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-play.png) 1x,
    url(https://n.sinaimg.cn/finance/jiashi2025/images/icon-play-2x.png) 2x
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.tit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tit h2 {
  font-size: 36px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}
.tit h2.c93AECE {
  color: #93aece;
}
.tit-01 h2::before,
.tit-01 h2::after {
  content: "";
  width: 94px;
  height: 74px;
  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::after {
  content: "";
  width: 94px;
  height: 74px;
  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,
.tit-03 h2 {
  justify-content: flex-start;
}
.tit-03 h2::before {
  display: none;
}
.tit-03 h2::before,
.tit-03 h2::after {
  content: "";
  width: 94px;
  height: 74px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}
.tit-03 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
  );
}
/* 活动现场 */
.top-about-live {
  background-image: linear-gradient(180deg, #0000b6 0%, #000078 100%);
  padding: 64px 0 84px;
}
.top-about p {
  font-size: 20px;
  line-height: 1.7;
  text-align: justify;
  color: #fff;
  padding-top: 18px;
}
.top-live {
  margin-top: 88px;
}
.top-live-video {
  margin-top: 33px;
  width: 100%;
  height: 608px;
}
.top-live-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partC {
  padding: 50px 70px;
  background: #f4f9ff url(https://n.sinaimg.cn/sina_client/66ceb6d9/20260115/bg_yc2.png) no-repeat 0 100%;
}
.yicheng-list {
  margin-top: 25px;
}
.yicheng-list img {
  max-width: 100%;
}
.partD {
  padding: 40px 0;
}
.partD .p-list {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 93px;
}
.partD .p-item {
  width: 200px;
}
.partD .p-item img {
  border: solid 1px #ddd;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.partD .p-item p {
  font-size: 18px;
  color: #666;
  line-height: 26px;
  margin-top: 16px;
  text-align: center;
}
.partE {
  background: #0000b6;
  padding: 40px 0;
}
.touzi-list {
  margin-top: 50px;
}
.touzi-item {
  width: 340px;
}
.touzi-item img {
  width: 340px;
  height: 226px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
#slider3 .touzi-item {
  width: 524px;
}
#slider3 .touzi-item img {
  width: 524px;
  height: 295px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.touzi-item h3 {
  font-size: 24px;
  color: #fff;
  line-height: 32px;
  margin-top: 27px;
  font-weight: 400;
}
.touzi-item h3.blue {
  color: #0101b6;
}
.touzi-item p {
  font-size: 16px;
  color: #8d8dff;
  line-height: 24px;
  margin-top: 10px;
}
.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;
}
.slider-wrap-container .slider_prev,
.slider-wrap-container .slider_next {
  background-image: url(https://n.sinaimg.cn/finance/jiashi2025/images/btn-left.png);
  background-image: -webkit-image-set(
    url(https://n.sinaimg.cn/finance/jiashi2025/images/btn-left.png) 1x,
    url(https://n.sinaimg.cn/finance/jiashi2025/images/btn-left-2x.png) 2x
  );
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  width: 48px;
  height: 108px;
  top: 69px;
  margin-top: 0;
}
.slider-wrap-container .slider_prev {
  left: -60px;
}
.slider-wrap-container .slider_next {
  right: -60px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
footer {
  padding: 40px 0;
}
.footer-notice {
  display: flex;
  align-items: center;
  gap: 120px;
}
.notice-text {
  font-size: 24px;
  color: #0101b6;
  text-align: center;
  line-height: 32px;
  font-weight: 600;
}
.copyright {
  font-size: 14px;
  color: #999;
  line-height: 14px;
  font-weight: 400;
  margin-top: 97px;
  text-align: center;
}
.popup-inwindow {
  position: fixed;
  z-index: 9999;
}
.popup-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-color: #000 \9;
  filter: alpha(opacity=40);
}
.popup-container {
  position: absolute;
}
.popup-inner {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  color: #333;
  font-size: 14px;
  background-color: #e7d0ac;
}
.popup-close {
  position: absolute;
  z-index: 11;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 10px;
  line-height: 16px;
  text-align: center;
  color: #999;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}
.popup-close:hover {
  background-position: 0 -15px;
}
.weixin_popup {
  padding: 10px;
  width: 240px;
  background: #fff;
  border: solid 1px #d8d8d8;
  z-index: 9999;
  font-size: 12px;
  font-family: "Microsoft YaHei", "\u5FAE\u8F6F\u96C5\u9ED1", "Arial", "SimSun",
    "\u5B8B\u4F53", "Arial Narrow", "HELVETICA";
}
.weixin_popup .weixin_popup_head {
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  line-height: 16px;
  height: 16px;
  position: relative;
  color: #000;
}
.weixin_popup .weixin_popup_head .weixin_popup_close:hover {
  text-decoration: none;
}
.weixin_popup .weixin_popup_main {
  width: 240px;
  height: 240px;
}
.weixin_popup .weixin_popup_img {
  width: 100%;
  height: 100%;
}
.weixin_popup .weixin_popup_foot {
  font-size: 12px;
  text-align: left;
  line-height: 22px;
  color: #666;
}
/* 开场致辞 */
.zhici-item .wrap {
  position: relative;
}
#speech2 .zhici-item:nth-of-type(2n + 1) {
  background-image: linear-gradient(180deg, #f2f8ff 0%, #dae6f6 100%);
}
.zhici-item-person {
  position: absolute;
  left: -100px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}
.zhici-item-person img {
  z-index: 2;
  max-width: 420px;
  max-height: 512px;
}
.zhici-item-person p {
  position: relative;
  background: #aec1d8;
  border-radius: 24px;
  height: 48px;
  line-height: 48px;
  color: #fff;
  font-size: 20px;
  padding: 0 48px 0 56px;
  z-index: 1;
  white-space: nowrap;
  transform: translate(-117px, -39px);
  -webkit-transform: translate(-117px, -39px);
  -moz-transform: translate(-117px, -39px);
  -ms-transform: translate(-117px, -39px);
  -o-transform: translate(-117px, -39px);
}
.zhici-item-person p span {
  margin-right: 20px;
}
.zhici-item-body {
  padding: 38px 0;
  padding-left: 324px;
  position: relative;
  z-index: 4;
}
.zhici-item-title {
  display: flex;
  justify-content: flex-end;
}
.zhici-item-title h2 {
  display: flex;
  align-items: center;
  font-size: 36px;
  color: #aec1d8;
  gap: 20px;
}
.zhici-item-title h2::before {
  content: "";
  width: 94px;
  height: 74px;
  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: 50px;
}
.zhici-item-article h3 {
  font-size: 44px;
  color: #0101b6;
  line-height: 56px;
  font-weight: 400;
  text-align: left;
}
.zhici-item-article p {
  margin-top: 28px;
  font-size: 20px;
  color: #5d5daf;
  text-align: justify;
  line-height: 34px;
  font-weight: 400;
}
.zhici-item-moreBtn {
  display: flex;
  justify-content: flex-end;
  padding-top: 43px;
}
.zhici-item-moreBtn a {
  font-size: 18px;
  color: #fff;
  line-height: 18px;
  font-weight: 400;
  background-image: linear-gradient(180deg, #1a82ff 0%, #11f 100%);
  border-radius: 24px;
  width: 168px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.zhici-item-right .zhici-item-title {
  justify-content: flex-start;
}
.zhici-item-right .zhici-item-title h2::before {
  display: none;
}
.zhici-item-right .zhici-item-title h2::after {
  content: "";
  width: 94px;
  height: 74px;
  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-right .zhici-item-body {
  padding-left: 0;
  padding-right: 324px;
}
.zhici-item-right .zhici-item-article h3 {
  text-align: right;
}
.zhici-item-right .zhici-item-person {
  left: auto;
  right: -100px;
  flex-direction: row-reverse;
}
.zhici-item-right .zhici-item-person {
  flex-direction: row-reverse;
}
.zhici-item-right .zhici-item-person p {
  padding: 0 100px 0 48px;
  transform: translate(93px, -39px);
  -webkit-transform: translate(93px, -39px);
  -moz-transform: translate(93px, -39px);
  -ms-transform: translate(93px, -39px);
  -o-transform: translate(93px, -39px);
}
.zhici-item-right .zhici-item-moreBtn {
  justify-content: flex-start;
}
/* 重磅发布 */
.partB {
  background-image: linear-gradient(180deg, #0000b6 0%, #000055 100%);
}
.partB .part-body {
  padding: 60px 0 56px;
}
.partB .p1 {
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  text-align: justify;
  line-height: 34px;
}
.partB .blk-tw {
  display: flex;
  margin-top: 38px;
}
.partB .blk-tw .b-pic {
  flex-shrink: 0;
  width: 540px;
}
.partB .blk-tw img {
  width: 540px;
  height: 360px;
  display: block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.partB .blk-tw span {
  display: block;
  font-size: 15px;
  color: #64a0e1;
  text-align: justify;
  line-height: 20px;
  margin-top: 12px;
}
.partB .b-txt {
  flex: 1;
  margin-left: 36px;
}
.partB .b-txt h3 {
  font-size: 36px;
  color: #fff;
  letter-spacing: 0;
  line-height: 46px;
  font-weight: 600;
}
.partB .b-txt p {
  font-size: 20px;
  color: #fff;
  text-align: justify;
  line-height: 34px;
  margin-top: 20px;
}
.partB .blk-video {
  display: flex;
  margin-top: 7px;
  justify-content: space-between;
}
.partB .b-desc {
  flex: 1;
  text-align: right;
  padding-right: 36px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.partB .b-desc p {
  font-family: PingFangSC-Semibold;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0;
  line-height: 46px;
  font-weight: 600;
}
.partB .video-box {
  width: 1080px;
  height: 608px;
  background-color: #000;
  margin-top: 30px;
}
.roundtable-container {
  background-color: #0000b6;
  padding: 50px 0;
}
.roundtable-container:nth-of-type(2n) {
  background-color: #fff;
}
.roundtable-container .roundtable-title {
  font-size: 36px;
  color: #fff;
  line-height: 36px;
  font-weight: 400;
  margin-top: 30px;
}
.roundtable-desc {
  font-size: 20px;
  color: #fff;
  text-align: justify;
  line-height: 34px;
  margin-top: 20px;
}
.roundtable-container h4 {
  font-size: 24px;
  color: #93aece;
  line-height: 24px;
  font-weight: 600;
  margin-top: 38px;
}
.guest-list {
  display: flex;
  margin-top: 30px;
  gap: 20px;
}
.guest-item {
  width: 200px;
}
.guest-avator {
  background-image: linear-gradient(180deg, #0000b6 0%, #005 100%);
  width: 200px;
  height: 200px;
  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: 200px;
  height: 200px;
  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: 12px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  padding: 0 9px;
  height: 14px;
  line-height: 1;
  font-size: 14px;
  height: 20px;
  display: flex;
  align-items: center;
}
.roundtable-container .slider-wrap-container {
  padding-top: 20px;
}
.guest-name {
  margin-top: 22px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-weight: 600;
}
.guest-position {
  font-size: 16px;
  color: #8d8dff;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  margin-top: 5px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}
.zhici-item-article h3:hover,
.zhici-item-article p:hover,
.partB .b-txt h3:hover,
.partB .b-txt p:hover,
.touzi-item h3:hover,
.touzi-item p:hover {
  text-decoration: underline;
  opacity: 0.8;
  cursor: pointer;
}
.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;
}
/* 图文列表 */
.blk-tw-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 30px;
  grid-row-gap: 30px;
  margin-top: 40px;
}
.blk-tw-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.blk-tw-item h3 {
  color: #fff;
  line-height: 1.6;
  margin-top: 16px;
  font-size: 20px;
}
.partJ .j-title {
  font-size: 36px;
  color: #fff;
  line-height: 36px;
  font-weight: 400;
  margin-top: 60px;
}
.partJ .j-desc {
  font-size: 20px;
  color: #fff;
  text-align: justify;
  line-height: 34px;
  margin-top: 20px;
}
.j-jiabin{
  display: flex;
  align-items: center;
  gap: 10px;
}
.j-jiabin h2{
  color: #93AECE;
  font-size: 24px;
}
.j-jiabin .guest-list{
  flex:1;
}
.newsflex{
  display: flex;
  gap : 30px;
}