﻿.blog-list {
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 0 40px 0;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.blog-item:last-child {
    margin-bottom: 0;
}

.blog-item-img {
    width: 40%;
    border-radius: 4px;
    overflow: hidden;
}

.blog-item-img a {
    display: block;
    width: 100%;
}

.blog-item-img img {
    display: block;
    width: 100%;
    height: 325px;
    object-fit: cover;
    border-radius: 4px;
    transition: all .3s ease;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.04);
}

.blog-item-info {
    width: calc(60% - 60px);
}

.blog-item-info h2 {
    max-width: 760px;
    margin: 0 0 32px 0;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog-item-info h2 a {
    color: #ffffff;
    text-decoration: none;
}

.blog-item-info h2 a:hover {
    color: #00a8f4;
}

.blog-item-info p {
    max-width: 790px;
    margin: 0 0 54px 0;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .3px;
}

.blog-item-bottom {
    display: flex;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.blog-more {
    display: inline-block;
    min-width: 160px;
    height: 42px;
    line-height: 42px;
    padding: 0 24px;
    box-sizing: border-box;
    background: #007bd8;
    border-radius: 24px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .25s ease;
}

.blog-more span {
    padding-left: 10px;
}

.blog-more:hover {
    background: #00a8f4;
    color: #ffffff;
    transform: translateY(-2px);
}

.blog-item-bottom em {
    display: block;
    width: 1px;
    height: 16px;
    margin: 0 32px;
    background: rgba(255,255,255,.18);
    font-style: normal;
}

.blog-date {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
}


.blog-detail {
    color: #ffffff;
}

.blog-detail-head {
    padding-bottom: 34px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

.blog-detail-head h1 {
    max-width: 980px;
    margin: 0 auto 20px auto;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.4;
}

.blog-detail-meta em {
    display: block;
    width: 1px;
    height: 14px;
    margin: 0 18px;
    background: rgba(255,255,255,.25);
    font-style: normal;
}

.blog-detail-img {
    width: 100%;
    margin-bottom: 42px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-detail-content {
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.blog-detail-content p {
    margin: 0 0 24px 0;
    color: rgba(255,255,255,.95);
    font-size: 17px;
    line-height: 1.85;
    letter-spacing: .3px;
}

.blog-detail-content h2 {
    margin: 42px 0 18px 0;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: .5px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-detail-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 42px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.blog-detail-page a {
    display: block;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s ease;
}

.blog-detail-page a:hover {
    background: rgba(0,168,244,.16);
    border-color: rgba(0,168,244,.75);
    transform: translateY(-2px);
}

.blog-detail-page span {
    display: block;
    margin-bottom: 10px;
    color: #00a8f4;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-detail-page strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
}

.blog-page-next {
    text-align: right;
}

.blog-recommend {
    padding-top: 48px;
}

.blog-recommend-title {
    margin-bottom: 30px;
}

.blog-recommend-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-recommend-item {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    transition: all .25s ease;
}

.blog-recommend-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0,168,244,.65);
}

.blog-recommend-img {
    display: block;
    width: 100%;
    overflow: hidden;
}

.blog-recommend-img img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: all .3s ease;
}

.blog-recommend-item:hover .blog-recommend-img img {
    transform: scale(1.05);
}

.blog-recommend-info {
    padding: 22px 22px 24px 22px;
}

.blog-recommend-info h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.blog-recommend-info h3 a {
    color: #ffffff;
    text-decoration: none;
}

.blog-recommend-info h3 a:hover {
    color: #00a8f4;
}

.blog-recommend-info p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.4;
}


.news-channel {
    color: #ffffff;
}

.news-channel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 36px;
}

.news-channel-head span {
    display: block;
    margin-bottom: 10px;
    color: #00CFA9;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .8px;
}

.news-channel-head h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

.news-channel-head p {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .3px;
}

.news-channel-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.news-channel-cat a {
    display: inline-block;
    padding: 0 24px;
    height: 42px;
    line-height: 42px;
    border-radius: 24px;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    transition: all .25s ease;
}

.news-channel-cat a:hover,
.news-channel-cat a.current {
    border-color: transparent;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
}

.news-channel-main {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.news-channel-left {
    flex: 1;
    min-width: 0;
}

.news-channel-right {
    width: 330px;
    flex: 0 0 330px;
}

.news-feature {
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 28px;
    margin-bottom: 42px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.news-feature-img {
    width: 44%;
    border-radius: 8px;
    overflow: hidden;
}

.news-feature-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all .3s ease;
}

.news-feature:hover .news-feature-img img {
    transform: scale(1.04);
}

.news-feature-info {
    width: 56%;
}

.news-feature-info > span {
    display: block;
    margin-bottom: 14px;
    color: #00CFA9;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.news-feature-info h2 {
    margin: 0 0 18px 0;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 500;
}

.news-feature-info h2 a {
    color: #ffffff;
    text-decoration: none;
}

.news-feature-info h2 a:hover {
    color: #00CFA9;
}

.news-feature-info p {
    margin: 0 0 28px 0;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: .3px;
}

.news-feature-bottom {
    display: flex;
    align-items: center;
}

.news-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    height: 42px;
    padding: 0 22px;
    box-sizing: border-box;
    border-radius: 24px;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    transition: all .25s ease;
}

.news-more i {
    margin-left: 10px;
}

.news-more:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.news-feature-bottom em {
    display: block;
    width: 1px;
    height: 16px;
    margin: 0 24px;
    background: rgba(255,255,255,.18);
    font-style: normal;
}

.news-feature-bottom b {
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: 500;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 0 34px 0;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.news-list-item:last-child {
    margin-bottom: 0;
}

.news-list-img {
    width: 330px;
    flex: 0 0 330px;
    border-radius: 8px;
    overflow: hidden;
}

.news-list-img img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    transition: all .3s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.04);
}

.news-list-info {
    flex: 1;
    min-width: 0;
}

.news-list-info h2 {
    margin: 0 0 16px 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
}

.news-list-info h2 a {
    color: #ffffff;
    text-decoration: none;
}

.news-list-info h2 a:hover {
    color: #00CFA9;
}

.news-list-info p {
    margin: 0 0 24px 0;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.65;
}

.news-list-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list-bottom a {
    color: #00CFA9;
    font-size: 15px;
    text-decoration: none;
}

.news-list-bottom a i {
    margin-left: 8px;
}

.news-list-bottom span {
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.news-side-box {
    padding: 26px 24px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.news-side-box h3 {
    margin: 0 0 22px 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.news-side-cat a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: all .25s ease;
}

.news-side-cat a:last-child {
    border-bottom: none;
}

.news-side-cat a:hover {
    color: #00CFA9;
    padding-left: 6px;
}

.news-recommend-item {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.news-recommend-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-recommend-img {
    width: 92px;
    flex: 0 0 92px;
    border-radius: 6px;
    overflow: hidden;
}

.news-recommend-img img {
    display: block;
    width: 92px;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
}

.news-recommend-info {
    flex: 1;
    min-width: 0;
}

.news-recommend-info h4 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.news-recommend-item:hover h4 {
    color: #00CFA9;
}

.news-recommend-info p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}


.blog-cat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}

.blog-cat a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 95px;
    height: 42px;
    padding: 0 24px;
    box-sizing: border-box;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 15px;
    line-height: 42px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: all .25s ease;
}

.blog-cat a:hover,
.blog-cat a.current {
    border-color: transparent;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,164,253,.22);
}

/* mobile */
@media screen and (max-width: 768px) {
    .blog-list {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .blog-item {
        display: block;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .blog-item-img {
        width: 100%;
        margin-bottom: 22px;
    }

    .blog-item-img img {
        height: auto;
    }

    .blog-item-info {
        width: 100%;
    }

    .blog-item-info h2 {
        margin-bottom: 16px;
        font-size: 21px;
        line-height: 1.45;
    }

    .blog-item-info p {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .blog-item-bottom {
        padding-top: 22px;
    }

    .blog-more {
        min-width: 135px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }

    .blog-item-bottom em {
        margin: 0 18px;
    }

    .blog-date {
        font-size: 14px;
    }
	
	
	 .blog-detail {
	        padding: 0 15px;
	        box-sizing: border-box;
	    }
	
	    .blog-detail-head {
	        padding-bottom: 24px;
	        margin-bottom: 26px;
	        text-align: left;
	    }
	
	    .blog-detail-head h1 {
	        font-size: 1.65rem;
	        line-height: 1.45;
	        margin-bottom: 16px;
	    }
	
	    .blog-detail-meta {
	        justify-content: flex-start;
	        font-size: 14px;
	    }
	
	    .blog-detail-img {
	        margin-bottom: 28px;
	    }
	
	    .blog-detail-content {
	        padding-bottom: 36px;
	    }
	
	    .blog-detail-content p {
	        margin-bottom: 18px;
	        font-size: 15px;
	        line-height: 1.75;
	    }
	
	    .blog-detail-content h2 {
	        margin: 30px 0 14px 0;
	        font-size: 21px;
	    }
	
	    .blog-detail-page {
	        grid-template-columns: 1fr;
	        gap: 16px;
	        padding: 32px 0;
	    }
	
	    .blog-detail-page a {
	        padding: 20px;
	    }
	
	    .blog-page-next {
	        text-align: left;
	    }
	
	    .blog-detail-page strong {
	        font-size: 15px;
	    }
	
	    .blog-recommend {
	        padding-top: 36px;
	    }
	
	    .blog-recommend-title {
	        margin-bottom: 22px;
	    }
	
	    .blog-recommend-title h2 {
	        font-size: 1.65rem;
	    }
	
	    .blog-recommend-list {
	        grid-template-columns: 1fr;
	        gap: 20px;
	    }
	
	    .blog-recommend-img img {
	        height: auto;
	    }
	
	    .blog-recommend-info {
	        padding: 18px;
	    }
	
	    .blog-recommend-info h3 {
	        font-size: 16px;
	    }

    .news-channel {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .news-channel-head {
        display: block;
        margin-bottom: 24px;
    }

        .news-channel-head h1 {
            margin-bottom: 16px;
            font-size: 1.7rem;
            line-height: 1.4;
        }

        .news-channel-head p {
            max-width: 100%;
            font-size: 14px;
            line-height: 1.7;
        }

    .news-channel-cat {
        gap: 10px;
        margin-bottom: 28px;
    }

        .news-channel-cat a {
            height: 38px;
            line-height: 38px;
            padding: 0 18px;
            font-size: 14px;
        }

    .news-channel-main {
        display: block;
    }

    .news-channel-right {
        width: 100%;
        margin-top: 34px;
    }

    .news-feature {
        display: block;
        padding: 18px;
        margin-bottom: 32px;
    }

    .news-feature-img,
    .news-feature-info {
        width: 100%;
    }

    .news-feature-img {
        margin-bottom: 20px;
    }

    .news-feature-info h2 {
        font-size: 21px;
        line-height: 1.45;
    }

    .news-feature-info p {
        font-size: 14px;
        line-height: 1.7;
    }

    .news-feature-bottom {
        flex-wrap: wrap;
    }

    .news-list-item {
        display: block;
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .news-list-img {
        width: 100%;
        margin-bottom: 18px;
    }

        .news-list-img img {
            width: 100%;
            height: auto;
        }

    .news-list-info h2 {
        font-size: 20px;
        line-height: 1.45;
    }

    .news-list-info p {
        font-size: 14px;
        line-height: 1.7;
    }

    .news-side-box {
        padding: 22px 18px;
    }

    .blog-cat {
        padding: 0 15px;
        box-sizing: border-box;
        gap: 10px;
        margin-bottom: 30px;
    }

    .blog-cat a {
        min-width: auto;
        height: 38px;
        padding: 0 16px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 38px;
    }
	
}

