.main .news-h1 {
    font-size: 48px;
    font-size: var(--page-h1);
    color: #181D23;
    line-height: 64px;
    font-weight: 600;
    margin: 88px 0 56px;
    width: 100%;
    text-align: center;
}

.main .news-page {
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 64px;
}

.main .news {
    width: 394px;
    height: 382px;
    background: #F5F9FC;
    background: var(--bgcolor);
    border-radius: 8px;
    border-radius: var(--radius);
    user-select:none;cursor:pointer;
    position: relative;
}
.main .news .line{
    width: 100%;
    height: 4px;
    background: #3E007D;
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
}

.main .news:hover .line{
    display: block;
}

.main .news img {
    width: 100%;
    height: 222px;
}

.main .news-detail {
    padding: 20px 24px 24px;
}
.main .news-title {
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    font-size: var(--title);
    color: #181D23;
    line-height: 28px;
    margin-bottom: 8px;
    overflow: hidden;text-overflow:ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main .news:hover .news-title {
    color: #3E007D;
}
.main .news-desc {
    font-size: 16px;
    font-size: var(--content);
    color: #606266;
    line-height: 24px;
    overflow: hidden;text-overflow:ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.main .page-x {
    font-size: 20px;
    color: #606266;
    line-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 96px;
}
.main .page-x span{
    color: #181D23;
}

.main .page-x .carousel-arrow {
    position: relative;
    top: 0;
    margin-top: 0;
    background-color: #F5F9FC !important;
}
.main .carousel-arrow-left {
    right: 20px;
}
.main .carousel-arrow-right {
    left: 20px;
}


.main .news-img.phone {
    display: none;
}


@media (max-width: 1024px) {
    .main .news-img {
        display: none;
    }
    .main .news-img.phone {
        display: block;
    }

    .main .news-h1 {
        font-size: var(--page-p);
        line-height: 32px;
        margin: 44px 0 28px;
    }

    .main .news-page a {
        width: 100%;
    }

    .main .news {
        width: 100%;
        height: auto;
    }

    .main .news img {
        height: 193px;
        object-fit: contain;
        object-position: top;
    }

    .main .news-title {
        line-height: 26px;
    }

    .main .news-desc {
        line-height: 22px;
    }

    .main .news-detail {
        padding: 12px 16px 20px;
    }


    .main .page-x {
        display: none;
    }
}
