/* Blog list / show — 对齐参考站左右栏排版，沿用本站红点与 banner */

.blog {
    width: 100%;
    background: #f7f7f7;
    padding-bottom: 60px;
}

.blog .show {
    width: 100%;
    background: url(../img/use_img/contact/contact_bg1.png) no-repeat;
    background-size: cover;
}

.blog .show_word_contact {
    text-align: center;
    color: #fff;
    font-weight: 900;
    font-family: Arial, sans-serif;
    margin: 0;
}

.blogBreadcrumb {
    color: #666;
    font-size: 14px;
}

.blogBreadcrumb a {
    color: #323232;
    text-decoration: none;
}

.blogBreadcrumb a:hover {
    color: #da3836;
}

.blogContainer {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.blogList {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 10px 30px 30px;
}

.blogItem {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.blogItem:last-of-type {
    border-bottom: none;
}

.blogItem_img {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.blogItem_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blogItem:hover .blogItem_img img {
    transform: scale(1.05);
}

.blogItem_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blogItem_date {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.blogItem_title {
    display: block;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 12px;
}

.blogItem_title:hover {
    color: #da3836;
}

.blogItem_desc {
    color: #747474;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogItem_more {
    display: inline-block;
    color: #da3836;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blogItem_more:hover {
    text-decoration: underline;
}

.blogPages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
}

.blogPages a,
.blogPages span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0 10px;
    border-radius: 50px;
    background: #f5f5f5;
    color: #323232;
    text-decoration: none;
    font-size: 14px;
}

.blogPages a:hover,
.blogPages a.active,
.blogPages .active {
    background: #da3836;
    color: #fff;
}

.blogSidebar {
    width: 300px;
    flex-shrink: 0;
}

.blogSideBox {
    background: #fff;
    padding: 22px 20px;
    margin-bottom: 24px;
}

.blogSideTitle {
    font-size: 18px;
    font-weight: 900;
    color: #222;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #da3836;
}

.blogSideNews_item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.blogSideNews_item:last-child {
    margin-bottom: 0;
}

.blogSideNews_img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.blogSideNews_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blogSideNews_info {
    flex: 1;
    min-width: 0;
}

.blogSideNews_title {
    color: #323232;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogSideNews_title:hover {
    color: #da3836;
}

.blogSideNews_date {
    color: #999;
    font-size: 12px;
}

.blogSideHot_item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.blogSideHot_item:last-child {
    margin-bottom: 0;
}

.blogSideHot_img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.blogSideHot_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blogSideHot_info {
    flex: 1;
    min-width: 0;
}

.blogSideHot_title {
    color: #323232;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogSideHot_item:hover .blogSideHot_title {
    color: #da3836;
}

.blogSideHot_more {
    color: #da3836;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 详情页 */
.blogShow {
    background: #fff;
    padding: 30px;
}

.blogShow_title {
    font-size: 28px;
    font-weight: 900;
    color: #222;
    line-height: 1.35;
    margin: 0 0 16px;
}

.blogShow_meta {
    color: #999;
    font-size: 13px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.blogShow_meta span {
    margin-right: 18px;
}

.blogShow_content {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
    overflow: hidden;
}

.blogShow_content img {
    max-width: 100%;
    height: auto;
}

/* 详情页上下篇 */
.blogPagelink {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin: 36px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #eee;
    box-sizing: border-box;
    clear: both;
}

.blogPagelink_btn {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 14px 16px;
    box-sizing: border-box;
    background: #f5f5f5 !important;
    border: 1px solid #ebebeb;
    color: #323232 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    overflow: hidden;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

a.blogPagelink_btn:hover {
    background: #fff0f0 !important;
    border-color: #da3836;
    color: #da3836 !important;
}

.blogPagelink_btn--disabled {
    visibility: hidden;
    pointer-events: none;
}

.blogPagelink_arrow {
    flex: 0 0 auto;
    width: 22px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #da3836;
    line-height: 1;
}

.blogPagelink_text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.blogPagelink_prev {
    justify-content: flex-start;
    text-align: left;
}

.blogPagelink_next {
    justify-content: flex-end;
    text-align: right;
}

.blogPagelink_next .blogPagelink_text {
    order: 1;
}

.blogPagelink_next .blogPagelink_arrow {
    order: 2;
}

@media (min-width: 1201px) {
    .blog .show {
        height: 380px;
    }

    .blog .show_word_contact {
        font-size: 60px;
        line-height: 380px;
    }

    .blogOutBox {
        width: 75%;
        margin: 0 auto;
        padding-top: 30px;
    }
}

@media (max-width: 1200px) {
    .blog .show {
        position: relative;
        height: 210px;
    }

    .blog .show_word_contact {
        width: 90%;
        font-size: 1.4rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        line-height: 1.3;
    }

    .blogOutBox {
        width: 92%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .blogContainer {
        flex-direction: column;
    }

    .blogSidebar {
        width: 100%;
    }

    .blogList {
        padding: 10px 16px 24px;
    }

    .blogItem {
        flex-direction: column;
        gap: 14px;
    }

    .blogItem_img {
        width: 100%;
        height: 200px;
    }

    .blogItem_title {
        font-size: 18px;
    }

    .blogShow {
        padding: 20px 16px;
    }

    .blogShow_title {
        font-size: 22px;
    }

    .blogPagelink {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .blogPagelink_next {
        justify-content: flex-start;
        text-align: left;
    }

    .blogPagelink_next .blogPagelink_text {
        order: 2;
    }

    .blogPagelink_next .blogPagelink_arrow {
        order: 1;
    }

    .blogPagelink_btn--disabled {
        display: none !important;
    }
}
