body {
    background: #fff;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.line-clamp-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-clamp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-clamp-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-clamp-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line-clamp-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/*********************************pc  h2æ ‡é¢˜*********************************/
.page {
    padding: 60px 0 00px 0;
}

.page .title {
    margin-bottom: 30px;
    text-align: center;
}

.page .title img {
    display: block;
    margin: 0 auto;
}

/* .page .con .btn {
    font-size: 36px;
    color: #1f0a8d;
    font-weight: bold;
    width: 610px;
    height: 96px;
    background: url(../images/3.png) no-repeat center top;
    border-radius: 50px;
    text-align: center;
    line-height: 96px;
    display: block;
    margin: 60px auto 0;
    position: relative;
    background-size: contain;
} */

.page .con .btn::after {
    content: '';
    width: 21px;
    height: 20px;
    background: url(../images/left.png) no-repeat center top;
    position: absolute;
    right: 35px;
    top: 16px;
}

/** header_banner **/
.header_banner {
    height: 562px;
    background: url(../images/pc_bgc/1_01.jpg) no-repeat center top;
    overflow: hidden;
}

.header_banner .banner {
    text-align: center;
    margin: 0 auto;
}

.header_banner img {
    margin: 0 auto;
    margin-top: 165px;
}

/* 导航栏 */
.navigation {
    margin-top: -1px;
    position: relative;
    z-index: 10;
    background: url(../images/pc_bgc/1_02.jpg) no-repeat center top;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;

}

.navigation-placeholder {
    display: none;
    width: 100%;
}

.navigation-sentinel {
    position: relative;
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.navigation .m1200,
.navigation .nav {
    position: relative;
    z-index: 2;
}

.navigation .nav {
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(20, 48, 161, 0.6) 0%, rgba(34, 90, 212, 0.35) 100%);
}

.navigation .nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.navigation .nav-item {
    flex: 1;
    position: relative;
    text-align: center;
    border-radius: 28px;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.navigation .nav-link {
    display: block;
    padding: 16px 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease, transform 0.3s ease;
}

/* PC端隐藏br标签，让文字在一行显示 */
.navigation .nav-link br {
    display: none;
}

.navigation .nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #40d6ff 0%, #8ee2ff 50%, #ffe083 100%);
    transition: width 0.3s ease, left 0.3s ease;
}

.navigation .nav-item:hover,
.navigation .nav-item.active {
    background: rgba(16, 36, 107, 0.55);
    box-shadow: 0 8px 20px rgba(0, 34, 102, 0.3);
    transform: translateY(-2px);
}

.navigation .nav-item:hover::after,
.navigation .nav-item.active::after {
    width: 60%;
    left: 20%;
}

.navigation .nav-item:hover .nav-link,
.navigation .nav-item.active .nav-link {
    background: linear-gradient(90deg, #4ff3ff 0%, #8fe2ff 50%, #ffe181 100%);
    -webkit-background-clip: text;
    color: transparent;
    transform: translateY(-1px);
}

.navigation.is-sticky,
.navigation.navigation_fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, rgba(8, 23, 84, 0.92) 0%, rgba(17, 46, 126, 0.88) 45%, rgba(32, 15, 94, 0.92) 100%);
    box-shadow: 0 16px 36px rgba(7, 20, 73, 0.4);
    backdrop-filter: blur(10px);
    animation: navFadeIn 0.35s ease;
}

.navigation.is-sticky .nav,
.navigation.navigation_fixed .nav {
    border-color: rgba(135, 191, 255, 0.6);
    box-shadow: inset 0 0 28px rgba(90, 140, 255, 0.2);
    background: linear-gradient(90deg, rgba(45, 92, 221, 0.75) 0%, rgba(82, 139, 255, 0.55) 100%);
}

@keyframes navFadeIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.page1 {
    background: #0c2289;
    height: 671px;
    overflow: hidden;
    padding-top: 0;
    position: relative;
}



.page1 .m1200 {
    position: relative;
    z-index: 1;
}

.page1 .title {
    margin-top: 80px;
}

.page1 .con {
    display: flex;
    justify-content: center;
}

.page1-card {
    position: relative;
    width: 100%;
    max-width: 1080px;
    padding: 56px 72px;
    border-radius: 32px;
    border: 1px solid rgba(127, 215, 255, 0.65);
    background: transparent;
    box-shadow: 0 30px 70px rgba(8, 32, 128, 0.45);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.85;
    overflow: hidden;
}

.page1-card__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.page1-card__text:last-child {
    margin-bottom: 0;
}

.page1-card__highlight {
    color: #90f3ff;
    font-weight: 700;
}

.page1 .btn {
    text-align: center;
    margin-top: 60px;
}


.page2 {
    background: #0c2289;
    height: 1350px;
    overflow: hidden;
    padding-top: 0px;
}

/* 标题区域 */
.page2 .title {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.page2 .con {
    margin-top: 20px;
}

.page2 .comparison-table {
    position: relative;
    width: 100%;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.92);
}

/* PC端隐藏移动端结构 */
.page2 .comparison-mobile.isWap {
    display: none;
}

.page2 .comparison-table ul {
    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
    margin-bottom: 6px;
    padding: 0;
    list-style: none;
}

.page2 .comparison-table li {
    padding: 26px 28px;
    font-size: 16px;
    line-height: 1.3;
}

.page2 .comparison-header {
    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
    gap: 0;
    margin-bottom: 16px;
    font-weight: 700;
    background: linear-gradient(96deg, rgba(31, 41, 209, 0.95) 0%, rgba(171, 162, 251, 0.95) 100%);
    border-radius: 22px;
    overflow: hidden;
    height: 60px;
}

.page2 .comparison-header li {
    text-align: center;
    font-size: 22px;
    color: #0efff1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-sizing: border-box;
    padding: 0;
}

.page2 .comparison-row {
    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
    gap: 6px;
    margin-top: 16px;
    list-style: none;
}

.page2 .comparison-row li {
    position: relative;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(11, 35, 124, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #152bae;
}

.page2 .comparison-row li.dimension-col {
    background: #2234fd;
    align-items: center;
    text-align: center;
    color: #0efff1;
}

.page2 .comparison-table p {
    margin: 0 0 10px;
}

.page2 .comparison-table p:last-child {
    margin-bottom: 0;
}

.page2 .comparison-table p span {
    color: #0efff1;
}

.page2 .dimension-col {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #82f6ff;
    letter-spacing: 1px;
}

.page2 .btn {
    text-align: center;
    margin-top: 40px;
}

.page2 .btn img {
    max-width: 100%;
}



.page3 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    height: 1274px;
}

/* 页面容器隔离 */
.page3 .m1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page3 .title {
    text-align: center;
    margin-bottom: 30px;
}

.page3 .title img {
    max-width: 100%;
    height: auto;
}

/* page3的css */
.page3 .con {
    display: flex;
    justify-content: center;
}

.page3 .timeline-wrapper {
    width: 100%;
    position: relative;
    max-width: 1140px;
}

.page3 .timeline-tabs {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.page3 .timeline-tab {
    flex: 1;
    height: 60px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-image: linear-gradient(90deg, #2836f4 0%, #9583fd 100%) 1;
    padding: 0 12px;
}

.page3 .timeline-tab.active {
    background: linear-gradient(90deg, #2836f4 0%, #9583fd 100%);
    color: #0a1c66;
    box-shadow: 0 14px 36px rgba(86, 196, 255, 0.45);
    border-color: transparent;
    border-radius: 999px;
    border: none;
}

.page3 .timeline-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 6px;
}

.page3 .timeline-pane {
    display: none;
    background: #102392;
}

.page3 .timeline-pane.active {
    display: block;
    animation: timelineFade 0.4s ease;
}

.page3 .timeline-visual {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 55px 29px 0px;
}

.page3 .timeline-image-slot {
    width: 100%;
    height: 383px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.page3 .timeline-image-slot-985 {
    background-image: url(../images/7.png);
}

.page3 .timeline-image-slot-double {
    background-image: url(../images/8.png);
    width: 1142px;
    height: 501px;
}

.page3 .timeline-image-slot-oversea {
    background-image: url(../images/9.png);
    width: 1142px;
    height: 465px;
}

.page3 .timeline-text {
    background: #0a1992;
    border-radius: 16px;
    padding: 28px 30px 24px;
}

.page3 .timeline-text-title {
    font-size: 18px;
    color: #8ef3ff;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.page3 .timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.5;
}

.page3 .btn {
    text-align: center;
    margin-top: 60px;
}

.page3 .btn img {
    max-width: 100%;
}

.page4 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    padding: 0;
    height: auto;
}

.page4 .m1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page4 .con {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.page4 .requirements-layout {
    width: 100%;
    backdrop-filter: blur(6px);
}

.page4 .requirements-header {
    margin-bottom: 0px;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.page4 .requirements-header li {
    float: left;
    margin-right: 0px;
}

.page4 .requirements-header li:first-child {
    margin-left: 12px;
}

.page4 .requirements-title {
    width: 200px;
    height: 66px;
    border-radius: 999px;
    line-height: 66px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    box-shadow: none;
}

.page4 .requirements-title-bg,
.page4 .requirements-title-school {
    width: calc((100% - 200px - 32px) / 2);
}

.page4 .requirements-title-bg,
.page4 .requirements-title-school {
    color: #ffffff;
}

.page4 .requirements-title-major {
    background: none;
    color: #ffffff;
}

.page4 .requirements-title-bg {
    background: none;
}

.page4 .requirements-title-school {
    background: none;
}

.page4 .requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page4 .requirements-item {
    margin-bottom: 22px;
    position: relative;
}

.page4 .requirements-item:last-child {
    margin-bottom: 0;
}

.page4 .time-center {
    width: 220px;
    float: left;
    z-index: 3;
    position: relative;
    margin-right: -60px;
}

.page4 .time-oval {
    background: linear-gradient(90deg, #21e0fc 0%, #57f5ff 100%);
    color: #05316a;
    font-weight: 700;
    font-size: 18px;
    border-radius: 28px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-shadow: 0 20px 42px rgba(24, 96, 210, 0.35);
    text-align: center;
}

.page4 .content-left,
.page4 .content-right {
    float: left;
    position: relative;
    width: calc(50% - 60px);
}

.page4 .content-left {
    z-index: 2;
    padding-left: 90px;
    box-sizing: border-box;
}

.page4 .content-right {
    margin-left: -60px;
    z-index: 1;
    box-sizing: border-box;
}

.page4 .content-box {
    margin-left: -80px;
    border-radius: 28px;
    padding: 0 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.7;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
}

.page4 .requirements-box-bg {
    background: linear-gradient(90deg, rgba(32, 72, 230, 0.95) 0%, rgba(56, 120, 255, 0.9) 100%);
}

.page4 .requirements-box-school {
    margin-left: -40px;
    padding-left: 40px;
    background: linear-gradient(90deg, rgba(64, 88, 255, 0.95) 0%, rgba(123, 99, 255, 0.9) 100%);
}

.page4 .btn {
    margin: 48px auto 0;
    text-align: center;
}


.page5 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    height: auto;
    padding-bottom: 100px;
}

/* PC端显示PC端表格 */
.page5 .material-table.isPc {
    display: block;
}

/* 移动端隐藏移动端结构（PC端默认隐藏） */
.page5 .material-mobile.isWap {
    display: none;
}

/* page5的css */
.page5 .material-table {
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(10, 40, 157, 0.3);
    position: relative;
}

.page5 .material-header {
    background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
    padding: 0;
    margin: 0 0 4px 0;
    border-bottom: none;
    border-radius: 12px;
    overflow: hidden;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.page5 .material-row {
    padding: 0;
    margin: 0;
    border-bottom: none;
    background: transparent;
}

.page5 .material-row:nth-child(odd) {
    background: transparent;
}

.page5 .material-row:nth-child(even) {
    background: #122ca0;
}

.page5 .material-row:first-child {
    border-radius: 0;
}

.page5 .material-row:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(10, 40, 157, 0.2);
    position: relative;
}

.page5 .material-row:last-child .material-col-type {
    position: relative;
}

.page5 .material-table::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
    z-index: 1;
    display: block;
}

.page5 .material-row {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.page5 .material-col {
    display: table-cell;
    padding: 20px 16px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    box-sizing: border-box;
    vertical-align: middle;
}

.page5 .material-col-type {
    width: 20%;
    font-weight: 700;
    font-size: 18px;
    background: transparent;
    border-right: none;
    text-align: center;
}

.page5 .material-col-985 {
    width: 26.67%;
    font-size: 14px;
    border-right: none;
}

.page5 .material-col-double {
    width: 26.67%;
    font-size: 14px;
    border-right: none;
}

.page5 .material-col-oversea {
    width: 26.66%;
    font-size: 14px;
    border-right: none;
}

.page5 .material-header .material-col {
    font-weight: 700;
    font-size: 18px;
    padding: 12px 16px;
    text-align: center;
    background: none;
    color: #0efff1;
    border-right: none;
    display: table-cell;
    vertical-align: middle;
}

.page5 .material-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page5 .material-content-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.page5 .material-content-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

.page5 .material-content-list li:last-child {
    margin-bottom: 0;
}

/* 响应式样式 */


.page5 .btn {
    margin: 40px auto 0;
    text-align: center;
}

.page6 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    padding-top: 10px;
}

.page6 .con {
    margin-top: 40px;
}

/* ================ page6 FAQ手风琴样式 ================ */
.page6 .faq-accordion {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: none;
}

.page6 .faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    background: #2339d1;
    box-shadow: 0 2px 12px rgba(36, 75, 255, 0.08);
    transition: background 0.3s;
    position: relative;
}

.page6 .faq-item.active {
    background: transparent;
    box-shadow: 0 4px 24px rgba(36, 75, 255, 0.18);
}

.page6 .faq-question {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #2339d1;
    padding: 0 32px 0 24px;
    height: 64px;
    cursor: pointer;
    position: relative;
    border-bottom: none;
    transition: background 0.3s;
}

.page6 .faq-item.active .faq-question {
    color: #fff;
    background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page6 .faq-q {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0efff1;
    color: #042e94;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 18px;
    flex-shrink: 0;
}

.page6 .faq-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #c625ff;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 10px;
    vertical-align: top;
    position: absolute;
    left: 24px;
    top: 84px;
}

.page6 .faq-arrow {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
}

.page6 .faq-arrow::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    transition: border-color 0.3s, transform 0.3s;
}

.page6 .faq-item.active .faq-arrow::after {
    border-color: #fff;
    transform: rotate(-135deg);
}

.page6 .faq-answer {
    background: #0c1398;
    padding: 20px 32px 24px 78px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    border-radius: 0 0 16px 16px;
    box-shadow: none;
    transition: background 0.3s;
}

.page6 .faq-answer-main {
    margin-bottom: 10px;
}

.page6 .faq-answer-hot b {
    color: #c75cf3;
    font-size: 16px;
    margin-bottom: 8px;
}

.page6 .faq-answer-tips {
    color: #b6e0ff;
    font-size: 15px;
}

.page6 .faq-item:not(.active) .faq-answer {
    display: none;
}

.page6 .faq-item:not(:last-child) {
    margin-bottom: 18px;
}

.page6 .btn {
    margin: 60px auto 0;
    text-align: center;
    padding-bottom: 40px;
}

.page8 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    padding-top: 20px;
}

.page8 .con {
    background: url(../images/17.png) no-repeat center top;
    background-size: 100% 100%;
    width: 100%;
    height: 592px;
    margin-top: 60px;
}

.page8 .btn {
    margin: 60px auto 0;
    text-align: center;
    padding-bottom: 20px;
}

.page7 {
    background: #0c2289;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    padding: 80px 0 180px;
}

.page7 .con {
    margin-top: 40px;
}

.page7 .con a {
    margin-right: 8px;
}

.page7 .con a:last-child {
    margin-right: 0;
}

/* 表单 开始 */
/* .page7 {
    background: url(../images/pc_bgc/1_04.jpg) no-repeat center top;
    width: 100%;
    height: 612px;
    overflow: hidden;
    cursor: pointer;
    padding-top: 60px;
}

.page7 .title {
    width: 100%;
    height: 69px;
}

.page7 .form-wrap form .label {
    border: 1px solid #474747;
} */

.xdf_bottomForm.form-wrap .m1200 {
    position: relative;
    border: none;
    width: 1200px;
    padding: 0px 0 0 1%;
    height: 80px;
    box-sizing: border-box;
}

.xdf_bottomForm.form-wrap form .label {
    border-radius: 0;
    width: 20%;
    margin: 20px 1.8% 0;
    padding-top: 6px;
    padding-left: 40px;
    box-sizing: border-box;
}

.xdf_bottomForm.form-wrap img.ax_img {
    position: absolute;
    left: 0px;
    bottom: -22px;
    z-index: -1;
    width: 228px;
}

.xdf_bottomForm.form-wrap .xdf_formbtn {
    width: 24%;
    float: left;
    color: #ffe868;
    background: linear-gradient(to bottom, #4f66c7, #2b92fd);
    border-radius: 50px;
    margin: 20px 18px 0;
    font-size: 18px;
    /* -webkit-animation: ball-scale-multiple 1s 0s linear infinite alternate;
    animation: ball-scale-multiple 1s 0s linear infinite alternate; */
    cursor: pointer;
}

/* ============ PC端样式结束 ============ */

/* ============ 移动端样式开始 ============ */
@media screen and (max-width:1000px) {
    body {
        padding-bottom: 0.8rem;
        background: #f4f5f9;
    }

    /* 移动端导航栏样式 */
    .navigation .nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .navigation .nav-list::-webkit-scrollbar {
        display: none;
    }

    .navigation .nav-item {
        flex: 0 0 auto;
        min-width: fit-content;
    }

    .navigation .nav-link {
        font-size: 14px;
        padding: 10px 8px;
        white-space: nowrap;
        line-height: 1.4;
    }

    /* 移动端显示br标签 */
    .navigation .nav-link br {
        display: block;
    }

    /* 移动端a标签不需要背景颜色 */
    .navigation .nav-item:hover .nav-link,
    .navigation .nav-item.active .nav-link {
        background: none !important;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .navigation .nav-item.active .nav-link {
        color: rgba(255, 255, 255, 1) !important;
    }

    .m1200 {
        width: 94%;
        display: block;
    }

    .m100 {
        width: 100%;
    }

    .page {
        padding: 0.66rem 0 0.7rem 0;
    }

    .page .title {
        text-align: center;
        margin-bottom: 0.45rem;
    }

    .page .title img {
        height: 0.68rem;
        margin: 0 auto;
    }

    .page .tit {
        font-size: .34rem;
        line-height: .5rem;
        margin: 0 0 .3rem 0;
        height: auto;
        text-align: center;
    }

    .page .tit .t1 {
        font-size: .4rem;
        line-height: .4rem;
        margin: 0 .05rem;
        padding: 0 .15rem;
        font-weight: normal;
    }

    .page .tit .t2 {
        font-size: .2rem;
        margin-top: .1rem;
        line-height: .2rem;
        letter-spacing: .2rem;
        font-weight: normal;
        text-align: center;
        display: block;
        color: #999999;
    }

    .page .con .btn {
        font-size: 0.26rem;
        width: 4.5rem;
        height: 0.8rem;
        border-radius: 0.5rem;
        line-height: 0.8rem;
        margin: 0.3rem auto 0;

    }

    .page .con .btn::after {
        content: '';
        width: 0.3rem;
        height: 0.3rem;
        background: url(../images/left.png) no-repeat center top;
        background-size: contain;
        position: absolute;
        right: 0.2rem;
        top: 0.25rem;
    }

    /** header_banner Start **/
    .header_banner .m1200 {
        display: block;
        width: 100%;
    }

    .header_banner {
        height: 6.12rem;
        background: none;
        overflow: hidden;
        width: 100%;
        background-size: 100% 100%;
        background-image: url(../images/m_bgc/1_01.jpg);
    }

    .header_banner p {
        font-size: 0.38rem;
        font-weight: 700;
        top: 2.14rem;
        margin-left: 2rem;
        color: #ebebeb;
        position: absolute;
    }

    .header_banner .banner img {
        width: 100%;
        margin: 0;
    }

    .page1 {
        background: #0c2289;
        height: 100%;
        padding-top: 0px;
        margin-top: -10px;
    }

    .page1 .title {
        margin-top: 0.6rem;
    }

    .page1 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page1 .con {
        font-size: 0.22rem;
        padding: 0;
    }

    .page1-card {
        padding: 0.3rem 0.24rem;
        border-radius: 0.16rem;
        margin: 0 0.2rem;
    }

    .page1-card__text {
        font-size: 0.22rem;
        line-height: 1.6;
        margin-bottom: 0.15rem;
    }

    .page1-card__text:last-child {
        margin-bottom: 0;
    }

    .page1 .btn {
        margin-top: 0.4rem;
    }

    .page1 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page2 {
        background: #0c2289;
        width: 100%;
        height: 100%;
        padding: 0;
        margin-top: -10px;
    }

    .page2 .title {
        margin-top: 0.6rem;
        margin-bottom: 0.3rem;
    }

    .page2 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    /* 移动端隐藏PC端表格 */
    .page2 .comparison-table.isPc {
        display: none;
    }

    /* 移动端显示移动端结构 */
    .page2 .comparison-mobile.isWap {
        display: block;
    }

    /* 移动端Tab样式 */
    .page2 .comparison-tabs {
        display: flex;
        gap: 0.08rem;
        margin-bottom: 0.3rem;
        padding: 0 0.2rem 0 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page2 .comparison-tabs::-webkit-scrollbar {
        display: none;
    }

    .page2 .comparison-tab {
        flex: 0 0 auto;
        min-width: fit-content;
        height: 0.7rem;
        line-height: 0.7rem;
        text-align: center;
        font-size: 0.22rem;
        font-weight: 600;
        border: none;
        border-radius: 0.1rem;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 0.2rem;
        white-space: nowrap;
        position: relative;
        box-sizing: border-box;
    }

    .page2 .comparison-tab::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 0.1rem;
        padding: 1px;
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        box-sizing: border-box;
    }

    .page2 .comparison-tab.active {
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        color: #fff;
        box-shadow: 0 4px 12px rgba(44, 55, 249, 0.4);
    }

    .page2 .comparison-tab.active::before {
        display: none;
    }

    /* 移动端内容区域 */
    .page2 .comparison-content {
        position: relative;
    }

    .page2 .comparison-pane {
        display: none;
    }

    .page2 .comparison-pane.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 移动端列表项样式 */
    .page2 .comparison-item {
        display: flex;
        margin-bottom: 0.2rem;
        background: rgba(18, 44, 174, 0.6);
        border-radius: 0.16rem;
        overflow: hidden;
    }

    .page2 .comparison-dimension {
        width: 1.6rem;
        padding: 0.2rem 0.12rem;
        background: #2234fd;
        color: #0efff1;
        font-size: 0.2rem;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1.3;
    }

    .page2 .comparison-text {
        flex: 1;
        padding: 0.2rem 0.16rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.22rem;
        line-height: 1.6;
    }

    .page2 .comparison-text p {
        margin: 0 0 0.1rem;
    }

    .page2 .comparison-text p:last-child {
        margin-bottom: 0;
    }

    .page2 .comparison-text span {
        color: #0efff1;
    }

    /* 进度条容器 (居中布局) */
    .page2 .progress-bar-container {
        margin: 0.2rem auto 0.4rem;
        /* 增加底部间距 */
        width: 85%;
        /* 适当加宽容器 */
    }

    /* 进度条主容器 (控制节点和轨道布局) */
    .page2 .progress-bar {
        display: flex;
        justify-content: space-between;
        /* 节点均匀分布 */
        align-items: center;
        position: relative;
        counter-reset: step;
        padding: 0 0.1rem;
        /* 左右预留空间，避免轨道溢出 */
    }

    /* 进度条轨道 (灰色背景长条，在节点下方) */
    .page2 .progress-bar::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0.4rem;
        /* 与左右padding对齐 */
        right: 0.4rem;
        height: 0.04rem;
        background-color: #e0e0e0;
        /* 浅灰色未激活轨道 */
        transform: translateY(-50%);
        z-index: 1;
        /* 轨道层级最低 */
    }

    /* 步骤节点样式 (核心：覆盖轨道，不被进度条遮挡) */
    .page2 .progress-step {
        width: 0.6rem;
        /* 节点尺寸 */
        height: 0.6rem;
        line-height: 0.6rem;
        border-radius: 50%;
        background-color: #e0e0e0;
        /* 未激活灰色背景 */
        color: #666666;
        /* 未激活文字颜色 */
        text-align: center;
        font-weight: bold;
        font-size: 0.22rem;
        font-family: 'Arial', sans-serif;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 2;
        /* 节点层级最高，覆盖轨道和进度条 */
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        /* 轻微阴影增强立体感 */
    }

    /* 激活态节点 (匹配图片中的蓝色发光效果) */
    .page2 .progress-step.active {
        background: linear-gradient(to bottom, #41b3ff, #d02dff);
        /* 纯蓝色背景（可替换为渐变） */
        color: white;
        /* 激活文字白色 */
        box-shadow: 0 0 12px rgba(74, 108, 247, 0.6), 0 0 24px rgba(74, 108, 247, 0.3);
        /* 双层发光效果 */
        transform: scale(1.08);
        /* 轻微放大突出激活状态 */
    }

    /* 进度填充条 (蓝色进度条，在节点下方) */
    .page2 .progress-fill {
        position: absolute;
        height: 4px;
        width: 0;
        background: linear-gradient(to right, #41b3ff, #d02dff);
        /* 蓝色填充（与激活节点颜色一致） */
        top: 50%;
        left: 40px;
        /* 与轨道左侧对齐 */
        transform: translateY(-50%);
        transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        /* 平滑动画 */
        z-index: 1;
        /* 填充条层级与轨道相同，在节点下方 */
    }

    /* 步骤内容容器样式 */
    .page2 .step-content-container {
        width: 80%;
        margin: 0;
        max-width: 7.5rem;
        width: 7.1rem;
        /* 限制最大宽度 */
    }

    .page2 .step-content {
        display: none;
        /* 默认隐藏 */
    }

    .page2 .step-content.active {
        display: block;
        /* 激活时显示 */
        animation: fadeIn 0.5s ease;
        /* 内容淡入动画 */
    }

    /* 内容区域卡片样式 */
    .page2 .step-content-item {
        background: #edf3fb;
        padding: 0.3rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        /* 增强阴影 */
    }

    .page2 .step-title {
        display: inline;
        font-size: 0.24rem;
        color: #fff287;
        margin-bottom: 0.6rem;
        padding: 0.04rem 0.24rem;
        border-radius: 10px;
        background-color: #2c40a4;
        width: 50%;
        height: 0.44rem;
        line-height: 0.44rem;
        /* 标题下划线分隔 */
    }

    .page2 .content-block {
        margin-top: 0.1rem;
        margin-bottom: 0.15rem;
        line-height: 1.7;
        /* 优化行高，增强可读性 */
    }

    .page2 .content-block p {
        font-size: 0.22rem;
    }

    .page2 .content-subtitle {
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.08rem;
        font-size: 0.22rem;
    }

    .page2 .content-subtitle span {
        background-color: #2c40a4;
        color: #fff;
        border-radius: 50%;
    }

    .page2 .btn {
        margin-top: 0.6rem;
    }

    .page2 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page3 {
        background: #0c2289;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
        margin-top: -10px;
    }

    .page3 .con {
        width: 100%;
        cursor: pointer;
        margin-top: 0.6rem;
        background-color: #0a1992;
    }

    /* 页面容器隔离 */
    .page3 .m1200 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 标题区域 */
    .page3 .title {
        text-align: center;
        margin-bottom: 30px;
    }

    .page3 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    /* 选项卡导航（带page3前缀） */
    .page3 .tab-nav {
        display: flex;
        gap: 0;
        margin-bottom: 0;
        /* background: linear-gradient(to bottom, #4a6cf7 0%, #b3c6fa 100%); */
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(74, 108, 247, 0.08);
        /* 渐变色，顶部深底部浅 */
    }

    .page3 .tab-btn {
        flex: 1;
        background: linear-gradient(to bottom, #e9e9e9, #d1d7ec);
        padding: 0.15rem 0;
        margin: 0 0.15rem;
        height: 0.83rem;
        line-height: 0.83rem;
        text-align: center;
        font-weight: bold;
        color: #444444;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(74, 108, 247, 0.08);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.26rem;
        border: none;
    }

    .page3 .tab-btn.active {
        background: linear-gradient(to bottom, #d4e3ff, #c6d2ed);
        font-weight: 900;
    }

    .page3 .tab-btn {
        border-radius: 16px 16px 0 0;
    }

    .page3 .tab-btn.active::after {
        display: none;
    }

    .page3 .tab-content-container {
        margin-bottom: 0;
    }

    .page3 .blue-card {
        background: #1b34b0;
        padding: 30px;
        color: #222;
        box-shadow: none;
        margin-bottom: 0;
    }

    .page3 .tab-content.active .blue-card {
        border-radius: 20px;

    }

    .page3 .notes-section {
        background: #fff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 24px rgba(74, 108, 247, 0.08);
        padding: 30px;
        margin-bottom: 30px;
        margin-top: 0;
    }

    /* 让tab、blue-card、notes-section三者无缝拼接 */
    .page3 .tab-content.active .blue-card,
    .page3 .tab-content.active .notes-section {
        border-top: none;
    }

    /* 大学分类标题 */
    .page3 .university-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .page3 .section-title {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 22px;
        color: #33ffe9;
    }

    .page3 .num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 36px;
        margin-right: 12px;
        font-size: 48px;
        font-weight: bold;
        background: linear-gradient(to bottom, #aa34ee, #2441ba);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    /* 内容两列布局 */
    .page3 .content-row {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
    }

    .page3 .left-column,
    .page3 .right-column {
        flex: 1;
    }

    .page3 .column-title {
        font-size: 16px;
        margin-bottom: 12px;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.9);
    }

    .page3 .content-list {
        padding-left: 20px;
        line-height: 1.8;
        font-size: 14px;
    }

    .page3 .content-list li {
        color: #fff;
        margin-bottom: 8px;
        position: relative;
    }

    .page3 .content-list li::before {
        content: '•';
        position: absolute;
        left: -15px;
    }

    /* 关键注意事项部分 */
    .page3 .notes-section {
        background-color: #fff;
        margin-top: -25px;
    }

    .page3 .notes-title {
        font-size: 18px;
        color: #1932c0;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page3 .notes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .page3 .note-item {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
    }

    .page3 .note-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page3 .notes-grid .small li {
        color: #000;
        font-size: 13px;
        line-height: 1.7;
    }

    /* 内容切换控制 */
    .page3 .tab-content {
        display: none;
    }

    .page3 .tab-content.active {
        display: block;
        animation: page3FadeIn 0.5s ease;
    }

    @keyframes page3FadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .page3 .btn {
        margin-top: 0.4rem;
    }

    .page3 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    /* page3 timeline移动端样式 */
    .page3 .timeline-tabs {
        display: flex;
        gap: 0.08rem;
        margin-bottom: 0.3rem;
        padding: 0 0.2rem 0 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page3 .timeline-tabs::-webkit-scrollbar {
        display: none;
    }

    .page3 .timeline-tab {
        flex: 1;
        height: 0.7rem;
        line-height: 0.7rem;
        text-align: center;
        font-size: 0.22rem;
        font-weight: 600;
        border: none;
        border-radius: 0.08rem;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 0.1rem;
        white-space: nowrap;
        position: relative;
        box-sizing: border-box;
    }

    .page3 .timeline-tab::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 0.08rem;
        padding: 1px;
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        box-sizing: border-box;
    }

    .page3 .timeline-tab.active {
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        color: #fff;
        box-shadow: 0 4px 12px rgba(44, 55, 249, 0.4);
        border-radius: 0.08rem;
    }

    .page3 .timeline-tab.active::before {
        display: none;
    }

    .page3 .timeline-visual {
        padding: 0;
        border-radius: 0;
    }

    .page3 .timeline-image-slot {
        background-size: cover;
    }

    .page3 .timeline-image-slot-985 {
        background-image: url(../images/24.png);
        height: 5.6rem;
    }

    .page3 .timeline-image-slot-double {
        background-image: url(../images/25.png);
        width: 6.78rem;
        height: 6.33rem;
    }

    .page3 .timeline-image-slot-oversea {
        background-image: url(../images/26.png);
        width: 6.78rem;
        height: 5.43rem;
    }

    .page3 .timeline-text {
        padding: 22px 18px;
    }

    .page4 {
        background: #0c2289;
        width: 100%;
        height: 23.12rem;
        margin-top: -10px;
    }

    .page4 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page4 .con {
        padding: 0;
        margin-top: 0rem;
    }

    /* page4 移动端字体大小统一为 0.2rem */
    .page4 .requirements-title {
        font-size: 0.2rem;
    }

    /* page4 移动端表头对齐 */
    .page4 .requirements-header {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
    }

    .page4 .requirements-header li {
        float: left;
        white-space: normal;
    }

    .page4 .requirements-header li:first-child {
        margin-left: 0;
    }

    .page4 .requirements-title-major {
        width: 1.33rem;
        flex-shrink: 0;
    }

    .page4 .requirements-title-bg {
        width: 2.4rem;
        padding-left: 0rem;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .page4 .requirements-title-school {
        width: 3rem;
        padding-left: 0.4rem;
        margin-left: 0rem;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .page4 .requirements-item {
        overflow: hidden;
    }

    .page4 .time-center {
        width: 1.33rem;
        float: left;
    }

    .page4 .time-oval {
        font-size: 0.2rem;
        border-radius: 0.16rem;
        height: 1rem;
        padding: 0.16rem 0.32rem;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-all;
        line-height: 1.4;
        text-align: center;
        box-sizing: border-box;
    }

    .page4 .content-box {
        box-sizing: border-box;
        font-size: 0.18rem;
        height: 1rem;
        width: 100%;
        border-radius: 16px;
        padding: 0.1rem 0.4rem;
        margin: 0 0 0rem 0;
        box-shadow: 0 2px 12px rgba(36, 144, 255, 0.06);
    }

    .page4 .content-left,
    .page4 .content-right {
        float: left;
        width: 3rem;
        margin-left: 0.2rem;
    }

    .page4 .content-left {
        padding-left: 0.6rem;
        margin-right: 0;
        width: 3.6rem;
    }

    .page4 .content-right {
        float: left;
        width: 3.4rem;
        padding-left: 0.4rem;
        margin-left: -0.6rem;
        box-sizing: border-box;
        border-radius: 0;
    }

    .page4 .tab-switch {
        display: flex;
        width: 90%;
        margin-left: 5%;
        margin-bottom: 0.32rem;
    }

    .page4 .tab-switch .tab-btn {
        width: 40%;
        height: 0.4rem;
        line-height: 0.4rem;
        font-size: 0.2rem;
        margin-top: 0.5rem;
        border: none;
        outline: none;
        background: #e9e9e9;
        color: #666;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        font-weight: 500;
    }

    .page4 .tab-switch .tab-btn.active {
        background: #2490ff;
        color: #fff;
        font-weight: 700;
    }

    .page4 .content-box.top-box {
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding-top: 12px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .page4 .content-box.bottom-box {
        border-radius: 16px;
        padding: 6px 32px 32px 2px;
        margin-top: 32px;
        position: relative;
        z-index: 1;
    }

    .page4 .tab-content-box {
        position: relative;
        height: 10.4rem;
        display: block;
    }

    .page4 .content-box.bottom-box {
        position: absolute;
        left: 0;
        top: 11rem;
        left: 0.4rem;
        margin-top: 0;
        z-index: 1;

    }

    .page4 .content-box.bottom-boxlast {
        position: absolute;
        left: 0;
        top: 14.6rem;
        left: 0.4rem;
        margin-top: 0;
        z-index: 1;
        line-height: 1.8;
    }

    .page4 .content-box.bottom-box p {
        font-size: 0.2rem;
        line-height: 1.8;
    }

    .page4 .content-title {
        display: flex;
        align-items: center;
        color: #2c40a4;
        font-size: 0.2rem;
        font-weight: 700;
        margin-bottom: 0.1rem;
    }

    .page4 .content-title .circle-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 50%;
        background: linear-gradient(to right, #cb43ff, #4baaff);
        color: #fff;
        font-size: 0.2rem;
        font-weight: bold;
        margin-right: 0.1rem;
    }

    .page4 .btn {
        margin: 48px auto 0;
        text-align: center;
    }

    .page4 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page5 {
        background: #0c2289;
        width: 100%;
        height: 100%;
        padding-bottom: 0.4rem;
        margin-top: -10px;
    }

    .page5 .title {
        margin-top: 0rem;
        margin-bottom: 0.3rem;
    }

    .page5 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page5 .con {
        margin-top: 0.4rem;
    }

    /* 移动端隐藏PC端表格 */
    .page5 .material-table.isPc {
        display: none;
    }

    /* 移动端显示移动端结构 */
    .page5 .material-mobile.isWap {
        display: block;
    }

    /* 移动端Tab样式 - 支持左右滑动 */
    .page5 .material-tabs {
        display: flex;
        gap: 0.08rem;
        margin-bottom: 0.3rem;
        padding: 0 0.2rem 0 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page5 .material-tabs::-webkit-scrollbar {
        display: none;
    }

    .page5 .material-tab {
        flex: 0 0 auto;
        min-width: fit-content;
        height: 0.7rem;
        line-height: 0.7rem;
        text-align: center;
        font-size: 0.22rem;
        font-weight: 600;
        border: none;
        border-radius: 0.1rem;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0 0.2rem;
        white-space: nowrap;
        position: relative;
        box-sizing: border-box;
    }

    .page5 .material-tab::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 0.1rem;
        padding: 1px;
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
        box-sizing: border-box;
    }

    .page5 .material-tab.active {
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
        color: #fff;
        box-shadow: 0 4px 12px rgba(44, 55, 249, 0.4);
    }

    .page5 .material-tab.active::before {
        display: none;
    }

    /* 移动端内容区域 */
    .page5 .material-content {
        position: relative;
    }

    .page5 .material-pane {
        display: none;
    }

    .page5 .material-pane.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    /* 移动端列表项样式 */
    .page5 .material-item {
        display: flex;
        margin-bottom: 0.2rem;
        background: rgba(18, 44, 174, 0.6);
        border-radius: 0.16rem;
        overflow: hidden;
    }

    .page5 .material-dimension {
        width: 1.6rem;
        padding: 0.2rem 0.12rem;
        background: #2234fd;
        color: #0efff1;
        font-size: 0.2rem;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 1.3;
    }

    .page5 .material-text {
        flex: 1;
        padding: 0.2rem 0.16rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.22rem;
        line-height: 1.6;
    }

    .page5 .material-text ul {
        margin: 0;
        padding-left: 0.2rem;
        list-style: none;
    }

    .page5 .material-text li {
        margin-bottom: 0.1rem;
    }

    .page5 .material-text li:last-child {
        margin-bottom: 0;
    }

    .page5 .fee-flex-wrap {
        display: flex;
        background: url(../images/29.png) no-repeat center top;
        background-size: 100% 100%;
        width: 100%;
        height: 15.22rem;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(36, 144, 255, 0.08);
        padding: 0.32rem 0 0.32rem 0;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        flex-direction: column;
        padding: 0;
    }

    .page5 .fee-table-g5 thead {
        line-height: 1.5;
    }

    .page5 .fee-table-g5 th {
        color: #0a289d;
        font-weight: 700;
        height: 0.98rem;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        vertical-align: middle !important;
        border-radius: 0 !important;
    }

    .page5 .fee-sidebar {
        width: 100%;
        border-radius: 18px 18px 0 0;
        flex-direction: row;
        justify-content: center;
        padding: 0.18rem 0;
    }

    .page5 .fee-tab {
        width: 160px;
        height: 44px;
        line-height: 44px;
        background: none;
        border-radius: 12px;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 18px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .page5 .fee-tab-active {
        background: none;
        color: #ffd234;
        font-weight: 700;
        box-shadow: none;
    }

    .page5 .fee-tab {
        width: 9.4rem;
        font-size: 0.22rem;
        margin-bottom: 0;
        margin-right: 12px;
    }

    .page5 .fee-desc {
        position: absolute;
        width: 90%;
        color: #000;
        margin: 18px auto 0 auto;
        top: 12rem;
    }

    .page5 .fee-content {
        padding: 0 8px;
        margin-top: -2.4rem;
    }

    .page5 .fee-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin-bottom: 0.32rem;
        font-size: 16px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(36, 144, 255, 0.04);
    }

    .page5 .fee-table-wrap {
        padding: 12px 4px 8px 4px;
        box-shadow: none;
    }

    .page5 .fee-table th {
        font-size: 0.22rem;
        font-weight: 700;
        padding: 0.16rem 0.08rem;
        border-bottom: 2px solid #dbe6ff;
        text-align: center;
    }

    .page5 .fee-table td {
        color: #333;
        height: 0.38rem;
        font-size: 0.18rem;
        padding: 0.12rem 0.08rem;
        border-bottom: 1px solid #e9f0ff;
        text-align: center;
    }

    .page5 .fee-table-main th:nth-child(1),
    .page5 .fee-table-main td:nth-child(1) {
        width: 1.5rem;
    }

    .page5 .fee-table-main th:nth-child(2),
    .page5 .fee-table-main td:nth-child(2) {
        width: 1.5rem;
    }

    .page5 .fee-table-main th:nth-child(3),
    .page5 .fee-table-main td:nth-child(3) {
        width: 1.4rem;
    }

    .page5 .fee-table-main th:nth-child(4),
    .page5 .fee-table-main td:nth-child(4) {
        width: 2.2rem;
    }

    .page5 .fee-table-g5 th:nth-child(1),
    .page5 .fee-table-g5 td:nth-child(1) {
        width: 1.2rem;
    }

    .page5 .fee-table-g5 th:nth-child(2),
    .page5 .fee-table-g5 td:nth-child(2) {
        width: 1.4rem;
    }

    .page5 .fee-table-g5 th:nth-child(3),
    .page5 .fee-table-g5 td:nth-child(3) {
        width: 1.8rem;
    }

    .page5 .fee-table-g5 th:nth-child(4),
    .page5 .fee-table-g5 td:nth-child(4) {
        width: 2.2rem;
    }

    /* 减小表格高度 */
    .page5 .fee-table th {
        padding: 8px 4px;
        font-size: 14px;
    }

    .page5 .fee-table td {
        padding: 6px 4px;
        font-size: 13px;
        line-height: 1.3;
    }

    .page5 .fee-table tr {
        height: auto;
        min-height: 32px;
    }

    .page5 .btn {
        margin-top: 0.2rem;
    }

    .page5 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page6 {
        background: #0c2289;
        width: 100%;
        height: 100%;
        padding-top: 0.4rem;
        margin-top: -10px;
    }

    .page6 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page6 .con {
        margin-top: 0.4rem;
    }

    .page6 .faq-accordion {
        padding: 0 4px;
    }

    .page6 .faq-item {
        background: #2339d1;
    }

    .page6 .faq-item.active {
        background: transparent;
    }

    .page6 .faq-question {
        font-size: 0.26rem;
        height: 0.68rem;
        padding: 0 0.2rem 0 0.2rem;
        color: #fff;
        background: #2339d1;
    }

    .page6 .faq-item.active .faq-question {
        color: #fff;
        background: linear-gradient(90deg, #2c37f9 0%, #907cfc 100%);
    }

    .page6 .faq-q {
        width: 0.32rem;
        height: 0.32rem;
        font-size: 0.18rem;
        margin-right: 0.1rem;
        background: #0efff1;
        color: #042e94;
    }

    .page6 .faq-answer {
        padding: 0 0.12rem 0.16rem 0.6rem;
        font-size: 0.22rem;
        width: 90%;
        background: #0c1398;
        color: #fff;
    }

    .page6 .faq-arrow::after {
        content: '';
        display: block;
        width: 0.18rem;
        height: 0.18rem;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        transform: rotate(45deg);
        transition: border-color 0.3s, transform 0.3s;
    }

    .page6 .faq-item.active .faq-arrow::after {
        border-color: #fff;
        transform: rotate(-135deg);
    }

    .page6 .faq-a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 0.36rem;
        height: 0.36rem;
        background: #c625ff;
        color: #fff;
        font-size: 0.22rem;
        font-weight: bold;
        border-radius: 50%;
        margin-right: 0.18rem;
        flex-shrink: 0;
        margin-top: 0;
        margin-bottom: 10px;
        vertical-align: top;
        position: absolute;
        left: 0.14rem;
        top: 0.8rem;
    }

    .page6 .faq-answer-main {
        padding-top: 0.1rem;
        margin-bottom: 0.12rem;
    }

    .page6 .faq-answer-hot {
        color: #ffd234;
        font-size: 0.22rem;
        margin-bottom: 0.1rem;
    }

    .page6 .faq-answer-tips {
        color: #b6e0ff;
        font-size: 0.22rem;
    }

    .page6 .btn {
        margin-top: 0.2rem;
    }

    .page6 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page8 {
        background: #0c2289;
        background-size: 100% 100%;
        width: 100%;
        height: 100%;
        padding: 0;
        margin-top: -10px;
    }

    .page8 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page8 .con {
        background: url(../images/27.png) no-repeat center top;
        background-size: 100% 100%;
        width: 100%;
        height: 7.41rem;
        margin-top: 0.4rem;
    }

    .page8 .btn {
        margin-top: 0.4rem;
    }

    .page8 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page7 {
        background: #0c2289;
        width: 100%;
        height: 100%;
        padding: 0.5rem 0 0.4rem;
        margin-top: -10px;
    }

    .page7 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page7 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page7 .con {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.1rem;
        width: 100%;
        margin-top: 0.4rem;
    }

    .page7 .con a {
        margin-right: 0;
    }

    .page7 .con a:nth-child(2n-1) {
        margin-left: 0.1rem;
    }

    .page7 .con img {
        width: 100%;
        height: 1.46rem;
        display: block;
    }

    /* 表单 开始 */
    .page9 {
        background: #0c2289;
        width: 7.5rem;
        height: 7.3rem;
        overflow: hidden;
        cursor: pointer;
        padding-top: 0.6rem;
        margin-top: -10px;
    }

    .page9 .title {
        width: 100%;
        height: 1.46rem;
        margin-bottom: 0rem;
    }

    .page9 .title img {
        height: 1.46rem;
        width: auto;
        margin: 0 auto;
    }

    .page9 .btn img {
        height: 0.9rem;
        width: auto;
        margin: 0rem auto 0;
        text-align: center;
    }

    .page9 .form-wrap {
        width: 90%;
        margin: 0.3rem auto 0;
    }

    .page9 .form-wrap form .label {
        border: 0.01rem solid #254097 !important;
    }

    .form-wrap form .label span {
        display: inline-block;
        width: 24%;
        font-size: 0.28rem;
        color: #fff;
        font-weight: 700;
        border-radius: 50px;
        background-image: linear-gradient(to bottom, #dd5fff, #22f3f3);
        text-align: center;
        margin-right: 0.1rem;
    }

    .page9 .qt_form .xdf_formbtn {
        background: linear-gradient(to bottom, #dd5fff, #22f3f3);
        width: 100%;
        height: 0.7rem;
        color: #fff;
        text-align: center;
        line-height: 0.7rem;
        border-radius: 0.5rem;
        margin: 0.2rem auto 0;
        cursor: pointer;
        font-size: 0.26rem;
        font-weight: 700;
    }

    .tiaokuan a {
        color: #fff;
    }
}