.actives{
    display: block !important;
}


.noactives{
    display: none;
}

.style-switcher {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
 
.style-tabs ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
 
.style-tabs li {
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #e9ecef;
}
 
.style-tabs li:hover {
    background: #e9ecef;
}
 
.style-tabs li.active {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}
 
/* 添加内容容器 */
.style-container {
    display: none;
}
 
.style-container.active {
    display: block;
}

/* 设计一：现代科技感卡片布局 */
.service-area-modern {
    background: linear-gradient(135deg, #0c1b33 0%, #1a3a5f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.service-area-modern:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('__STATIC__/image/tech-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #00f2fe, #4facfe);
    margin: 25px auto;
    border-radius: 2px;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.modern-service-card {
    background: rgba(16, 33, 54, 0.7);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2);
    border-color: rgba(0, 242, 254, 0.3);
}

.modern-service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modern-service-icon i {
    font-size: 54px;
    color: #00f2fe;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-service-card:hover .modern-service-icon i {
    transform: scale(1.2);
    color: #fff;
}

.modern-service-content {
    padding: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.modern-service-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.modern-service-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modern-service-footer {
    padding: 0 25px 25px;
    position: relative;
    z-index: 2;
}

.modern-service-footer a {
    display: inline-flex;
    align-items: center;
    color: #00f2fe;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.modern-service-footer a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.modern-service-card:hover .modern-service-footer a {
    color: #fff;
}

.modern-service-card:hover .modern-service-footer a i {
    transform: translateX(5px);
}

.modern-cta-section {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.2) 0%, rgba(0, 242, 254, 0.15) 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.modern-cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.modern-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 25px;
}

.modern-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #00f2fe, #4facfe);
    color: #0c1b33;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.3);
}

.modern-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
    color: #0c1b33;
}

.modern-cta-button i {
    margin-left: 10px;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .modern-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-area-modern {
        padding: 70px 0;
    }
    
    .modern-cta-section {
        padding: 30px 20px;
    }
    
    .modern-cta-section h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .modern-services-grid {
        grid-template-columns: 1fr;
    }
}

/* 设计二：横向滑动展示布局 - 完整版 */
.service-area-horizontal {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
    position: relative;
}

.horizontal-header {
    text-align: center;
    margin-bottom: 60px;
}

.horizontal-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    background: linear-gradient(to right, #1a56db, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.horizontal-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.horizontal-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1a56db, #0ea5e9);
    margin: 20px auto;
    border-radius: 2px;
}

.horizontal-services-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0 40px;
}

.horizontal-services-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.horizontal-service-card {
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.horizontal-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.horizontal-service-card:hover .horizontal-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.15);
}

.horizontal-service-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
}

.horizontal-service-icon i {
    font-size: 4.5rem;
    color: white;
    transition: all 0.3s ease;
}

.horizontal-service-card:hover .horizontal-service-icon i {
    transform: scale(1.1);
}

.horizontal-service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.horizontal-service-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.horizontal-service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.horizontal-service-stats {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    color: #475569;
}

.horizontal-service-stats span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a56db;
    line-height: 1.2;
}

.horizontal-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 28px;
}

.horizontal-prev, .horizontal-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.horizontal-prev:hover, .horizontal-next:hover {
    background: #1a56db;
    border-color: #1a56db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.3);
}

.horizontal-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.horizontal-pagination .page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.horizontal-pagination .page-dot.active {
    background: #1a56db;
    transform: scale(1.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .horizontal-service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .service-area-horizontal {
        padding: 60px 0;
    }
    
    .horizontal-header h2 {
        font-size: 2.2rem;
    }
    
    .horizontal-service-card {
        width: calc(100% - 20px);
    }
    
    .horizontal-card-inner {
        height: auto;
    }
    
    .horizontal-prev, .horizontal-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .horizontal-header h2 {
        font-size: 1.8rem;
    }
    
    .horizontal-header p {
        font-size: 1rem;
    }
    
    .horizontal-controls {
        gap: 15px;
    }
    
    .horizontal-prev, .horizontal-next {
        width: 45px;
        height: 45px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card-animate {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}


/* 设计三：分层立体卡片布局 */
.service-area-layered {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.layered-header {
    text-align: center;
    margin-bottom: 60px;
}

.layered-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.layered-header h2 span {
    color: #1a56db;
}

.layered-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.layered-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1500px;
}

.layered-service-card {
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.layered-service-card:hover {
    transform: rotateY(180deg);
}

.layered-card-front, .layered-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.layered-card-front {
    background: white;
    color: #1e293b;
    text-align: center;
}

.layered-card-back {
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    justify-content: flex-start;
    padding-top: 40px;
}

.layered-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.layered-card-front .layered-service-icon {
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
}

.layered-card-back .layered-service-icon {
    background: rgba(255, 255, 255, 0.1);
    margin-top: -60px;
}

.layered-service-icon i {
    font-size: 40px;
    color: white;
}

.layered-card-front h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.layered-card-front p {
    color: #64748b;
    font-size: 16px;
}

.layered-card-back h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.layered-card-back p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.layered-card-back ul {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
    width: 100%;
}

.layered-card-back ul li {
    margin-bottom: 10px;
    position: relative;
}

.layered-card-back ul li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: white;
}

.layered-card-back a {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.layered-card-back a:hover {
    background: white;
    color: #1a56db;
}

.layered-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 80px;
}

.layered-stat-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.layered-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.15);
}

.layered-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #1a56db;
    line-height: 1.2;
    margin-bottom: 10px;
}

.layered-stat-text {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .layered-services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-area-layered {
        padding: 70px 0;
    }
    
    .layered-header h2 {
        font-size: 36px;
    }
    
    .layered-stat-item {
        padding: 20px 15px;
    }
    
    .layered-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .layered-header h2 {
        font-size: 32px;
    }
    
    .layered-stats {
        grid-template-columns: 1fr 1fr;
    }
}