.hc-banner {
    position: relative;
}

.hc-banner img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

.hc-baner-descbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hc-baner-desc {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    top: 60%;
    transform: translateY(-50%);
}

.hc-baner-p1 {
    display: inline-block;
    font-size: 0.48rem;
    font-weight: 800;
    color: #2468F2;
    background: linear-gradient(45deg, #1E8CEC 0%, #18B1E5 0%, #2468F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.29rem;
}

.hc-baner-p1 span {
    font-weight: 400;
}

.hc-baner-p2 {
    font-size: 0.24rem;
    font-weight: 300;
    color: #666666;
}

.hc-baner-btnlist {
    display: flex;
    margin-top: 0.48rem;
}

.hc-baner-btnlist a {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 1.11rem; */
    padding: 0 15px;
    height: 0.36rem;
    min-width: 90px;
    min-height: 30px;
    border-radius: 2px;
    color: #fff;
}

.hc-baner-btnlist .hc-apply-btn {
    background: linear-gradient(135deg, #1E8CEC 0%, #18B1E5 0%, #2468F2 100%);
    margin-right: 16px;
}

/* 模块1 */
.hc_block1 {
    padding: 0.78rem 0;
}

.hc_block1_top {
    padding: 0 5%;
}

.hc_block1_title {
    font-size: 0.35rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0.25rem;
    text-align: center;
}

.hc_block_desc {
    color: #666666;
    text-align: center;
}

.hc_block1_ctn {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    margin-top: 0.75rem;
}

.hc_block1_tagbox {
    display: flex;
    width: 100%;
    height: 200px;
}

.hc_block1_taglist {
    flex: 1;
    padding-top: 0.4rem;
    padding-left: 0.34rem;
}

.hc_block1_tag_title {
    color: #666666;
    font-size: 0.18rem;
    margin-bottom: 0.15rem;
}

.hc_block1_tag li {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 86px;
    height: 30px;
    border: 1px solid #E3E3E3;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.14rem;
    color: #666666;
    cursor: pointer;
}

.hc_block1_tag li.on {
    color: #fff;
    background: #2D6AE8;
}

.hc_block1_main {
    padding-top: 0.75rem;
}

.hc_block1_main li {}

.hc_block1_item {
    display: block;
    position: relative;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: 4px 4px 15px 0px rgba(59, 88, 202, 0.1000);
    border-radius: 2px;
    margin-bottom: 0.6rem;
    /* cursor: pointer; */
    transition: all .5s;
}

.hc_block1_item:hover {
    background: #2D6AE8;
    border: 2px solid #FFFFFF;
    box-shadow: 7px 7px 30px 0px rgba(59, 88, 202, 0.5000);
}

.hc_block1_item:hover .hc_block1_docs::after {
    bottom: -100%;
}

.hc_block1_item:hover .hc_block1_docs h4 {
    color: #fff;
}

.hc_block1_item:hover .hc_block1_docs .hc_ljdetail {
    display: block;
}

.hc_block1_item img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}

.hc_block1_docs {
    width: 100%;
    height: 0.58rem;
    min-height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.22rem;
    padding-right: 0.22rem;
    background: rgba(0, 0, 0, 0);
    z-index: 9;
    overflow: hidden;
}

.hc_block1_docs::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all .5s;
}

.hc_block1_docs h4 {
    font-size: 0.18rem;
    font-weight: 400;
    color: #333333;
    transition: all .5s;
}

.hc_block1_docs .hc_ljdetail {
    font-size: 0.18rem;
    display: none;
    color: #fff;
    transition: all .5s;
}


@media (max-width:767px) {
    .hc_block1_title {
        font-size: 16px;
    }

    .hc_block1_tag_title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hc_block1_tagbox {
        flex-direction: column;
        height: auto;
        background-color: #f4f4f9;
    }

}