/* 新西兰 AIP 页面样式 */

/* ===== 重置和基础样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background: #012921;
    min-height: 100vh;
}

/* ===== 内容页区域 ===== */
.aip-content-section {
    position: relative;
    background-color: #012921;
}

.aip-container {
    width: 100%;
}

/* ===== 第一块：Banner ===== */
.aip-banner {
    width: 100%;
}

.aip-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 第二块：左右结构 ===== */
.aip-newzealand-wrap {
    display: flex;
    gap: 40px;
    padding: 40px 20% 0;
    background: #012921;
}

.aip-left-content {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aip-policy-card {
    background: #0f705d;
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
}

.aip-section-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-top: 25%;
}

.aip-advisor {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.aip-advisor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.aip-advisor-info {
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
}

.aip-advisor-info p {
    margin: 0;
}

.aip-advisor-label {
    font-weight: 700;
    margin-bottom: 8px;
}

.aip-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5c518;
    font-size: 22px;
    font-weight: 500;
    margin-top: 13%;
}

.aip-tag-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid #f5c518;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.aip-right-content {
    flex: 1 1 50%;
    min-width: 0;
}

.aip-letter-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ===== 第三块：移民路径 ===== */
.aip-split-section {
    background: url('/v2/img/event_new_zealand_aug/bg-newzealand.png') center center / cover no-repeat;
    padding: 40px 20%;
}

/* 本地留学生 */
.aip-local-student {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* 分隔线 */
.aip-path-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* 海外留学生 */
.aip-overseas-student {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.aip-overseas-student .aip-path-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
}

/* 路径卡片 */
.aip-path-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 路径标签 */
.aip-path-tag {
    display: inline-block;
    background: #FFC54D;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    width: fit-content;
}

/* 路径内容 */
.aip-path-content {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

.aip-path-content p {
    margin: 0 0 8px 0;
}

.aip-path-label {
    color: rgba(255, 255, 255, 0.8);
}

/* 海外留学生标题 */
.aip-path-header {
    grid-column: 1 / -1;
    font-size: 22px;
    color: #FFC54D;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== 第三块：进度流程 ===== */
.aip-process-section {
    background: #0f705d;
    padding: 40px 0;
}

.aip-process-container {
    margin: 0 10%;
}

.aip-process-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* ===== 响应式设计 ===== */

@media (max-width: 960px) {
    /* 左右结构改为纵向排列 */
    .aip-split-section {
        flex-direction: column;
        gap: 20px;
    }

    /* 表格区域调整 */
    .aip-table-wrap {
        width: 100%;
        margin-bottom: 0 !important;
    }



    /* 适合人群区域调整 */
    .aip-people-section {
        width: 100%;
        padding-right: 0;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .aip-people-title {
        justify-content: center;
    }

    /* 进度流程调整 */
    .aip-process-container {
        margin-left: 5%;
        margin-right: 5%;
    }

    /* newzealand 图片调整 */
    .aip-newzealand-wrap {
        margin-left: 5%;
    }
}
