.hc-banner {
    position: relative;
}

.hc-banner img {
    width: 100%;
    object-fit: cover;
    min-height: 240px;
}

.hc-banner-desc {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hc_banner-ctn {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

.hc-banner-desc h2 {
    font-size: calc(42 / 1920 * 100vw);
    margin: 0;
    margin-bottom: 60px;
    letter-spacing: 6px;
}

.hc-banner-desc h4 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 20px;
}

.hc-banner-desc p {
    color: #333;
    font-size: 16px;
}

/* 导航区 */
.hc-main-nav {
    background-color: #FFFFFF;
    box-shadow: -2px 7px 16px 0px rgb(30 116 222 / 14%);
    position: sticky;
    top: 60px;
    z-index: 98;
}

.hc-main-nav ul {
    width: 100%;
    max-width: 1300px;
    padding: 0 5%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hc-main-nav ul li {
    text-align: center;
}

.hc-main-nav ul li.active a::after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #2468F2;

}

.hc-main-nav ul li.active a {
    color: #2468F2;
}

.hc-main-nav ul a {
    display: inline-block;
    position: relative;
    line-height: 50px;
    color: #111111;
    font-size: 16px;
    padding: 0 2px;
}


.hc-block {
    padding: 70px 0;
}

.hc-block[data-bgColor="grey"] {
    background: #F3F3F3;
}

.hc-block>h2 {
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin: 0;
    margin-bottom: 26px;
}

.hc-block-ctn {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.hc-block-ctn-img {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.hc-block-ctn-img img {
    width: 100%;
    min-height: 164px;
    object-fit: cover;
}

.hc-block-ctn-img p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #333333;
    font-size: 16px;
}

.hc-block-ctn-item {
    display: flex;
    /* align-items: center; */
    height: 195px;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    overflow: hidden;
    padding-left: 20px;
    transition: .3s;
    position: relative;
    top: 0;
    margin-bottom: 17px;
    padding-top: 30px;
}

.hc-block-ctn-item:hover {
    top: -10px;
    box-shadow: 0px 5px 20px 0px #D1E1FE;
}

.hc-block-ctn-item>img {
    flex: 0 0 132px;
    width: 132px;
    height: 132px;
    border-radius: 10px;
    object-fit: cover;

}

.hc-block-ctn-item-text {
    min-width: 150px;
    padding: 0 20px;
}

.hc-block-ctn-item-text h4 {
    font-size: 20px;
    font-weight: 400;
    color: #111111;
    margin: 0;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hc-block-ctn-item-text p {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


@media (max-width: 1280px) {
    .hc-banner-desc h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hc-banner-desc h4 {
        font-size: 16px;
    }


}