@charset "UTF-8";
.my-header[data-v-3200d0e8] {
  height: 4.25rem;
}
header[data-v-3200d0e8] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 4.25rem;
  background-color: rgba(255, 255, 255, 0.88);
  font-family: D-DIN;
  border-bottom: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .header-container[data-v-3200d0e8] {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}
header .header-container .header-logo[data-v-3200d0e8] {
      width: 4.375rem;
      cursor: pointer;
}
@media screen and (max-width: 46.875rem) {
  /*当屏幕尺寸小于750px时，应用下面的CSS样式*/
.header[data-v-3200d0e8] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}
.header .header-content[data-v-3200d0e8] {
      width: 100%;
      margin: 0 1.5rem;
}
.header .header-content img[data-v-3200d0e8] {
        height: 2rem !important;
}
}

@charset "UTF-8";
/* 1. 全屏容器设置 */
.module1-wrap[data-v-5d0effc4] {
  /* 占满全屏高度 */
  height: calc(100vh - 4.25rem);
  width: 100%;
  /* 背景图设置（当没有视频时显示） */
  background-image: var(--bgImg);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  /* 使用 CSS 变量作为颜色值，如果变量不存在，则回退到白色 #ffffff */
  color: var(--theme-color);
  /* 可选：如果内容很多，允许滚动 */
  overflow-y: auto;
  font-family: D-DIN;
  font-size: 1.5rem;
  line-height: 2rem;
}

/* 背景视频样式 */
.bg-video-wrap[data-v-5d0effc4] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}
.bg-video-wrap .bg-video[data-v-5d0effc4] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* 内容最大宽度限制，防止在大屏幕上太宽 */
.content-wrapper[data-v-5d0effc4] {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 4.5rem;
  /* 标题样式 */
  /* 副标题样式 */
}
.content-wrapper .title[data-v-5d0effc4] {
    font-family: D-DIN-Bold;
    font-size: 4.5rem;
    line-height: 4.5rem;
    margin-bottom: 2rem;
    /* 颜色自动继承 */
}
.content-wrapper .subtitle[data-v-5d0effc4] {
    font-family: D-DIN-Bold;
    font-size: 7.5rem;
    line-height: 7.5rem;
    margin-bottom: 2.5rem;
}
.content-wrapper .description[data-v-5d0effc4] {
    font-size: 1.5rem;
    line-height: 2rem;
}
.bottom-nav-wrapper[data-v-5d0effc4] {
  width: 100%;
  padding: 1rem 0;
  z-index: 2;
  background-color: transparent;
  font-family: D-DIN;
}
.bottom-nav-wrapper .bottom-nav[data-v-5d0effc4] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.bottom-nav-wrapper .bottom-nav .nav-item[data-v-5d0effc4] {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      padding: 0 1.25rem;
      text-decoration: none;
      position: relative;
      cursor: pointer;
}
.bottom-nav-wrapper .bottom-nav .nav-item[data-v-5d0effc4]::after {
        content: '';
        position: absolute;
        left: 0;
        height: 60%;
        width: 1px;
        background-color: var(--theme-color);
        top: 20%;
}
.bottom-nav-wrapper .bottom-nav .nav-item[data-v-5d0effc4]:first-child::after {
        display: none;
}
.bottom-nav-wrapper .bottom-nav .nav-item[data-v-5d0effc4]:hover {
        text-decoration: underline;
}
.bottom-nav-wrapper .bottom-nav .isActive[data-v-5d0effc4] {
      font-family: D-DIN-Bold;
      text-decoration: underline;
}
.bottom-nav-wrapper.scrolled[data-v-5d0effc4] {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bottom-nav-wrapper.scrolled .bottom-nav .nav-item[data-v-5d0effc4] {
      color: #3c3c3c;
}
.bottom-nav-wrapper.scrolled .bottom-nav .nav-item[data-v-5d0effc4]::after {
        background-color: #3c3c3c;
}

@charset "UTF-8";
.module-global-title[data-v-010ec7b9] {
  padding: 2.5rem;
  border-bottom: 1px solid var(--theme-color);
  font-family: D-DIN-Bold;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #3c3c3c;
}
.width-50[data-v-010ec7b9] {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.module-global-wrap[data-v-010ec7b9] {
  margin-top: 1.5rem;
  border-top: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}
.module-global-wrap .module2-wrap-cont[data-v-010ec7b9] {
    background-color: #fff;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item[data-v-010ec7b9] {
      padding: 2.5rem 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-img[data-v-010ec7b9] {
        width: 32.5rem;
        height: 17.5rem;
        background-color: #fff;
        border: 1px solid var(--theme-color);
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-img > img[data-v-010ec7b9] {
          width: 50%;
          max-height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-content[data-v-010ec7b9] {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 0 1.5rem;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-content .module2-wrap-item-content-title[data-v-010ec7b9] {
          font-family: D-DIN-Bold;
          font-size: 1.5rem;
          line-height: 1.75rem;
          margin-bottom: 1rem;
          color: #505050;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-content .module2-wrap-item-content-text[data-v-010ec7b9] {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          font-size: 1.25rem;
          line-height: 1.75rem;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-content .module2-wrap-item-content-link[data-v-010ec7b9] {
          margin-top: 1.5rem;
          -webkit-align-self: flex-end;
              -ms-flex-item-align: end;
                  align-self: flex-end;
          cursor: pointer;
}
.module-global-wrap .module2-wrap-cont .module2-wrap-item .module2-wrap-item-content .module2-wrap-item-content-link a[data-v-010ec7b9] {
            font-size: 1.25rem;
            line-height: 1.75rem;
            color: var(--theme-color);
            padding-bottom: 1px;
            border-bottom: 1px solid var(--theme-color);
}
.module-global-wrap .revers-layout[data-v-010ec7b9] {
    background-color: var(--theme-color-semi-transparent, rgba(255, 255, 255, 0.5));
}
.module-global-wrap .revers-layout .module2-wrap-item[data-v-010ec7b9] {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
.module-global-wrap .revers-layout .module2-wrap-item .module2-wrap-item-content .module2-wrap-item-content-link[data-v-010ec7b9] {
        -webkit-align-self: flex-start;
            -ms-flex-item-align: start;
                align-self: flex-start;
}
.module-global-wrap .module2-wrap-video[data-v-010ec7b9] {
    padding: 2.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.module-global-wrap .module2-wrap-video .module2-wrap-video-content[data-v-010ec7b9] {
      height: 18rem;
      width: 30rem;
      margin-right: 5rem;
      position: relative;
      overflow: hidden;
}
.module-global-wrap .module2-wrap-video .module2-wrap-video-content .video-cover[data-v-010ec7b9] {
        width: 110%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        pointer-events: none;
}
.module-global-wrap .module2-wrap-video .module2-wrap-video-content[data-v-010ec7b9]::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(10, 67, 145, 0.3);
}
.module-global-wrap .module2-wrap-video .module2-wrap-video-text[data-v-010ec7b9] {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-size: 1.25rem;
      line-height: 1.75rem;
      padding: 0 1.5rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.module-global-wrap .module2-wrap-video .video-btn[data-v-010ec7b9] {
      position: absolute;
      right: 1.875rem;
      bottom: 1.5rem;
      width: 4.75rem;
      height: 4.75rem;
      background-color: rgba(255, 255, 255, 0.4);
      z-index: 3;
      -webkit-transition: all 0.4s linear;
      transition: all 0.4s linear;
      border: 1px solid #fff;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-circle[data-v-010ec7b9] {
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        margin: 1.25rem auto;
        border: 1px solid #fff;
        border-radius: 50%;
        cursor: pointer;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-circle .dot-view[data-v-010ec7b9] {
          position: absolute;
          display: block;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          -webkit-transform: rotate(-80deg);
              -ms-transform: rotate(-80deg);
                  transform: rotate(-80deg);
          -webkit-animation: circleRotate-010ec7b9 2s infinite ease-in-out;
                  animation: circleRotate-010ec7b9 2s infinite ease-in-out;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-circle .dot-view .dot[data-v-010ec7b9] {
            position: absolute;
            left: -3px;
            bottom: calc(50% - 3px);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-circle .stop-animation[data-v-010ec7b9] {
          -webkit-animation-iteration-count: 1;
                  animation-iteration-count: 1;
          /* 动画只运行一次 */
          -webkit-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          /* 在动画结束后保持最后一帧的样式 */
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon[data-v-010ec7b9] {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 100%;
        height: 1rem;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-left[data-v-010ec7b9],
        .module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right[data-v-010ec7b9] {
          position: absolute;
          height: 100%;
          top: 0;
          overflow: hidden;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-left[data-v-010ec7b9] {
          width: 45%;
          left: 0;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-left[data-v-010ec7b9]::before {
            content: '';
            position: absolute;
            width: 1px;
            height: 100%;
            right: 0;
            background-color: #fff;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right[data-v-010ec7b9] {
          width: 56%;
          right: 0;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right .video-btn-icon-right-btn[data-v-010ec7b9] {
            position: absolute;
            width: 1rem;
            height: 1rem;
            left: -10px;
            top: 0;
            background-color: rgba(255, 255, 255, 0.42);
            -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                    transform: rotate(45deg);
            -webkit-transition: background-color 0.3s ease;
            transition: background-color 0.3s ease;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right .video-btn-icon-right-btn[data-v-010ec7b9]::before, .module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right .video-btn-icon-right-btn[data-v-010ec7b9]::after {
              content: '';
              position: absolute;
              background-color: #fff;
              -webkit-transition: all 0.3s ease;
              transition: all 0.3s ease;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right .video-btn-icon-right-btn[data-v-010ec7b9]::before {
              height: 1px;
              width: 100%;
              top: 0;
              left: 0;
}
.module-global-wrap .module2-wrap-video .video-btn .video-btn-icon .video-btn-icon-right .video-btn-icon-right-btn[data-v-010ec7b9]::after {
              height: 100%;
              width: 1px;
              top: 0;
              right: 0;
}
.module-global-wrap .module2-wrap-video .video-is-playing .video-btn .video-btn-icon-left[data-v-010ec7b9]::before {
      -webkit-animation: moveBtnLeft-010ec7b9 0.3s ease forwards;
              animation: moveBtnLeft-010ec7b9 0.3s ease forwards;
}
.module-global-wrap .module2-wrap-video .video-is-playing .video-btn .video-btn-icon-right-btn[data-v-010ec7b9] {
      background-color: transparent !important;
}
.module-global-wrap .module2-wrap-video .video-is-playing .video-btn .video-btn-icon-right-btn[data-v-010ec7b9]::before {
        -webkit-transform-origin: right;
            -ms-transform-origin: right;
                transform-origin: right;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
}
.module-global-wrap .module2-wrap-video .video-is-playing .video-btn .video-btn-icon-right-btn[data-v-010ec7b9]::after {
        -webkit-transform-origin: top;
            -ms-transform-origin: top;
                transform-origin: top;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
}
@-webkit-keyframes circleRotate-010ec7b9 {
0% {
    -webkit-transform: rotate(-80deg);
            transform: rotate(-80deg);
}
100% {
    -webkit-transform: rotate(280deg);
            transform: rotate(280deg);
}
}
@keyframes circleRotate-010ec7b9 {
0% {
    -webkit-transform: rotate(-80deg);
            transform: rotate(-80deg);
}
100% {
    -webkit-transform: rotate(280deg);
            transform: rotate(280deg);
}
}
@-webkit-keyframes moveBtnLeft-010ec7b9 {
0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
80% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
}
100% {
    -webkit-transform: translate3d(-3px, 0, 0);
            transform: translate3d(-3px, 0, 0);
}
}
@keyframes moveBtnLeft-010ec7b9 {
0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
80% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
}
100% {
    -webkit-transform: translate3d(-3px, 0, 0);
            transform: translate3d(-3px, 0, 0);
}
}

@charset "UTF-8";
/* 核心：定义进入和离开的过渡效果 */
.slide-bottom-enter-active[data-v-1d75dd56],
.slide-bottom-leave-active[data-v-1d75dd56] {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 核心：进入的初始状态（在屏幕最下方） */
.slide-bottom-enter[data-v-1d75dd56] {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

/* 核心：离开的结束状态（滑回屏幕最下方） */
.slide-bottom-leave-to[data-v-1d75dd56] {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.module-global-title[data-v-1d75dd56] {
  padding: 2.5rem;
  border-bottom: 1px solid var(--theme-color);
  font-family: D-DIN-Bold;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #3c3c3c;
}
.module-global-wrap[data-v-1d75dd56] {
  margin-top: 1.5rem;
  border-top: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}
.module-global-wrap .program-list[data-v-1d75dd56] {
    margin-top: 2.5rem;
}
.module-global-wrap .program-list .program-item[data-v-1d75dd56] {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      padding: 2rem 2.5rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: 1px solid var(--theme-color-semi-transparent);
      margin-bottom: 1.5rem;
}
.module-global-wrap .program-list .program-item[data-v-1d75dd56]:hover {
        border-color: var(--theme-color);
}
.module-global-wrap .program-list .program-item .program-item-cover[data-v-1d75dd56] {
        width: 20rem;
        margin-right: 5rem;
}
.module-global-wrap .program-list .program-item .program-item-cover > img[data-v-1d75dd56] {
          width: 100%;
          height: 11.25rem;
          -o-object-fit: cover;
             object-fit: cover;
          border: 1px solid var(--theme-color-semi-transparent);
}
.module-global-wrap .program-list .program-item .program-item-content[data-v-1d75dd56] {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap[data-v-1d75dd56] {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap .program-item-name[data-v-1d75dd56] {
            font-family: D-DIN-Bold;
            font-size: 1.5rem;
            line-height: 2rem;
            color: var(--theme-color-darkened);
            margin-bottom: 1rem;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap .program-item-desc[data-v-1d75dd56] {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap .program-item-icon[data-v-1d75dd56] {
            padding: 0 1.5rem;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            border-left: 1px solid #b0ceff;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
            margin-bottom: 8px;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap .program-item-icon img[data-v-1d75dd56] {
              width: 0.875rem;
              height: 0.875rem;
              -o-object-fit: cover;
                 object-fit: cover;
              margin-right: 8px;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-content-wrap .program-item-icon div[data-v-1d75dd56] {
              -webkit-box-flex: 1;
              -webkit-flex: 1;
                  -ms-flex: 1;
                      flex: 1;
              font-size: 0.875rem;
              line-height: 1.25rem;
              margin-top: -3px;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn[data-v-1d75dd56] {
          margin-top: 1rem;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: end;
          -webkit-align-items: flex-end;
              -ms-flex-align: end;
                  align-items: flex-end;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .discount-price-tip[data-v-1d75dd56] {
            font-size: 0.875rem;
            line-height: 1.25rem;
            color: #3c3c3c;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .discounted-price[data-v-1d75dd56] {
            font-size: 1rem;
            line-height: 1.5rem;
            color: #006cff;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .discounted-price .discounted-price-bold[data-v-1d75dd56] {
              font-size: 1.5rem;
              font-family: D-DIN-Bold;
              margin-right: 4px;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .origin-price[data-v-1d75dd56] {
            font-size: 0.875rem;
            line-height: 1.5rem;
            color: #0a418c;
            display: inline-block;
            position: relative;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .origin-price .discounted-price-bold[data-v-1d75dd56] {
              font-size: 1.125rem;
              font-family: D-DIN-Bold;
              margin-right: 4px;
}
.module-global-wrap .program-list .program-item .program-item-content .program-item-bottom-btn .origin-price[data-v-1d75dd56]::after {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              width: 100%;
              height: 1px;
              background-color: #0a418c;
              -webkit-transform: translateY(-50%);
                  -ms-transform: translateY(-50%);
                      transform: translateY(-50%);
}
.bottom-fixed-view[data-v-1d75dd56] {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid var(--theme-color);
  z-index: 99;
  padding: 1.5rem 0;
}
.bottom-fixed-view .bottom-fixed-body[data-v-1d75dd56] {
    color: var(--theme-color);
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-content[data-v-1d75dd56] {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-content > div[data-v-1d75dd56]:first-child {
        font-family: D-DIN-Bold;
        font-size: 1.5rem;
        color: #0a418c;
        margin-bottom: 8px;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-btn[data-v-1d75dd56] {
      background-color: var(--theme-color);
      cursor: pointer;
      border: 1px solid var(--theme-color);
      width: 15rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 8px 0.75rem;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-left: 1rem;
      overflow: hidden;
      color: #fff;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-btn > span[data-v-1d75dd56] {
        margin-right: 1.5rem;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-btn > img[data-v-1d75dd56] {
        width: 2.5rem;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-btn:hover > span[data-v-1d75dd56] {
        -webkit-transform: translateX(8px);
            -ms-transform: translateX(8px);
                transform: translateX(8px);
}
.bottom-fixed-view .bottom-fixed-body .bottom-fixed-body-btn:hover > img[data-v-1d75dd56] {
        -webkit-transform: translateX(-8px);
            -ms-transform: translateX(-8px);
                transform: translateX(-8px);
}

.module-global-title[data-v-308cb136] {
  padding: 2.5rem;
  border-bottom: 1px solid var(--theme-color);
  font-family: D-DIN-Bold;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #3c3c3c;
}
.module-global-wrap[data-v-308cb136] {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}
.module-global-wrap .module4-wrap-content[data-v-308cb136] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2.5rem;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-text[data-v-308cb136] {
      padding: 0 1.5rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-text .detail-title[data-v-308cb136] {
        font-family: D-DIN-Bold;
        color: #505050;
        margin-bottom: 1rem;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-text .detail-text[data-v-308cb136] {
        font-size: 1.25rem;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-text .detail-btn[data-v-308cb136] {
        margin-top: 1.5rem;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-text .detail-btn a[data-v-308cb136] {
          display: inline-block;
          padding: 10px 2.25rem;
          color: var(--theme-color);
          background-color: #fff;
          border: 1px solid var(--theme-color);
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-img[data-v-308cb136] {
      width: 50%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0 1.5rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.module-global-wrap .module4-wrap-content .module4-wrap-content-img > img[data-v-308cb136] {
        width: 26.5625rem;
}

.module-global-wrap[data-v-4a1bca54] {
  margin-top: 1.5rem;
  border-top: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}
.module-global-title[data-v-4a1bca54] {
  padding: 2.5rem;
  border-bottom: 1px solid var(--theme-color);
  font-family: D-DIN-Bold;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #3c3c3c;
}
.partner-swiper[data-v-4a1bca54] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.partner-swiper .partner-item-wrap[data-v-4a1bca54] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.partner-swiper .partner-item-wrap .partner-cont[data-v-4a1bca54] {
      width: calc(100% / var(--column));
      padding: 0px 0.75rem 0.75rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-content[data-v-4a1bca54] {
        border: 1px solid var(--theme-color);
        padding: 0.75rem;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        position: relative;
        margin-bottom: 1.5rem;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-content .alumni-view-item-content_text[data-v-4a1bca54] {
          height: calc(1.5rem * 5);
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-content .alumni-view-item-content_arrow[data-v-4a1bca54] {
          position: absolute;
          display: block;
          width: 0;
          height: 0;
          left: 1.25rem;
          bottom: -0.875rem;
          border-color: transparent;
          border-style: solid;
          border-top-color: var(--theme-color);
          border-width: 0.875rem;
          border-bottom-width: 0;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-content .alumni-view-item-content_arrow[data-v-4a1bca54]::after {
            content: '';
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-color: transparent;
            border-style: solid;
            border-width: 0.8125rem;
            bottom: 1px;
            margin-left: -0.8125rem;
            border-top-color: #fff;
            border-bottom-width: 0;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail[data-v-4a1bca54] {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-logo[data-v-4a1bca54] {
          position: relative;
          width: 3.75rem;
          height: 3.75rem;
          margin-right: 5px;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-logo > img[data-v-4a1bca54] {
            width: 100%;
            height: 100%;
            background-color: #fff;
            -o-object-fit: cover;
               object-fit: cover;
            position: absolute;
            inset: 0;
            border: 1px solid var(--theme-color);
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-logo[data-v-4a1bca54]::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid var(--theme-color);
            left: 4px;
            top: 4px;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-info[data-v-4a1bca54] {
          padding-left: 1.5rem;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          font-size: 1rem;
          line-height: 1.25rem;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-info .info-name[data-v-4a1bca54] {
            font-family: D-DIN-Bold;
            margin-bottom: 4px;
}
.partner-swiper .partner-item-wrap .partner-cont .alumni-view-item-detail .alumni-view-item-info .info-position[data-v-4a1bca54] {
            height: 2.5rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
}
.partner-swiper .amplifierSay-swiper-pagination[data-v-4a1bca54] {
    position: static;
    text-align: center;
}
.partner-swiper .amplifierSay-swiper-pagination[data-v-4a1bca54] .swiper-pagination-bullet {
      margin: 0 8px;
}
.partner-swiper .amplifierSay-swiper-pagination[data-v-4a1bca54] .swiper-pagination-bullet-active {
      background-color: var(--theme-color);
}

.module-global-title[data-v-70153ef6] {
  padding: 2.5rem;
  border-bottom: 1px solid var(--theme-color);
  font-family: D-DIN-Bold;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #3c3c3c;
}
.module-global-wrap[data-v-70153ef6] {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
  margin-bottom: 6.25rem;
}
.module-global-wrap .module6-wrap-content[data-v-70153ef6] {
    padding: 0 2.5rem;
    color: #505050;
    margin-bottom: 1.5rem;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header[data-v-70153ef6] {
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--theme-color);
      cursor: pointer;
      -webkit-transition: all 0.3s linear;
      transition: all 0.3s linear;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .list-item-title[data-v-70153ef6] {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        font-family: D-DIN-Bold;
        font-size: 1.25rem;
        line-height: 2rem;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .icon[data-v-70153ef6] {
        -webkit-align-self: flex-end;
            -ms-flex-item-align: end;
                align-self: flex-end;
        position: relative;
        width: 1.5rem;
        height: 1.5rem;
        margin: 0 8px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .icon[data-v-70153ef6]::before, .module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .icon[data-v-70153ef6]::after {
          content: '';
          display: block;
          position: absolute;
          background-color: var(--theme-color);
          -webkit-transition: all 0.2s 0.2s;
          transition: all 0.2s 0.2s;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .icon[data-v-70153ef6]::before {
          width: 100%;
          height: 1px;
          top: calc(50% - 0.5px);
          left: 0;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .icon[data-v-70153ef6]::after {
          width: 1px;
          height: 100%;
          left: calc(50% - 0.5px);
          top: 0;
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .showIcon[data-v-70153ef6] {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .showIcon[data-v-70153ef6]::before {
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg);
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .list-item-header .showIcon[data-v-70153ef6]::after {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg);
}
.module-global-wrap .module6-wrap-content .content-box-content-list-item .open-detail-header[data-v-70153ef6] {
      border-color: transparent;
}
.module-global-wrap .module6-wrap-content .list-item-content[data-v-70153ef6] {
      width: 100%;
      padding: 2.5rem 2rem;
      font-family: D-DIN;
      font-size: 1.25rem;
      line-height: 1.75rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      background-color: var(--theme-color-semi-transparent);
}

footer[data-v-31c2eb00] {
  background-color: #0f141e;
  padding-top: 2rem;
  font-family: D-DIN;
  font-size: 1.25rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
footer .footer-container[data-v-31c2eb00] {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
footer .footer-container .footer-container-view[data-v-31c2eb00] {
      border-left: 1px solid #fff;
      border-right: 1px solid #fff;
      padding: 3.75rem 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
}
footer .footer-container .footer-container-view .footer-container-view-item[data-v-31c2eb00] {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 0 2rem;
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module[data-v-31c2eb00] {
          margin-bottom: 3rem;
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module .link-title[data-v-31c2eb00] {
            display: block;
            font-size: 1.25rem;
            font-family: D-DIN-Bold;
            margin-bottom: 1.5rem;
            color: rgba(249, 252, 253, 0.8);
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module .link-title[data-v-31c2eb00]:hover {
              color: #fff;
              text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.15);
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module .link-children[data-v-31c2eb00] {
            display: block;
            margin-bottom: 1rem;
            color: rgba(249, 252, 253, 0.6);
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module .link-children[data-v-31c2eb00]:hover {
              color: #fff;
              text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.15);
}
footer .footer-container .footer-container-view .footer-container-view-item .footer-container-view-item-module[data-v-31c2eb00]:nth-last-child(1) {
          margin-bottom: 0;
}
footer .footer-container .footer-container-view .container-right[data-v-31c2eb00] {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-right: 1rem;
}
footer .footer-container .footer-container-view .container-right .container-right-logo[data-v-31c2eb00] {
          display: block;
          width: 7.5rem;
}
footer .footer-container .footer-container-view .container-right .container-right-logo > img[data-v-31c2eb00] {
            width: 100%;
}
footer .footer-container .footer-container-view .container-right .container-right-content[data-v-31c2eb00] {
          font-size: 1.125rem;
}
footer .footer-container .footer-container-view .container-right .container-right-content .container-right-content-link[data-v-31c2eb00] {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
                -ms-flex-align: end;
                    align-items: flex-end;
            margin-top: 3.75rem;
}
footer .footer-container .footer-container-view .container-right .container-right-content .container-right-content-link img[data-v-31c2eb00] {
              width: 2.5rem;
              height: 2.5rem;
              -o-object-fit: cover;
                 object-fit: cover;
}
footer .footer-container .footer-container-view .container-right .container-right-content .container-right-content-link > div[data-v-31c2eb00] {
              border-bottom: 1px solid #fff;
              margin-left: 1rem;
              -webkit-box-sizing: border-box;
                      box-sizing: border-box;
              line-height: 2.5rem;
              -webkit-transition: all 0.3s ease;
              transition: all 0.3s ease;
}
footer .footer-container .footer-container-view .container-right .container-right-content .container-right-content-link > div[data-v-31c2eb00]:hover {
                height: 2.5rem;
                background: #fff;
                color: #000;
                padding-left: 8px;
                padding-right: 8px;
                margin-left: 8px;
}
footer .bottom-view[data-v-31c2eb00] {
    height: 5rem;
    line-height: 5rem;
    font-size: 1.125rem;
    text-align: center;
}
.border-lr[data-v-31c2eb00] {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.enroll-page[data-v-9e11629c] {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

