.page-bg {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  overflow: clip;
}

.page-bg img {
  position: absolute;
  z-index: 0;
  width: 45%;
  opacity: 0.1;
}

.page-bg img:first-child {
  top: 18%;
  right: 0;
  transform: translate(20%, 0%);
}

.page-bg img:nth-child(2) {
  top: 48%;
  left: 0;
  transform: translate(-50%, 0%);
}

.page-bg img:nth-child(3) {
  top: 68%;
  right: 0;
  transform: translate(20%, 0%);
}

.page-bg img:nth-child(4) {
  top: 80%;
  left: 0;
  transform: translate(-50%, 0%);
}

.page-container {
  position: relative;
  width: 100%;
  background: #d9efff;
  overflow: clip;
}

.image-item {
  position: absolute;
  opacity: 0.3;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.image-item.left {
  left: 0;
  width: 50%;
  overflow: clip;
}

.image-item.right {
  right: 0;
  width: 50%;
  overflow: clip;
}

.image-item:nth-child(1) {
  top: 10%;
}

.image-item:nth-child(2) {
  top: 30%;
}

.image-item:nth-child(3) {
  top: 50%;
}

.image-item:nth-child(4) {
  top: 70%;
}

.image-item img {
  width: 200%;
  height: auto;
  border-radius: 12px;
  filter: blur(1px);
}

.image-item.left img {
  margin-left: -100%;
}

.image-item.right img {
  margin-right: -100%;
}

.main-container {
  min-height: 100vh;
  padding: 0px 12px 60px;
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  height: 450px;
  position: relative;
}

.header img {
  width: 70%;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  right: 0;
}

.header-text {
  text-align: left;
  flex: 1;
  z-index: 1;
  color: #18165a;
}

.header-text h1 {
  margin-bottom: 0;
  display: inline-block;
  font-size: 53.838px;
  font-weight: 700;
  background: var(
    --Linear,
    linear-gradient(80deg, #1c00a3 19.96%, #100f46 44.96%, #26237e 68.04%, #120d53 82.81%, #ff9263 93.12%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-text h2 {
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 40px;
}

.local p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.button-groups {
  margin: 40px 0px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: #18165a;
  font-size: 24px;
  /* position: sticky; */
  top: 8px;
  z-index: 999;
  width: 100%;
}

.button-groups .ant-btn {
  color: #18165a;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid #fff;
  text-decoration: none !important;
}

/* Title 样式 - 基于Figma设计规范 */
.title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 64px;
  position: relative;
  margin-bottom: 45px;

  font-size: 40px;
}

.title .en {
  text-align: left;
  color: transparent;
  background: linear-gradient(180deg, rgba(42, 59, 255, 1) 0%, rgba(42, 102, 255, 0) 85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
}

.title .zh {
  font-weight: 500;
  text-align: left;
  color: #140f56;
  position: absolute;
  top: 28px;
  left: 0.25px;
}

/* 时间线样式 - 基于Figma设计规范 */
.time-line-container {
  display: flex;
  gap: 64px;
}

.time-line {
  position: sticky;
  height: 429px;
  top: 80px;
}

/* 连接线 */
.time-line::before {
  content: "";
  position: absolute;
  left: 4.02px;
  top: 8px;
  width: 1px;
  height: 300px;
  background: #2a66ff;
  z-index: 1;
}

/* 时间线节点 */
.time-line-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-line-item:first-child {
  cursor: default;
}

.time-line-item:not(:first-child):hover {
  transform: translateX(5px);
}

/* 激活状态样式 */
.time-line-item.active .time-line-bg {
  border-radius: 8.044px;
  border: 1.005px solid #fff;
  background: rgba(255, 255, 255, 0.4);
  background-blend-mode: overlay;
  box-shadow: 0 4.022px 40.22px 0 rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(80.43991088867188px);
}

.time-line-item.active::before {
  background: #ff9263;
  box-shadow: 0 0 10px rgba(255, 146, 99, 0.5);
}

/* 圆形节点 */
.time-line-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8.04px;
  height: 8.04px;
  background: #2a66ff;
  border-radius: 50%;
  z-index: 2;
}

.time-line-bg {
  margin-left: 44.21px;
  width: 294px;
  display: flex;
  flex-direction: column;
  margin-top: -18px;
  margin-bottom: 18px;
  height: 82px;
  padding: 10px;
}

.time-line-time {
  font-size: 16.09px;
  color: #140f56;
  text-align: left;
  margin-bottom: 12px;
}

.time-line-title {
  font-weight: 500;
  font-size: 20.11px;
  color: #140f56;
  text-align: left;
}

.time-line-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: -25px;
}

.speaker-card {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.speaker-card-content {
  height: 275px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 1.005px solid #ffffff;
  border-radius: 8.04px;
  box-shadow: inset 0px 4.02px 40.22px 0px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(160.88px);
}

.speaker-card-bg {
  position: absolute;
  right: -77px;
  top: 45px;
  overflow: hidden;
  width: 550.008px;
  height: 333.826px;
  flex-shrink: 0;
  aspect-ratio: 173 / 105;
}

.speaker-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-avatar {
  position: absolute;
  top: -25px;
  right: 32px;
  width: 300px;
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-content {
  position: absolute;
  left: 38px;
  top: 30px;
  z-index: 2;
  text-align: left;
}

.speaker-time {
  display: flex;
  align-items: center;
  gap: 2.01px;
  margin-bottom: 32px;
}

.speaker-time-text {
  font-size: 16x;
  color: #140f56;
}

.speaker-description {
  font-weight: 500;
  font-size: 26px;
  color: #140f56;
  margin-bottom: 32px;
}

.speaker-description-sec{
  font-size: 20px;
}

.speaker-label {
  font-size: 14px;
  color: #747474;
  margin: 12px 0;
}

.speaker-info-name {
  color: #2a66ff;
}

.speaker-info {
  font-size: 16px;
  color: #747474;
}

.button-groups .ant-btn {
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.button-groups .ant-btn:hover {
  color: #2a66ff !important;
  background: transparent !important;
}

.button-groups .ant-btn.active {
  color: #2a66ff;
  border-radius: 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.4);
  background-blend-mode: overlay;
  box-shadow: 0 4px 40px 0 rgba(255, 255, 255, 0.25) inset;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.video-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.video-player-container {
  width: 50%;
}

.video-info {
  flex: 1;
  color: #18165a;
  text-align: left;
}

.video-title {
  color: #18165a;
  font-size: 36.09px;
  font-style: normal;
  font-weight: 700;
}

.video-description {
  color: #18165a;
  font-size: 24.06px;
  font-style: normal;
  font-weight: 500;
}

.video-content-text {
  color: #18165a;
  font-size: 16.04px;
  font-style: normal;
  line-height: 36px;
}

.swiper-container .slick-arrow {
  display: block;
  border-radius: 46px;
  opacity: 0.5;
  background: #fff;
  width: 46px;
  height: 46px;
  color: #a9a9a9;
}

.no-page-dots .slick-dots {
  display: none !important;
}
.ant-carousel{
  position: relative;
}
.ant-carousel .slick-slider{
  position: unset;
}

.ant-carousel .slick-arrow::after {
  top: 16px;
  inset-inline-start: 17px;
  width: 14px;
  height: 14px;
}

.ant-carousel .slick-next::after {
  inset-inline-start: 14px;
}

.ant-carousel .slick-arrow:hover {
  color: #2a66ff;
}

.ant-carousel .slick-prev {
  left: -23px;
}

.ant-carousel .slick-next {
  right: -23px;
}

.ant-carousel .slick-dots{
  position: static;
  margin-top: 24px;
}

.ant-carousel .slick-dots-bottom {
  bottom: -43px;
}

.ant-carousel .slick-dots li button {
  width: 42px;
  height: 14px;
  border-radius: 20px;
  background: #b8ccff;
}

.ant-carousel .slick-dots li {
  width: 42px;
  height: 14px;
  border-radius: 20px;
  background: #b8ccff;
}

.ant-carousel .slick-dots li.slick-active button {
  width: 148px;
  height: 14px;
  border-radius: 20px;
  background: #2a66ff;
}

.ant-carousel .slick-dots li.slick-active::after {
  display: none;
}

.ant-carousel .slick-dots li.slick-active {
  width: 148px;
  height: 14px;
  border-radius: 20px;
  background: #2a66ff;
}

.swiper-slide {
  width: 100%;
  display: flex !important;
  gap: 10px !important;
  flex-direction: row !important;
}

.guest-opinion .swiper-slide {
  gap: 60px !important;
}

.guest-opinion-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.guest-opinion-card {
  position: relative;
  width: 100%;
  height: 387px;
  background: rgba(255, 255, 255, 0.4);
  border: 0.5px solid #ffffff;
  border-radius: 8px;
  box-shadow: inset 0px 1.54px 15.4px 0px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(61.6px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guest-opinion-quote-left {
  position: absolute;
  top: 33.5px;
  left: 32.73px;
  width: 25.72px;
  height: 17.78px;
  z-index: 2;
}

.guest-opinion-quote-left img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(85%) sepia(12%) saturate(638%) hue-rotate(199deg) brightness(101%)
    contrast(101%);
}

.guest-opinion-quote-right {
  position: absolute;
  bottom: 137px;
  right: 32.73px;
  width: 25.72px;
  height: 17.78px;
  z-index: 2;
}

.guest-opinion-quote-right img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(85%) sepia(12%) saturate(638%) hue-rotate(199deg) brightness(101%)
    contrast(101%);
}

.guest-opinion-content {
  margin-top: 28px;
  width: 100%;
  height: 150px;
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  background: linear-gradient(
    40deg,
    rgba(28, 0, 163, 1) 0%,
    rgba(16, 15, 70, 1) 25%,
    rgba(38, 35, 126, 1) 58%,
    rgba(18, 13, 83, 1) 79%,
    rgba(255, 146, 99, 1) 94%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  flex: 1;
}

.guest-opinion-user {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  flex-shrink: 0;
}

.guest-opinion-avatar {
  width: 60.83px;
  height: 60.83px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(91deg, rgba(42, 102, 255, 1) 0%, rgba(255, 146, 99, 1) 100%);
  padding: 2px;
  flex-shrink: 0;
}

.guest-opinion-avatar img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.guest-opinion-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.guest-opinion-name {
  font-weight: 500;
  font-size: 15.4px;
  color: #000000;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guest-opinion-title {
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-button-groups {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.download-button-groups .ant-btn {
  display: flex;
  width: 300px;
  height: 80px;
  padding: 22px 90px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  font-size: 30px;
}

.download-button-groups .ant-btn-variant-solid {
  background: #2a66ff;
}

.download-button-groups .ant-btn-variant-solid:hover {
  background: #2a66ffe1 !important;
}

.download-button-groups .ant-btn-color-default {
  background-color: transparent;
  color: #2a66ff;
  border: 1px solid #2a66ff;
}

.download-button-groups .ant-btn-color-default:hover {
  color: #2a66ffe1 !important;
  border: 1px solid #2a66ffe1 !important;
}

.ant-modal .ant-modal-content {
  padding: 0;
  border-radius: 24px;
}

/* 弹框样式 */
.qr-modal-container {
  width: 800px;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(200px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 54px 76px;
}

.qr-modal-bg {
  position: absolute;
  top: -140px;
  left: 167px;
  width: 788px;
  height: 479px;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.qr-modal-title {
  font-size: 32px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(
    40deg,
    rgba(28, 0, 163, 1) 0%,
    rgba(16, 15, 70, 1) 25%,
    rgba(38, 35, 126, 1) 58%,
    rgba(18, 13, 83, 1) 79%,
    rgba(255, 146, 99, 1) 94%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  position: relative;
}

.qr-modal-subtitle {
  font-size: 16px;
  color: #18165a;
  margin-bottom: 47px;
  z-index: 1;
  position: relative;
}

.qr-modal-content {
  display: flex;
  align-items: flex-end;
  gap: 29px;
  z-index: 1;
  position: relative;
}

.qr-modal-qrcode {
  width: 237px;
  height: 237px;
  border-radius: 14px;
  border: 1px solid #2a66ff;
  overflow: hidden;
  flex-shrink: 0;
}

.qr-modal-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-modal-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qr-modal-text-main {
  font-size: 33.92px;
  font-weight: 500;
  color: transparent;
  background: linear-gradient(
    40deg,
    rgba(28, 0, 163, 1) 0%,
    rgba(16, 15, 70, 1) 25%,
    rgba(38, 35, 126, 1) 58%,
    rgba(18, 13, 83, 1) 79%,
    rgba(255, 146, 99, 1) 94%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: pre-line;
}

.qr-modal-text-sub {
  font-size: 15px;
  color: #18165a;
}

.ant-modal-confirm .ant-modal-confirm-paragraph {
  max-width: 100%;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .header img{
    width: 100%;
    right: -25%;
  }
  .header{
    height: 260px;
    padding-top: 60px;
    position: static;
  }

  .swiper-slide{
    gap: 4px !important;
  }

  .swiper-container .slick-arrow{
    width: 32px;
    height: 32px;
  }

  .ant-carousel .slick-next{
    right: -12px;
  }

  .ant-carousel .slick-next::after {
    inset-inline-start: 10px;
    top: 12px;
    width: 10px;
    height: 10px;
  }

  .ant-carousel .slick-prev {
    left: -12px;
  }

  .ant-carousel .slick-prev::after{
    left: 12px;
    width: 10px;
    height: 10px;
    top: 12px
  }

  .main-content {
    gap: 60px;
  }

  .header-text h1 {
    font-size: 24px;
  }

  .header-text h2 {
    font-size: 16px;
  }

  .header-text .local {
    font-size: 12px;
  }

  .button-groups {
    justify-content: flex-start;
    gap: 8px;
  }

  .button-groups .ant-btn {
    height: 32px;
    padding: 0 10px;
  }

  .video-content {
    flex-direction: column;
  }

  .video-player-container {
    width: 100%;
  }

  .video-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .video-description {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .video-content-text {
    font-size: 14px;
  }

  .title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .title .zh {
    top: 18px;
  }

  .time-line-container {
    flex-direction: column;
    gap: 20px;
  }

  .time-line {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 20px 0;
    top: 0;
    margin: 0 auto;
  }

  .time-line::before {
    width: calc(100% - 78px);
    height: 1px;
    left: 42px;
  }

  .time-line-item {
    margin: 0px;
  }

  .time-line-item::before {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
  }

  .time-line-bg {
    margin: 0;
    width: auto;
    height: 58px;
    padding: 6.57px 3.754px;
  }

  .time-line-time {
    text-align: center;
    font-size: 12px;
    margin: 4px 0;
  }

  .time-line-title {
    text-align: center;
    font-size: 14px;
  }

  .time-line-item:not(:first-child):hover {
    transform: translateY(-5px);
  }

  .time-line-content {
    gap: 10px;
  }

  .ant-carousel .slick-dots li button {
    width: 17px;
    height: 12px;
  }

  .ant-carousel .slick-dots li {
    width: 17px;
    height: 12px;
  }

  .speaker-card {
    height: 172px;
  }

  .speaker-card-bg {
    width: 314px;
    height: 190px;
    right: -32px;
    top: 16px;
  }

  .speaker-card-content {
    height: 158px;
  }

  .speaker-content {
    left: 20px;
    top: 20px;
  }

  .speaker-time {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .speaker-description {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .speaker-description-sec{
    font-size: 12px;
  }

  .speaker-avatar {
    width: 164px;
    top: -16px;
    right: 6px;
  }

  .speaker-label {
    font-size: 10px;
  }

  .speaker-info {
    font-size: 10px;
  }

  .speaker-info-name {
    font-size: 14px;
  }

  .ant-carousel .slick-dots li.slick-active button {
    width: 17px;
    height: 12px;
  }

  .ant-carousel .slick-dots li.slick-active {
    width: 70px;
    height: 12px;
  }

  .download-button-groups {
    gap: 15px;
  }

  .download-button-groups .ant-btn {
    height: 50px;
    font-size: 24px;
    padding: 10px;
  }

  .qr-modal-container {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
  }

  .qr-modal-title {
    font-size: 20px;
  }

  .qr-modal-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .qr-modal-content {
    gap: 10px;
  }

  .qr-modal-bg {
    width: 300px;
    height: auto;
    top: -56px;
    left: 86px;
  }

  .qr-modal-qrcode {
    width: 100px;
    height: 100px;
  }

  .qr-modal-text-main {
    font-size: 14px;
  }

  .qr-modal-text-sub {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .speaker-description{
    font-size: 13px;
  }
  .speaker-description-sec{
    font-size: 10px;
  }
  .speaker-content{
    left: 15px;
  }
  .speaker-info{
    font-size: 9px;
  }
  .speaker-info-name {
    font-size: 12px;
  }
  .download-button-groups .ant-btn{
    font-size: 22px;
  }
  .time-line::before{
    left: 28px;
    width: calc(100% - 58px);
  }
  .time-line-time{
    font-size: 10px;
  }
  .time-line-title{
    font-size: 12px;
  }
}