@charset "utf-8";


.banner-div{
    position: relative;
}
.banner-div>img{
    display: block;
    width: 100%;
}
.banner-div>div{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.banner-div>div>h3{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--bg-color-1);
    font-size: 42px;
    font-weight: 600;
    line-height: 1em;
    color: #fff;
}
.item-div-1{
    position: relative;
    padding-top: 55px;
    background-color: #f8f8f8;
    overflow: hidden;
    background-image: url("../images/carrer/1.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 40%;
}
.item-div-1>img{
    z-index: 10;
    position: absolute;
    left: -10%;
    top: -10%;
    display: block;
    width: 676px;
}
.item-div-1>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-div-1>div>img{
    display: block;
    margin-left: 90px;
    width: 35%;
    flex-shrink: 0;
}
.item-div-1>div>div>h3{
    font-size: 36px;
    line-height: 1em;
    margin-bottom: 20px;
    color: var(--text-color-1);
}
.item-div-1>div>div>p{
    font-size: 18px;
    line-height: 34px;
    color: #333;
}


.item-div-2{
    padding: 60px 0 80px;
    background-color: #fff;
}
.item-div-2>h3{
    font-size: 36px;
    line-height: 1em;
    font-weight: bold;
    color: var(--text-color-1);
    text-align: center;
}

.project-div{
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
    border: 1px solid #ded5da;
}
.project-div>.title-div{
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    padding-left: 20px;
    font-size: 22px;
    line-height: 60px;
    font-weight: 600;
    color: #fff;
    background-color: var(--bg-color-1);
    background-image: url(../images/languageCourse/1.png);
    background-repeat: no-repeat;
    background-position: right center;
    box-sizing: border-box;
}
.project-div .box-div{
    padding: 30px 45px 50px;
}
.project-div .box-div>p{
    font-size: 18px;
    line-height: 34px;
    color: #333;
}
.project-div .box-div>p+p{
    margin-top: 10px;
}
.project-div .box-div>div{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.project-div .box-div>p>a{
    color: var(--text-color-1);
}

.condition-div{
    width: 50%;
}
.condition-div+.condition-div{
    margin-left: 50px;
}
.condition-div>h4{
    font-size: 24px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 30px;
    color: var(--text-color-1);
}
.condition-div>h4::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    margin-right: 10px;
    background-color: #f3c65d;
    vertical-align: -2px;
}
.condition-div>p{
    font-size: 18px;
    line-height: 34px;
    color: #333;
}
.condition-div>p.color-1{
    color: var(--text-color-1);
}
.condition-div>ol{
    margin-top: 20px;
}
.condition-div>ol>li{
    font-size: 18px;
    line-height: 1em;
    color: #333;
}
.condition-div>ol>li+li{
    margin-top: 20px;
}

.condition-div>ul{
    margin-top: 20px;
}
.condition-div>ul>li{
    font-size: 18px;
    line-height: 34px;
    color: #333;
}
.condition-div>ul>li+li{
    margin-top: 20px;
}

.condition-div>ul>li::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 5px;
    background-color: var(--text-color-1);
    vertical-align: middle;
}

.condition-div .table-ele{
    width: 100%;
    margin: 30px 0 20px;
    border-collapse: collapse;
}

.condition-div .table-ele th{
    padding: 15px 0;
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--bg-color-1);
    text-align: center;
    
}
.condition-div .table-ele th+th{
    border-left: 1px solid #5a002c;
}
.condition-div .table-ele td{
    padding: 25px 0;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ded5da;
}

.condition-div .table-ele td:nth-of-type(1){
    color: var(--text-color-1);
}
.more-btn{
    display: inline-block;
    width: 220px;
    height: 52px;
    line-height: 52px;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--text-color-1);
    text-align: center;
}
.more-btn:hover{
    background-color: #FDBF57;
    color: #000;
}
@media screen and (max-width: 768px) {
    .banner-div>div>h3{
        font-size: 18px;
        padding-left: 15px;
    }
    .item-div-1{
        padding: 20px 15px 0;
        background-image: none;
    }
    .item-div-1>div{
        flex-wrap: wrap;
    }
    .item-div-1>div>img{
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    .item-div-1>div>div>h3{
        font-size: 20px;
        text-align: center;
    }
    .item-div-1>div>div>p{
        font-size: 14px;
        line-height: 28px;
    }

    .item-div-2{
        padding: 30px 0 20px;
    }
    .item-div-2>h3{
        font-size: 20px;
    }
    .project-div{
        margin-top: 30px;
        padding-top: 30px;
        border: none;
    }
    .project-div+.project-div{
        margin-top: 0;
    }
    .project-div>.title-div{
        font-size: 16px;
        height: 45px;
        line-height: 45px;
        background-image: none;
    }
    .project-div .box-div{
        padding: 30px 15px 30px;
    }
    .project-div .box-div>p{
        font-size: 14px;
        line-height: 28px;
    }
    .project-div .box-div>div{
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .condition-div{
        width: 100%;
    }
    .condition-div>h4{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .condition-div>h4::before{
        width: 3px;
        height: 16px;
        margin-right: 6px;
    }
    .condition-div>p{
        font-size: 14px;
        line-height: 28px;
    }
    .condition-div>ol>li{
        font-size: 16px;
    }
    .condition-div>ol>li+li{
        margin-top: 15px;
    }

    .condition-div+.condition-div{
        margin-left: 0;
        margin-top: 30px;
    }

    .condition-div>ul>li{
        font-size: 16px;
        line-height: 28px;
    }
    .condition-div>ul>li+li{
        margin-top: 15px;
    }
    .condition-div .table-ele{
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .condition-div .table-ele th{
        font-size: 16px;
    }
    .condition-div .table-ele td{
        font-size: 14px;
    }

    .more-btn{
        display: block;
        margin: 20px auto 20px;
        width: 160px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
        border-radius: 18px;
    }
}