/* 产品服务横幅 */
.product-service-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: inherit;
}

.product-machine-img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* 新闻中心 */
.news-center-section {
    background-color: #F0EFF6;
    padding: calc(38px * var(--scale-ratio)) calc(101px * var(--scale-ratio));
    width: 100%;
}

.news-center-container {
    margin: 0 auto;
    text-align: center;
}

.news-center-title {
    position: relative;
    display: inline-block;
    font-size: calc(64px * var(--scale-ratio));
    color: #3C2680;
    text-align: center;
    margin-bottom: calc(37px * var(--scale-ratio));
    font-weight: 700;
}

.news-center-title::after {
    content: '';
    position: absolute;
    bottom: calc(-3px * var(--scale-ratio));
    left: 50%;
    transform: translateX(-50%);
    width: calc(256px * var(--scale-ratio));
    height: calc(3px * var(--scale-ratio));
    background: #3C2680;
}

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item-link {
    text-decoration: none;
    color: inherit;
}

.news-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #F0EFF6;
    box-shadow: 0px 2px 6.3px -1px #3C2680;
    cursor: pointer;
}

/* 左侧封面图 */
.news-cover {
    width: calc(423px * var(--scale-ratio));
    height: calc(258px * var(--scale-ratio));
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-cover-placeholder {
    font-family: sans-serif;
    font-size: 14px;
    color: #9B9B9B;
}

/* 内容区域 */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.news-content-title {
    text-align: left;
    font-size: calc(36px * var(--scale-ratio));
    color: #3C2680;
    margin: 0;
    font-weight: normal;
    line-height: 1.5;
}

.news-content-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #9B9B9B;
}

.news-date-icon {
    width: calc(17px * var(--scale-ratio));
    height: calc(17px * var(--scale-ratio));
    margin-top: 3px;
}

.news-date-text {
    color: #A1A1E5;
    font-size: calc(16px * var(--scale-ratio));
}

.news-accounts-desktop {
    display: none;
}

.news-accounts-list {
    font-size: calc(24px * var(--scale-ratio));
    color: #3C2680;
    line-height: 1.6;
    margin: 0;
    max-height: 999px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    word-break: break-all;
}

@media (min-width: 769px) and (max-width: 1199px) {

    .news-center-section {
        padding: 40px 60px;
    }

    .news-center-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .news-center-title::after {
        bottom: -3px;
        width: 104px;
        height: 2.5px;
    }

    .news-list {
        gap: 22px;
    }

    .news-item {
        padding: 20px 26px;
        gap: 22px;
        border-radius: 12px;
    }

    .news-cover {
        width: 160px;
        height: 96px;
        border-radius: 14px;
    }

    .news-content-title {
        font-size: 16px;
        -webkit-line-clamp: 1;
    }

    .news-content-date {
        position: absolute;
        bottom: 20px;
        font-size: 12px;
    }

    .news-date-icon {
        width: 16px;
        height: 16px;
        margin-top: 2px;
    }

    .news-date-text {
        font-size: 14px;
    }

    .news-accounts-list {
        font-size: 12px;
        color: #3C2680;
        line-height: 1.6;
        margin: 0;
        max-height: 999px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    .news-center-section {
        padding: 25px 18px;
    }

    .news-center-title {
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 17px;
    }

    .news-center-title::after {
        bottom: -1px;
        width: 80px;
        height: 1.5px;
    }

    .news-list {
        gap: 11px;
    }

    .news-item {
        padding: 12px 15px;
        gap: 15px;
        position: relative;
    }

    .news-cover {
        width: 98px;
        height: 60px;
        border-radius: 12px;
    }

    .news-content-title {
        text-align: left;
        font-size: 12px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        word-break: break-all;
    }

    .news-content-date {
        position: absolute;
        bottom: 12px;
        font-size: 12px;
    }

    .news-date-icon {
        width: 12px;
        height: 12px;
        margin-top: 3px;
    }

    .news-date-text {
        color: #A1A1E5;
        font-size: 12px;
    }

    .news-accounts-desktop {
        display: none !important;
    }
}