
.bi_blank{
    display: block;
    width: 100%;
    overflow: hidden;
}
.bi_richtext {
    font-size: 14px;
    line-height: normal;
}

.bi_richtext p {
    padding: 0 4px;
}

.bi_richtext img {
    max-width: 100% !important;
}

.bi_richtext video {
    max-width: 100% !important;
}

.bi_richtext hr {
    margin: 5px 0;
}

.bi_richtext *+h1,
.bi_richtext *+h2,
.bi_richtext *+h3,
.bi_richtext *+h4,
.bi_richtext *+h5,
.bi_richtext *+h6 {
    margin: 1.6rem 0;
}
    .rower{
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: 0rem auto;
    }
    .rower ._box{
        position: relative;
        width: 100%;
        padding-top: 40px;
    }
   
    .rower ._title{
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        clip-path: inset(0 0 0 0);/* 开始状态 */
        animation: reveal 2s forwards; /* 应用动画，并保持结束状态 */
    }
    .rower ._title img{
        width: 100%;
        height: 100%;
        display: block;
    }
    .rower ._title.in-view{
        opacity: 1;
        transform: translateY(0);
    }
    .rower .list-container {
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    .rower .list {
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
        will-change: transform;
    }
    .rower .list li {
        display: flex;
        flex-shrink: 0;
    }
    .rower .list li a{
        display: block;
        overflow: hidden;
        border-radius: 30px;
        margin: 0 10px;
    }
    .rower .list li a img{
        display: block;
        overflow: hidden;
        transition: all 0.3s;
    }
    .rower .list li a:hover img{
        transform: scale(1.1);
    }
    .rower .desc{
        width: 100%;
        max-width: 800px;
        margin: 20px auto 0 auto;
        color: #c71719;
        text-align: center;
    }
    .rower .desc a{
        color: #c71719;
        line-height: 1.5;
    }
    .rower ._more{
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }
    .rower ._more .btn-more{
        display: inline-block;
        padding: 15px 15px;
        background: #c71719;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        transition: all 0.3s ease-in-out;
    }
    .rower ._more .btn-more img{
        width: 34px;
        height: 15px;
        margin-left: 8px;
        vertical-align: middle;
        
    }
    .rower ._box li a img:hover,
    .rower ._box li a:hover {
        cursor: none !important;
    }
    @media (max-width:1400px) {
        .rower ._title{
            width: 80%;
            max-width: 400px;
        }
        .rower .desc{
            font-size: 24px;
            margin: 10px auto 0 auto;
        } 
        .rower ._box{
            width: 100%;
            margin: 0 auto;
            padding-top: 20px;
        }
        .rower .list li {
            display: flex;
            flex-shrink: 0;
            width: 100%;
        }
        .rower .list li a{
            border-radius: 10px;
            margin: 0 5px;
        }
        .rower .list li a img{
            width: 100%;
        }


    }
    @media (max-width:991px) {
        .rower{
            margin: 45px auto;
        }
        .rower ._title{
            width: 80%;
            max-width: none;
        }
        .rower ._title img{
            width: 100%;
            height: 100%;
            display: block;
        }
        .rower .desc{
            font-size: 16px;
            width: 90%;
        }
        .rower ._box li a{
            border-radius: 30px;
        }
        .rower ._more{
            margin-top: 20px;
        }
    }

    @keyframes reveal {
        from { clip-path: inset(0 100% 0 0); } /* 开始状态，完全不显示 */
        to {  clip-path: inset(0 0 0 0); } /* 结束状态，显示完整 */
    }
.bi_counter {
    overflow: hidden;
    display: block;
    padding: 20px 30px;
}

.bi_counter ul{
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.bi_counter ._item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bi_counter ._item img {
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

.bi_counter ._number {
    display: flex;
    align-items: flex-start;
    font-weight: bold;
}

.bi_counter ._number h3 {
    font-size: 100px;
    line-height: 100px;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.bi_counter ._number b {
    font-weight: normal;
}
.bi_counter p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #000 !important;
    padding: 0 0 0 5px !important;
}

@media (max-width:991px) {
    .bi_counter{
        width: 100%;
        margin-bottom: 10px;
    }
    .bi_counter ul{
        flex-wrap: wrap;
    }

    .bi_counter ._item {
        width: 33.33%;
        margin: 10px 0;
        justify-content: flex-start;
    }

    .bi_counter ._number h3 {
        font-size: 60px;
        line-height: 60px;
        margin: 0;
        padding: 0;
    }
    .bi_counter ._number b {
        font-size: 12px;
    }
    .bi_counter p {
        font-size: 16px !important;
        line-height: 24px;
        margin: 0;
        padding: 0;
    }

}