.mySwiper {
    width: 100%;
}
.mySwiper .swiper-slide img{
    width: 100%;
    height: auto;
}
.swiper-pagination-bullet {
    width: 2rem;
    height: 0.2rem;
    background: hsla(0,0%,100%,.4);
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FFF;
}
/*产品中心*/
.product-tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5rem;
}
.product-tab li{
    line-height: 46px;
    background: #e5f7fe;
    border-radius: 30px;
    margin: 0.5rem;
    padding: 0 1.75rem;
    color: #333;
    font-size: 1.6rem;
}
.product-tab li.active,
.product-tab li:hover {
    background: #00a0e9;
    color: #FFF;
}

.product-list ul li {
    width: calc(25% - 2rem);
}
@media (max-width: 1200px)  {
    .product-list ul li {
        width: calc(50% - 2rem);
    }
}
/*产品化定制*/
.product_customization{
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    margin-top: 5rem;
}
.product_customization .text{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

}
.product_customization .text i{
    display: block;
    width: 12rem;
    height: 12rem;
    background: url("https://www.konnad.com/uploads/temp/index/product_customization-ico.jpg") no-repeat center center / 100% 100%;
}
.product_customization .text dl{
    width: 60%;
    padding-left: 2rem;
}
.product_customization .text dl dt{
    font-size: 2rem;
}
.product_customization .text dl dd{
    margin-top: 1rem;
}
@media (min-width: 1200px) {
    .product_customization{
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }
    .product_customization .text,
    .product_customization .image{
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .product_customization .text{
        padding: 3rem 0;
    }
    .product_customization .text,
    .product_customization .image{
        width: 100%;
    }
}

.reliable{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5rem;
}
.reliable li{
    width: calc(33.333% - 0.75rem);
    background-size: auto 100%;
    transition: all .3s ease-in-out;
    margin-bottom: 1.5rem;
}
.reliable li:hover{
    background-size: auto 110%;
}
.reliable li:nth-of-type(3n-2) {
    width: calc(66.666% - 0.75rem);
}
.reliable li a{
    display: block;
}
.reliable li dl{
    padding: 15rem 5rem;
    color: #FFF;
}
.reliable li dl dt{
    font-size: 3rem;
}
.reliable li dl dd{
    padding-top: 2rem;
    font-size: 1.5rem;
}
@media (max-width: 1200px) {
    .reliable li,
    .reliable li:nth-of-type(3n-2){
        width:100%;
    }
}

.news-list{

}
.news-item{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 45px;
    padding: 45px 0;
    border-bottom: solid 1px #E6E6E6;
}
.news-item:last-child{
    border-bottom: none;
}
.news-date{
}
.news-date p:first-child{
    text-align: right;
    font-size: 30px;
    font-weight: bold;
    color: #595757;
}
.news-date p:last-child{
    text-align: right;
}
.news-content{
    flex: 1;
    font-size: 20px;
}
.news-content p:first-child{
    color: #3E3A39;
}
.news-item:hover .news-content p:first-child{
    color: #0093D7;
}
.news-content p:last-child{
    padding-top: 10px;
    color: #9FA0A0;
}
.news-thumb{
    width: 150px;
}
.news-more{
    text-align: center;
}
.news-more a{
    padding: 5px 20px;
    background: #9FA0A0;
    font-size: 16px;
    color: #FFF;
}