/*数字滚动*/
.counter {
    background: #f5f6f6;
    padding: 80px 0;
}

.counter-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.counter li {
    text-align: center;
    color: #fff;
}
.num-wrap {
    position: relative;
    display: inline-block;
}
.counter .num {
    font-family: 'Courier New';
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    color:#006a80;
}
.counter .unit {
    position: absolute;
    top: -8px;
    right: -14px;
    font-size: 16px;
    color:#333;
}

.counter .text {
    font-size: 14px;
    margin-top: 10px;
    color:#333;
}

@media (max-width: 640px) {
    .counter-list {
        flex-wrap: wrap;
    }
    .counter li {
        width: 50%;
        margin-bottom: 20px;
    }
    .counter .num {
        font-size: 30px;
    }
}

/*产品中心*/
.index_cp{
    width:85%;
    margin:5% auto;
}
.index_cp .index_cp_cont{
    width: 100%;
    margin:4% auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3%;
}
.index_cplist{
    width: calc((100% - 3%) / 2);
    margin-bottom: 5%;
}
.index_cp .index_cp_cont .index_cp_img{
    width:50%;
    display: inline-block;
    border: 1px solid #ddd;
    height: 300px;
}
.index_cp .index_cp_cont .index_cp_img img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.index_cp .index_cp_cont .index_title{
    float: right;
    width: 47%;
    display: inline-block;
    overflow: hidden;
}

.index_title h2{
    color:#333;
    font-size: 1.6rem;
    /*font-weight: bold;*/
}
.index_title h3{
    font-size: 18px;
    color:#999;
    margin-top:5px;
    margin-bottom: 30px;
}
.index_title p{
    margin-top:10px;
    line-height: 26px;
}
.index_a{
    margin-top:40px;
}

.index_a a{
    font-size: 14px;
    line-height: 45px;
    height: 45px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 106, 128, 1), rgba(246, 141, 46, 1));
    color: #ffffff;
    padding: 15px 60px;
}
.index_a a:hover{
    background: linear-gradient(90deg, rgba(246, 141, 46, 1), rgba(0, 106, 128, 1));
}
.index_a1{
    margin-top:30px;
}
.index_a1 a{
    font-size: 14px;
    line-height: 45px;
    height: 45px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 106, 128, 1), rgba(246, 141, 46, 1));
    color: #ffffff;
    padding: 15px 60px;
}
.index_a1 a:hover{
    background: linear-gradient(90deg, rgba(246, 141, 46, 1), rgba(0, 106, 128, 1));
}
.index_cp .index_cp_cont_r{
    width: 100%;
}
.index_cp .index_cp_cont_r .index_cp_img{
    width:60%;
    display: inline-block;
    float: right;
    background-color: #eeeeee;
    height: 370px;
}
.index_cp .index_cp_cont_r .index_cp_img img{
    width:100%;
}
.index_cp .index_cp_cont_r .index_title{
    width: 37%;
    display: inline-block;
}
.margin90{
    margin-top:90px;
}
.index_cp_t{
    text-align: center;
}
.index_cp_t h2{
    color:#333;
    font-size: 2.4rem;
    font-weight: bold;
}
.index_cp_t hr{
    width:60px;
    height: 3px;
    display: inline-block;
    background-color: #f68d2e;
}
.index_cp_t h3{
    color:#999;
    font-size: 1.2rem;
    font-weight: 400;
}