/* ==============================
   新闻频道页
   Theme: #026ABD
================================= */

.news-channel-page {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

/* 标题 */
.news-channel-head {
    margin-bottom: 32px;
}

.news-channel-title h1 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
}

.news-channel-title span {
    display: block;
    width: 60px;
    height: 10px;
    margin-top: 12px;
    background: #026ABD;
}

.news-channel-title p {
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

/* 分类 */
.news-channel-cate {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.news-channel-cate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 22px;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 22px;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

.news-channel-cate a:hover,
.news-channel-cate a.active {
    border-color: #026ABD;
    background: #026ABD;
    color: #fff;
}

/* 顶部推荐区域 */
.news-channel-top {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 36px;
    margin-bottom: 70px;
}

/* 推荐大图 */
.news-hot-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 470px;
    border-radius: 18px;
    background: #111;
    text-decoration: none;
}

.news-hot-img {
    width: 100%;
    height: 100%;
}

.news-hot-img img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: all .45s ease;
}

.news-hot-card:hover .news-hot-img img {
    transform: scale(1.06);
}

.news-hot-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.45), rgba(0,0,0,0));
    z-index: 1;
}

.news-hot-info {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    z-index: 2;
}

.news-hot-info em {
    display: inline-flex;
    align-items: center;
    height: 30px;
    margin-bottom: 16px;
    padding: 0 14px;
    border-radius: 16px;
    background: #026ABD;
    color: #fff;
    font-size: 13px;
    font-style: normal;
}

.news-hot-info h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
}

.news-hot-info p {
    max-height: 56px;
    margin: 0 0 16px;
    overflow: hidden;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 28px;
}

.news-hot-info span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

/* 最新新闻 */
.news-latest-box {
    padding: 34px 36px;
    box-sizing: border-box;
    background: #f7f7f7;
    border-radius: 18px;
}

.news-latest-title {
    margin-bottom: 22px;
}

.news-latest-title h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    line-height: 38px;
    font-weight: bold;
}

.news-latest-title span {
    display: block;
    width: 50px;
    height: 6px;
    margin-top: 10px;
    background: #026ABD;
}

.news-latest-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 18px 34px 18px 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    transition: all .25s ease;
}

.news-latest-item:last-child {
    border-bottom: none;
}

.news-latest-date {
    width: 100px;
    flex-shrink: 0;
}

.news-latest-date strong {
    display: block;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
}

.news-latest-text {
    flex: 1;
}

.news-latest-text h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    transition: all .25s ease;
}

.news-latest-text p {
    height: 48px;
    margin: 0;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

.news-latest-item > i {
    position: absolute;
    right: 0;
    top: 22px;
    color: #aaa;
    font-size: 22px;
    transition: all .25s ease;
}

.news-latest-item:hover .news-latest-text h3,
.news-latest-item:hover > i {
    color: #026ABD;
}

/* 全部新闻 */
.news-list-section {
    margin-top: 20px;
}

.news-list-head {
    margin-bottom: 32px;
}

.news-list-head h2 {
    margin: 0;
    color: #111;
    font-size: 32px;
    line-height: 42px;
    font-weight: bold;
}

.news-list-head span {
    display: block;
    width: 56px;
    height: 8px;
    margin-top: 10px;
    background: #026ABD;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-list-item {
    display: block;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 16px;
    text-decoration: none;
    transition: all .3s ease;
}

.news-list-item:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.news-list-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-list-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.06);
}

.news-list-info {
    padding: 24px 24px 28px;
    box-sizing: border-box;
}

.news-list-date {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #888;
    font-size: 14px;
    line-height: 22px;
}

.news-list-date i {
    margin-right: 8px;
    color: #026ABD;
}

.news-list-info h3 {
    height: 56px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #111;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    transition: all .25s ease;
}

.news-list-info p {
    height: 54px;
    margin: 0 0 20px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 27px;
}

.news-list-more {
    display: inline-flex;
    align-items: center;
    color: #026ABD;
    font-size: 14px;
    line-height: 24px;
}

.news-list-more i {
    margin-left: 8px;
    transition: all .25s ease;
}

.news-list-item:hover .news-list-info h3 {
    color: #026ABD;
}

.news-list-item:hover .news-list-more i {
    transform: translateX(4px);
}