.about-top{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.about-top-left{
    width: 90%;
}
.about-top-left-title .first-title{
    color: #000;
}
.about-top-left-title .second-title{
    font-family: Helvetica, sans-serif;
    color: #ddd;
    display: block;
}
.about-top-left-content{
    margin-top: 20px;
    font-size: 16px;
    line-height: 2.4;
}
.about-top-right{
}

.about-bottom{
    margin-top: 30px;
    width: 100%;
}
.about-bottom-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.about-bottom-item{
    font-weight: normal;
    font-size: 20px;
    cursor: pointer;
}

.about-bottom-item.item1{
    background: #00aaaa;
}
.about-bottom-item-text.item1{
    color: #fff;
}
.about-bottom-item.item2{
    
}
.about-bottom-item.item3{
    background: #f2f2f2;
}
.about-bottom-item-text.item3{
    color: #434343;
}
.about-bottom-item-text.item3:hover{
    color: #01848B;
}
.about-bottom-item.item4{
    
}
.about-bottom-item.item1,
.about-bottom-item.item3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.about-bottom-item-icon{
    width: 111px;
    height: 105px;
    margin-bottom: 20px;
}
.about-bottom-item-text{
    text-align: center;
}


.about-bottom-item-icon{
    position: relative;
}
.about-bottom-item-icon img{
    position: absolute;
    left: 0;
    top: 0;
}
.about-bottom-item-icon img:hover{
    animation:topDown 3s linear infinite;
}

.ckw-top-left-title{
    margin-bottom: 10px;
}
.ckw-top-left-title .first-title{
    color: #000;
    font-size: 28px;
    display: inline-block;
}
.ckw-top-left-title .first-title:first-letter{
    font-size: 36px;
}
.ckw-top-left-title .second-title{
    color: #ddd;
    font-size: 28px;
    display: inline-block;
}
.ckw-bottom{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.ckw-bottom-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ckw-bottom-item .item-l,.ckw-bottom-item .item-r{
    height: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
}
.ckw-bottom-item .item-l{
    justify-content: end;
}
.ckw-bottom-item .item-r{
    height: 50%;
    padding:60px;
    display: flex;
    align-items:center;
}
.ckw-bottom-item .text{
    width: 210px;
    color:#156178;
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
    text-align: justify;
}


@keyframes topDown {
            0%{
                transform: translateY(0px);
            }
            10%{
                transform: translateY(-30px);
            }
            20%{
                transform: translateY(0px);
            }
            30%{
                transform: translateY(-15px);
            }
            40%{
                transform: translateY(0px);
            }
            50%{
                transform: translateY(-7.5px);
            }
            60,100%{
                transform: translateY(0px);
            }
        }

@media (max-width: 991.99px) {
   .about-top{
       grid-template-columns: repeat(1,1fr);
   }
   .about-top-left{
       order: 2;
   }
   .about-top-right{
       order: 1;
   }
   .about-bottom-list{
       grid-template-columns: repeat(2,1fr);
   }
   
    .ckw-top-left-title .first-title{
        font-size: 24px;
    }
    .ckw-top-left-title .first-title:first-letter{
        font-size: 30px;
    }
    .ckw-top-left-title .second-title{
        font-size: 24px;
    }
   .ckw-bottom{
        grid-template-columns: repeat(1, 1fr);
    }
    .ckw-bottom-item:nth-child(2){
        width: 80%;
        margin: 0 auto;
    }
}




.news-part{
    background: #f4f4f4;
}
.news-part-top{
    width: 100%;
    height: 100%;
    position: relative;
}
.news-part-top img{
    width: 100%;
    height: auto;
}
.news-part-top-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
}
.news-part-content{
    padding:0 20px;
}
.news-primary{
    padding:20px 0;
}
.news-primary-title{
    font-size: 18px;
    font-weight: bold;
    color: #222;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-primary-title a:hover{
    color: #222;
}
.news-primary-time{
    color: #787878;
    font-family: Arial, Helvetica, sans-serif;
}
.news-primary-content{
    color: #626262;
    display: -webkit-box;          
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2;         
    overflow: hidden;              
    text-overflow: ellipsis;       
    word-break: break-all;         
}
.news-secondary{
    padding:20px 0;
    border-top: 1px solid #e5e5e5;
}
.news-secondary-item{
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 36px;
}
.news-secondary-item .text:hover{
    color: #01848B;
}
.news-secondary-item .icon{
    color: #01848b;
    font-weight: bold;
    margin-right: 10px;
}
.news-secondary-item .text{
    color: #434343;
    /*font-weight: bold;*/
}







