.buy-one-wrapper {
        position: relative;
        margin: 20px 0;
    }
    
    .buy-one-container {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .buy-one-content {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .buy-one-header {
        width: 80%;
        padding-right: 30px;
        box-sizing: border-box;
    }
    
    .buy-one-title {
        font-size: 30px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .buy-one-subtitle {
        font-size: 18px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .buy-one-discount {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #ff0000;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 38px;
        font-weight: bold;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    .buy-one-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #7560F3;
        color: white !important;
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 75px;
		margin-top: 30px;
        flex-shrink: 0;
    }
    
    .buy-one-button:hover {
        background-color: #45a049;
    }
    
    .buy-one-icon {
        margin-right: 8px;
    }

    @media (max-width: 768px) {
        .buy-one-content {
            flex-direction: column;
        }
        
        .buy-one-header {
            width: 100%;
            padding-right: 0;
            margin-bottom: 20px;
        }
        
        .buy-one-title {
            font-size: 28px;
        }
        
        .buy-one-subtitle {
            font-size: 16px;
        }
        
        .buy-one-button {
            margin-left: 0;
            width: 100%;
        }
        
        .buy-one-discount {
            font-size: 16px;
            padding: 6px 15px;
        }
    }

    @media (max-width: 480px) {
        .buy-one-container {
            padding: 20px;
        }
        
        .buy-one-title {
            font-size: 24px;
        }
        
        .buy-one-button {
            font-size: 16px;
            padding: 12px 25px;
        }
    }

/* 图片轮播 */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}
.hero-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.hero-carousel .carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}
.hero-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}
/* 轮播点 */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dots .dot.active {
    background-color: #fff;
    transform: scale(1.2);
}
/* 右侧文字轮播 */
#heroTextCarousel {
    position: relative;
    overflow: hidden;
}
.hero-text-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.hero-text-slide {
    flex: 0 0 100%;
    width: 100%;
}
/* 修复按钮与上方文字的间距 */
.hero-text-slide ul {
    margin-bottom: 25px;
}
.hero-text-slide .banner-btns {
    margin-top: 10px;
    margin-bottom: 15px;
}
/* 左右箭头 */
.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 20;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}
.hero-carousel-prev {
    left: 20px;
}
.hero-carousel-next {
    right: 20px;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .hero-carousel-prev,
    .hero-carousel-next {
        padding: 8px 14px;
        font-size: 20px;
        width: 38px;
        height: 38px;
    }
    .hero-carousel-prev {
        left: 5px;
    }
    .hero-carousel-next {
        right: 5px;
    }
    .carousel-dots .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    .hero-text-slide ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .hero-text-slide li {
        font-size: 14px;
    }
    .item-main-title {
        font-size: 28px;
    }
    .hero-text-slide .banner-btns {
        margin-top: 5px;
        margin-bottom: 10px;
    }
}
@media (max-width: 992px) and (min-width: 769px) {
    .hero-carousel-prev,
    .hero-carousel-next {
        padding: 10px 16px;
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
}