.news-module-box {
    background: #133f6c !important;
    padding: 40px 0 !important;
    margin: 0;
    margin-top: 40px;
    box-shadow: none !important;
}

.news-module-box .container {
    width: 100% !important;
    margin: 0 auto !important;
}

.block-heading {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 40px !important;
}

.news-module-box .block-title {
    position: relative !important;
    text-align: center !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
}

.news-module-box .block-title-right {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
}

.news-module-box .block-title .title span {
    color: #fff !important;
}

.news-module-box .block-title .title span:after {
    background: linear-gradient(90deg, #fff, #87CEEB) !important;
}

.news-module-box .block-title p {
    color: rgba(255,255,255,0.7) !important;
}

.block-title-right .btn-readmore {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 20px !important;
    /*border: 1px solid #fff !important;*/
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.block-title-right .btn-readmore:hover {
    background: #fff !important;
    color: #133f6c !important;
}

.blog {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
}

.blog li {
    flex: 0 1 calc((100% - 75px) / 4) !important;
    width: calc((100% - 75px) / 4) !important;
    max-width: calc((100% - 75px) / 4) !important;
    min-width: 0 !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.blog li:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.blog .post_image {
    display: block !important;
    overflow: hidden !important;
}

.blog .post_image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    border-radius: 10px;
}

.blog li:hover .post_image img {
    transform: scale(1.05) !important;
}

.blog h2 {
    padding: 10px !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    height: 60px !important;
    overflow: hidden !important;
}

.blog h2 a {
    color: #333 !important;
    text-decoration: none !important;
}

.blog h2 a:hover {
    color: #133f6c !important;
}

.post_details {
    display: flex !important;
    gap: 15px !important;
    padding: 0 15px !important;
    margin-bottom: 10px !important;
    list-style: none !important;
}

.post_details li {
    font-size: 12px !important;
    color: #999 !important;
    flex: none !important;
    min-width: auto !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.post_details .category a {
    color: #2980b9 !important;
    text-decoration: none !important;
}

.blog p {
    padding: 0 15px !important;
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    height: 60px !important;
    overflow: hidden !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0 !important;
}

.read_more {
    display: inline-block !important;
    padding: 12px 15px !important;
    margin-bottom: 5px !important;
    color: #3381d3 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    border-top: 1px solid #eee !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.read_more:hover {
    color: #2980b9 !important;
    background: #f8f9fa !important;
}

.read_more .arrow {
    display: inline-block !important;
    margin-right: 5px !important;
}

.read_more i{
    margin-top: -5px !important;
}

/* 分类首页样式 */
.category-section {
  margin-bottom: 40px;
}

.category-section .block-title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #133f6c;
}

.category-section .block-title .title span {
  font-size: 20px;
  font-weight: 600;
  color: #133f6c;
  position: relative;
}

@media (max-width: 1199px) {
    .blog li {
        flex: 0 1 calc((100% - 50px) / 3) !important;
        width: calc((100% - 50px) / 3) !important;
        max-width: calc((100% - 50px) / 3) !important;
    }
}

@media (max-width: 991px) {
    .blog li {
        flex: 0 1 calc((100% - 25px) / 2) !important;
        width: calc((100% - 25px) / 2) !important;
        max-width: calc((100% - 25px) / 2) !important;
    }

    .news-module-box .block-title {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    .news-module-box .block-title-right {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        float: none;
        margin-top: 10px;
        text-align: center;
    }

    .product-thumb .image img {
        height: 180px !important;
    }
}

@media (max-width: 767px) {
    .blog li {
        flex: 0 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .news-module-box .block-title {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .news-module-box .block-title-right {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        float: none;
        margin-top: 10px;
        text-align: center;
    }

    .news-module-box .block-title .title span {
        font-size: 20px !important;
    }
}

/* page_v2 */
.vc_row .wpb_column .blog {
    display: flex !important;
    flex-wrap: wrap !important;
}

.vc_row .wpb_column .blog li {
    flex: 0 1 calc((100% - 75px) / 4) !important;
    width: calc((100% - 75px) / 4) !important;
    max-width: calc((100% - 75px) / 4) !important;
    min-width: 0 !important;
}

@media (max-width: 1199px) {
    .vc_row .wpb_column .blog li {
        flex: 0 1 calc((100% - 50px) / 3) !important;
        width: calc((100% - 50px) / 3) !important;
        max-width: calc((100% - 50px) / 3) !important;
    }
}

@media (max-width: 991px) {
    .vc_row .wpb_column .blog li {
        flex: 0 1 calc((100% - 25px) / 2) !important;
        width: calc((100% - 25px) / 2) !important;
        max-width: calc((100% - 25px) / 2) !important;
    }
}

@media (max-width: 767px) {
    .vc_row .wpb_column .blog li {
        flex: 0 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}
