.enlarge {
    width: 100%;
    height: auto;
}

.enlarge-1 {
    width: 100%;
    height: auto;
}

.enlarge-1-img {
    width: 100%;
    height: auto;
}

.enlarge-2 {
    width: 100%;
    height: auto;
}



/*  slide  */

.carousel-container {
    width: 100%;
//    max-width: 800px;
//    margin: 20px auto;
    position: relative;
    overflow: auto;
//    border-radius: 8px;
//    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-user-select: none; /* Safari 兼容 */
    user-select: none;
}

//.carousel-container:focus {
//    outline: none;
//}

.carousel {
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
//border: 1px solid red;
//    cursor: grab; /* 拖动时显示手型 */
//    user-select: none; /* 防止拖动时选中文本 */
//    -webkit-overflow-scrolling: touch; /* 启用 iOS 弹性滚动 */
//    will-change: transform; /* 提前告知浏览器会变化 */
    will-change: transform; /* 性能优化 */
//height: 100%;
//position: relative;
}

//.carousel * {
//    touch-action: manipulation;
//}

//.carousel:active {
//    cursor: grabbing; /* 拖动中手型变化 */
//}

.slide {
//width: 100%;
    min-width: 100%;
//    box-sizing: border-box;
//border: 1px solid red;
//flex-shrink: 0;
    position: relative;
    display: inline-block;
}

.slide img {
    width: 100%;
    display: block;
//border: 1px solid red;
    pointer-events: none; /* 防止图片干扰拖动 */
}

/* 指示器样式 */
.indicators {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
//border: 1px solid red;
//opacity: 1;
//z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    cursor: pointer;
    transition: background 0.3s;
//    opacity: 1;
//z-index: 1;
//position: absolute;
}

/* 拖动反馈样式 */
.carousel.grabbing {
    cursor: grabbing;
    transition: none;
}

.carousel.grab {
    cursor: grab;
}

.indicator.active {
    border-radius: 3px 0px;
    background: #00698C;
}