/* 焦點新聞 */
#newsPage {
    background-color: #fff;
}
#newsList {
    min-height: 400px;
}
#newsList .title {
    padding-top: 0;
    padding-bottom: 32px;
}
#newsList:has(.keywordList) .title {
    padding-bottom: 16px;
}
#newsList .keywordList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto 32px;
    padding: 0 32px;
    box-sizing: border-box;
    max-width: 1200px;
}
#newsList .keywordList .tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #6A3EBB;
    border: 1px solid #6A3EBB;
    border-radius: 8px;
    padding: 2px 12px;
    cursor: pointer;
}
#newsList .keywordList a.tag:hover,
#newsList .keywordList .tag.act {
    background: #6A3EBB;
    color: #fff;
}
#newsList .grid {
    width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}
#newsList .grid ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 48px;
}
#newsList .grid ul li {
    display: flex;
    width: calc((100% - 64px) / 3);
}
#newsList .grid ul li a {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    width: 100%;
}
#newsList .grid .img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/9;
}
#newsList .grid .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#newsList .grid .txtBox {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
#newsList .grid .txt {
    overflow: hidden;
    color: #343434;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
}
#newsList .grid .time {
    color: #929398;
    font-size: 16px;
    font-weight: 500;
}
#newsList .moreBtn {
    margin-top: 36px;
    text-align: center;
}
#newsList .moreBtn a {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, #251268 0%, #533BBF 100%);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
@media (max-width:1279px) {
    #newsList .grid {
        width: 100%;
    }
}
@media (max-width:767px) {
    #newsList .title {
        padding-bottom: 20px;
    }
    #newsList:has(.keywordList) .title {
        padding-bottom: 12px;
    }
    #newsList .title h2 {
        font-size: 26px;
    }
    #newsList .keywordList {
        gap: 6px;
        row-gap: 8px;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    #newsList .grid {
        padding: 0 20px;
    }
    #newsList .grid ul {
        display: block;
    }
    #newsList .grid ul li {
        width: 100%;
        margin-bottom: 20px;
    }
    #newsList .grid .txt {
        font-size: 18px;
    }
    #newsList .grid .time {
        font-size: 14px;
    }
    #newsList .moreBtn {
        margin-top: 20px;
    }
    #newsList .moreBtn a {
        padding: 12px 24px;
        font-size: 18px;
    }
}
/* 焦點新聞 ed*/
