/* 无边框轮播容器 */
.slider-wrap-no-border {
    position: relative;
    margin: 0; /* 去除默认外边距 */
    padding: 0; /* 完全去除内边距 */
    box-sizing: border-box;
    overflow: hidden;
}

/* 无边框轮播列表 */
.slider-list-no-border {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%; /* 完全扣除padding，直接占满容器 */
    margin: 0; /* 去除默认额外边距 */
    padding: 0;
    list-style: none;
    transition: left 0.6s ease-in-out;
}

/* 无边框轮播项 */
.slider-item-no-border {
    position: relative;
    float: left;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 无边框图片样式 */
.slider-img-no-border {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0; /* 去除圆角边框 */
    transform: none !important;
}

/* 无边框圆点样式 */
.slider-dots-no-border {
    position: absolute;
    bottom: 10px; /* 位置上移，适应小尺寸 */
    right: 10px;
    left: auto;
    transform: none;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}
.slider-dot-no-border {
    width: 8px; /* 圆点缩小 */
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    float: left;
    margin: 0 3px; /* 间距缩小 */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.slider-dot-no-border.active {
    background: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* 无边框文字层（如需保留） */
.slider-text-no-border {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 8px 12px; /* 文字内边距缩小 */
    color: #fff;
    font-size: 14px; /* 文字缩小 */
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 5;
    background: rgba(0,0,0,0.3); /* 增加背景透明度，小区域更清晰 */
}

/* 无边框链接样式 */
.slider-link-no-border {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* hover容器时显示箭头 */
.slider-wrap-no-border:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

