.service-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* 添加过渡效果 */
}

.service-pane.tab-active {
    display: block;
    opacity: 1;
}

/* 加载占位符样式 */
.loading-placeholder {
    padding: 20px 0;
}

.placeholder-title {
    width: 60%;
    height: 32px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 20px;
}

.placeholder-content {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.placeholder-content:nth-child(3) {
    width: 80%;
}

.placeholder-content:nth-child(4) {
    width: 90%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 静态轮播图样式 */
.static-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图占位符样式 */
.hero-placeholder {
    width: 100%;
    height: 400px;
    position: relative;
}

.placeholder-slide {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {

    /* 服务列表样式 */
    .service-ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        margin: 0;
        list-style: none;
        -webkit-overflow-scrolling: touch;
        /* 为 iOS 添加平滑滚动 */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .service-ul::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .services-details-items .services-sidebar .service-ul .service-li {
        flex: 0 0 auto;
        padding: 6px 16px;
        margin-right: 10px;
        background: #f5f5f5;
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
        font-size: 13px;
        margin-top: 0px;
    }

    .services-details-items .services-sidebar .service-ul .service-li.current-item {
        background: #007bff;
        color: white;
    }

    .services-details-items .services-sidebar .service-ul .service-li::after {
        display: none;
    }

    .services-sidebar {
        margin-bottom: 20px;
    }

    .service-li {
        font-size: 14px;
        padding: 6px 12px;
    }

    .services-details-items .services-single-content h2 {
        font-size: 20px!important;
    }

}

.tech-link {
    color: unset;
    width: 100%;
    display: block;
}