.homeBriefIntroduction {
    width: 1200px;
    margin: auto;
    margin-top: 30px;
    overflow: hidden;
}

.homeBriefIntroduction>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.homeBriefIntroduction>div:nth-child(1) {
    width: 1312px;
}

.homeBriefIntroduction>div:nth-child(2) {
    margin-top: 44px;
}

.homeBriefIntroduction>div:nth-child(2)>div>p:nth-child(1) {
    text-align: right;
}

.homeBriefIntroduction>div:nth-child(2)>div>p:nth-child(2) {
    text-align: right;
}

.homeBriefIntroduction>div:nth-child(2)>div>a:nth-child(3) {
    float: right;
}

.homeBriefIntroduction>div:nth-child(3) {
    margin-top: 80px;
    margin-bottom: 79px;
}

.homeBriefIntroduction_title {
    font-size: 27px;
    font-family: 'SourceHanSansSC-Bold';
    color: #1349A3;
    line-height: 50px;
}

.homeBriefIntroduction_content {
    font-size: 19px;
    color: #333;
    line-height: 46px;
    margin-top: 47px;
}

.homeBriefIntroduction_more {
    width: 154px;
    height: 34px;
    background-color: #1349A3;
    color: #fff;
    font-size: 25px;
    line-height: 34px;
    text-align: center;
    margin-top: 58px;
}

.homeContentBanner {
    width: 100%;
    margin-top: 58px;
}

.homeStarItem {
    width: 1386px;
    margin: auto;
    margin-top: -189px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.homeStarItem>a>div {
    padding: 50px 10px;
    border-radius: 15px;
    transition: all 1s;
}

.homeStarItem>a>div:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 5px #ccc;
}

.homeStarItem>a>div>p:last-child {
    margin-top: 32px;
    font-size: 10px;
    color: #333;
    line-height: 29px;
}

.homeStarItem>a>div>p:last-child>span {
    font-size: 13px;
    font-family: 'SourceHanSansSC-Bold';
}

.homeEnd {
    width: 100%;
    height: 55px;
    margin-top: 32px;
    margin-bottom: 73px;
    background-color: aliceblue;
}

/* 动画 */
.home_animation {
    animation: toTop 2s;
    animation-fill-mode: forwards;
}

@keyframes toTop {
    0% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}