#recall {
    padding-top: 80px;
    padding-bottom: 40px;
}

.center {
    text-align: center;
}

.artical {
    margin: 0 12vw 0 12vw;
}

.artical-header {
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .artical {
        margin: 0 0 0 0;
    }
}

.core-beliefs {
    display: flex;
    align-items: center;
    background-image: url(./images/core-beliefs-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}

.core-beliefs .logo{
    font-weight: bold;
}

.core-beliefs .left-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-intor {
    height: 500px;
    position: relative;
    /* display: flex; */
    /* align-items: flex-end; */
}

.swiper-intor .left-part {
    height: 500px;
    display: flex;
    align-items: center;
}

.swiper-intor .carousel-box {
    padding: 12px;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.swiper-intor .carousel-box .carousel {
    height: 720px;
}

.swiper-intor .carousel-inner {
    height: 100%;
    overflow-y: visible;
    position: relative;
}

.swiper-intor .carousel-item {
    height: 100%;
    position: relative;
}

.swiper-intor .carousel-item img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    object-fit: contain;
}

.customer-service .card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-bottom: 24px;
}

.customer-service .cards-box>.card-item:not(:last-child) .card-header {
    border-right: 1px solid #d3d3d3;
}

.customer-service .card-header {
    width: 100%;
    background: unset;
    border-bottom: unset;
    padding: 0 30px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-service .card-title {
    max-width: 200px;
}

.customer-service .card-body {
    padding: 30px 30px 0 30px;
}

.customer-service-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.corporate-news {
    background-image: url(./images/text-banner.webp);
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.corporate-news .title-line.left-dot::before,
.corporate-news .title-line.center-dot::before {
    background: #fff
}

/* 服务区域样式 */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(45, 116, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--light-blue);
    font-size: 24px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-font);
}

.culture-card {
    background: url(./images/comp_cul.png) no-repeat;
    background-size: cover;
    background-position: right top;
    padding: 78px 32px;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

/* 联系区域样式 */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-inner p {
    text-align: center;
}

.contact-info {
    flex: 1;
}

.contact-details {
    display: flex;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    flex: 1;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .culture-card {
        padding: 32px;
    }

    .num-box .num-item {
        border-bottom: 1px #edeced solid;
    }
}

@media (max-width: 767px) {
    .core-beliefs-logo {
        margin: 20px 0 50px 0;
    }

    .customer-service .cards-box>.card-item:not(:last-child) .card-header {
        border-right: unset;
    }

    /* .customer-service .cards-box>.card-item:not(:nth-child(even)) .card-header {
        border-right: 1px solid #d3d3d3;
    } */

    .swiper-intor .left-part {
        height: 500px;
        display: flex;
        align-items: start;
        padding: 12px;
        padding-top: var(--space);
        padding-bottom: var(--space);
    }
}