.section-articles {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

/*最新博客*/
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e2e2;
    padding: 1rem;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.card-image img {
    width: 100%;
    height: 100%;
    border-radius:8px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover img{
    transform: scale(1.05);
}
.card-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-meta {
    display: flex;
    font-size: 0.8rem;
    color: #474747;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.meta-item i {
    margin-right: 5px;
    width: 12px;
    height: 12px;
}
.card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}
.card-excerpt {
    color: #2d2d2d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}
.read-more {
    display: flex;
    background: linear-gradient(to right, rgb(221, 15, 56), rgb(255, 102, 52));
    padding: 2px 6px;
    border-radius: 5px;
    align-self: flex-end;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}
/*最新博客end*/
/*最新指南开始*/
.guide-card {
    transition: transform 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid #e2e2e2;
}
.guide-card:hover {
    transform: translateY(-5px);
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.guide-card:hover .card-img {
    transform: scale(1.05);
}
.guide-card .card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.guide-card-content {
    padding: 1rem;
}
.guide-title {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.25rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guide-desc {
    font-size: 15px;
    color: #2d2d2d;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*最新指南结束*/
/*探索博客开始*/
.blog-explore-header {
    text-align: center;
    margin: 0 auto 38px;
}

.blog-explore-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7250d5;
}

.blog-explore-header h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #15182b;
}

.blog-explore-intro {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}
.blog-explore-nav {
    width: 100%;
    max-width: 100%;
}
.blog-explore-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
.blog-explore-item {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.blog-explore-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 28px 22px 24px;
    overflow: hidden;
    box-sizing: border-box;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e0e2e7;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(20, 25, 50, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
@media (hover: hover) {
    .blog-explore-card:hover {
        transform: translateY(-5px);
        border-color: #ddd7f3;
        box-shadow: 0 14px 32px rgba(20, 25, 50, 0.09);
    }
    .blog-explore-card:hover .blog-explore-link span {
        transform: translateX(4px);
    }

}
.blog-explore-card:focus-visible {
    outline: 3px solid rgba(114, 80, 213, 0.25);
    outline-offset: 3px;
}
.blog-explore-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
}

.blog-explore-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-news {
    color: #004aff;
    background: #c9daff;
}

.icon-guide {
    color: #3f8d37;
    background: #edf8eb;
}

.icon-rewards {
    color: #d66a1c;
    background: #fff1e7;
}

.icon-help {
    color: #3577d4;
    background: #eaf2ff;
}

.icon-faqs {
    color: #168b91;
    background: #e7f8f8;
}
.blog-explore-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.blog-explore-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.3;
    color: #171a2b;
}

.blog-explore-content p {
    margin: 10px 0 20px;
    font-size: 14px;
    line-height: 1.65;
    color: #363b44;
}
.blog-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #6842c2;
}

.blog-explore-link span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}
.blog-explore-item:nth-child(2) .blog-explore-link {
    color: #004aff;
}
.blog-explore-item:nth-child(3) .blog-explore-link {
    color: #c75300;
}
.blog-explore-item:nth-child(4) .blog-explore-link {
    color: #004ebd;
}
.blog-explore-item:nth-child(5) .blog-explore-link {
    color: #006c72;
}
@media (max-width: 1100px) {
    .blog-explore-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}
@media (max-width: 900px) {
    .blog-explore-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
@media (max-width: 760px) {
    .blog-explore-intro {
        font-size: 15px;
        line-height: 1.65;
    }
    .blog-explore-nav {
        overflow: visible;
    }
    .blog-explore-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 14px;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
    }
    .blog-explore-list::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .blog-explore-item {
        display: block !important;
        flex: 0 0 72vw !important;
        width: 72vw !important;
        min-width: 72vw !important;
        max-width: 310px !important;
        box-sizing: border-box;
        scroll-snap-align: start;
    }
    .blog-explore-card {
        display: flex;
        min-width: 0;
        min-height: 230px;
        padding: 22px 18px;
        border-radius: 14px;
        box-sizing: border-box;
        transform: none;
    }
    .blog-explore-card:hover {
        transform: none;
    }
    .blog-explore-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
        border-radius: 12px;
    }
    .blog-explore-icon svg {
        width: 22px;
        height: 22px;
    }
    .blog-explore-content h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .blog-explore-content p {
        margin-top: 9px;
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.6;
    }
    .blog-explore-link {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .blog-explore {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .blog-explore-header h2 {
        font-size: 27px;
    }
    .blog-explore-intro {
        font-size: 14px;
    }
    .blog-explore-list {
        scroll-padding-left: 12px;
    }
    .blog-explore-item {
        flex: 0 0 65vw !important;
        width: 65vw !important;
        min-width: 65vw !important;
        max-width: 310px !important;
    }
    .blog-explore-card {
        min-height: 215px;
        padding: 20px;
    }
    .blog-explore-icon {
        width: 44px;
        height: 44px;
    }
}
/*探索博客结束*/
/*关于博客开始*/
.about-blog {border: 1px solid #ffc8b5;background: rgba(255, 101, 51, .1);}
.about-blog h2 {margin-bottom: 18px;}
.about-blog p {line-height: 1.6;}
/*关于博客结束*/
/*新闻版块开始*/
.news-section-articles {
    display: grid;
    gap:24px;
}
.news-section-articles article {width:100%;}
.news-card {
    display:grid; 
    grid-template-columns: 0.4fr 0.6fr;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #0000002d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.news-card:hover img {transform: scale(1.05);}
.news-img{overflow:hidden;border-radius:15px;}
.news-img img {width:100%; transition: transform 0.3s ease;}
.news-card-content {
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
.news-card-content .news-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.news-card-content .news-card-desc {
    font-size: 14px;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .news-card {grid-template-columns: 1fr;}
}
/*新闻版块结束*/
@media (max-width: 768px) {
    .section-articles {grid-template-columns: repeat(1, 1fr);}
 .news-card {grid-template-columns: 1fr;}

.section-promo {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
    
}