/* pc样式 */
@media screen and (min-width: 1024px){
    .news-title {
        display: flex;
        height: 70px;
    }
    .news-title>h2{
        display: flex;
        align-items: center;
        font-size: 36px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        border-bottom: 2px solid var(--zt_color--);
    }
    .news-title>span{
        flex: 1;
        border-bottom: 2px solid var(--zt_blue_color--);
    }

    .news ul {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 32%;
        margin-bottom: 40px;
    }

    .news ul li a {

    }

    .news-img {
        width: 100%;
        height: 280px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        transition: all 1s ease;
    }

    .news-img:hover {
        background-size: 120% 120%;
        transition: all 1s ease;
    }

    .news-text {
        margin-top: 5px;
        font-size: 18px;
        line-height: 36px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .events>ul{

    }
    .events ul li{

    }
    .events ul li a{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 2px solid #babfc4;
    }
    .events ul li a h2{
        flex: 1;
        background-image: url(../icon/events_title_icon.png);
        background-repeat: no-repeat;
        background-position: left center;
        padding-left: 15px;
        font-size: 18px;
        font-weight: 700;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .events ul li a p{
        text-align: right;
        width: 180px;
        color: var(--zt_color--);
        font-size: 18px;
    }

}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .news {
        padding: 0 5px;
    }
    .news-title {
        display: flex;
        height: 70px;
    }
    .news-title>h2{
        display: flex;
        align-items: center;
        font-size: 36px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        border-bottom: 2px solid var(--zt_color--);
    }
    .news-title>span{
        flex: 1;
        border-bottom: 2px solid var(--zt_blue_color--);
    }

    .news ul {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 32%;
        margin-bottom: 40px;
    }

    .news ul li a {

    }

    .news-img {
        width: 100%;
        height: 280px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        transition: all 1s ease;
    }

    .news-img:hover {
        background-size: 120% 120%;
        transition: all 1s ease;
    }

    .news-text {
        margin-top: 5px;
        font-size: 18px;
        line-height: 36px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .events {
        padding: 0 5px;
    }
    .events ul li a{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 2px solid #babfc4;
    }
    .events ul li a h2{
        flex: 1;
        background-image: url(../icon/events_title_icon.png);
        background-repeat: no-repeat;
        background-position: left center;
        padding-left: 15px;
        font-size: 18px;
        font-weight: 700;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .events ul li a p{
        text-align: right;
        width: 150px;
        color: var(--zt_color--);
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .news-title {
        height: 50px;
    }
    .news-title>h2{
        font-size: 26px;
    }
    .news ul li {
        width: 49%;
        margin-bottom: 20px;
    }
    .news-img {
        height: 180px;
    }

    .news-text{
        font-size: 16px;
        line-height: 22px;
    }
    .events ul li a {
        height: 60px;
    }
}
@media screen and (max-width: 700px) { 
    .events ul li a {
        height: 50px;
    }
    .events ul li a h2 {
        font-size: 16px;
    }
}