    #carousel-ws {
        box-sizing: border-box;
        color: #333;
        line-height: 1.6;
		height: 15vw;
		margin: auto 60px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    h1 {
        text-align: left;
        margin-bottom: 30px;
        color: white;
    }

    .top-banner-slider {
        position: relative;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .slider-item {
        position: relative;
        height: 70vh;
        min-height: 500px;
        overflow: hidden;
    }

    .slider-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        transition: transform 0.5s ease;
    }

    .slider-item:hover .slider-img {
        transform: scale(1.03);
    }

    .slider-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
    }

    .slider-content {
        max-width: 1200px;
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        padding: 0 15px;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .top-banner-content-wrap {
        color: white;
        text-align: left;
        padding: 40px;
        border-radius: 10px;
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .page-section-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slogan {
        font-size: 12px;
        font-weight: 300;
        margin-bottom: 0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Slick 自定义样式 - 底部导航 */
    .slick-dots {
        bottom: 20px;
        display: flex;
        justify-content: center;
        padding: 0 20px;
    }

    .slick-dots li {
        margin: 0 5px;
        width: auto;
        height: auto;
    }

    .slick-dots li button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        transition: all 0.3s ease;
    }

    .slick-dots li button:before {
        display: none;
    }

    .slick-dots li.slick-active button {
        background: white;
        transform: scale(1.2);
    }

    /* 自定义导航按钮 - 放置在底部 */
    .custom-nav {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 10;
    }

    .custom-prev,
    .custom-next {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .custom-prev:hover,
    .custom-next:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

    .custom-prev:after,
    .custom-next:after {
        content: '';
        width: 15px;
        height: 15px;
        border-top: 3px solid white;
        border-right: 3px solid white;
    }

    .custom-prev:after {
        transform: rotate(-135deg);
        margin-left: 5px;
    }

    .custom-next:after {
        transform: rotate(45deg);
        margin-right: 5px;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
        .slider-item {
            height: 60vh;
            min-height: 400px;
        }

        .page-section-title {
            font-size: 24px;
        }

        .slogan {
            font-size: 11px;
        }
    }

    @media (max-width: 768px) {
        .slider-item {
            height: 50vh;
            min-height: 350px;
        }

        .page-section-title {
            font-size: 22px;
        }

        .slogan {
            font-size: 10px;
        }

        .top-banner-content-wrap {
            padding: 25px;
        }

        .custom-prev,
        .custom-next {
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 576px) {
        .slider-item {
            height: 40vh;
            min-height: 300px;
        }

        .page-section-title {
            font-size: 16px;
        }

        .slogan {
            font-size: 8px;
        }

        .top-banner-content-wrap {
            padding: 20px;
        }

        .custom-nav {
            bottom: 15px;
        }
    }

    /* 进度条指示器 */
    .slick-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        width: 100%;
        z-index: 10;
    }

    .slick-progress-bar {
        height: 100%;
        background: #fff;
        width: 0%;
        transition: width 0.1s linear;
    }

    /* 计数器 */
    .slide-counter {
        position: absolute;
        bottom: 80px;
        right: 40px;
        color: white;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 15px;
        z-index: 10;
    }

    .code-container {
        background-color: #2d2d2d;
        color: #f8f8f2;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin-top: 30px;
        font-family: 'Courier New', monospace;
    }

    .code-container h3 {
        margin-bottom: 15px;
        color: #fff;
    }
