.goal {
    padding-top: 70px;
    padding-bottom: 120px;
}

.goal .pageTitle {
    margin-bottom: 85px;
}

.goalUl {
    display: flex;
    justify-content: space-between;
}

.goalUl li {
    width: 21%;
    height: 580px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.goalUl .small {
    width: 100%;
    height: 100%;
    text-align: center;
}

.goalUl .small img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 100px auto 35px auto;
}

.goalUl .small h2 {
    color: #333;
    padding-bottom: 30px;
    background: url(../images/points1.png)no-repeat center bottom;
    background-size: 28px 6px;
}

.goalUl .big {
    display: none;
    color: #fff;
}

.goalUl .current .small {
    display: none;
}

.goalUl li.current {
    width: 52%;
    padding: 90px 70px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.goalUl li:nth-child(1).current {
    background: url(../images/goalBg1.png)no-repeat center center;
    background-size: cover;
}

.goalUl li:nth-child(2).current {
    background: url(../images/goalBg2.png)no-repeat center center;
    background-size: cover;
}

.goalUl li:nth-child(3).current {
    background: url(../images/goalBg3.png)no-repeat center center;
    background-size: cover;
}

.bigTitle {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.bigTitle::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: block;
    width: 55px;
    height: 1px;
    background: #fff;
}

.bigTitle img {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.bigTitle h3 {
    color: #fff;
    font-weight: bold;
}

.goalUl .big p {
    line-height: 1.6;
}

.goalUl .current .big {
    display: block;
}

/* 移动端 */
/* @media (max-width: 767px) {
    .goalUl {
        flex-direction: column;
        justify-content: unset;
    }

    .goalUl li {
        width: 100%;
        height: auto;
        border: 1px solid #E9F1FA;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .goalUl li:last-child {
        margin-bottom: 0px;
    }

    .goalUl .small {
        width: 100%;
        line-height: 48px;
        flex-direction: row;
        padding: 0px 14px;
    }

    .goalUl .small>div {
        display: flex;
        align-items: center;
    }

    .goalUl .small img {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin: 0px 8px 0px 0px;
    }

    .goalUl .small h2 {
        display: inline-block;
    }

    .goalUl .big {
        display: block;
        height: 0px;
        width: 100%;
        overflow: hidden;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        -o-transition: height 0.3s;
        transition: height 0.3s;
    }

    .goalUl .current .small {
        display: flex;
    }

    .goalUl .current {
        width: 100%;
        height: auto;
        background: none;
        padding: 0px;
    }

    .goalUl .current .small {
        background: #fff;
    }

    .goalUl .current .big {
        height: 200px;
        background: url(../images/competenceBg1.png)no-repeat center center;
        background-size: cover;
        padding: 22px 14px;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        -o-transition: height 0.3s;
        transition: height 0.3s;
    }

    .goalUl .big h2 {
        padding-left: 0px;
        background: none;
        padding-bottom: 14px;
        margin-bottom: 12px;
    }

    .goalUl .big h2::after {
        width: 22px;
        height: 2px;
    }
} */




/* 适配 */
@media (max-width: 1280px) {
    .goal {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .goal .pageTitle {
        margin-bottom: 50px;
    }

    .goalUl li {
        height: 440px;
    }

    .goalUl .small img {
        width: 70px;
        height: 70px;
    }

    .goalUl li.current {
        padding: 70px 50px;
    }

    .bigTitle img {
        width: 45px;
        height: 45px;
    }

    .bigTitle {
        padding-bottom: 30px;
        margin-bottom: 45px;
    }
}

@media (max-width: 992px) {
    .goalUl li {
        width: 22%;
        height: 380px;
    }

    .bigTitle h3 {
        font-size: 22px;
    }

    .goalUl li.current {
        padding: 42px 30px;
    }

    .bigTitle img {
        width: 35px;
        height: 35px;
        margin-right: 16px;
    }

    .bigTitle {
        padding-bottom: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .goalUl {
        flex-wrap: wrap;
    }

    .goalUl li {
        width: 100%;
        height: auto;
        margin-bottom: 16px;
        border-radius: 6px;
    }

    .goalUl li:last-child {
        margin-bottom: 0px;
    }



    .goalUl .small {
        height: auto;
    }

    .goalUl .small div {
        display: flex;
        width: 100%;
        align-items: center;
        padding: 18px 24px;
    }

    .goalUl .small img {
        width: 24px;
        height: 24px;
        margin: 0px 20px 0px 0px;
    }

    .goalUl .small h2 {
        font-size: 16px;
        padding-bottom: 0px;
        background: none;
    }

    .goalUl li.current {
        width: 100%;
        height: auto;
        padding: 40px 20px 60px 20px;
    }

    .bigTitle img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .goal .pageTitle {
        margin-bottom: 28px;
    }
}