.content1200 {
    width: 1200px;
    margin: 0 auto;
    max-width: 94%;
}

.study-abroad-banner {
    position: relative;
}

.study-abroad-banner .pic img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.study-abroad-banner .banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
}

.study-abroad-banner .main-title {
    font-family: HarmonyOS_Sans_SC;
    font-weight: 800;
    font-size: 90px;
    color: #FFE96E;
    line-height: 1;
    font-style: italic;
}

.study-abroad-banner .subtitle-divider {
    display: inline-block;
    font-family: HarmonyOS_Sans_SC;
    font-weight: 500;
    font-size: 60px;
    color: #FFFFFF;
    line-height: 1;
    font-style: italic;
    padding: 19px 0;
    border-top: 2px solid rgba(255, 255, 255, 1);
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    margin-top: 46px;
}

.study-abroad-banner .tagline {
    font-family: HarmonyOS_Sans_SC;
    font-weight: 400;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1;
    font-style: italic;
    margin-top: 43px;
}

.study-abroad-banner .tagline span {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1;
    font-style: italic;
    padding: 0 10px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 40px;
    color: #0D0D0D;
    line-height: 1;
    gap: 20px;
}

.section-title .text span {
    color: rgba(255, 134, 15, 1);
}

.section-title .dots {
    display: flex;
    gap: 4px;
}

.section-title .dots span {
    width: 6px;
    height: 6px;
    background: #434BFC;
    border-radius: 50%;
}

.section-title .dots span:nth-child(4),
.section-title .dots span:nth-child(5),
.section-title .dots span:nth-child(6) {
    background-color: rgba(255, 134, 15, 1);
}

.section-title .dots-right {
    flex-direction: row-reverse;
}

.study-process-section {
    padding: 80px 0;
}

.study-process-section .process-container {
    margin-top: 60px;
}

.study-process-section .process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.study-process-section .process-steps::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 8px;
    width: 100%;
    border-top: 1px dashed rgba(179, 179, 179, 1);
}

.study-process-section .process-step {
    position: relative;
    z-index: 3;
}

.study-process-section .process-step .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(-45deg, #6D95FA, #444CFC);
    border-radius: 50%;
}

.study-process-section .process-step .step-icon img {
    transition: all .6s;
}

.study-process-section .process-step:nth-child(2n) .step-icon {
    background: linear-gradient(-45deg, #F2C2A0, #FF860F);
}

.study-process-section .process-step:hover .step-icon img {
    transform: rotateY(180deg);
}

.study-process-section .process-step .step-item {
    display: flex;
    align-items: center;
}

.study-process-section .process-step .step-text {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    line-height: 1;
    margin-left: 20px;
}

.study-process-section .process-step .step-description {
    width: 193px;
    height: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 25px;
    margin-top: 5px;
}

.study-process-section .process-step .step-connector {
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #FF860F;
    margin: 20px 25px 0;
}

.buttons-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 62px;
}

.buttons-container a {
    min-width: 260px;
    line-height: 50px;
    background: rgba(67, 75, 252, 1);
    border-radius: 25px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    padding: 0 20px;
    text-align: center;
    transition: all .6s;
}

.buttons-container a:hover {
    opacity: .86;
}

.buttons-container a.orange-button {
    background: rgba(255, 134, 15, 1);
}

.study-plan-section {
    padding: 80px 0;
    background-color: rgba(244, 249, 253, 1);
}

.study-plan-section .plan-tabs {
    margin-top: 29px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #EBEBEB;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #4D4D4D;
    line-height: 60px;
    text-align: center;
}

.study-plan-section .plan-tabs .tab {
    position: relative;
    transition: all .6s;
    cursor: pointer;
}

.study-plan-section .plan-tabs .tab.active {
    color: #FFFFFF;
    background-color: rgba(67, 75, 252, 1);
}

/* 倒三角样式 */
.study-plan-section .plan-tabs .tab::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid rgba(67, 75, 252, 1);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: all .6s;
}

.study-plan-section .plan-tabs .tab.active::before {
    opacity: 1;
}

.study-plan-section .service-features {
    margin-top: 53px;
}

.study-plan-section .service-features .feature-item.active {
    display: block;
}

.study-plan-section .service-features .feature-item {
    display: none;
}

.study-plan-section .service-features .feature-item img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.section-subtitle {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 25px;
    margin-top: 7px;
    text-align: center;
}

.background-enhancement-section {
    padding: 80px 0;
}

.background-enhancement-section .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 25px;
}

.background-enhancement-section .picCover .pic {
    border-radius: 14px;
    overflow: hidden;
}

.background-enhancement-section .card-image {
    position: relative;
}

.background-enhancement-section .card-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0px 0px 14px 14px;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    padding: 20px 20px 18px;
    transition: all .6s;
    color: #FFFFFF;
}

.background-enhancement-section .service-card:hover .card-overlay {
    background-color: rgba(80, 87, 252, .9);
}

.background-enhancement-section .card-overlay .card-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #FF860F;
    line-height: 26px;
    transition: all .6s;
}

.background-enhancement-section .service-card:hover .card-overlay .card-title {
    color: #fff;
}

.background-enhancement-section .card-overlay .card-description {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-top: 8px;
}

.service-system-section {
    padding: 80px 0;
    background: url(../img/studyingAbroad-8.jpg);
    background-size: cover;
}

.service-system-section .service-system-cards {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-system-section .system-card {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0px 2px 10px 0px rgba(23, 24, 27, 0.3);
    border-radius: 16px;
}

.service-system-section .system-card .card-header {
    line-height: 50px;
    background: #434BFC;
    border-radius: 16px 16px 0px 0px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
}

.service-system-section .system-card:nth-child(2n) .card-header {
    background-color: rgba(255, 134, 15, 1);
}

.service-system-section .system-card .card-content {
    padding: 30px 20px 37px;
    text-align: center;
}

.service-system-section .system-card .card-title {
    display: inline-block;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #0D0D0D;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(67, 75, 252, 1);
}

.service-system-section .system-card:nth-child(2n) .card-title {
    border-color: rgba(255, 134, 15, 1);
}

.service-system-section .system-card .service-list {
    margin-top: 26px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #4D4D4D;
    line-height: 31px;
}

.form-banner-section {
    background-size: cover !important;
    background-position: center !important;
}
.form-banner-section .form-wrapper{
    display: flex;
    height: 300px;
    align-items: center;
}
#customForm {
    width: 290px;
}

#customForm .form-group {

    height: 38px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0 12px;
    margin-bottom: 18px;
}

#customForm .form-group input {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    line-height: 30px;
}

#customForm .form-group input::placeholder {
    color: #A4A4A4;

}

#customForm .submit-button {
    font-family: AlibabaPuHuiTi_2_55_Regular;
    font-size: 16px;
    color: #FAFAFA;
    line-height: 38px;
    background: rgba(255, 134, 15, 1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    margin-top: 28px;
    transition: all .6s;
    display: block;
    width: 100%;
    border: 0;
}

#customForm .submit-button:hover {
    opacity: .9;
}
.form-banner-section .title{
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 60px;
color: #FFFFFF;
line-height: 1;
text-shadow: 0px 2px 6px #4A0CDB;
}
.form-banner-section .des{
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 36px;
color: #FFFFFF;
line-height: 1;
text-shadow: 0px 2px 6px #4A0CDB;
margin-top: 20px;
}
.form-banner-section .text-box{
    margin-right: 90px;
}
.multi-service-section{
    padding: 80px 0;
}
.multi-service-section .service-flow{
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.multi-service-section .service-flow .service-items{
    width: 35.83%;
}
.multi-service-section  .service-item{
    display: flex;
}
.multi-service-section .service-flow .service-item:not(:last-child){
    margin-bottom: 57px;
}
.multi-service-section .service-items .service-circle{
    width: 78px;
height: 78px;
background: #434BFC;
border-radius: 50%;
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 36px;
color: #FFFFFF;
line-height: 78px;
text-align: center;
}
.multi-service-section .service-item:nth-child(2n) .service-circle{
    background-color: rgba(255, 134, 15, 1);
}
.multi-service-section .service-items .service-content{
    margin-left: 20px;
    width: 213px;
}
.multi-service-section .service-items .service-title{
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 24px;
color: #1A1A1A;
line-height: 1;
}
.multi-service-section .service-items .service-desc{
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #666666;
line-height: 23px;
margin-top: 8px;
}
.multi-service-section .service-item.item-1{
    margin-left: 76px;
}
.multi-service-section .service-item.item-3{
    margin-left: 96px;
}
.multi-service-section .center-icon + .service-items{
   display: flex;
   flex-direction: column;
   align-items: flex-end;
}
.multi-service-section .service-item.item-4{
    margin-right: 76px;
}
.multi-service-section .service-item.item-6{
    margin-right: 96px;
}
.multi-service-section .center-icon{
    position: relative;
    width: 24.25%;
    padding-top: 24.25%;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px 0px rgba(58,3,36,0.2);
    border-radius: 50%;
    margin-top: 24px;
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 22px;
color: #FFFFFF;
line-height: 1;

}
.multi-service-section .center-icon .icon-circle{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 75.6%;
    height: 75.6%;
    background-color: rgba(255, 134, 15, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}
.multi-service-section .center-icon .icon-circle img{
    display: block;
}
.multi-service-section .item-7{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.multi-service-section .service-items .item-7 .service-content{
    margin-left: 0;
    width: 406px;
}
.multi-service-section .service-items .item-7 .service-title{
    margin-top: 14px;
}
.team-section{
    padding-bottom: 80px;
}
.team-section .team-grid{
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 27px 25px;
}
.team-section .team-grid .member-photo{
    position: relative;
}
.team-section .team-grid .member-photo img{
    display: block;
    width: 100%;
    border-radius: 16px 16px 0px 0px;
}
.team-section .team-grid .member-photo .member-name{
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 20px;
color: #434BFC;
line-height: 40px;
background-color: rgba(243, 247, 254, .8);
}
.team-section .team-grid .member-info{
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 18px;
color: #4D4D4D;
line-height: 25px;
margin-top: 7px;
text-align: center;
}
.why-choose-section{
    padding: 80px 0;
    background: url(../images/studyingAbroad-21.jpg);
    background-size: cover;
}
.why-choose-section .reasons-grid{
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.why-choose-section .reason-card{
    display: flex;
    background: #F2F9FF;
}
.why-choose-section .reason-card:nth-child(4n),
.why-choose-section .reason-card:nth-child(4n-1){
    flex-direction: row-reverse;
}
.why-choose-section .reasons-card .reason-image{
    width: 50%;
}
.why-choose-section .reasons-card .reason-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-choose-section .reason-card .reason-content{
    width: 50%;
    padding: 27px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.why-choose-section .reason-card .reason-title{
font-family: Microsoft YaHei;
font-weight: bold;
font-size: 20px;
color: #000000;
line-height: 25px;
}
.why-choose-section .reason-card .reason-desc{
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #666666;
line-height: 22px;
margin-top: 9px;
}
.study-materials-section{
    padding: 80px 0;
}
.study-materials-section .materials-content{
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.study-materials-section .materials-grid{
    width: 70.83%;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 39px 20px;
}
.study-materials-section .materials-grid .pdf-title{
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #4D4D4D;
line-height: 22px;
text-align: center;
margin-top: 9px;
}
.study-materials-section .materials-grid .pdf-icon img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.study-materials-section .form-section{
    width: 26%;
    border-radius: 20px;
    background: url(../images/studyingAbroad-23.jpg) no-repeat;
    background-size: cover;
    padding: 77px 30px;
}
.study-materials-section .form-section #customForm{
    width: 100%;
}
@media (max-width:1200px) {
    .service-system-section .system-card .card-title,
    .team-section .team-grid .member-photo .member-name{
        font-size: 18px;
    }
    .team-section .team-grid .member-info{
        font-size: 16px;
    }
    .study-process-section .process-step .step-text,
    .service-system-section .system-card .card-header{
        font-size: 20px;
    }
}