/*引用字体  */
/* @import url("https://fonts.googleapis.com/css?family=Fraunces");
@import url("https://fonts.googleapis.com/css?family=Nunito");
@import url("https://fonts.googleapis.com/css?family=Calibri");
@import url("https://fonts.googleapis.com/css?family=Caveat"); */

body,
td,
th {
    font-family: "YAFdJr3SNlU-0";
    font-size: 16px;
    color: #666;
}

body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    min-width: 1366px;
    color: #353A39;

}

h2 {
    font-family: "YAFdJr3SNlU-0";
    margin: 0;
    padding: 0;
}

ul,
li,
p {
    margin: 0;
    padding: 0;

}


/* 视频容器：固定高度，隐藏溢出部分 */
.video-container {
    width: 100%; /* 容器宽度可根据需求设置（如固定值或自适应） */
    height: 140rem; /* 固定高度 */
    overflow: hidden; /* 隐藏超出容器的部分 */
    position: relative; /* 用于视频定位 */
}

/* 视频样式：高度固定，宽度自适应（可能超出容器） */
.video-container video {
    height: 140rem; /* 视频高度与容器一致 */
    width: auto; /* 宽度自适应（保证比例） */
    /* 水平居中：当宽度超出容器时，左右溢出部分被隐藏 */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top {
    width: 100%;
    height: 140rem;
    overflow: hidden;
    position: relative;
}
.top_bg{
    width: 100%;
    height: 140rem;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center 20%;
    background-size: cover ;
}

.top_con {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    text-align: center;
    /*left: 50%;*/
    /*margin-left: -700px;*/
    z-index: 1000;
}

.top_text {
    text-align: center;
    margin-top: 10rem;
}

.top_text p {
    font-family: "YAFdJr3SNlU-0";
    line-height: 69px;
    letter-spacing: 0em;
    text-transform: none;
    list-style-type: none;
    font-size: 62px;
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    font-kerning: none;
    text-decoration: none;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2.33457px 17.5092px;
    animation: rotateX 0.5s 1 linear;
}

.banner_btn {
    margin-top: 8rem;
    animation: rotateY 0.5s 1 linear;
}

.banner_btn a {
    font-size: 5rem;
    color: #0b7d7e;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;

    background-color: #ffffff;
    border-radius: 30px;
    padding: 5px 80px 20px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 2.33457px 17.5092px;

}

/* top_text_sub */
.top_text_sub {
    margin: 80px 10rem 10px 10rem;
    /*margin-left: 10rem;*/
}

.top_text_sub p {
    margin-top: 10rem;
    font-size: 14rem;
    color: rgb(255, 255, 255);
    line-height: 14rem;
    letter-spacing: -0.03em;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;
    animation: rotateX 0.5s 1 linear;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4); /* 水平2px，垂直2px，模糊3px，半透明黑色 */

}

.logo_sub {
    display: flex;
    align-items: center;
}

.logo_sub img {
    width: 18rem;
    height: 18rem;
}

.logo_sub div {
    margin: 0;
    font-size: 4.5rem;
    color: rgb(255, 255, 255);
    line-height: 5rem;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* 水平2px，垂直2px，模糊3px，半透明黑色 */
}


/* nav */
.nav ul {
    list-style: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 5rem auto 0 auto;

}

.nav li {
    width: 33%;
    float: left;
    text-align: center;
    line-height: 11rem;
    height: 11rem;
}

.nav li a {
    font-family: "YAFdJr3SNlU-0";
    color: #ffffff;
    text-decoration: none;
    font-size: 4rem;
    font-weight: 700;
    font-style: normal;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2.33457px 17.5092px;

}

.nav li a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* 定义下拉按钮样式 */
.dropbtn {
    border: none;
    cursor: pointer;
}

/* 容器 <div> - 滚动容器 */
.dropdown {
    position: relative;
    display: inline-block;
}

.nav .dropdown-content a {
    color: #fff;
}

.nav .dropdown-content a:hover {
    color: #fff;
}

/* 下拉内容 (默认隐藏) */
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    left: 3rem;
    top: 8rem;
    padding: 1rem 4rem;
    border-radius: 20px;
}

/* 链接样式 */
.dropdown-content a {
    padding: 30px 10px;
    text-decoration: none;
    display: block;
    line-height: 40px;
    background-color: #0b7d7e;
    border-bottom: 1px solid #fff;
}

/* 鼠标悬停时更改下拉链接背景颜色 */
.dropdown-content a:hover {
    background-color: #0b7d7e;
}

.main_box {
    margin-top: 84px ;
}

.about_box {
    margin: auto;
    background-repeat: no-repeat;
    margin-top: 150px;
}

.about_con p {
    font-size: 10rem;
    color: rgb(11, 125, 126);
    line-height: 10rem;
    letter-spacing: 0em;
    text-transform: uppercase;
    list-style-type: none;
    font-weight: 1000;
    font-style: normal;
    color: rgb(11, 125, 126);
    font-kerning: none;
    text-decoration: none;
}

.about_con p span {
    color: rgb(65, 66, 65);
}

.about_text {
    margin: 4rem 0;
    font-size: 1.25rem;
    line-height: 1.4rem;
}

.IYP_btn {
    display: flex;
    animation: rotateY 0.5s 1 linear;
    text-align: center;
}

.IYP_btn a {
    margin-top: 20px;
    display: block;
    font-size: 4rem;
    color: rgb(255, 255, 255);
    line-height: 10rem;
    height: 10rem;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;
    background-color: #0b7d7e;
    padding: 0px 30px 0px 30px;
    border-radius: 50px;
    width: 100%;
}

.IYP_btn a:hover {
    background-color: rgb(65, 66, 65);
}

/* why */
.why_box {
    position: relative;
    /*min-width: 1500px;*/
    margin-top: 40rem;
}




.why_title {
    font-size: 8rem;
    color: #0b7d7e;
    line-height: 10rem;
    height: 10rem;
    text-transform: none;
    list-style-type: none;
    font-weight: 900;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;
    text-align: center;
    margin-top: 20rem;
}

.why_title span {
    color: #414241;
}

.why_con {
    margin-top: 50px;
    /*padding: 0 16%;*/
}

/*@media (min-width: 200px) and (max-width: 1480px) {*/
/*    .why_con {*/
/*        padding: 0 10%;*/
/*    }*/
/*}*/

/*@media (min-width: 1480px) {*/
/*    .why_con {*/
/*        padding: 0 16%;*/
/*    }*/
/*}*/


.why_con ul {
    margin: auto;
    /* justify-content: center; */
    align-items: center;
    display: flex;
}

.why_con ul li {
    flex: 1;
    text-align: center;
    /*color: #fff;*/
    list-style: none;
}

.why_con ul li .imgs {
    width: 200px;
    height: 130px;
    overflow: hidden;
    margin: auto;
}

.why_con ul li div img {
    height: 100%;
    width: 100%;
}

.why_con ul li h5 {
    font-size: 20px;
}

.why_con ul li p {
    font-size: 13px;
    padding-bottom: 50px;
}

.why_bg {
    /*background-color: #0e8388;*/
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 290px;
    z-index: -999;
}

/* programs_box */
.programs_box {
    margin-top: 40rem;
    position: relative;
    margin-bottom: 100px;
    padding: 0 8rem;
}

.programs_title {
    font-size: 7rem;
    color: #0b7d7e;
    line-height: 42px;
    height: 42px;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;
    text-align: center;
}

.programs_title span {
    color: #414241;
}

.programs_list {
    padding-top: 8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.programs_team {
    position: relative;
    overflow: hidden;
    height: 60rem;
    width: 100%;
}

.programs_team img {
    width: 100%;
    height: 100%;
}

.programs_team div {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-weight: bold;
    font-size: 10rem;
    color: rgb(255, 255, 255);
    line-height: 10rem;
    text-transform: none;
    list-style-type: none;
    text-shadow: rgba(14, 131, 136, 0.5) 0px 2.3px 17.25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.programs_team div:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


/* footer */
.footer {
    width: 100%;
    background: #414241;
}

.footer_box {
    margin: auto;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #ffffff;
}

/*.footer_box div {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding-right: 30px;*/

/*}*/

.footer_box img {
    margin-right: 10px;

}


/* canada_program */
.canada_program {
    display: flex;
    justify-content: center;
    align-items: center;
}

.canada_program_con {
    width: 520px;
    margin-right: 50px;
}

.canada_program_con h3 {
    font-size: 26px;
}

.canada_program_con {
    font-size: 12px;
    line-height: 16px;
}

.canada_program_list {
    margin: 100px auto 0 auto;
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.canada_program_team {
    /* flex: 1; */
    width: 300;
}

.canada_program_team h3 {
    font-size: 16px;
    font-weight: normal;
}

.canada_program_team a {
    width: 100%;
    float: left;
    font-size: 16px;
    background-color: #ff914d;
    border-radius: 10px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.canada_program_team a:hover {
    background-color: rgb(65, 66, 65);
}

.canada_program_team h4 {
    height: 32px;
}

.canada_program_team div {
    font-size: 12px;
}

/* china_program */
.china_program {
    background-image: url('../images/china_program_img.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
}

.china_program_con {
    padding-left: 100px;
    padding-bottom: 300px;
}

.china_program_con h3 {
    font-size: 26px;
}

.china_program_con li {
    font-size: 12px;
    width: 580px;
}

.china_program_con p {
    font-size: 12px;
    width: 580px;
}

.china_program_con p span {
    font-size: 16px;
    font-weight: bold;
}

.china_program_btn {
    display: flex;
    gap: 30px;
}

.china_program_btn a {
    background-color: #c02327;
}

/* mexico_program */
.mexico_program {
    background-image: url('../images/mexico_program_img.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
}

.mexico_program_con {
    padding-left: 100px;
    padding-bottom: 300px;
}

.mexico_program_con h3 {
    font-size: 26px;
}

.mexico_program_con li {
    font-size: 12px;
    width: 580px;
}

.mexico_program_con p {
    font-size: 12px;
    width: 580px;
}

.mexico_program_con p span {
    font-size: 16px;
    font-weight: bold;
}

.mexico_program_btn {
    display: flex;
    gap: 30px;
}

.mexico_program_btn a {
    background-color: #d00992;
}

/* admission_program */
.admission_program {
    background-image: url('../images/admission_program_img.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 400px;
}

.admission_program_con {
    padding-left: 100px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
}

.admission_program_con h3 {
    font-size: 26px;
}

.admission_program_con li {
    font-size: 12px;
    width: 580px;
}

.admission_program_con div {
    font-size: 12px;
    width: 580px;
    line-height: 16px;
}

.admission_program_con p span {
    font-size: 16px;
    font-weight: bold;
}

.admission_program_btn {
    display: flex;
    flex-direction: column;
}

.admission_program_btn a {
    background-color: #0b7d7e;
}

.kit_list a{
    color:#666;
    text-decoration:none;
}
.kit_list a:hover{
    color:#0b7d7e;
    text-decoration:underline;
}
/* gallery_program */
.gallery_program {
    /*background-image: url('../images/gallery_program_img.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-position: top;*/
}

.gallery_program_con {
    padding-left: 0px;
}

.gallery_program_con h3 {
    font-size: 26px;
}

.gallery_program_con li {
    font-size: 12px;
    width: 580px;
}

.gallery_program_con div {
    font-size: 12px;
    line-height: 16px;
}

.gallery_program_con p span {
    font-size: 16px;
    font-weight: bold;
}

.gallery_program_btn {
    display: flex;
    flex-direction: column;
}

.gallery_program_btn a {
    background-color: #0b7d7e;
}

.gallery_program_title {
    margin-left: 80px;
}

.gallery_program_title p {
    display: flex;
    font-size: 48px;
    color: rgb(11, 125, 126);
    line-height: 48px;
    letter-spacing: 0em;
    --pY_8zA: 0;
    text-transform: uppercase;
    --oJepFA: 0;
    --uYCVzQ: none;
    list-style-type: none;
    font-weight: 900;
    font-style: normal;
    color: rgb(11, 125, 126);
    font-kerning: none;
    text-decoration: none;
}

.gallery_program_video {
    margin-top: 158px;
    margin-left: 136px;
    margin-right: 128px;
    display: flex;
    gap: 30px;
}

/* gallery_list */
.gallery_list {
    margin-top: 130px;
    height: 760px;
}

.gallery_list div {
    float: left;
    margin: 9px 0px 0px 9px;
    width: 115px;
    height: 115px;
}

.gallery_list div img {
    width: 100%;
    height: 100%;
}

.gallery_list .blue_text {
    background-color: #0b7d7e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}

.gallery_list .red_text {
    background-color: #a7c7c6;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}

.gallery_list .gray_text {
    background-color: #414241;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}

.gallery_list .black_text {
    background-color: #406395;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}

@keyframes rotateX {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(0px);
    }
}

@keyframes rotateY {
    from {
        transform: translateY(50px);
    }

    to {
        transform: translateY(0px);
    }
}



.from_box {
    width:100%;
}


/* canada_program */
.resources_program {
    margin-top: 80px;
}

.resources_program_title {
    width: 1200px;
    margin: auto;
    font-size: 37.3333px;
    color: rgb(35, 35, 35);
    line-height: 42px;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;

}

.resources_program_title span {
    color: rgb(11, 125, 126);
}

.resources_program_box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.resources_program_con {
    width: 290px;
    font-size: 16px;
    line-height: 16px;
}

.resources_program_con h3 {
    font-size: 28px;
    color: rgb(44, 44, 44);
    line-height: 31px;
    text-transform: none;
    list-style-type: none;
    font-weight: 700;
    font-style: normal;
    font-kerning: none;
    text-decoration: none;

}

.resources_program_con p {
    padding: 15px 0px 15px 0px;
}

.resources_program_con h4 {
    height: 32px;
    margin: 0;
}

.resources_program_con a {
    width: 100%;
    float: left;
    font-size: 16px;
    background-color: #ff914d;
    border-radius: 10px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: block;
}

.resources_program_list {
    line-height: 3rem;
    font-size: 2.2rem;
}

.resources_program_list th {
    text-align: left;
    background-color: #238a8b;
    line-height: 5rem;
    color: #ffffff;
    padding-left: 10px;
    font-size: 2.2rem;
}

.resources_program_list td {
    text-align: left;
    padding: 18px 10px ;
    font-size: 2.2rem;
}

.resources_program_list .sub td {
    background-color: #eae7e5;
}

/*AI*/
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 最小高度=浏览器可视区域 */
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 内容区：自动填充剩余空间 */
.content {
    flex-grow: 1; /* 关键：占据剩余所有空间，将底部推到最下方 */
}
