.page2-content{
        border-radius: 0 !important;
      }
      .page-2{
        padding: 0 !important;
        display: block !important;
        overflow: auto;
        height: 100vh;
      }
      .page-2  img {
        display: block;
      }
      .active-wrapper .page-1 .left-page .left-page-img{
        background-image: url('../images/page1-left2.png');
      }
      .active-wrapper .page-1 .right-page .right-page-img{
        background-image: url('../images/page1-right2.png');
      }
      .active-wrapper .page-1 .left-page::after, .active-wrapper .page-1 .right-page::after{
        background-image: url('../images/page1-bg2.jpg');
      }

      /* 动画容器样式 - 根据设计稿 */
      .animation-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 1.2rem;
        position: relative;
        background: url(../images/page1-bg2.jpg);
        border-radius: 0;
        padding: 20px;
        z-index: 100;
      }

      /* 长方形框样式 - 根据设计稿 */
      .letter-box {
        height: .8rem;
        width: 80%;
        padding: 0 .2rem;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.8);
        position: absolute;
        display: flex;
        align-items: center;
        color: white;
        font-size: 16px;
        font-weight: bold;
        transition: all 0.3s ease;
      }
      .letter-box .arrow_txt{
        margin-left: auto;
        
      }

      .letter-box-left {
        margin-left: -.2rem;
        background: url(../images/page1-bg2.jpg);
        z-index: 101;
        cursor: pointer;
        pointer-events: auto;
        animation: moveBoxLeft 4s ease-in-out infinite;
      }

      .letter-box-right {
        margin-left: .2rem;
        margin-top: .4rem;
        animation: moveBoxRight 4s ease-in-out infinite;
      }

      /* 动画关键帧 - 相互靠近又远离 */
      @keyframes moveBoxLeft {
        0%, 100% {
          transform: translate(-.05rem, -.05rem);
        }
        50% {
          transform: translate(0);
        }
      }

      @keyframes moveBoxRight {
        0%, 100% {
          transform: translate(.05rem, .05rem);
        }
        50% {
          transform: translate(0);
        }
      }

      /* 右侧箭头样式 */
      .arrow {
        margin-left: 8px;
        font-size: 14px;
        animation: arrowPulse 2s ease-in-out infinite;
      }

      @keyframes arrowPulse {
        0%, 100% {
          opacity: 0.7;
          transform: translateX(0);
        }
        50% {
          opacity: 1;
          transform: translateX(3px);
        }
      }

      /* 表单样式 */
      .alumni-form-parent{
        background: url(../images/page1-bg2.jpg);
        padding: .4rem .4rem 1rem;
      }
      .alumni-form {
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        padding: .4rem;
        color: white;
        border:2px solid white;
      }

      .form-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        color: white;
      }

      .form-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.9;
        color: white;
      }

      /* Vant组件样式覆盖 */
      .alumni-form .van-cell-group {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
      }

      .alumni-form .van-cell {
        background: transparent;
        color: white;
      }

      .alumni-form .van-field__label {
        color: white;
      }

      .alumni-form .van-field__control {
        color: white;
      }

      .alumni-form .van-field__control::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }

      /* Radio样式 */
      .radio-row {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      .radio-label {
        color: white;
        font-size: 16px;
        margin-right: 20px;
        min-width: 120px;
      }

      .radio-options {
        display: flex;
        gap: 30px;
        flex: 1;
      }

      .radio-option {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }

      .radio-circle {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .radio-circle.checked {
        border-color: white;
        background: rgba(255, 255, 255, 0.2);
      }

      .radio-circle.checked::after {
        content: '✓';
        color: white;
        font-size: 12px;
        font-weight: bold;
      }

      .radio-text {
        color: white;
        font-size: 16px;
      }

      .required-star {
        color: #ee0a24;
      }

      /* 视频播放器样式 */
      .video-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .video-overlay video {
        cursor: auto;
      }

      .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
        transition: all 0.3s ease;
      }

      .close-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: scale(1.1);
      }

      .close-btn span {
        color: white;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
      }
      .van-hairline--top-bottom::after{
        border-width: 0;
      }
      .txt{
        color: #7b2562 !important;
      }

      /* 书本式翻页效果 - 左侧对齐 */
      .active-wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        perspective: 1200px;
        overflow: hidden;
      }

      .page-1 {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
      }

      /* 左页面 - 从左侧翻页 */
      .left-page {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: left center;
        transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10;
        backface-visibility: hidden;
      }

      .left-page.flip-left {
        transform: rotateY(-180deg);
      }

      /* 右页面 - 也从左侧翻页，但延迟启动 */
      .right-page {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: left center;
        transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        z-index: 9;
        backface-visibility: hidden;
      }

      .right-page.flip-right {
        transform: rotateY(-180deg);
      }

      /* 页面名称 - 从左侧翻页 */
      .page1-name {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        transform-origin: left center;
        transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
        z-index: 11;
        backface-visibility: hidden;
      }

      .page1-name.flip-left {
        transform: rotateY(-180deg);
      }

      /* 阴影效果 - 从左侧翻页 */
      .left-page-shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: left center;
        transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
        z-index: 8;
      }

      .left-page-shadow.flip-left {
        transform: rotateY(-180deg);
      }

      /* 翻页过程中的卷曲效果 */
      .left-page::before,
      .right-page::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0;
        border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
        transition: all 0.5s ease;
        z-index: 20;
      }

      .left-page.flip-left::before,
      .right-page.flip-right::before {
        border-width: 0 0 50px 50px;
        animation: pageCurl 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      @keyframes pageCurl {
        0% {
          border-width: 0 0 0px 0px;
          opacity: 0;
        }
        20% {
          border-width: 0 0 30px 30px;
          opacity: 0.6;
        }
        50% {
          border-width: 0 0 60px 60px;
          opacity: 1;
        }
        80% {
          border-width: 0 0 40px 40px;
          opacity: 0.8;
        }
        100% {
          border-width: 0 0 0px 0px;
          opacity: 0;
        }
      }