.service-section {
    padding: 0 13.5417vw 3.4375vw;
    background: #f9f9fb;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.slide-inner{
  & .swiper-logo {
    margin: 6.6042vw 0 2.9167vw 9.6354vw;
  }

  & .swiper-title {
    margin: 0 0 0 9.6354vw;
    font-weight: bold;
    font-size: 2.1875vw;
    color: #020202;
    line-height: 2.9167vw;    
  }
}

@media (max-width: 768px) {
  .slide-inner {
    & .swiper-logo {
      display: none;
    }

    & .swiper-title {
      display: none;
    }
  }
}

.my-swiper-pagination {
    margin-top: 3.125vw;
    text-align: center;

    .swiper-pagination-bullet {
        position: relative;
        display: inline-block;
        background: rgba(4, 61, 206, 0.2);
        width: 1.4063vw;
        height: 1.4063vw;
        border-radius: 100%;
        transition: 0.33s;
        margin-right: 1.4063vw;
    }

    .swiper-pagination-bullet-active {
        background: #043dce;
    }
}

/**
 * 客户评价区域样式
 * @description 根据设计图实现的客户评价展示区域
 */
.customer-cases {
    display: flex;
    border-radius: 0.4167vw;
    overflow: hidden;
    padding: 5.2083vw 0;
    position: relative;
    background: rgba(16, 75, 212, 0.04);

    /* 左侧蓝色标题区域 */
    & .blue-box {
        background: #092991;
        color: white;
        padding: 4.1667vw 18.9583vw 0 5.2083vw;
        font-size: 2.5vw;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40%;
        min-height: 34.375vw;
    }

    & .row {
        width: 60%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 25%;
        margin: 0;
        align-items: center;
    }

    & .quote-creative {
        background: #ffffff;
        border-radius: 0.625vw;
        padding: 1.3021vw;
        box-shadow: 0 0.2083vw 0.7813vw rgba(0, 0, 0, 0.08);
        border: 0.0521vw solid #f1f5f9;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;

        & .quote-creative__image {
            flex-shrink: 0;
        }

        & .quote-creative__content {
            flex-shrink: 0;

            & > .fa-icon {
                margin-top: 0.5208vw;
            }

            & > p {
                min-height: 8.8542vw;
            }

            & .quote-creative__meta {
                margin-top: 0;

                & .cite {
                    font-weight: bold;
                    color: #020202;
                }

                & .small {
                    font-weight: bold;
                    color: #043dce;
                }
            }
        }
    }
}

.latest-news {
    padding: 3.9063vw 12.7083vw;

    & .header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        & .header-title {
            font-weight: bold;
            font-size: 3.3333vw;
            color: #000000;
        }

        & .default-btn {
            border: 2px solid #020202;
            background: #fff;
            color: #020202;
        }
    }

    & .index-news-right .post-minimal {
        display: flex;
        align-items: center;
        background: #f9f9fb;
        margin-bottom: 1.3542vw;

        & a {
            flex-shrink: 0;
        }

        & img {
            width: 9.8958vw;
            height: 5.7813vw;
            object-fit: cover;
        }

        & .post-minimal-content {
            padding: 0 0 0 0.7813vw;
            gap: 0.5208vw;

            & .post-minimal__title {
                margin: 0;
                padding: 0;
            }

            & .read-more {
                margin: 0;
                padding: 0;
                text-transform: none;
            }
        }
    }

    & .post-minimal-content {
        display: flex;
        align-items: center;
        justify-content: space-between;

        & .post-minimal__title {
            width: 50%;
        }

        & .read-more {
            font-weight: bold;
        }
    }
}

@media (max-width: 768px) {
    .latest-news {
      padding: 20px 10px;
        & .header {
            & .header-title {
                font-size: 6.3333vw;
            }
        }

        & .post-minimal-content {
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        & .index-news-right .post-minimal {
          flex-direction: column;
          margin-bottom: 20px;

          & img {
              width: 60vw;
              height: 40vw;
          }          
        }
    }
}
