* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Helvetica Neue', Arial, sans-serif;
    background-color: rgba(245, 245, 245, 1);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 全局图片优化 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 容器最大宽度限制 */
.container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}
a,a:hover,a:visited,a:link,img,img:hover,img:visited,img:link{
    border: 0;
    text-decoration: none;
}
/* 性能优化 - 为需要硬件加速的元素 */
.card,
.hero-banner,
.partner-logo {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}


/* 减少动画对性能敏感用户的影响 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 头部导航栏 */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
    position: sticky;
    background-color: white;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 1000;
    height: 82px;
    box-sizing: border-box;
    min-height: 60px;
}

/* Logo左侧区域 */
.logo-left {
    display: flex;
    align-items: center;
    gap: 0.78vw;
}

.logo-icon {
    height: clamp(24px, 1.72vw, 40px);
    width: clamp(32px, 2.4vw, 55px);
    object-fit: contain;
    display: inline-block;
}

.company-name {
    height: clamp(18px, 1.25vw, 30px);
    max-width: clamp(150px, 11.3vw, 200px);
    width: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    object-fit: contain;
    display: inline-block;
}

.company-name:hover {
    opacity: 1;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: clamp(15px, 1.56vw, 30px);
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: black;
    text-decoration: none;
    font-size: clamp(14px, 0.83vw, 18px);
    font-weight: 500;
    padding: clamp(8px, 0.63vw, 15px) clamp(12px, 1.04vw, 20px);
    border-radius: clamp(15px, 1.3vw, 25px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.nav-list a.active{
    color: rgba(104, 132, 255, 1) !important;
}

/* 主横幅区域 */
.hero-banner {
    position: relative;
    width: 100%;
    height: clamp(400px, 46.88vw, 800px);
    min-height: 60vh;
    margin: 0 auto;
    background-image: url('../images/背景_banner1@3x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 横幅内容区域 */
.hero-content {
    text-align: center;
    margin-bottom: clamp(40px, 5.21vw, 100px);
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(28px, 2.5vw, 48px);
    font-weight: bold;
    color: #6366f1;
    margin-bottom: clamp(15px, 1.04vw, 25px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 1.25vw, 24px);
    color: #6366f1;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

/* 卡片容器 */
.cards-container {
    position: absolute;
    bottom: clamp(-50px, -2.6vw, -20px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(15px, 1.56vw, 30px);
    z-index: 3;
    width: fit-content;
    justify-content: center;
    flex-wrap: nowrap;
}

/* 单个卡片样式 */
.card {
    background: white;
    border-radius: clamp(10px, 0.78vw, 18px);
    box-shadow: 0 clamp(6px, 0.42vw, 10px) clamp(20px, 1.67vw, 32px) rgba(0, 0, 0, 0.1);
    padding: clamp(20px, 1.56vw, 30px) clamp(18px, 1.3vw, 25px);
    width: 500px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;

}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-content h3 {
    font-size: clamp(18px, 1.56vw, 28px);
    color: rgba(104, 132, 255, 1);
    font-weight: normal;
    margin-bottom: clamp(8px, 0.63vw, 15px);
    line-height: 1.3;
    font-size: 30px;
}

.card-content p {
    font-size: 22px;
    color: rgba(0, 0, 0, 1);
    line-height: 1.6;
    margin-bottom: clamp(12px, 1.04vw, 20px);
    flex-grow: 1;
}

.card-button {
    background: rgba(104, 132, 255, 1);
    color: white;
    border: none;
    line-height: 41px;
    border-radius: 20.5px;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    align-self: flex-start;
    white-space: nowrap;
    width: 131px;
    height: 41px;
    display: block;

}


/* 企业合作伙伴展示区域 */
.partners-section {
    padding: clamp(80px, 10.42vw, 200px) clamp(20px, 2.6vw, 50px) clamp(40px, 4.17vw, 80px);
    text-align: center;
}

.partners-title {
    margin-bottom: clamp(30px, 3.13vw, 60px);
}

.title-image {
    max-width: 100%;
    height: auto;
    width: clamp(300px, 50vw, 600px);
    margin: 0 auto;
    display: block;
}

/* 合作伙伴logo网格布局 */
.partners-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.56vw, 30px);
    margin: 0 auto;
    padding: 0 clamp(15px, 1.04vw, 20px);
    box-sizing: border-box;
    max-width: 1400px;
}

/* 合作伙伴每一排 */
.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.04vw, 20px);
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 137.65px, 160px);
    height: clamp(70px, 93.14px, 110px);
    transition: all 0.3s ease;
    padding: clamp(8px, 0.78vw, 15px);
    flex-shrink: 0;
}



.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 科技背景区域 */
.tech-background-section {
    position: relative;
    width: 100%;
    min-height: clamp(500px, 56.77vw, 1000px);
    height: auto;
    background-image: url('../images/194137628.png');
    background-size: cover;
    background-position: center clamp(-80px, -5.21vw, -40px);
    background-repeat: no-repeat;
    padding-bottom: clamp(40px, 4vw, 80px);
}

/* 顶部渐变遮罩 */
.tech-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(200px, 23.23vw, 450px);
    background: linear-gradient(180deg, rgba(199, 229, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.tech-title {
    position: absolute;
    top: clamp(60px, 6vw, 120px);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: clamp(400px, 598px, 800px);
    color: rgba(51, 51, 51, 1);
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.3;
    text-align: center;
    z-index: 5;
}

.tech-content-title {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    width: clamp(200px, 18vw, 350px);
    height: clamp(400px, 37vw, 700px);
    z-index: 11;
    left: clamp(20px, 12vw, 100px);
    border-radius: 17px 0px 0px 17px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* 行业列表样式 */
.industry-list {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.5vw, 25px);
    width: 100%;
    list-style: none;
}

.industry-item {
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 500;
    color: rgba(101, 114, 136, 0.8);
    background-color: rgba(255, 255, 255, 0.7);
    text-align: left;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    background-color: transparent;
    padding-left: 20px;
}

.industry-item:hover {
    color: #6366f1;
}

.industry-item.active {
    background-color: rgba(104, 132, 255, 0.15);
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    border-left: rgba(104, 132, 255, 1) 5px solid;
}

/* 行业内容样式 */
.industry-content {
    padding: clamp(30px, 3vw, 50px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

.industry-content-title {
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 600;
    color: #6366f1;
    margin-bottom: clamp(15px, 1.5vw, 25px);
    line-height: 1.3;
}

.industry-content-description {
    font-size: clamp(16px, 1.4vw, 20px);
    color: #666;
    line-height: 1.6;
    margin-bottom: clamp(20px, 2vw, 35px);
}

.industry-features h3 {
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 600;
    color: #333;
    margin-bottom: clamp(12px, 1.2vw, 20px);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding: clamp(6px, 0.6vw, 10px) 0;
    padding-left: clamp(20px, 2vw, 30px);
    font-size: clamp(14px, 1.3vw, 18px);
    color: #555;
    line-height: 1.5;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    font-size: clamp(16px, 1.5vw, 20px);
}

.tech-content-bg {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: calc(clamp(20px, 12vw, 100px) + clamp(200px, 18vw, 350px));
    right: clamp(20px, 2vw, 40px);
    background-color: rgba(255, 255, 255, 0.8);
    height: clamp(400px, 37vw, 700px);
    z-index: 10;
    border-radius: 0px 17px 17px 0px;
    backdrop-filter: blur(10px);
    margin-left: -1px;
}

.service-content {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 80px 40px 80px;
    width: 100%;
}

.service-img {
    width: 1440px;
    margin: auto;
    margin-top: 100px;
}

.service-bg {
    background: linear-gradient(122.18deg, rgba(142, 136, 255, 1) 0%, rgba(91, 131, 255, 1) 45.14%, rgba(101, 178, 255, 1) 100%);
    height: 590px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    margin-top: 40px;
}

.service-bg-title {
    color: white;
    font-size: 46px;
    font-weight: normal;
    margin: 0;
    text-align: center;
}

.succsess-content {
    margin-top: 60px;
    width: 100%;
}

.succsess-list {
    list-style: none;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: 1px #ddd solid;
    margin-top: 40px;
    width: 1440px;
    padding: 0;
}

.succsess-li {
    flex: 1;
    font-size: 26px;
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.succsess-li.active {
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    position: relative;
}

.succsess-li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(122.18deg, rgba(142, 136, 255, 1) 0%, rgba(91, 131, 255, 1) 45.14%, rgba(101, 178, 255, 1) 100%);
}

.Customer-content {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    height: 356px;

}

.Customer-content-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.Customer-title {
    position: absolute;
    top: 70px;
    z-index: 10;
    left: 50%;
    text-align: center;
    margin-left: -175px;
}

.Customer-title h2 {
    font-size: 46px;
    font-weight: 500;
}

.Customer-title p {
    font-size: 28px;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    margin-bottom: 30px;
}

.customer-button {
    width: 350px;                                                                                                                                                                                                                                                                                                                                                                                           
    height: 70px;
    border-radius: 369px;
    background: transparent;
    color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
}

.customer-button::after {
    content: '';
    width: 16px;
    height: 15px;
    background-image: url('../images/nav@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

.customer-button:hover {
    transform: none;
    box-shadow: none;
}

.footer-nav {
    background-image: url('../images/矩形 1@3x.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 330px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    box-sizing: border-box;
    color: white;

}

.footer-left {
    flex: 1;
    max-width: 50%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 50px;
    height: auto;
}

.footer-company-name {
    height: 24px;
    width: auto;
}

.footer-contact p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.footer-nav-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* 子页面内容样式 */
.case-content-container {
    width: 1440px;
    margin: 0 auto;
    padding: 40px 0;
}

.case-content {
    display: none;
    padding: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.case-content:not(.active) {
    display: none;
}

.case-content.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 案例图片样式 */
.case-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.case-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* 案例详情容器 */
.case-details {
    flex: 1;
    min-width: 0;
}

.case-details h3 {
    font-size: 32px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 20px;
    font-weight: bold;
}

.case-details p {
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feature-item {
    padding: 15px 20px;
    background: rgba(104, 132, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    border-left: 4px solid rgba(104, 132, 255, 1);
}

/* 响应式设计已通过视口单位实现，无需媒体查询 */

/* 超大屏幕字体限制 */
@media (min-width: 2560px) {
    .nav-list a {
        font-size: 24px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .card-content h3 {
        font-size: 40px;
    }

    .card-content p {
        font-size: 28px;
    }

    .card-button {
        font-size: 18px;
    }

    .back-to-top {
        font-size: 28px;
    }
}

/* 平板设备优化 */
@media (max-width: 1024px) {
    .header-nav {
        padding: clamp(10px, 1vw, 15px) clamp(20px, 4vw, 50px);
    }

    .cards-container {
        position: static;
        transform: none;
        margin-top: clamp(40px, 5vw, 80px);
        padding: 0 20px;
    }

    .card {
        min-width: clamp(250px, 30vw, 300px);
        max-width: 100%;
    }

    .hero-banner {
        min-height: 50vh;
    }

    .industry-item {
        font-size: clamp(12px, 2.5vw, 16px);
        padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 16px);
    }

    .industry-content {
        padding: clamp(20px, 2.5vw, 35px);
    }

    .industry-content-title {
        font-size: clamp(20px, 3vw, 28px);
    }

    .industry-content-description {
        font-size: clamp(14px, 2.2vw, 18px);
    }

    .tech-content-bg {
        left: calc(clamp(15px, 3vw, 30px) + clamp(150px, 25vw, 220px));
        border-radius: 17px;
        margin-left: -1px;
    }
}

/* 手机设备优化 */
@media (max-width: 768px) {
    .header-nav {
        padding: 10px 15px;
        height: auto;
        min-height: 50px;
    }

    .logo-left {
        gap: 10px;
    }

    .nav-list {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-list a {
        padding: 6px 10px;
        font-size: 14px;
    }

    .hero-banner {
        min-height: 70vh;
        padding: 20px 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .cards-container {
        flex-direction: column;
        position: static;
        transform: none;
        margin-top: 40px;
        gap: 20px;
        padding: 0 15px;
    }

    .card {
        width: 100%;
        max-width: none;
        min-height: 120px;
    }

    .partners-section {
        padding: 60px 15px 40px;
    }

    .partners-row {
        gap: 10px;
    }

    .partner-logo {
        width: clamp(80px, 15vw, 120px);
        height: clamp(55px, 10vw, 85px);
    }

    .tech-title {
        top: 40px;
        font-size: clamp(20px, 5vw, 32px);
        padding: 0 15px;
    }

    .tech-content-title {
        width: clamp(120px, 30vw, 180px);
        left: 10px;
        padding: 15px 8px;
        height: clamp(250px, 40vw, 350px);
    }

    .industry-list {
        gap: clamp(10px, 2vw, 15px);
    }

    .industry-item {
        font-size: clamp(11px, 3vw, 14px);
        padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 12px);
    }

    .industry-content {
        padding: clamp(15px, 3vw, 25px);
    }

    .industry-content-title {
        font-size: clamp(18px, 4vw, 24px);
    }

    .industry-content-description {
        font-size: clamp(13px, 3.5vw, 16px);
    }

    .features-list li {
        font-size: clamp(12px, 3.2vw, 15px);
    }

    .tech-content-bg {
        left: calc(10px + clamp(120px, 30vw, 180px));
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        max-width: none;
        border-radius: 15px;
        margin-left: -1px;
    }

    .tech-background-section {
        min-height: 400px;
        padding-bottom: 40px;
    }
}

/* 极小屏幕保护性设置 */
@media (max-width: 480px) {
    .header-nav {
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 10px;
    }

    .logo-left {
        justify-content: center;
    }

    .nav-menu {
        width: 100%;
        overflow-x: auto;
    }

    .nav-list {
        justify-content: center;
        min-width: max-content;
    }

    .hero-banner {
        min-height: 60vh;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .hero-subtitle {
        font-size: clamp(14px, 4vw, 18px);
    }

    .card {
        padding: 15px;
        min-height: 140px;
    }

    .card-content h3 {
        font-size: clamp(16px, 4vw, 20px);
    }

    .card-content p {
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .card-button {
        font-size: clamp(11px, 3vw, 14px);
        padding: 6px 12px;
    }

    .partners-grid {
        gap: 15px;
    }

    .partners-row {
        gap: 8px;
    }

    .partner-logo {
        width: clamp(70px, 20vw, 100px);
        height: clamp(50px, 15vw, 75px);
    }

    .tech-title {
        font-size: clamp(18px, 5.5vw, 28px);
        top: 30px;
    }

    .tech-content-title {
        width: clamp(100px, 35vw, 150px);
        left: 8px;
        padding: 12px 6px;
        height: clamp(200px, 45vw, 300px);
    }

    .industry-list {
        gap: clamp(8px, 2vw, 12px);
    }

    .industry-item {
        font-size: clamp(10px, 3.5vw, 13px);
        padding: clamp(5px, 1.5vw, 8px) clamp(6px, 2vw, 10px);
    }

    .industry-content {
        padding: clamp(12px, 2.5vw, 20px);
    }

    .industry-content-title {
        font-size: clamp(16px, 4.5vw, 22px);
    }

    .industry-content-description {
        font-size: clamp(11px, 3.8vw, 14px);
    }

    .features-list li {
        font-size: clamp(10px, 3.5vw, 13px);
        padding-left: clamp(15px, 4vw, 20px);
    }

    .industry-features h3 {
        font-size: clamp(14px, 4vw, 18px);
    }

    .tech-content-bg {
        left: calc(8px + clamp(100px, 35vw, 150px));
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        height: clamp(300px, 50vw, 500px);
        margin-left: -1px;
    }

    .tech-background-section {
        min-height: 350px;
    }
}

/* 服务项目section样式 */
.services-section {
    text-align: center;
    padding-bottom: 20px;
}

.services-section h2 {
    font-size: 46px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 20px;
    font-weight: normal;
}

.services-section p {
    font-size: 28px;
    color: rgba(102, 102, 102, 1);
    margin: 0;
}

/* 新的服务项目样式 */
.service-content-new {
    padding: 40px 0;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 526px;
}

.service-image img {
    width: 526px;
    height: 344px;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text.left {
    padding-left: 60px;
}

.service-text.right {
    padding-right: 60px;
}

.service-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-text h3::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(122.18deg, rgba(142, 136, 255, 1) 0%, rgba(91, 131, 255, 1) 45.14%, rgba(101, 178, 255, 1) 100%);
    filter: blur(7px);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-button {
    width: 138px;
    height: 48px;
    border-radius: 369px;
    background: linear-gradient(122.18deg, rgba(142, 136, 255, 1) 0%, rgba(91, 131, 255, 1) 45.14%, rgba(101, 178, 255, 1) 100%);
    color: white;
    border: none;
    font-size: 18px;
font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.service-button::after {
    content: '';
    width: 16px;
    height: 15px;
    background-image: url('../images/nav@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 136, 255, 0.3);
}

/* 行业展示样式 */
.industry-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* 响应式设计 - 服务项目 */
@media (max-width: 1024px) {
    .service-row {
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .service-image {
        flex: 0 0 400px;
    }
    
    .service-image img {
        width: 400px;
        height: 260px;
    }
    
    .service-text.left {
        padding-left: 40px;
    }
    
    .service-text.right {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .service-image {
        flex: none;
        margin-bottom: 30px;
    }
    
    .service-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .service-text.left,
    .service-text.right {
        padding: 0 20px;
    }
    
    .service-text h3 {
        font-size: 24px;
    }
    
    .service-text h3::before {
        width: 16px;
        height: 16px;
    }
    
    .service-text p {
        font-size: 14px;
    }
    
    .customer-button {
        width: 130px;
        height: 45px;
        font-size: 16px;
        opacity: 0;
    }
}

/* 增强首页响应式设计 */

/* 大屏幕适配 (1400px+) */
@media (min-width: 1400px) {
    .hero-banner,
    .partners-section,
    .tech-background-section,
    .services-section,
    .service-content-new,
    .succsess-content,
    .Customer-content {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-row {
        max-width: 1200px;
    }
}

/* 桌面适配 (1024px - 1400px) */
@media (max-width: 1400px) and (min-width: 1024px) {
    .hero-banner,
    .partners-section,
    .tech-background-section,
    .services-section,
    .service-content-new,
    .succsess-content,
    .Customer-content {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .cards-container {
        padding: 0 40px;
    }
    
    .service-row {
        padding: 0 20px;
    }
}

/* 增强成功案例响应式 */
@media (max-width: 1024px) {
    .succsess-content {
        padding: 60px 20px;
    }
    
    .succsess-list {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .succsess-li {
        min-width: 120px;
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .succsess-li.active {
        background: rgba(104, 132, 255, 1);
        color: white;
        border-color: rgba(104, 132, 255, 1);
    }
    
    .case-content-container {
        padding: 0 20px;
    }
    
    .case-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .case-image {
        flex: none;
        margin-bottom: 20px;
    }
    
    .case-image img {
        max-width: 400px;
        width: 100%;
        height: auto;
    }
    
    .case-details {
        flex: none;
    }
    
    .case-details p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .succsess-content {
        padding: 40px 15px;
    }
    
    .succsess-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .succsess-li {
        width: 100%;
        max-width: 200px;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .case-content {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .case-image img {
        max-width: 300px;
    }
    
    .case-details p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .services-section h2 {
        font-size: 32px;
    }
    
    .services-section p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .succsess-content {
        padding: 30px 10px;
    }
    
    .succsess-li {
        max-width: 180px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .case-content {
        padding: 20px 10px;
        gap: 15px;
    }
    
    .case-image img {
        max-width: 250px;
    }
    
    .case-details p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .services-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .services-section p {
        font-size: 16px;
    }
}

/* 增强客服区域响应式 */
@media (max-width: 1024px) {
    .Customer-content {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .Customer-content-img {
        width: 100%;
        max-width: 800px;
        height: auto;
    }
    
    .Customer-title {
        position: static;
        transform: none;
        margin: 30px auto 0;
        text-align: center;
        padding: 0 20px;
    }
    
    .Customer-title h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .Customer-title p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .customer-button {
        position: static;
        width: 200px;
        height: 50px;
        font-size: 16px;
        margin: 0 auto;
        display: block;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .Customer-content {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .Customer-title h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .Customer-title p {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .customer-button {
        width: 160px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .Customer-content {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .Customer-title h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .Customer-title p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .customer-button {
        width: 140px;
        height: 40px;
        font-size: 13px;
    }
}
/*分页样式*/
.page_main{ clear: both; text-align: center; overflow: hidden; }
.page { display: inline-block; margin: 20px 0; border-right: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.page:empty{ display: none; }
.page a, .page span {float: left; padding: 0 5px; min-width: 35px; line-height:35px; text-align: center; border: 1px solid #ddd; border-right: 0; color: #888; }
.page a{ color: #333; }
.page a:link, .page a:visited { text-decoration:none; }
.page a:hover { background: rgba(104, 132, 255, 1); }
.page .current{ color:#FFF; background: rgba(104, 132, 255, 1); border-color: rgba(104, 132, 255, 1); border-left: 1px solid #ddd; }
.page #total{color:rgba(104, 132, 255, 1)}